diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index a1e4140588f..9320446e31e 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -60,8 +60,8 @@ Then in our `handle_grabs_vr()` proc, if we want to avoid performing the stock g
### Pull Requests
-* Your submission must pass Travis CI checking. The checks are important, prevent many common mistakes, and even experienced coders get caught by it sometimes. If you think there is a bug in Travis, open an issue. (One known Travis issue is comments in the middle of multi-line lists, just don't do it)
-* Your PR should not have an excessive number of commits unless it is a large project or includes many separate remote commits (such as a pull from Polaris). If you need to keep tweaking your PR to pass Travis or to satisfy a maintainer's requests and are making many commits, you should squash them in the end and update your PR accordingly so these commits don't clog up the history.
+* Your submission must pass CI checking. The checks are important, prevent many common mistakes, and even experienced coders get caught by it sometimes. If you think there is a bug in CI, open an issue. (One known CI issue is comments in the middle of multi-line lists, just don't do it)
+* Your PR should not have an excessive number of commits unless it is a large project or includes many separate remote commits (such as a pull from Polaris). If you need to keep tweaking your PR to pass CI or to satisfy a maintainer's requests and are making many commits, you should squash them in the end and update your PR accordingly so these commits don't clog up the history.
* You can create a WIP PR, and if so, please mark it with [WIP] in the title so it can be labeled appropriately. These can't sit forever, though.
* If your pull request has many no-conflict merge commits ('merge from master' into your PR branch), it cannot be merged. Squash and make a new PR/forcepush to your PR branch.
diff --git a/.github/workflows/autochangelog.yml b/.github/workflows/autochangelog.yml
new file mode 100644
index 00000000000..77324267187
--- /dev/null
+++ b/.github/workflows/autochangelog.yml
@@ -0,0 +1,39 @@
+name: Autochangelog
+on:
+ pull_request:
+ types: closed
+ branches:
+ - master
+
+env:
+ BASENAME: "polaris"
+
+jobs:
+ autochangelog:
+ name: Autochangelog
+ runs-on: ubuntu-16.04
+ if: github.event.pull_request.merged == true
+ steps:
+ - uses: /actions/checkout@v2
+ - name: Ensure +x on CI directory
+ run: |
+ chmod -R +x ./tools/ci
+ - uses: actions/setup-python@v2
+ with:
+ python-version: '3.7'
+ - name: Generate Changelog
+ run: |
+ pip install pyyaml
+ python tools/GenerateChangelog/ss13_autochangelog.py \
+ html/changelogs \
+ ${{ github.event.pull_request.number }} \
+ "${{ github.event.pull_request.user.login }}" \
+ "${{ github.event.pull_request.body }}"
+ python tools/GenerateChangelog/ss13_genchangelog.py \
+ html/changelog.html \
+ html/changelogs
+ - uses: stefanzweifel/git-auto-commit-action@v4
+ with:
+ commit_message: Automatic changelog generation for ${{ github.events.pull_request.number }}
+ branch: ${{ github.events.pull_request.base }}
+ commit_user_name: Autochangelog Bot
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 00000000000..f6e206bc339
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,69 @@
+name: CI
+on:
+ pull_request:
+ branches:
+ - master
+
+env:
+ BASENAME: "vorestation"
+
+jobs:
+ file_tests:
+ name: Run Linters
+ runs-on: ubuntu-16.04
+ steps:
+ - uses: actions/checkout@v2
+ - name: Ensure +x on CI directory
+ run: |
+ chmod -R +x ./tools/ci
+ - name: Install Tools
+ run: |
+ bash tools/ci/install_build_deps.sh
+ - name: Run Tests
+ run: |
+ tools/ci/validate_files.sh
+ tools/ci/build_tgui.sh
+
+ unit_tests:
+ name: Integration Tests
+ runs-on: ubuntu-16.04
+ steps:
+ - uses: actions/checkout@v2
+ - name: Ensure +x on CI directory
+ run: |
+ chmod -R +x ./tools/ci
+ - name: Setup Cache
+ uses: actions/cache@v2
+ with:
+ path: $HOME/BYOND
+ key: ${{ runner.os }}-byond
+ - name: Install RUST_G Dependencies
+ run: |
+ sudo dpkg --add-architecture i386
+ sudo apt update || true
+ sudo apt install libc6:i386 libgcc1:i386 libstdc++6:i386 libssl1.0.0:i386 g++-7 g++-7-multilib gcc-multilib zlib1g:i386
+ ldd librust_g.so
+ - name: Unit Tests
+ run: |
+ tools/ci/install_byond.sh
+ tools/ci/compile_and_run.sh
+ env:
+ TEST_DEFINE: "UNIT_TEST"
+ TEST_FILE: "code/_unit_tests.dm"
+ RUN: "1"
+ - name: Compile POIs (no run)
+ run: |
+ tools/ci/install_byond.sh
+ tools/ci/compile_and_run.sh
+ env:
+ TEST_DEFINE: "MAP_TEST"
+ TEST_FILE: "code/_map_tests.dm"
+ RUN: "0"
+ - name: Compile away missions (no run)
+ run: |
+ tools/ci/install_byond.sh
+ tools/ci/compile_and_run.sh
+ env:
+ TEST_DEFINE: "AWAY_MISSION_TEST"
+ TEST_FILE: "code/_away_mission_tests.dm"
+ RUN: "0"
diff --git a/.github/workflows/render_nanomaps.yml b/.github/workflows/render_nanomaps.yml
index 6b58c9e8e0f..f3a50a5e942 100644
--- a/.github/workflows/render_nanomaps.yml
+++ b/.github/workflows/render_nanomaps.yml
@@ -6,7 +6,8 @@
name: 'Render Nanomaps'
on:
push:
- branches: master
+ branches:
+ - master
paths:
- 'maps/**'
@@ -15,21 +16,37 @@ jobs:
name: 'Generate NanoMaps'
runs-on: ubuntu-18.04
steps:
- - name: 'Update Branch'
+ - name: Clone
uses: actions/checkout@v2
- with:
- fetch-depth: 1
- - name: 'Generate Maps'
+ - name: Branch
+ run: |
+ git fetch origin
+ git branch -f nanomaps_generation
+ git checkout nanomaps_generation
+ git reset --hard origin/master
+
+ - name: Ensure +x on github-actions directory
+ run: chmod -R +x ./tools/github-actions
+
+ - name: Generate Maps
run: './tools/github-actions/nanomap-renderer-invoker.sh'
- - name: 'Commit Maps'
+ - name: Commit Maps
run: |
git config --local user.email "action@github.com"
git config --local user.name "NanoMap Generation"
- git pull origin master
+ git add .
git commit -m "NanoMap Auto-Update (`date`)" -a || true
- - name: 'Push Maps'
- uses: ad-m/github-push-action@master
+ git push -f -u origin nanomaps_generation
+
+ - name: Create Pull Request
+ uses: repo-sync/pull-request@v2
with:
+ source_branch: "nanomaps_generation"
+ destination_branch: "master"
+ pr_title: "Automatic NanoMap Update"
+ pr_body: "This pull request updates the nanomap images to the latest version of the map."
+ pr_label: "Infrastructure"
+ pr_allow_empty: false
github_token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 7474eba31da..00000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-language: generic
-os: linux
-dist: bionic
-
-env:
- global:
- - BASENAME="vorestation" # $BASENAME.dmb, $BASENAME.dme, etc.
-
-cache:
- directories:
- - $HOME/BYOND
-
-addons:
- apt:
- packages:
- - libc6:i386
- - libgcc1:i386
- - libstdc++6:i386
- - libssl1.1:i386
- - g++-7
- - g++-7-multilib
- - gcc-multilib
- - zlib1g:i386
-
-before_install:
- - chmod -R +x ./tools/travis
-
-install:
- - ./tools/travis/install_byond.sh
-
-before_script:
- - shopt -s globstar
-
-script:
- - ldd librust_g.so
- - ./tools/travis/compile_and_run.sh
-
-# Build-specific settings
-jobs:
- include:
- - stage: "File Tests" #This is the odd man out, with specific installs and stuff.
- name: "Validate Files"
- addons:
- apt:
- packages:
- - python3
- - python3-pip
- - python3-setuptools
- install: #Need python for some of the tag matching stuff
- - tools/travis/install_build_deps.sh
- script:
- - tools/travis/validate_files.sh
- - tools/travis/build_tgui.sh
- - stage: "Unit Tests"
- env: TEST_DEFINE="UNIT_TEST" TEST_FILE="code/_unit_tests.dm" RUN="1"
- name: "Compile normally (unit tests)"
- - stage: "Isolation Tests"
- env: TEST_DEFINE="MAP_TEST" TEST_FILE="code/_map_tests.dm" RUN="0"
- name: "Compile POIs (no run)"
- - env: TEST_DEFINE="AWAY_MISSION_TEST" TEST_FILE="code/_away_mission_tests.dm" RUN="0"
- name: "Compile away missions (no run)"
-
diff --git a/_build_dependencies.sh b/_build_dependencies.sh
index be33811c984..b89a8a2dd6b 100644
--- a/_build_dependencies.sh
+++ b/_build_dependencies.sh
@@ -3,8 +3,6 @@
export SPACEMANDMM_TAG=suite-1.4
# For NanoUI + TGUI
export NODE_VERSION=12
-# For the scripts in tools
-export PHP_VERSION=7.2
# Byond Major
export BYOND_MAJOR=513
# Byond Minor
diff --git a/code/ATMOSPHERICS/pipes/tank_vr.dm b/code/ATMOSPHERICS/pipes/tank_vr.dm
new file mode 100644
index 00000000000..32341ad8f3b
--- /dev/null
+++ b/code/ATMOSPHERICS/pipes/tank_vr.dm
@@ -0,0 +1,5 @@
+/obj/machinery/atmospherics/pipe/tank/phoron/full
+ start_pressure = 15000
+
+/obj/machinery/atmospherics/pipe/tank/air/full
+ start_pressure = 15000
\ No newline at end of file
diff --git a/code/__defines/belly_modes_vr.dm b/code/__defines/belly_modes_vr.dm
index ccffcf43416..d497391d3fc 100644
--- a/code/__defines/belly_modes_vr.dm
+++ b/code/__defines/belly_modes_vr.dm
@@ -9,30 +9,17 @@
#define DM_SIZE_STEAL "Size Steal"
#define DM_HEAL "Heal"
#define DM_EGG "Encase In Egg"
-#define DM_TRANSFORM "Transform"
//#define DM_ITEMWEAK "Digest (Item Friendly)"
//#define DM_STRIPDIGEST "Strip Digest (Items Only)"
//#define DM_DIGEST_NUMB "Digest (Numbing)"
-//TF modes
-#define DM_TRANSFORM_HAIR_AND_EYES "Transform (Hair and eyes)"
-#define DM_TRANSFORM_MALE "Transform (Male)"
-#define DM_TRANSFORM_FEMALE "Transform (Female)"
-#define DM_TRANSFORM_KEEP_GENDER "Transform (Keep Gender)"
-#define DM_TRANSFORM_REPLICA "Transform (Replica Of Self)"
-#define DM_TRANSFORM_CHANGE_SPECIES_AND_TAUR "Transform (Change Species and Taur)"
-#define DM_TRANSFORM_CHANGE_SPECIES_AND_TAUR_EGG "Transform (Change Species and Taur) (EGG)"
-#define DM_TRANSFORM_REPLICA_EGG "Transform (Replica Of Self) (EGG)"
-#define DM_TRANSFORM_KEEP_GENDER_EGG "Transform (Keep Gender) (EGG)"
-#define DM_TRANSFORM_MALE_EGG "Transform (Male) (EGG)"
-#define DM_TRANSFORM_FEMALE_EGG "Transform (Female) (EGG)"
-
//Addon mode flags
#define DM_FLAG_NUMBING 0x1
#define DM_FLAG_STRIPPING 0x2
#define DM_FLAG_LEAVEREMAINS 0x4
#define DM_FLAG_THICKBELLY 0x8
+#define DM_FLAG_AFFECTWORN 0x10
//Item related modes
#define IM_HOLD "Hold"
diff --git a/code/__defines/misc.dm b/code/__defines/misc.dm
index 3e86c138560..a7b3bd86f8f 100644
--- a/code/__defines/misc.dm
+++ b/code/__defines/misc.dm
@@ -157,6 +157,8 @@
#define MAT_GRAPHITE "graphite"
#define MAT_LEATHER "leather"
#define MAT_CHITIN "chitin"
+#define MAT_CLOTH "cloth"
+#define MAT_SYNCLOTH "syncloth"
#define SHARD_SHARD "shard"
#define SHARD_SHRAPNEL "shrapnel"
@@ -480,4 +482,15 @@ GLOBAL_LIST_INIT(all_volume_channels, list(
VOLUME_CHANNEL_ALARMS,
VOLUME_CHANNEL_VORE,
VOLUME_CHANNEL_DOORS,
-))
\ No newline at end of file
+))
+
+#define APPEARANCECHANGER_CHANGED_RACE "Race"
+#define APPEARANCECHANGER_CHANGED_GENDER "Gender"
+#define APPEARANCECHANGER_CHANGED_GENDER_ID "Gender Identity"
+#define APPEARANCECHANGER_CHANGED_SKINTONE "Skin Tone"
+#define APPEARANCECHANGER_CHANGED_SKINCOLOR "Skin Color"
+#define APPEARANCECHANGER_CHANGED_HAIRSTYLE "Hair Style"
+#define APPEARANCECHANGER_CHANGED_HAIRCOLOR "Hair Color"
+#define APPEARANCECHANGER_CHANGED_F_HAIRSTYLE "Facial Hair Style"
+#define APPEARANCECHANGER_CHANGED_F_HAIRCOLOR "Facial Hair Color"
+#define APPEARANCECHANGER_CHANGED_EYES "Eye Color"
diff --git a/code/__defines/mobs.dm b/code/__defines/mobs.dm
index ca0e186ac90..d166b52fbe1 100644
--- a/code/__defines/mobs.dm
+++ b/code/__defines/mobs.dm
@@ -26,7 +26,7 @@
#define BORGMESON 0x1
#define BORGTHERM 0x2
#define BORGXRAY 0x4
-#define BORGMATERIAL 8
+#define BORGMATERIAL 0x8
#define STANCE_ATTACK 11 // Backwards compatability
#define STANCE_ATTACKING 12 // Ditto
diff --git a/code/__defines/species_languages.dm b/code/__defines/species_languages.dm
index 34c68ebd089..f6ca0ea5655 100644
--- a/code/__defines/species_languages.dm
+++ b/code/__defines/species_languages.dm
@@ -68,7 +68,7 @@
#define LANGUAGE_ALAI "Alai"
#define LANGUAGE_ZADDAT "Vedahq"
#define LANGUAGE_PROMETHEAN "Promethean Biolinguistics"
-#define LANGUAGE_BLOB "Blob"
+#define LANGUAGE_BLOB "Chemosense Transmission"
#define LANGUAGE_GIBBERISH "Babel"
// Language flags.
diff --git a/code/_away_mission_tests.dm b/code/_away_mission_tests.dm
index 75286fb34e4..4d9d4e91f9f 100644
--- a/code/_away_mission_tests.dm
+++ b/code/_away_mission_tests.dm
@@ -1,7 +1,7 @@
/*
*
- * This file is used by Travis to indicate that additional maps need to be compiled to look for errors such as missing paths.
- * Do not add anything but the AWAY_MISSION_TEST definition here as it will be overwritten by Travis when running tests.
+ * This file is used by CI to indicate that additional maps need to be compiled to look for errors such as missing paths.
+ * Do not add anything but the AWAY_MISSION_TEST definition here as it will be overwritten by CI when running tests.
*
*
* Should you wish to edit set AWAY_MISSION_TEST to 1 like so:
diff --git a/code/_helpers/global_lists.dm b/code/_helpers/global_lists.dm
index 371f35b0515..855decff39a 100644
--- a/code/_helpers/global_lists.dm
+++ b/code/_helpers/global_lists.dm
@@ -215,7 +215,7 @@ var/global/list/string_slot_flags = list(
GLOB.closet_appearances[T] = app
// VOREStation Add - Vore Modes!
- paths = typesof(/datum/digest_mode) - /datum/digest_mode/transform
+ paths = typesof(/datum/digest_mode)
for(var/T in paths)
var/datum/digest_mode/DM = new T
GLOB.digest_modes[DM.id] = DM
diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm
index b2dfae05444..7a49e8b3875 100644
--- a/code/_helpers/global_lists_vr.dm
+++ b/code/_helpers/global_lists_vr.dm
@@ -3,13 +3,16 @@
*/
var/global/list/ear_styles_list = list() // Stores /datum/sprite_accessory/ears indexed by type
+var/global/list/hair_accesories_list= list()// Stores /datum/sprite_accessory/hair_accessory indexed by type
var/global/list/tail_styles_list = list() // Stores /datum/sprite_accessory/tail indexed by type
var/global/list/wing_styles_list = list() // Stores /datum/sprite_accessory/wing indexed by type
var/global/list/negative_traits = list() // Negative custom species traits, indexed by path
var/global/list/neutral_traits = list() // Neutral custom species traits, indexed by path
+var/global/list/everyone_traits = list() // Neutral traits available to all species, indexed by path
var/global/list/positive_traits = list() // Positive custom species traits, indexed by path
var/global/list/traits_costs = list() // Just path = cost list, saves time in char setup
var/global/list/all_traits = list() // All of 'em at once (same instances)
+var/global/list/active_ghost_pods = list()
var/global/list/sensorpreflist = list("Off", "Binary", "Vitals", "Tracking", "No Preference") //TFF 5/8/19 - Suit Sensors global list
@@ -105,30 +108,66 @@ var/global/list/fancy_release_sounds = list(
)
var/global/list/global_vore_egg_types = list(
- "Unathi" = UNATHI_EGG,
- "Tajaran" = TAJARAN_EGG,
- "Akula" = AKULA_EGG,
- "Skrell" = SKRELL_EGG,
- "Nevrean" = NEVREAN_EGG,
- "Sergal" = SERGAL_EGG,
- "Human" = HUMAN_EGG,
- "Slime" = SLIME_EGG,
- "Egg" = EGG_EGG,
- "Xenochimera" = XENOCHIMERA_EGG,
- "Xenomorph" = XENOMORPH_EGG)
+ "Unathi",
+ "Tajara",
+ "Akula",
+ "Skrell",
+ "Sergal",
+ "Nevrean",
+ "Human",
+ "Slime",
+ "Egg",
+ "Xenochimera",
+ "Xenomorph",
+ "Chocolate",
+ "Boney",
+ "Slime glob",
+ "Chicken",
+ "Synthetic",
+ "Cooking error",
+ "Escape pod",
+ "Web cocoon",
+ "Bug cocoon",
+ "Rock",
+ "Yellow",
+ "Blue",
+ "Green",
+ "Orange",
+ "Purple",
+ "Red",
+ "Rainbow",
+ "Spotted pink")
var/global/list/tf_vore_egg_types = list(
- "Unathi" = /obj/structure/closet/secure_closet/egg/unathi,
- "Tajara" = /obj/structure/closet/secure_closet/egg/tajaran,
- "Akula" = /obj/structure/closet/secure_closet/egg/shark,
- "Skrell" = /obj/structure/closet/secure_closet/egg/skrell,
- "Sergal" = /obj/structure/closet/secure_closet/egg/sergal,
- "Nevrean" = /obj/structure/closet/secure_closet/egg/nevrean,
- "Human" = /obj/structure/closet/secure_closet/egg/human,
- "Slime" = /obj/structure/closet/secure_closet/egg/slime,
- "Egg" = /obj/structure/closet/secure_closet/egg,
- "Xenochimera" = /obj/structure/closet/secure_closet/egg/scree,
- "Xenomorph" = /obj/structure/closet/secure_closet/egg/xenomorph)
+ "Unathi" = /obj/item/weapon/storage/vore_egg/unathi,
+ "Tajara" = /obj/item/weapon/storage/vore_egg/tajaran,
+ "Akula" = /obj/item/weapon/storage/vore_egg/shark,
+ "Skrell" = /obj/item/weapon/storage/vore_egg/skrell,
+ "Sergal" = /obj/item/weapon/storage/vore_egg/sergal,
+ "Nevrean" = /obj/item/weapon/storage/vore_egg/nevrean,
+ "Human" = /obj/item/weapon/storage/vore_egg/human,
+ "Slime" = /obj/item/weapon/storage/vore_egg/slime,
+ "Egg" = /obj/item/weapon/storage/vore_egg,
+ "Xenochimera" = /obj/item/weapon/storage/vore_egg/scree,
+ "Xenomorph" = /obj/item/weapon/storage/vore_egg/xenomorph,
+ "Chocolate" = /obj/item/weapon/storage/vore_egg/chocolate,
+ "Boney" = /obj/item/weapon/storage/vore_egg/owlpellet,
+ "Slime glob" = /obj/item/weapon/storage/vore_egg/slimeglob,
+ "Chicken" = /obj/item/weapon/storage/vore_egg/chicken,
+ "Synthetic" = /obj/item/weapon/storage/vore_egg/synthetic,
+ "Cooking error" = /obj/item/weapon/storage/vore_egg/badrecipe,
+ "Escape pod" = /obj/item/weapon/storage/vore_egg/escapepod,
+ "Web cocoon" = /obj/item/weapon/storage/vore_egg/cocoon,
+ "Bug cocoon" = /obj/item/weapon/storage/vore_egg/bugcocoon,
+ "Rock" = /obj/item/weapon/storage/vore_egg/rock,
+ "Yellow" = /obj/item/weapon/storage/vore_egg/yellow,
+ "Blue" = /obj/item/weapon/storage/vore_egg/blue,
+ "Green" = /obj/item/weapon/storage/vore_egg/green,
+ "Orange" = /obj/item/weapon/storage/vore_egg/orange,
+ "Purple" = /obj/item/weapon/storage/vore_egg/purple,
+ "Red" = /obj/item/weapon/storage/vore_egg/red,
+ "Rainbow" = /obj/item/weapon/storage/vore_egg/rainbow,
+ "Spotted pink" = /obj/item/weapon/storage/vore_egg/pinkspots)
var/global/list/edible_trash = list(/obj/item/broken_device,
/obj/item/clothing/accessory/collar, //TFF 10/7/19 - add option to nom collars,
@@ -179,7 +218,8 @@ var/global/list/edible_trash = list(/obj/item/broken_device,
/obj/item/weapon/storage/fancy/cigarettes,
/obj/item/weapon/storage/fancy/crayons,
/obj/item/weapon/storage/fancy/egg_box,
- /obj/item/weapon/storage/wallet)
+ /obj/item/weapon/storage/wallet,
+ /obj/item/weapon/storage/vore_egg)
var/global/list/contamination_flavors = list(
"Generic" = contamination_flavors_generic,
@@ -451,6 +491,12 @@ var/global/list/remainless_species = list(SPECIES_PROMETHEAN,
var/datum/sprite_accessory/wing/instance = new path()
wing_styles_list[path] = instance
+ // Custom Hair Accessories
+ paths = typesof(/datum/sprite_accessory/hair_accessory) - /datum/sprite_accessory/hair_accessory
+ for(var/path in paths)
+ var/datum/sprite_accessory/hair_accessory/instance = new path()
+ hair_accesories_list[path] = instance
+
// Custom species traits
paths = typesof(/datum/trait) - /datum/trait
for(var/path in paths)
@@ -465,6 +511,8 @@ var/global/list/remainless_species = list(SPECIES_PROMETHEAN,
negative_traits[path] = instance
if(0)
neutral_traits[path] = instance
+ if(!(instance.custom_only))
+ everyone_traits[path] = instance
if(0.1 to INFINITY)
positive_traits[path] = instance
diff --git a/code/_helpers/text.dm b/code/_helpers/text.dm
index a9aac1ffcf5..2d59fa6b6a8 100644
--- a/code/_helpers/text.dm
+++ b/code/_helpers/text.dm
@@ -55,7 +55,7 @@
input = replace_characters(input, list("\n"=" ","\t"=" "))
if(encode)
- // The below \ escapes have a space inserted to attempt to enable Travis auto-checking of span class usage. Please do not remove the space.
+ // The below \ escapes have a space inserted to attempt to enable CI auto-checking of span class usage. Please do not remove the space.
//In addition to processing html, html_encode removes byond formatting codes like "\ red", "\ i" and other.
//It is important to avoid double-encode text, it can "break" quotes and some other characters.
//Also, keep in mind that escaped characters don't work in the interface (window titles, lower left corner of the main window, etc.)
diff --git a/code/_helpers/unsorted.dm b/code/_helpers/unsorted.dm
index 00ad3a0a584..c759e84c02d 100644
--- a/code/_helpers/unsorted.dm
+++ b/code/_helpers/unsorted.dm
@@ -1178,12 +1178,19 @@ proc/is_hot(obj/item/W as obj)
// check if mob is lying down on something we can operate him on.
// The RNG with table/rollerbeds comes into play in do_surgery() so that fail_step() can be used instead.
-/proc/can_operate(mob/living/carbon/M)
- return M.lying
+/proc/can_operate(mob/living/carbon/M, mob/living/user)
+ . = M.lying
+
+ if(user && M == user && user.allow_self_surgery && user.a_intent == I_HELP) // You can, technically, always operate on yourself after standing still. Inadvised, but you can.
+
+ if(!M.isSynthetic())
+ . = TRUE
+
+ return .
// Returns an instance of a valid surgery surface.
-/mob/living/proc/get_surgery_surface()
- if(!lying)
+/mob/living/proc/get_surgery_surface(mob/living/user)
+ if(!lying && user != src)
return null // Not lying down means no surface.
var/obj/surface = null
for(var/obj/O in loc) // Looks for the best surface.
@@ -1283,6 +1290,9 @@ var/mob/dview/dview_mob = new
/proc/dview(var/range = world.view, var/center, var/invis_flags = 0)
if(!center)
return
+ if(!dview_mob) //VOREStation Add: Debugging
+ dview_mob = new
+ log_error("Had to recreate the dview mob!")
dview_mob.loc = center
diff --git a/code/_map_tests.dm b/code/_map_tests.dm
index 90a4004b792..372a4a7194d 100644
--- a/code/_map_tests.dm
+++ b/code/_map_tests.dm
@@ -1,7 +1,7 @@
/*
*
- * This file is used by Travis to indicate that additional maps need to be compiled to look for errors such as missing paths.
- * Do not add anything but the MAP_TEST definition here as it will be overwritten by Travis when running tests.
+ * This file is used by CI to indicate that additional maps need to be compiled to look for errors such as missing paths.
+ * Do not add anything but the MAP_TEST definition here as it will be overwritten by CI when running tests.
*
*
* Should you wish to edit set MAP_TEST to 1 like so:
diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm
index 6a4579f1919..b29a1192d9b 100644
--- a/code/_onclick/click.dm
+++ b/code/_onclick/click.dm
@@ -354,19 +354,13 @@
facedir(direction)
/obj/screen/click_catcher
+ name = "Darkness"
icon = 'icons/mob/screen_gen.dmi'
icon_state = "click_catcher"
plane = CLICKCATCHER_PLANE
+ layer = LAYER_HUD_UNDER
mouse_opacity = 2
- screen_loc = "CENTER-7,CENTER-7"
-
-/obj/screen/click_catcher/proc/MakeGreed()
- . = list()
- for(var/i = 0, i<15, i++)
- for(var/j = 0, j<15, j++)
- var/obj/screen/click_catcher/CC = new()
- CC.screen_loc = "NORTH-[i],EAST-[j]"
- . += CC
+ screen_loc = "SOUTHWEST to NORTHEAST"
/obj/screen/click_catcher/Click(location, control, params)
var/list/modifiers = params2list(params)
@@ -374,7 +368,8 @@
var/mob/living/carbon/C = usr
C.swap_hand()
else
- var/turf/T = screen_loc2turf(screen_loc, get_turf(usr))
+ var/list/P = params2list(params)
+ var/turf/T = screen_loc2turf(P["screen-loc"], get_turf(usr))
if(T)
T.Click(location, control, params)
. = 1
diff --git a/code/_onclick/hud/_defines_vr.dm b/code/_onclick/hud/_defines_vr.dm
index 2b4f4fb85e2..b419c6bd7f8 100644
--- a/code/_onclick/hud/_defines_vr.dm
+++ b/code/_onclick/hud/_defines_vr.dm
@@ -1,3 +1,2 @@
-#define ui_shadekin_dark_display "EAST-1:28,CENTER-3:15"
-#define ui_shadekin_energy_display "EAST-1:28,CENTER-4:15"
+#define ui_shadekin_display "EAST-1:28,CENTER-3:15"
#define ui_xenochimera_danger_display "EAST-1:28,CENTER-3:15"
\ No newline at end of file
diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm
index 6387f40d9ec..22e8e459fc5 100644
--- a/code/_onclick/hud/human.dm
+++ b/code/_onclick/hud/human.dm
@@ -14,7 +14,7 @@
var/other = list()
var/hotkeybuttons = list()
var/slot_info = list()
-
+
HUD.adding = adding
HUD.other = other
HUD.hotkeybuttons = hotkeybuttons //These can be disabled for hotkey users
@@ -258,15 +258,10 @@
hud_elements |= healths
//VOREStation Addition begin
- shadekin_dark_display = new /obj/screen/shadekin/darkness()
- shadekin_dark_display.screen_loc = ui_shadekin_dark_display
- shadekin_dark_display.icon_state = "dark"
- hud_elements |= shadekin_dark_display
-
- shadekin_energy_display = new /obj/screen/shadekin/energy()
- shadekin_energy_display.screen_loc = ui_shadekin_energy_display
- shadekin_energy_display.icon_state = "energy0"
- hud_elements |= shadekin_energy_display
+ shadekin_display = new /obj/screen/shadekin()
+ shadekin_display.screen_loc = ui_shadekin_display
+ shadekin_display.icon_state = "shadekin"
+ hud_elements |= shadekin_display
xenochimera_danger_display = new /obj/screen/xenochimera/danger_level()
xenochimera_danger_display.screen_loc = ui_xenochimera_danger_display
diff --git a/code/_onclick/hud/screen_objects_vr.dm b/code/_onclick/hud/screen_objects_vr.dm
index b3388f7bf76..1d8df98a38b 100644
--- a/code/_onclick/hud/screen_objects_vr.dm
+++ b/code/_onclick/hud/screen_objects_vr.dm
@@ -11,6 +11,11 @@
var/mob/living/simple_mob/shadekin/SK = usr
if(istype(SK))
to_chat(usr,"Energy: [SK.energy] ([SK.dark_gains]) ")
+ if("shadekin status")
+ var/turf/T = get_turf(usr)
+ if(T)
+ var/darkness = round(1 - T.get_lumcount(),0.1)
+ to_chat(usr,"Darkness: [darkness] ")
var/mob/living/carbon/human/H = usr
if(istype(H) && istype(H.species, /datum/species/shadekin))
to_chat(usr,"Energy: [H.shadekin_get_energy(H)] ")
diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm
index ddfe6205705..bb31527126b 100644
--- a/code/_onclick/item_attack.dm
+++ b/code/_onclick/item_attack.dm
@@ -49,7 +49,7 @@ avoid code duplication. This includes items that may sometimes act as a standard
/mob/living/attackby(obj/item/I, mob/user, var/attack_modifier, var/click_parameters)
if(!ismob(user))
return 0
- if(can_operate(src) && I.do_surgery(src,user))
+ if(can_operate(src, user) && I.do_surgery(src,user))
return 1
if(attempt_vr(src,"vore_attackby",args)) return //VOREStation Add - The vore, of course.
return I.attack(src, user, user.zone_sel.selecting, attack_modifier)
diff --git a/code/_unit_tests.dm b/code/_unit_tests.dm
index 88eebd5aec1..7a1a4cbbf38 100644
--- a/code/_unit_tests.dm
+++ b/code/_unit_tests.dm
@@ -1,7 +1,7 @@
/*
*
- * This file is used by Travis to indicate that Unit Tests are to be ran.
- * Do not add anything but the UNIT_TEST definition here as it will be overwritten by Travis when running tests.
+ * This file is used by CI to indicate that Unit Tests are to be ran.
+ * Do not add anything but the UNIT_TEST definition here as it will be overwritten by CI when running tests.
*
*
* Should you wish to edit set UNIT_TEST to 1 like so:
diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm
index 2b7aa15bbc0..67d14623cf6 100644
--- a/code/controllers/configuration.dm
+++ b/code/controllers/configuration.dm
@@ -496,7 +496,7 @@ var/list/gamemode_cache = list()
config.respawn_time = raw_minutes MINUTES
if ("respawn_message")
- config.respawn_message = value
+ config.respawn_message = "[value] "
if ("servername")
config.server_name = value
diff --git a/code/controllers/subsystems/air.dm b/code/controllers/subsystems/air.dm
index 40d2cc3133a..8ef34e164fe 100644
--- a/code/controllers/subsystems/air.dm
+++ b/code/controllers/subsystems/air.dm
@@ -27,7 +27,7 @@ SUBSYSTEM_DEF(air)
// Updating zone tiles requires temporary storage location of self-zone-blocked turfs across resumes. Used only by process_tiles_to_update.
var/list/selfblock_deferred = null
- // This is used to tell Travis WHERE the edges are.
+ // This is used to tell CI WHERE the edges are.
var/list/startup_active_edge_log = list()
/datum/controller/subsystem/air/PreInit()
diff --git a/code/datums/autolathe/devices.dm b/code/datums/autolathe/devices.dm
index 9c6ab5bb97e..eed4839159c 100644
--- a/code/datums/autolathe/devices.dm
+++ b/code/datums/autolathe/devices.dm
@@ -26,6 +26,12 @@
name = "mechanical trap"
path =/obj/item/weapon/beartrap
+/datum/category_item/autolathe/devices/barbedwire
+ name = "barbed wire"
+ path = /obj/item/weapon/material/barbedwire
+ hidden = 1
+ resources = list(DEFAULT_WALL_MATERIAL = 10000)
+
/datum/category_item/autolathe/devices/electropack
name = "electropack"
path =/obj/item/device/radio/electropack
diff --git a/code/datums/autolathe/tools.dm b/code/datums/autolathe/tools.dm
index 9e9a87ea71f..9b88a496fa9 100644
--- a/code/datums/autolathe/tools.dm
+++ b/code/datums/autolathe/tools.dm
@@ -48,6 +48,11 @@
path = /obj/item/weapon/reagent_containers/spray
resources = list(MAT_PLASTIC = 2000)
+/datum/category_item/autolathe/devices/slowwire
+ name = "snare wire"
+ path = /obj/item/weapon/material/barbedwire/plastic
+ resources = list(MAT_PLASTIC = 10000)
+
/datum/category_item/autolathe/tools/spraynozzle
name = "spray nozzle"
path = /obj/item/weapon/reagent_containers/spray
diff --git a/code/datums/observation/~cleanup.dm b/code/datums/observation/~cleanup.dm
index 825902d4839..9dcc601436a 100644
--- a/code/datums/observation/~cleanup.dm
+++ b/code/datums/observation/~cleanup.dm
@@ -43,7 +43,7 @@ GLOBAL_LIST_EMPTY(event_listen_count)
for(var/entry in GLOB.all_observable_events.events)
var/decl/observ/event = entry
if(event.unregister_global(listener))
- log_debug("[event] - [listener] was deleted while still registered to global events.")
+ // log_debug("[event] - [listener] was deleted while still registered to global events.") // TODO: Apply axe, reimplement with datum component listeners
if(!(--listen_count))
return
@@ -55,7 +55,7 @@ GLOBAL_LIST_EMPTY(event_listen_count)
if(proc_owners)
for(var/proc_owner in proc_owners)
if(event.unregister(event_source, proc_owner))
- log_debug("[event] - [event_source] was deleted while still being listened to by [proc_owner].")
+ // log_debug("[event] - [event_source] was deleted while still being listened to by [proc_owner].") // TODO: Apply axe, reimplement with datum component listeners
if(!(--source_listener_count))
return
@@ -65,6 +65,6 @@ GLOBAL_LIST_EMPTY(event_listen_count)
var/decl/observ/event = entry
for(var/event_source in event.event_sources)
if(event.unregister(event_source, listener))
- log_debug("[event] - [listener] was deleted while still listening to [event_source].")
+ // log_debug("[event] - [listener] was deleted while still listening to [event_source].") // TODO: Apply axe, reimplement with datum component listeners
if(!(--listener_count))
return
\ No newline at end of file
diff --git a/code/datums/outfits/jobs/special_vr.dm b/code/datums/outfits/jobs/special_vr.dm
index dd8316358b6..010010291dd 100644
--- a/code/datums/outfits/jobs/special_vr.dm
+++ b/code/datums/outfits/jobs/special_vr.dm
@@ -9,6 +9,21 @@
id_type = /obj/item/weapon/card/id/centcom
pda_type = /obj/item/device/pda/centcom
+/decl/hierarchy/outfit/job/emergency_responder
+ name = OUTFIT_JOB_NAME("Emergency Responder")
+ uniform = /obj/item/clothing/under/ert
+ shoes = /obj/item/clothing/shoes/boots/swat
+ gloves = /obj/item/clothing/gloves/swat
+ l_ear = /obj/item/device/radio/headset/ert
+ glasses = /obj/item/clothing/glasses/sunglasses
+ back = /obj/item/weapon/storage/backpack/satchel
+ id_type = /obj/item/weapon/card/id/centcom/ERT
+ pda_type = /obj/item/device/pda/centcom
+
+ post_equip(var/mob/living/carbon/human/H)
+ ..()
+ ert.add_antagonist(H.mind)
+
/decl/hierarchy/outfit/job/clown
name = OUTFIT_JOB_NAME("Clown")
uniform = /obj/item/clothing/under/rank/clown
diff --git a/code/datums/supplypacks/costumes_vr.dm b/code/datums/supplypacks/costumes_vr.dm
index 995e935648b..e31fb2415a4 100644
--- a/code/datums/supplypacks/costumes_vr.dm
+++ b/code/datums/supplypacks/costumes_vr.dm
@@ -21,14 +21,20 @@
/datum/supply_pack/costumes/tesh_smocks_vr
name = "Teshari smocks"
+ num_contained = 4
contains = list(
/obj/item/clothing/under/seromi/smock,
- /obj/item/clothing/under/seromi/smock/rainbow,
- /obj/item/clothing/under/seromi/smock/red,
/obj/item/clothing/under/seromi/smock/white,
- /obj/item/clothing/under/seromi/smock/yellow
+ /obj/item/clothing/under/seromi/smock/red,
+ /obj/item/clothing/under/seromi/smock/yellow,
+ /obj/item/clothing/under/seromi/smock/rainbow,
+ /obj/item/clothing/under/seromi/smock/dress,
+ /obj/item/clothing/under/seromi/smock/blackutilitysmock,
+ /obj/item/clothing/under/seromi/smock/greydress,
+ /obj/item/clothing/under/seromi/smock/blackutility,
+ /obj/item/clothing/under/seromi/smock/bluegreydress
)
- cost = 25
+ cost = 20
containertype = /obj/structure/closet/crate
containername = "Teshari smocks crate"
@@ -36,18 +42,18 @@
name = "Teshari undercoats"
num_contained = 4
contains = list(
- /obj/item/clothing/under/seromi/undercoat/standard/blue_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/brown_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/green_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/lightgrey_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/orange,
/obj/item/clothing/under/seromi/undercoat/standard/orange_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/pink_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/purple_grey,
/obj/item/clothing/under/seromi/undercoat/standard/rainbow,
- /obj/item/clothing/under/seromi/undercoat/standard/red_grey,
+ /obj/item/clothing/under/seromi/undercoat/standard/lightgrey_grey,
/obj/item/clothing/under/seromi/undercoat/standard/white_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/yellow_grey
+ /obj/item/clothing/under/seromi/undercoat/standard/red_grey,
+ /obj/item/clothing/under/seromi/undercoat/standard/orange,
+ /obj/item/clothing/under/seromi/undercoat/standard/yellow_grey,
+ /obj/item/clothing/under/seromi/undercoat/standard/green_grey,
+ /obj/item/clothing/under/seromi/undercoat/standard/blue_grey,
+ /obj/item/clothing/under/seromi/undercoat/standard/purple_grey,
+ /obj/item/clothing/under/seromi/undercoat/standard/pink_grey,
+ /obj/item/clothing/under/seromi/undercoat/standard/brown_grey
)
cost = 20
containertype = /obj/structure/closet/crate
@@ -57,19 +63,18 @@
name = "Teshari undercoats (black)"
num_contained = 4
contains = list(
- /obj/item/clothing/under/seromi/undercoat/standard/black,
- /obj/item/clothing/under/seromi/undercoat/standard/black_blue,
- /obj/item/clothing/under/seromi/undercoat/standard/black_brown,
- /obj/item/clothing/under/seromi/undercoat/standard/black_green,
- /obj/item/clothing/under/seromi/undercoat/standard/black_grey,
- /obj/item/clothing/under/seromi/undercoat/standard/black_lightgrey,
- /obj/item/clothing/under/seromi/undercoat/standard/black_midgrey,
+ /obj/item/clothing/under/seromi/undercoat,
/obj/item/clothing/under/seromi/undercoat/standard/black_orange,
- /obj/item/clothing/under/seromi/undercoat/standard/black_pink,
- /obj/item/clothing/under/seromi/undercoat/standard/black_purple,
- /obj/item/clothing/under/seromi/undercoat/standard/black_red,
+ /obj/item/clothing/under/seromi/undercoat/standard/black_grey,
/obj/item/clothing/under/seromi/undercoat/standard/black_white,
- /obj/item/clothing/under/seromi/undercoat/standard/black_yellow
+ /obj/item/clothing/under/seromi/undercoat/standard/black_red,
+ /obj/item/clothing/under/seromi/undercoat/standard/black,
+ /obj/item/clothing/under/seromi/undercoat/standard/black_yellow,
+ /obj/item/clothing/under/seromi/undercoat/standard/black_green,
+ /obj/item/clothing/under/seromi/undercoat/standard/black_blue,
+ /obj/item/clothing/under/seromi/undercoat/standard/black_purple,
+ /obj/item/clothing/under/seromi/undercoat/standard/black_pink,
+ /obj/item/clothing/under/seromi/undercoat/standard/black_brown
)
cost = 20
containertype = /obj/structure/closet/crate
@@ -79,18 +84,18 @@
name = "Teshari cloaks"
num_contained = 4
contains = list(
- /obj/item/clothing/suit/storage/seromi/cloak/standard/blue_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/brown_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/green_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/lightgrey_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/orange,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/orange_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/pink_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/purple_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/rainbow,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/red_grey,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/white,
/obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/yellow_grey
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/red_grey,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/orange_grey,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/yellow_grey,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/green_grey,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/blue_grey,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/purple_grey,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/pink_grey,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/brown_grey,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/rainbow,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/orange
)
cost = 40
containertype = /obj/structure/closet/crate
@@ -100,19 +105,125 @@
name = "Teshari cloaks (black)"
num_contained = 4
contains = list(
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_blue,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_brown,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_green,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_grey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_lightgrey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_midgrey,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_orange,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_pink,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_purple,
+ /obj/item/clothing/suit/storage/seromi/cloak,
/obj/item/clothing/suit/storage/seromi/cloak/standard/black_red,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/black_orange,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/black_yellow,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/black_green,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/black_blue,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/black_purple,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/black_pink,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/black_brown,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/black_grey,
/obj/item/clothing/suit/storage/seromi/cloak/standard/black_white,
- /obj/item/clothing/suit/storage/seromi/cloak/standard/black_yellow
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/black_glow,
+ /obj/item/clothing/suit/storage/seromi/cloak/standard/dark_retrowave
+ )
+ cost = 40
+ containertype = /obj/structure/closet/crate
+ containername = "Teshari cloaks crate"
+
+/datum/supply_pack/costumes/tesh_worksuits_vr
+ name = "Teshari worksuits"
+ num_contained = 4
+ contains = list(
+ /obj/item/clothing/under/seromi/undercoat/standard/worksuit,
+ /obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackpurple,
+ /obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackorange,
+ /obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackblue,
+ /obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackgreen,
+ /obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitered,
+ /obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitepurple,
+ /obj/item/clothing/under/seromi/undercoat/standard/worksuit/whiteorange,
+ /obj/item/clothing/under/seromi/undercoat/standard/worksuit/whiteblue,
+ /obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitegreen
+ )
+ cost = 20
+ containertype = /obj/structure/closet/crate
+ containername = "Teshari worksuits crate"
+
+/datum/supply_pack/randomised/costumes/tesh_beltcloaks_vr
+ name = "Teshari cloaks (belted)"
+ num_contained = 4
+ contains = list(
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/orange_grey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/rainbow,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/lightgrey_grey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/white_grey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/red_grey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/orange,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/yellow_grey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/green_grey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/blue_grey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/purple_grey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/pink_grey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/brown_grey
+ )
+ cost = 40
+ containertype = /obj/structure/closet/crate
+ containername = "Teshari cloaks crate"
+
+/datum/supply_pack/randomised/costumes/tesh_beltcloaks_b_vr
+ name = "Teshari cloaks (belted, black)"
+ num_contained = 4
+ contains = list(
+ /obj/item/clothing/suit/storage/seromi/beltcloak,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_orange,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_grey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_midgrey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_lightgrey,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_white,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_red,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_yellow,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_green,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_blue,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_purple,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_pink,
+ /obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_brown
+ )
+ cost = 40
+ containertype = /obj/structure/closet/crate
+ containername = "Teshari cloaks crate"
+
+/datum/supply_pack/randomised/costumes/tesh_hoodcloaks_vr
+ name = "Teshari cloaks (hooded)"
+ num_contained = 4
+ contains = list(
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/orange_grey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/lightgrey_grey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/white_grey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/red_grey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/orange,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/yellow_grey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/green_grey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/blue_grey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/purple_grey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/pink_grey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/brown_grey
+ )
+ cost = 40
+ containertype = /obj/structure/closet/crate
+ containername = "Teshari cloaks crate"
+
+/datum/supply_pack/randomised/costumes/tesh_hoodcloaks_b_vr
+ name = "Teshari cloaks (hooded, black)"
+ num_contained = 4
+ contains = list(
+ /obj/item/clothing/suit/storage/hooded/teshari,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_orange,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_grey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_midgrey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_lightgrey,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_white,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_red,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_yellow,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_green,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_blue,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_purple,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_pink,
+ /obj/item/clothing/suit/storage/hooded/teshari/standard/black_brown
)
cost = 40
containertype = /obj/structure/closet/crate
@@ -262,7 +373,7 @@
cost = 60
containertype = /obj/structure/closet/crate
containername = "Saddlebags crate"
-
+
/datum/supply_pack/costumes/knights_gear
name = "Knights Gear"
contains = list(
diff --git a/code/datums/supplypacks/misc.dm b/code/datums/supplypacks/misc.dm
index 0aa29b7b9c9..ed528d3bdd0 100644
--- a/code/datums/supplypacks/misc.dm
+++ b/code/datums/supplypacks/misc.dm
@@ -84,7 +84,8 @@
/obj/item/toy/plushie/borgplushie/scrubpuppy,
/obj/item/toy/plushie/foxbear,
/obj/item/toy/plushie/nukeplushie,
- /obj/item/toy/plushie/otter)
+ /obj/item/toy/plushie/otter,
+ /obj/item/toy/plushie/vox)
//VOREStation Add End
name = "Plushies Crate"
cost = 15
diff --git a/code/datums/supplypacks/munitions_vr.dm b/code/datums/supplypacks/munitions_vr.dm
index e8674dd390c..75f2124c962 100644
--- a/code/datums/supplypacks/munitions_vr.dm
+++ b/code/datums/supplypacks/munitions_vr.dm
@@ -2,7 +2,7 @@
name = "Frontier phaser (station-locked) crate"
contains = list(
/obj/item/weapon/gun/energy/locked/frontier = 2,
- /obj/item/weapon/gun/energy/locked/frontier/holdout = 1,
+ /obj/item/weapon/gun/energy/locked/frontier/holdout = 2,
)
cost = 35
containertype = /obj/structure/closet/crate/secure
diff --git a/code/datums/uplink/ammunition_vr.dm b/code/datums/uplink/ammunition_vr.dm
index 3235bb7311f..18235e53432 100644
--- a/code/datums/uplink/ammunition_vr.dm
+++ b/code/datums/uplink/ammunition_vr.dm
@@ -18,3 +18,5 @@
name = "Void cell"
path = /obj/item/weapon/cell/device/weapon/recharge/alien/hybrid
item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 1.5
+ antag_roles = list("ert")
+ blacklisted = 1
diff --git a/code/datums/uplink/backup.dm b/code/datums/uplink/backup.dm
index 40f2a468f67..3e21676da3b 100644
--- a/code/datums/uplink/backup.dm
+++ b/code/datums/uplink/backup.dm
@@ -11,7 +11,7 @@
This type comes with a directional shield projector, a supressive fire energy weapon, \
a stunbaton, handcuffs, an agent ID, energy sword, pinpointer, and a jetpack."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 1.5
- antag_roles = list("mercenary")
+ antag_roles = list("mercenary", "ert") //VOREStation Edit
path = /obj/item/weapon/antag_spawner/syndicate_drone/protector
/datum/uplink_item/item/backup/syndicate_drone_combat_medic
@@ -21,7 +21,7 @@
a powerful hypospray that can create many potent chemicals, an agent ID, energy \
sword, pinpointer, and a jetpack."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 1.5
- antag_roles = list("mercenary")
+ antag_roles = list("mercenary", "ert") //VOREStation Edit
path = /obj/item/weapon/antag_spawner/syndicate_drone/combat_medic
/datum/uplink_item/item/backup/syndicate_drone_mechanist
@@ -31,5 +31,5 @@
a cryptographic sequencer, an AI detector, the ability to analyze and repair full-body prosthetics, \
a set of construction materials, an ionic rapier, an agent ID, energy sword, pinpointer, and a jetpack."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 1.5
- antag_roles = list("mercenary")
+ antag_roles = list("mercenary", "ert") //VOREStation Edit
path = /obj/item/weapon/antag_spawner/syndicate_drone/mechanist
\ No newline at end of file
diff --git a/code/datums/uplink/medical_vr.dm b/code/datums/uplink/medical_vr.dm
index 8f0264d3e9d..5b4a0f31ccc 100644
--- a/code/datums/uplink/medical_vr.dm
+++ b/code/datums/uplink/medical_vr.dm
@@ -100,3 +100,66 @@
name = "Healing Nanite pill bottle"
item_cost = 30
path = /obj/item/weapon/storage/pill_bottle/healing_nanites
+
+/datum/uplink_item/item/medical/vermicetol
+ name = "Vermicetol Bottle"
+ item_cost = 30
+ path = /obj/item/weapon/reagent_containers/glass/bottle/vermicetol
+ antag_roles = list("ert")
+ blacklisted = 1
+
+/datum/uplink_item/item/medical/dermaline
+ name = "Dermaline Bottle"
+ item_cost = 30
+ path = /obj/item/weapon/reagent_containers/glass/bottle/dermaline
+ antag_roles = list("ert")
+ blacklisted = 1
+
+/datum/uplink_item/item/medical/carthatoline
+ name = "Carthatoline Bottle"
+ item_cost = 30
+ path = /obj/item/weapon/reagent_containers/glass/bottle/carthatoline
+ antag_roles = list("ert")
+ blacklisted = 1
+
+/datum/uplink_item/item/medical/dexalinp
+ name = "Dexalin Plus Bottle"
+ item_cost = 30
+ path = /obj/item/weapon/reagent_containers/glass/bottle/dexalinp
+ antag_roles = list("ert")
+ blacklisted = 1
+
+/datum/uplink_item/item/medical/tramadol
+ name = "Tramadol Bottle"
+ item_cost = 30
+ path = /obj/item/weapon/reagent_containers/glass/bottle/tramadol
+ antag_roles = list("ert")
+ blacklisted = 1
+
+/datum/uplink_item/item/medical/arithrazine
+ name = "Arithrazine Bottle"
+ item_cost = 50
+ path = /obj/item/weapon/reagent_containers/glass/bottle/arithrazine
+ antag_roles = list("ert")
+ blacklisted = 1
+
+/datum/uplink_item/item/medical/corophizine
+ name = "Corophizine Bottle"
+ item_cost = 50
+ path = /obj/item/weapon/reagent_containers/glass/bottle/corophizine
+ antag_roles = list("ert")
+ blacklisted = 1
+
+/datum/uplink_item/item/medical/rezadone
+ name = "Rezadone Bottle"
+ item_cost = 50
+ path = /obj/item/weapon/reagent_containers/glass/bottle/rezadone
+ antag_roles = list("ert")
+ blacklisted = 1
+
+/datum/uplink_item/item/medical/defib
+ name = "Combat Defibrilator"
+ item_cost = 90
+ path = /obj/item/device/defib_kit/compact/combat
+ antag_roles = list("mercenary", "ert")
+ blacklisted = 1
diff --git a/code/datums/uplink/tools.dm b/code/datums/uplink/tools.dm
index 51d7ec7cd22..eee41e96993 100644
--- a/code/datums/uplink/tools.dm
+++ b/code/datums/uplink/tools.dm
@@ -92,6 +92,12 @@
desc = "A device which is capable of disrupting subspace communications, preventing the use of headsets, PDAs, and communicators within \
a radius of seven meters. It runs off weapon cells, which can be replaced as needed. One cell will last for approximately ten minutes."
+/datum/uplink_item/item/tools/wall_elecrtifier
+ name = "Wall Electrifier"
+ item_cost = 10
+ path = /obj/item/weapon/cell/spike
+ desc = "A modified powercell which will electrify walls and reinforced floors in a 3x3 tile range around it. Always active."
+
/datum/uplink_item/item/tools/emag
name = "Cryptographic Sequencer"
item_cost = 30
diff --git a/code/datums/uplink/tools_vr.dm b/code/datums/uplink/tools_vr.dm
index 30b2cd725e0..871bfbb5add 100644
--- a/code/datums/uplink/tools_vr.dm
+++ b/code/datums/uplink/tools_vr.dm
@@ -26,6 +26,11 @@
item_cost = 5
path = /obj/item/device/survivalcapsule
+/datum/uplink_item/item/tools/popcabin
+ name = "Cabin Capsule"
+ item_cost = 5
+ path = /obj/item/device/survivalcapsule/popcabin
+
/datum/uplink_item/item/tools/nanopaste
name = "Nanopaste (Advanced)"
item_cost = 10
@@ -41,6 +46,16 @@
item_cost = 15
path = /obj/item/modular_computer/tablet/preset/custom_loadout/advanced
+/datum/uplink_item/item/tools/metal
+ name = "Metal (50 sheets)"
+ item_cost = 15
+ path = /obj/fiftyspawner/steel
+
+/datum/uplink_item/item/tools/glass
+ name = "Glass (50 sheets)"
+ item_cost = 15
+ path = /obj/fiftyspawner/glass
+
/datum/uplink_item/item/tools/elitelaptop
name = "Laptop (Advanced)"
item_cost = 20
diff --git a/code/datums/uplink/visible_weapons.dm b/code/datums/uplink/visible_weapons.dm
index d3ed1dcec34..b939e953de3 100644
--- a/code/datums/uplink/visible_weapons.dm
+++ b/code/datums/uplink/visible_weapons.dm
@@ -103,7 +103,7 @@
name = "Anti-Materiel Rifle (14.5mm)"
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/weapon/gun/projectile/heavysniper
- antag_roles = list("mercenary")
+ antag_roles = list("mercenary", "ert") //VOREStation Edit
/datum/uplink_item/item/visible_weapons/heavysnipertraitor
name = "Anti-Materiel Rifle (14.5mm)"
diff --git a/code/datums/wires/mines.dm b/code/datums/wires/mines.dm
index 209fcc4c307..5e757ad16c3 100644
--- a/code/datums/wires/mines.dm
+++ b/code/datums/wires/mines.dm
@@ -1,5 +1,5 @@
/datum/wires/mines
- wire_count = 6
+ wire_count = 7
randomize = TRUE
holder_type = /obj/effect/mine
proper_name = "Explosive Wires"
@@ -7,6 +7,7 @@
/datum/wires/mines/New(atom/_holder)
wires = list(WIRE_EXPLODE, WIRE_EXPLODE_DELAY, WIRE_DISARM, WIRE_BADDISARM)
return ..()
+#define WIRE_TRAP 64
/datum/wires/mines/get_status()
. = ..()
@@ -29,7 +30,13 @@
if(WIRE_DISARM)
C.visible_message("[bicon(C)] *click!*", "[bicon(C)] *click!*")
- new C.mineitemtype(get_turf(C))
+ var/obj/effect/mine/MI = new C.mineitemtype(get_turf(C))
+
+ if(C.trap)
+ MI.trap = C.trap
+ C.trap = null
+ MI.trap.forceMove(MI)
+
spawn(0)
qdel(C)
@@ -37,6 +44,15 @@
C.visible_message("[bicon(C)] *BEEPBEEPBEEP*", "[bicon(C)] *BEEPBEEPBEEP*")
spawn(20)
C.explode()
+
+ if(WIRE_TRAP)
+ C.visible_message("[bicon(C)] *click!*", "[bicon(C)] *click!*")
+
+ if(mend)
+ C.visible_message("[bicon(C)] - The mine recalibrates[C.camo_net ? ", revealing \the [C.trap] inside." : "."]")
+
+ C.alpha = 255
+
..()
/datum/wires/mines/on_pulse(wire)
@@ -57,6 +73,10 @@
if(WIRE_BADDISARM)
C.visible_message("[bicon(C)] *ping*", "[bicon(C)] *ping*")
+
+ if(WIRE_TRAP)
+ C.visible_message("[bicon(C)] *ping*", "[bicon(C)] *ping*")
+
..()
/datum/wires/mines/interactable(mob/user)
diff --git a/code/defines/obj/weapon.dm b/code/defines/obj/weapon.dm
index 8be56acbf36..ef15cfb26f7 100644
--- a/code/defines/obj/weapon.dm
+++ b/code/defines/obj/weapon.dm
@@ -297,7 +297,7 @@
/obj/item/weapon/storage/part_replacer
name = "rapid part exchange device"
- desc = "Special mechanical module made to store, sort, and apply standard machine parts."
+ desc = "A special mechanical module made to store, sort, and apply standard machine parts."
icon_state = "RPED"
w_class = ITEMSIZE_HUGE
can_hold = list(/obj/item/weapon/stock_parts)
@@ -311,10 +311,11 @@
max_storage_space = 100
drop_sound = 'sound/items/drop/device.ogg'
pickup_sound = 'sound/items/pickup/device.ogg'
+ var/panel_req = TRUE
/obj/item/weapon/storage/part_replacer/adv
name = "advanced rapid part exchange device"
- desc = "Special mechanical module made to store, sort, and apply standard machine parts. This one has a greatly upgraded storage capacity"
+ desc = "A special mechanical module made to store, sort, and apply standard machine parts. This one has a greatly upgraded storage capacity."
icon_state = "RPED"
w_class = ITEMSIZE_HUGE
can_hold = list(/obj/item/weapon/stock_parts)
@@ -327,6 +328,31 @@
max_w_class = ITEMSIZE_NORMAL
max_storage_space = 400
+/obj/item/weapon/storage/part_replacer/adv/discount_bluespace
+ name = "discount bluespace rapid part exchange device"
+ desc = "A special mechanical module made to store, sort, and apply standard machine parts. This one has a further increased storage capacity, \
+ and the ability to work on machines with closed maintenance panels."
+ storage_slots = 400
+ max_storage_space = 800
+ panel_req = FALSE
+
+/obj/item/weapon/storage/part_replacer/drop_contents() // hacky-feeling tier-based drop system
+ hide_from(usr)
+ var/turf/T = get_turf(src)
+ var/lowest_rating = INFINITY // We want the lowest-part tier rating in the RPED so we only drop the lowest-tier parts.
+ /*
+ * Why not just use the stock part's rating variable?
+ * Future-proofing for a potential future where stock parts aren't the only thing that can fit in an RPED.
+ * see: /tg/ and /vg/'s RPEDs fitting power cells, beakers, etc.
+ */
+ for(var/obj/item/B in contents)
+ if(B.rped_rating() < lowest_rating)
+ lowest_rating = B.rped_rating()
+ for(var/obj/item/B in contents)
+ if(B.rped_rating() > lowest_rating)
+ continue
+ remove_from_storage(B, T)
+
/obj/item/weapon/stock_parts
name = "stock part"
desc = "What?"
@@ -342,6 +368,9 @@
src.pixel_y = rand(-5.0, 5)
..()
+/obj/item/weapon/stock_parts/get_rating()
+ return rating
+
//Rank 1
/obj/item/weapon/stock_parts/console_screen
diff --git a/code/game/antagonist/station/rogue_ai.dm b/code/game/antagonist/station/rogue_ai.dm
index 4fcb678d34e..2a46cfd0d93 100644
--- a/code/game/antagonist/station/rogue_ai.dm
+++ b/code/game/antagonist/station/rogue_ai.dm
@@ -68,7 +68,7 @@ var/datum/antagonist/rogue_ai/malf
sleep(50)
to_chat(malf, "MEMCHCK Corrupted sectors confirmed. Reccomended solution: Delete. Proceed? Y/N: Y")
sleep(10)
- // this is so Travis doesn't complain about the backslash-B. Fixed at compile time (or should be).
+ // this is so CI doesn't complain about the backslash-B. Fixed at compile time (or should be).
to_chat(malf, "Corrupted files deleted: sys\\core\\users.dat sys\\core\\laws.dat sys\\core\\" + "backups.dat ")
sleep(20)
to_chat(malf, "CAUTION: Law database not found! User database not found! Unable to restore backups. Activating failsafe AI shutd3wn52&&$#!## ")
diff --git a/code/game/area/Space Station 13 areas_vr.dm b/code/game/area/Space Station 13 areas_vr.dm
index b937fec8b2d..93b13625952 100644
--- a/code/game/area/Space Station 13 areas_vr.dm
+++ b/code/game/area/Space Station 13 areas_vr.dm
@@ -6,6 +6,12 @@
//Rouguelike Mining
/area/asteroid/rogue
+ has_gravity = 0
+ requires_power = 1
+ always_unpowered = 1
+ power_light = 0
+ power_equip = 0
+ power_environ = 0
var/asteroid_spawns = list()
var/mob_spawns = list()
var/shuttle_area //It would be neat if this were more dynamic, but eh.
diff --git a/code/game/dna/dna2.dm b/code/game/dna/dna2.dm
index 64a14e29fbf..fccf178af9c 100644
--- a/code/game/dna/dna2.dm
+++ b/code/game/dna/dna2.dm
@@ -42,20 +42,29 @@
#define DNA_UI_TAIL2_R 23
#define DNA_UI_TAIL2_G 24
#define DNA_UI_TAIL2_B 25
-#define DNA_UI_EARS_R 26
-#define DNA_UI_EARS_G 27
-#define DNA_UI_EARS_B 28
-#define DNA_UI_EARS2_R 29
-#define DNA_UI_EARS2_G 30
-#define DNA_UI_EARS2_B 31
-#define DNA_UI_WING_STYLE 32
-#define DNA_UI_WING_R 33
-#define DNA_UI_WING_G 34
-#define DNA_UI_WING_B 35
-#define DNA_UI_WING2_R 36
-#define DNA_UI_WING2_G 37
-#define DNA_UI_WING2_B 38 // VOREStation snippet end.
-#define DNA_UI_LENGTH 38 // VOREStation Edit - Needs to match the highest number above.
+#define DNA_UI_TAIL3_R 26
+#define DNA_UI_TAIL3_G 27
+#define DNA_UI_TAIL3_B 28
+#define DNA_UI_EARS_R 29
+#define DNA_UI_EARS_G 30
+#define DNA_UI_EARS_B 31
+#define DNA_UI_EARS2_R 32
+#define DNA_UI_EARS2_G 33
+#define DNA_UI_EARS2_B 34
+#define DNA_UI_EARS3_R 35
+#define DNA_UI_EARS3_G 36
+#define DNA_UI_EARS3_B 37
+#define DNA_UI_WING_STYLE 38
+#define DNA_UI_WING_R 39
+#define DNA_UI_WING_G 40
+#define DNA_UI_WING_B 41
+#define DNA_UI_WING2_R 42
+#define DNA_UI_WING2_G 43
+#define DNA_UI_WING2_B 44
+#define DNA_UI_WING3_R 45
+#define DNA_UI_WING3_G 46
+#define DNA_UI_WING3_B 47 // VOREStation snippet end.
+#define DNA_UI_LENGTH 47 // VOREStation Edit - Needs to match the highest number above.
#define DNA_SE_LENGTH 49 // VOREStation Edit (original was UI+11)
// For later:
@@ -193,23 +202,9 @@ var/global/list/datum/dna/gene/dna_genes[0]
// Technically custom_species is not part of the UI, but this place avoids merge problems.
src.custom_species = character.custom_species
- if(istype(character.species,/datum/species/custom))
- var/datum/species/custom/CS = character.species
- src.species_traits = CS.traits.Copy()
- src.base_species = CS.base_species
- src.blood_color = CS.blood_color
-
- if(istype(character.species,/datum/species/xenochimera))
- var/datum/species/xenochimera/CS = character.species
- //src.species_traits = CS.traits.Copy() //No traits
- src.base_species = CS.base_species
- src.blood_color = CS.blood_color
-
- if(istype(character.species,/datum/species/alraune))
- var/datum/species/alraune/CS = character.species
- //src.species_traits = CS.traits.Copy() //No traits
- src.base_species = CS.base_species
- src.blood_color = CS.blood_color
+ src.base_species = character.species.base_species
+ src.blood_color = character.species.blood_color
+ src.species_traits = character.species.traits.Copy()
// +1 to account for the none-of-the-above possibility
SetUIValueRange(DNA_UI_EAR_STYLE, ear_style + 1, ear_styles_list.len + 1, 1)
@@ -225,6 +220,10 @@ var/global/list/datum/dna/gene/dna_genes[0]
SetUIValueRange(DNA_UI_TAIL2_G, character.g_tail2, 255, 1)
SetUIValueRange(DNA_UI_TAIL2_B, character.b_tail2, 255, 1)
+ SetUIValueRange(DNA_UI_TAIL3_R, character.r_tail3, 255, 1)
+ SetUIValueRange(DNA_UI_TAIL3_G, character.g_tail3, 255, 1)
+ SetUIValueRange(DNA_UI_TAIL3_B, character.b_tail3, 255, 1)
+
SetUIValueRange(DNA_UI_WING_R, character.r_wing, 255, 1)
SetUIValueRange(DNA_UI_WING_G, character.g_wing, 255, 1)
SetUIValueRange(DNA_UI_WING_B, character.b_wing, 255, 1)
@@ -233,6 +232,10 @@ var/global/list/datum/dna/gene/dna_genes[0]
SetUIValueRange(DNA_UI_WING2_G, character.g_wing2, 255, 1)
SetUIValueRange(DNA_UI_WING2_B, character.b_wing2, 255, 1)
+ SetUIValueRange(DNA_UI_WING3_R, character.r_wing3, 255, 1)
+ SetUIValueRange(DNA_UI_WING3_G, character.g_wing3, 255, 1)
+ SetUIValueRange(DNA_UI_WING3_B, character.b_wing3, 255, 1)
+
SetUIValueRange(DNA_UI_EARS_R, character.r_ears, 255, 1)
SetUIValueRange(DNA_UI_EARS_G, character.g_ears, 255, 1)
SetUIValueRange(DNA_UI_EARS_B, character.b_ears, 255, 1)
@@ -241,6 +244,10 @@ var/global/list/datum/dna/gene/dna_genes[0]
SetUIValueRange(DNA_UI_EARS2_G, character.g_ears2, 255, 1)
SetUIValueRange(DNA_UI_EARS2_B, character.b_ears2, 255, 1)
+ SetUIValueRange(DNA_UI_EARS3_R, character.r_ears3, 255, 1)
+ SetUIValueRange(DNA_UI_EARS3_G, character.g_ears3, 255, 1)
+ SetUIValueRange(DNA_UI_EARS3_B, character.b_ears3, 255, 1)
+
// VORE Station Edit End
SetUIValueRange(DNA_UI_HAIR_R, character.r_hair, 255, 1)
@@ -294,6 +301,9 @@ var/global/list/datum/dna/gene/dna_genes[0]
if (block<=0) return
ASSERT(maxvalue<=4095)
var/range = (4095 / maxvalue)
+ if(value == 0) //VOREStation Edit
+ SetUIValue(block,0,defer)
+ return
if(value)
SetUIValue(block,round(value * range),defer)
diff --git a/code/game/dna/dna2_helpers.dm b/code/game/dna/dna2_helpers.dm
index cd3ec6a44d1..758f74d8737 100644
--- a/code/game/dna/dna2_helpers.dm
+++ b/code/game/dna/dna2_helpers.dm
@@ -189,6 +189,10 @@
H.r_ears2 = dna.GetUIValueRange(DNA_UI_EARS2_R, 255)
H.g_ears2 = dna.GetUIValueRange(DNA_UI_EARS2_G, 255)
H.b_ears2 = dna.GetUIValueRange(DNA_UI_EARS2_B, 255)
+ H.r_ears3 = dna.GetUIValueRange(DNA_UI_EARS3_R, 255)
+ H.g_ears3 = dna.GetUIValueRange(DNA_UI_EARS3_G, 255)
+ H.b_ears3 = dna.GetUIValueRange(DNA_UI_EARS3_B, 255)
+
//Tail
var/tail = dna.GetUIValueRange(DNA_UI_TAIL_STYLE, tail_styles_list.len + 1) - 1
@@ -208,6 +212,12 @@
H.r_wing = dna.GetUIValueRange(DNA_UI_WING_R, 255)
H.g_wing = dna.GetUIValueRange(DNA_UI_WING_G, 255)
H.b_wing = dna.GetUIValueRange(DNA_UI_WING_B, 255)
+ H.r_wing2 = dna.GetUIValueRange(DNA_UI_WING2_R, 255)
+ H.g_wing2 = dna.GetUIValueRange(DNA_UI_WING2_G, 255)
+ H.b_wing2 = dna.GetUIValueRange(DNA_UI_WING2_B, 255)
+ H.r_wing3 = dna.GetUIValueRange(DNA_UI_WING3_R, 255)
+ H.g_wing3 = dna.GetUIValueRange(DNA_UI_WING3_G, 255)
+ H.b_wing3 = dna.GetUIValueRange(DNA_UI_WING3_B, 255)
// Playerscale
var/size = dna.GetUIValueRange(DNA_UI_PLAYERSCALE, player_sizes_list.len)
@@ -221,23 +231,15 @@
H.r_tail2 = dna.GetUIValueRange(DNA_UI_TAIL2_R, 255)
H.g_tail2 = dna.GetUIValueRange(DNA_UI_TAIL2_G, 255)
H.b_tail2 = dna.GetUIValueRange(DNA_UI_TAIL2_B, 255)
+ H.r_tail3 = dna.GetUIValueRange(DNA_UI_TAIL3_R, 255)
+ H.g_tail3 = dna.GetUIValueRange(DNA_UI_TAIL3_G, 255)
+ H.b_tail3 = dna.GetUIValueRange(DNA_UI_TAIL3_B, 255)
// Technically custom_species is not part of the UI, but this place avoids merge problems.
H.custom_species = dna.custom_species
- if(istype(H.species,/datum/species/custom))
- var/datum/species/custom/CS = H.species
- var/datum/species/custom/new_CS = CS.produceCopy(dna.base_species,dna.species_traits,src)
- new_CS.blood_color = dna.blood_color
-
- if(istype(H.species,/datum/species/xenochimera))
- var/datum/species/xenochimera/CS = H.species
- var/datum/species/xenochimera/new_CS = CS.produceCopy(dna.base_species,dna.species_traits,src)
- new_CS.blood_color = dna.blood_color
-
- if(istype(H.species,/datum/species/alraune))
- var/datum/species/alraune/CS = H.species
- var/datum/species/alraune/new_CS = CS.produceCopy(dna.base_species,dna.species_traits,src)
- new_CS.blood_color = dna.blood_color
+ H.species.blood_color = dna.blood_color
+ var/datum/species/S = H.species
+ S.produceCopy(dna.base_species,dna.species_traits,src)
// VOREStation Edit End
H.force_update_organs() //VOREStation Add - Gotta do this too
diff --git a/code/game/jobs/job/assistant_vr.dm b/code/game/jobs/job/assistant_vr.dm
index e342da3ab31..f2fac2e72bf 100644
--- a/code/game/jobs/job/assistant_vr.dm
+++ b/code/game/jobs/job/assistant_vr.dm
@@ -19,7 +19,7 @@
alt_titles = list("Intern" = /datum/alt_title/intern,
"Apprentice Engineer" = /datum/alt_title/intern_eng,
"Medical Intern" = /datum/alt_title/intern_med,
- "Lab Assistant" = /datum/alt_title/intern_sci,
+ "Research Intern" = /datum/alt_title/intern_sci,
"Security Cadet" = /datum/alt_title/intern_sec,
"Jr. Cargo Tech" = /datum/alt_title/intern_crg,
"Jr. Explorer" = /datum/alt_title/intern_exp,
@@ -34,7 +34,7 @@
/datum/alt_title/intern_eng
title = "Apprentice Engineer"
title_blurb = "An Apprentice Engineer attempts to provide whatever the Engineering department needs. They are not proper Engineers, and are \
- often in training to become an Engineer. A Technical Assistant has no real authority."
+ often in training to become an Engineer. An Apprentice Engineer has no real authority."
title_outfit = /decl/hierarchy/outfit/job/assistant/engineer
/datum/alt_title/intern_med
@@ -44,9 +44,9 @@
title_outfit = /decl/hierarchy/outfit/job/assistant/medic
/datum/alt_title/intern_sci
- title = "Lab Assistant"
- title_blurb = "A Lab Assistant attempts to provide whatever the Research department needs. They are not proper Scientists, and are \
- often in training to become a Scientist. A Lab Assistant has no real authority."
+ title = "Research Intern"
+ title_blurb = "A Research Intern attempts to provide whatever the Research department needs. They are not proper Scientists, and are \
+ often in training to become a Scientist. A Research Intern has no real authority."
title_outfit = /decl/hierarchy/outfit/job/assistant/scientist
/datum/alt_title/intern_sec
@@ -72,11 +72,6 @@
title_blurb = "A Server helps out kitchen and diner staff with various tasks, primarily food delivery. A Server has no real authority."
title_outfit = /decl/hierarchy/outfit/job/service/server
-
-//////////////////////////////////
-// Visitor
-//////////////////////////////////
-
/datum/job/intern/New()
..()
if(config)
@@ -89,11 +84,17 @@
else
return list()
+
+//////////////////////////////////
+// Visitor
+//////////////////////////////////
+
/datum/job/assistant // Visitor
title = USELESS_JOB
supervisors = "nobody! You don't work here"
job_description = "A Visitor is just there to visit the place. They have no real authority or responsibility."
timeoff_factor = 0
+ alt_titles = list("Guest" = /datum/alt_title/guest, "Traveler" = /datum/alt_title/traveler)
/datum/job/assistant/New()
..()
@@ -103,3 +104,9 @@
/datum/job/assistant/get_access()
return list()
+
+/datum/alt_title/guest
+ title = "Guest"
+
+/datum/alt_title/traveler
+ title = "Traveler"
diff --git a/code/game/jobs/job/captain_vr.dm b/code/game/jobs/job/captain_vr.dm
index 4cf8da4183f..d2b830ad7ba 100644
--- a/code/game/jobs/job/captain_vr.dm
+++ b/code/game/jobs/job/captain_vr.dm
@@ -2,6 +2,14 @@
disallow_jobhop = TRUE
pto_type = PTO_CIVILIAN
dept_time_required = 80 //Pending something more complicated
+ alt_titles = list("Overseer"= /datum/alt_title/overseer, "Facility Director" = /datum/alt_title/facility_director, "Chief Supervisor" = /datum/alt_title/chief_supervisor)
+
+/datum/alt_title/facility_director
+ title = "Facility Director"
+
+/datum/alt_title/chief_supervisor
+ title = "Chief Supervisor"
+
/datum/job/hop
disallow_jobhop = TRUE
@@ -10,8 +18,8 @@
departments_managed = list(DEPARTMENT_CIVILIAN, DEPARTMENT_CARGO, DEPARTMENT_PLANET)
dept_time_required = 60
- alt_titles = list("Crew Resources Officer" = /datum/alt_title/cro,
- "Deputy Director" = /datum/alt_title/deputy_director)
+ alt_titles = list("Crew Resources Officer" = /datum/alt_title/cro, "Deputy Manager" = /datum/alt_title/deputy_manager, "Staff Manager" = /datum/alt_title/staff_manager,
+ "Facility Steward" = /datum/alt_title/facility_steward)
access = list(access_security, access_sec_doors, access_brig, access_forensics_lockers,
access_medical, access_engine, access_change_ids, access_ai_upload, access_eva, access_heads,
@@ -26,9 +34,30 @@
access_chapel_office, access_library, access_research, access_mining, access_heads_vault, access_mining_station,
access_hop, access_RC_announce, access_keycard_auth)
-/datum/alt_title/deputy_director
- title = "Deputy Director"
+/datum/alt_title/deputy_manager
+ title = "Deputy Manager"
+
+/datum/alt_title/staff_manager
+ title = "Staff Manager"
+
+/datum/alt_title/facility_steward
+ title = "Facility Steward"
+
/datum/job/secretary
disallow_jobhop = TRUE
- pto_type = PTO_CIVILIAN
\ No newline at end of file
+ pto_type = PTO_CIVILIAN
+ alt_titles = list("Command Liaison" = /datum/alt_title/command_liaison, "Bridge Secretary" = /datum/alt_title/bridge_secretary,
+ "Command Assistant" = /datum/alt_title/command_assistant, "Command Intern" = /datum/alt_title/command_intern)
+
+/datum/alt_title/command_liaison
+ title = "Command Liaison"
+
+/datum/alt_title/bridge_secretary
+ title = "Bridge Secretary"
+
+/datum/alt_title/command_assistant
+ title = "Command Assistant"
+
+/datum/alt_title/command_intern
+ title = "Command Intern"
\ No newline at end of file
diff --git a/code/game/jobs/job/civilian_vr.dm b/code/game/jobs/job/civilian_vr.dm
index 4529c7c79ad..beb4f477f89 100644
--- a/code/game/jobs/job/civilian_vr.dm
+++ b/code/game/jobs/job/civilian_vr.dm
@@ -1,34 +1,104 @@
/datum/job/bartender
pto_type = PTO_CIVILIAN
+ alt_titles = list("Barkeeper" = /datum/alt_title/barkeeper, "Barmaid" = /datum/alt_title/barmaid, "Barista" = /datum/alt_title/barista, "Mixologist" = /datum/alt_title/mixologist)
+
+/datum/alt_title/barkeeper
+ title = "Barkeeper"
+
+/datum/alt_title/barmaid
+ title = "Barmaid"
+
+/datum/alt_title/mixologist
+ title = "Mixologist"
+
/datum/job/chef
total_positions = 2 //IT TAKES A LOT TO MAKE A STEW
spawn_positions = 2 //A PINCH OF SALT AND LAUGHTER, TOO
pto_type = PTO_CIVILIAN
+ alt_titles = list("Sous-chef" = /datum/alt_title/souschef,"Cook" = /datum/alt_title/cook, "Kitchen Worker" = /datum/alt_title/kitchen_worker)
+
+/datum/alt_title/souschef
+ title = "Sous-chef"
+
+/datum/alt_title/kitchen_worker
+ title = "Kitchen Worker"
+ title_blurb = "A Kitchen Worker has the same duties, though they may be less experienced."
+
/datum/job/hydro
spawn_positions = 2
pto_type = PTO_CIVILIAN
+ alt_titles = list("Hydroponicist" = /datum/alt_title/hydroponicist, "Cultivator" = /datum/alt_title/cultivator, "Farmer" = /datum/alt_title/farmer,
+ "Gardener" = /datum/alt_title/gardener, "Florist" = /datum/alt_title/florsit)
+
+/datum/alt_title/hydroponicist
+ title = "Hydroponicist"
+
+/datum/alt_title/cultivator
+ title = "Cultivator"
+
+/datum/alt_title/farmer
+ title = "Farmer"
+
+/datum/alt_title/florsit
+ title = "Florist"
+ title_blurb = "A Florist may be less professional than their counterparts, and are more likely to tend to the public gardens if they aren't needed elsewhere."
+
/datum/job/qm
pto_type = PTO_CARGO
dept_time_required = 20
+ alt_titles = list("Supply Chief" = /datum/alt_title/supply_chief, "Logistics Manager" = /datum/alt_title/logistics_manager)
+
+/datum/alt_title/logistics_manager
+ title = "Logistics Manager"
+
/datum/job/cargo_tech
total_positions = 3
spawn_positions = 3
pto_type = PTO_CARGO
+ alt_titles = list("Cargo Loader" = /datum/alt_title/cargo_loader, "Cargo Handler" = /datum/alt_title/cargo_handler, "Supply Courier" = /datum/alt_title/supply_courier,
+ "Disposals Sorter" = /datum/alt_title/disposal_sorter)
+
+/datum/alt_title/supply_courier
+ title = "Supply Courier"
+ title_blurb = "A Supply Courier is usually tasked with devlivering packages or cargo directly to whoever requires it."
+
+/datum/alt_title/cargo_loader
+ title = "Cargo Loader"
+ title_blurb = "A Cargo Loader is usually tasked with more menial labor within Supply department, such as loading and unloading supply shuttle."
+
+/datum/alt_title/cargo_handler
+ title = "Cargo Handler"
+ title_blurb = "A Cargo Loader is usually tasked with more menial labor within Supply department, such as loading and unloading supply shuttle."
+
+/datum/alt_title/disposal_sorter
+ title = "Disposals Sorter"
+ title_blurb = "A Disposals Sorter is usually tasked with operating disposals delivery system, sorting the trash and tagging parcels for delivery."
+
/datum/job/mining
total_positions = 4
spawn_positions = 4
pto_type = PTO_CARGO
+ alt_titles = list("Deep Space Miner" = /datum/alt_title/deep_space_miner, "Drill Technician" = /datum/alt_title/drill_tech, "Prospector" = /datum/alt_title/prospector)
+
+/datum/alt_title/deep_space_miner
+ title = "Deep Space Miner"
+ title_blurb = "A Deep Space Miner specializes primarily in mining operations in zero-g environments, mostly in asteroid and debris fields."
+
+/datum/alt_title/prospector
+ title = "Prospector"
+
/datum/job/janitor //Lots of janitor substations on station.
total_positions = 3
spawn_positions = 3
- alt_titles = list("Custodian" = /datum/alt_title/custodian, "Sanitation Technician" = /datum/alt_title/sanitation_tech, "Maid" = /datum/alt_title/maid)
pto_type = PTO_CIVILIAN
+ alt_titles = list("Custodian" = /datum/alt_title/custodian, "Sanitation Technician" = /datum/alt_title/sanitation_tech,
+ "Maid" = /datum/alt_title/maid, "Garbage Collector" = /datum/alt_title/garbage_collector)
/datum/alt_title/sanitation_tech
title = "Sanitation Technician"
@@ -36,26 +106,73 @@
/datum/alt_title/maid
title = "Maid"
+/datum/alt_title/garbage_collector
+ title = "Garbage Collector"
+ title_blurb = "A Garbage Collector keeps the station clean, though focuses moreso on collecting larger trash, with wet cleaning being secondary task."
+
+
/datum/job/librarian
total_positions = 2
spawn_positions = 2
- alt_titles = list("Journalist" = /datum/alt_title/journalist, "Writer" = /datum/alt_title/writer, "Historian" = /datum/alt_title/historian, "Professor" = /datum/alt_title/professor)
+ alt_titles = list("Journalist" = /datum/alt_title/journalist, "Reporter" = /datum/alt_title/reporter, "Writer" = /datum/alt_title/writer,
+ "Historian" = /datum/alt_title/historian, "Archivist" = /datum/alt_title/archivist, "Professor" = /datum/alt_title/professor,
+ "Academic" = /datum/alt_title/academic, "Philosopher" = /datum/alt_title/philosopher)
pto_type = PTO_CIVILIAN
+/datum/alt_title/reporter
+ title = "Reporter"
+ title_blurb = "The Reporter uses the Library as a base of operations, from which they can report the news and goings-on on the station with their camera."
+
/datum/alt_title/historian
title = "Historian"
title_blurb = "The Historian uses the Library as a base of operation to record any important events occuring on station."
+/datum/alt_title/archivist
+ title = "Archivist"
+ title_blurb = "The Archivist uses the Library as a base of operation to record any important events occuring on station."
+
/datum/alt_title/professor
title = "Professor"
title_blurb = "The Professor uses the Library as a base of operations to share their vast knowledge with the crew."
+/datum/alt_title/academic
+ title = "Academic"
+ title_blurb = "The Academic uses the Library as a base of operations to share their vast knowledge with the crew."
+
+/datum/alt_title/philosopher
+ title = "Philosopher"
+ title_blurb = "The Philosopher uses the Library as a base of operation to ruminate on nature of life and other great questions, and share their opinions with the crew."
+
+
/datum/job/lawyer
disallow_jobhop = TRUE
pto_type = PTO_CIVILIAN
+ alt_titles = list("Internal Affairs Liaison" = /datum/alt_title/ia_liaison, "Internal Affairs Delegate" = /datum/alt_title/ia_delegate,
+ "Internal Affairs Investigator" = /datum/alt_title/ia_investigator)
+
+/datum/alt_title/ia_liaison
+ title = "Internal Affairs Liaison"
+
+/datum/alt_title/ia_delegate
+ title = "Internal Affairs Delegate"
+
+/datum/alt_title/ia_investigator
+ title = "Internal Affairs Investigator"
+
/datum/job/chaplain
pto_type = PTO_CIVILIAN
+ alt_titles = list("Missionary" = /datum/alt_title/missionary, "Preacher" = /datum/alt_title/preacher, "Counselor" = /datum/alt_title/counselor, "Guru" = /datum/alt_title/guru)
+
+/datum/alt_title/guru
+ title = "Guru"
+ title_blurb = "The Guru primarily tries to offer spiritual guidance to those who come seeking it."
+
+/datum/alt_title/missionary
+ title = "Missionary"
+
+/datum/alt_title/preacher
+ title = "Preacher"
@@ -79,17 +196,43 @@
outfit_type = /decl/hierarchy/outfit/job/assistant
job_description = "An entertainer does just that, entertains! Put on plays, play music, sing songs, tell stories, or read your favorite fanfic."
- alt_titles = list("Performer" = /datum/alt_title/performer, "Musician" = /datum/alt_title/musician, "Stagehand" = /datum/alt_title/stagehand)
+ alt_titles = list("Performer" = /datum/alt_title/performer, "Musician" = /datum/alt_title/musician, "Stagehand" = /datum/alt_title/stagehand,
+ "Actor" = /datum/alt_title/actor, "Dancer" = /datum/alt_title/dancer, "Singer" = /datum/alt_title/singer,
+ "Magician" = /datum/alt_title/magician, "Comedian" = /datum/alt_title/comedian, "Tragedian" = /datum/alt_title/tragedian)
// Entertainer Alt Titles
+/datum/alt_title/actor
+ title = "Actor"
+ title_blurb = "An Actor is someone who acts out a role! Whatever sort of character it is, get into it and impress people with power of comedy and tragedy!"
+
/datum/alt_title/performer
title = "Performer"
- title_blurb = "A Performer is someone who performs! Acting, dancing, wrestling, etc!"
+ title_blurb = "A Performer is someone who performs! Whatever sort of performance will come to your mind, the world's a stage!"
/datum/alt_title/musician
title = "Musician"
- title_blurb = "A Musician is someone who makes music! Singing, playing instruments, slam poetry, it's your call!"
+ title_blurb = "A Musician is someone who makes music with a wide variety of musical instruments!"
/datum/alt_title/stagehand
title = "Stagehand"
- title_blurb = "A Stagehand typically performs everything the rest of the entertainers don't. Operate lights, shutters, windows, or narrate through your voicebox!"
\ No newline at end of file
+ title_blurb = "A Stagehand typically performs everything the rest of the entertainers don't. Operate lights, shutters, windows, or narrate through your voicebox!"
+
+/datum/alt_title/dancer
+ title = "Dancer"
+ title_blurb = "A Dancer is someone who impresses people through power of their own body! From waltz to breakdance, as long as crowd as cheering!"
+
+/datum/alt_title/singer
+ title = "Singer"
+ title_blurb = "A Singer is someone with gift of melodious voice! Impress people with your vocal range!"
+
+/datum/alt_title/magician
+ title = "Magician"
+ title_blurb = "A Magician is someone who awes those around them with impossible! Show off your repertoire of magic tricks, while keeping the secret hidden!"
+
+/datum/alt_title/comedian
+ title = "Comedian"
+ title_blurb = "A Comedian will focus on making people laugh with the power of wit! Telling jokes, stand-up comedy, you are here to make others smile!"
+
+/datum/alt_title/tragedian
+ title = "Tragedian"
+ title_blurb = "A Tragedian will focus on making people think about life and world around them! Life is a tragedy, and who's better to convey its emotions than you?"
\ No newline at end of file
diff --git a/code/game/jobs/job/engineering_vr.dm b/code/game/jobs/job/engineering_vr.dm
index e0f106ac804..8799aa39058 100644
--- a/code/game/jobs/job/engineering_vr.dm
+++ b/code/game/jobs/job/engineering_vr.dm
@@ -12,10 +12,38 @@
access_teleporter, access_external_airlocks, access_atmospherics, access_emergency_storage, access_eva,
access_heads, access_construction,
access_ce, access_RC_announce, access_keycard_auth, access_tcomsat, access_ai_upload)
+ alt_titles = list("Head Engineer" = /datum/alt_title/head_engineer, "Foreman" = /datum/alt_title/foreman, "Maintenance Manager" = /datum/alt_title/maintenance_manager)
+
+/datum/alt_title/head_engineer
+ title = "Head Engineer"
+
+/datum/alt_title/foreman
+ title = "Foreman"
+
+/datum/alt_title/maintenance_manager
+ title = "Maintenance Manager"
+
/datum/job/engineer
pto_type = PTO_ENGINEERING
+ alt_titles = list("Maintenance Technician" = /datum/alt_title/maint_tech, "Engine Technician" = /datum/alt_title/engine_tech,
+ "Electrician" = /datum/alt_title/electrician, "Construction Engineer" = /datum/alt_title/construction_engi)
+
+/datum/alt_title/construction_engi
+ title = "Construction Engineer"
+ title_blurb = "A Construction Engineer fulfills similar duties to other engineers, but usually occupies spare time with construction of extra facilities in dedicated areas or \
+ as additions to station layout."
+
+
/datum/job/atmos
spawn_positions = 3
- pto_type = PTO_ENGINEERING
\ No newline at end of file
+ pto_type = PTO_ENGINEERING
+ alt_titles = list("Atmospherics Maintainer" = /datum/alt_title/atmos_maint, "Disposals Technician" = /datum/alt_title/disposals_tech)
+
+/datum/alt_title/atmos_maint
+ title = "Atmospherics Maintainer"
+
+/datum/alt_title/disposals_tech
+ title = "Disposals Technician"
+ title_blurb = "A Disposals Technician is an Atmospheric Technician still and can fulfill all the same duties, although specializes more in disposals delivery system's operations and configurations."
\ No newline at end of file
diff --git a/code/game/jobs/job/exploration_vr.dm b/code/game/jobs/job/exploration_vr.dm
index 7f3b57f0b1f..0e6e003f7db 100644
--- a/code/game/jobs/job/exploration_vr.dm
+++ b/code/game/jobs/job/exploration_vr.dm
@@ -29,6 +29,8 @@ var/const/SAR =(1<<14)
color = "#bab421"
sorting_order = 2 // Same as cargo in importance.
+
+
/datum/job/pathfinder
title = "Pathfinder"
flag = PATHFINDER
@@ -50,9 +52,14 @@ var/const/SAR =(1<<14)
minimal_access = list(access_eva, access_maint_tunnels, access_external_airlocks, access_pilot, access_explorer, access_gateway)
outfit_type = /decl/hierarchy/outfit/job/pathfinder
job_description = "The Pathfinder's job is to lead and manage expeditions, and is the primary authority on all off-station expeditions."
+ alt_titles = list("Expedition Lead" = /datum/alt_title/expedition_lead, "Exploration Manager" = /datum/alt_title/exploration_manager)
+
+/datum/alt_title/expedition_lead
+ title = "Expedition Lead"
+
+/datum/alt_title/exploration_manager
+ title = "Exploration Manager"
-/datum/alt_title/pathfinder
- title = "Pathfinder"
/datum/job/pilot
title = "Pilot"
@@ -71,9 +78,15 @@ var/const/SAR =(1<<14)
minimal_access = list(access_pilot)
outfit_type = /decl/hierarchy/outfit/job/pilot
job_description = "A Pilot flies the various shuttles in the Virgo-Erigone System."
+ alt_titles = list("Co-Pilot" = /datum/alt_title/co_pilot, "Navigator" = /datum/alt_title/navigator)
+
+/datum/alt_title/co_pilot
+ title = "Co-Pilot"
+ title_blurb = "A Co-Pilot is there primarily to assist main pilot as well as learn from them"
+
+/datum/alt_title/navigator
+ title = "Navigator"
-/datum/alt_title/pilot
- title = "Pilot"
/datum/job/explorer
title = "Explorer"
@@ -91,9 +104,14 @@ var/const/SAR =(1<<14)
minimal_access = list(access_explorer, access_external_airlocks, access_eva)
outfit_type = /decl/hierarchy/outfit/job/explorer2
job_description = "An Explorer searches for interesting things, and returns them to the station."
+ alt_titles = list("Surveyor" = /datum/alt_title/surveyor, "Offsite Scout" = /datum/alt_title/offsite_scout)
+
+/datum/alt_title/surveyor
+ title = "Surveyor"
+
+/datum/alt_title/offsite_scout
+ title = "Offsite Scout"
-/datum/alt_title/explorer
- title = "Explorer"
/datum/job/sar
title = "Field Medic"
@@ -112,25 +130,7 @@ var/const/SAR =(1<<14)
minimal_access = list(access_medical, access_medical_equip, access_morgue, access_pilot)
outfit_type = /decl/hierarchy/outfit/job/medical/sar
job_description = "A Field medic works as the field doctor of expedition teams."
+ alt_titles = list("Expedition Medic" = /datum/alt_title/expedition_medic)
-/datum/alt_title/field_medic
- title = "Field Medic"
-
-/datum/job/offduty_exploration
- title = "Off-duty Explorer"
- latejoin_only = TRUE
- timeoff_factor = -1
- total_positions = -1
- faction = "Station"
- departments = list(DEPARTMENT_OFFDUTY)
- supervisors = "nobody! Enjoy your time off"
- selection_color = "#999440"
- access = list(access_maint_tunnels, access_external_airlocks)
- minimal_access = list(access_maint_tunnels, access_external_airlocks)
- outfit_type = /decl/hierarchy/outfit/job/assistant/explorer
- job_description = "Off-duty crew has no responsibilities or authority and is just there to spend their well-deserved time off."
- pto_type = PTO_EXPLORATION
- economic_modifier = 5
-
-/datum/alt_title/offduty_exp
- title = "Off-duty Explorer"
+/datum/alt_title/expedition_medic
+ title = "Expedition Medic"
diff --git a/code/game/jobs/job/medical_vr.dm b/code/game/jobs/job/medical_vr.dm
index 72286ca8809..2679137cf0f 100644
--- a/code/game/jobs/job/medical_vr.dm
+++ b/code/game/jobs/job/medical_vr.dm
@@ -10,16 +10,71 @@
minimal_access = list(access_medical, access_medical_equip, access_morgue, access_genetics, access_heads,
access_chemistry, access_virology, access_cmo, access_surgery, access_RC_announce,
access_keycard_auth, access_psychiatrist, access_eva, access_external_airlocks, access_maint_tunnels)
+ alt_titles = list("Chief Physician" = /datum/alt_title/chief_physician, "Medical Director" = /datum/alt_title/medical_director, "Healthcare Manager" = /datum/alt_title/healthcare_manager)
+
+/datum/alt_title/chief_physician
+ title = "Chief Physician"
+
+/datum/alt_title/medical_director
+ title = "Medical Director"
+
+/datum/alt_title/healthcare_manager
+ title = "Healthcare Manager"
+
/datum/job/doctor
spawn_positions = 5
pto_type = PTO_MEDICAL
+ alt_titles = list("Physician" = /datum/alt_title/physician, "Medical Practitioner" = /datum/alt_title/medical_practitioner, "Surgeon" = /datum/alt_title/surgeon,
+ "Emergency Physician" = /datum/alt_title/emergency_physician, "Nurse" = /datum/alt_title/nurse, "Orderly" = /datum/alt_title/orderly,
+ "Virologist" = /datum/alt_title/virologist)
+
+
+/datum/alt_title/physician
+ title = "Physician"
+
+/datum/alt_title/medical_practitioner
+ title = "Medical Practitioner"
+
+/datum/alt_title/orderly
+ title = "Orderly"
+ title_blurb = "An Orderly acts as Medbay's general helping hand, assisting any doctor that might need some form of help, as well as handling manual \
+ and dirty labor around the department."
+ title_outfit = /decl/hierarchy/outfit/job/medical/doctor/nurse
+
/datum/job/chemist
pto_type = PTO_MEDICAL
+ alt_titles = list("Pharmacist" = /datum/alt_title/pharmacist, "Pharmacologist" = /datum/alt_title/pharmacologist)
+
+/datum/alt_title/pharmacologist
+ title = "Pharmacologist"
+ title_blurb = "A Pharmacologist focuses on the chemical needs of the Medical Department, primarily specializing in producing more advanced forms of medicine."
+
/datum/job/psychiatrist
pto_type = PTO_MEDICAL
+ alt_titles = list("Psychologist" = /datum/alt_title/psychologist, "Psychoanalyst" = /datum/alt_title/psychoanalyst, "Psychotherapist" = /datum/alt_title/psychotherapist)
+
+/datum/alt_title/psychoanalyst
+ title = "Psychoanalyst"
+ title_blurb = "A Psychoanalyst provides mental health services to crew members in need, focusing more on therapy than medication. They may also be \
+ called upon to determine whatever ails the mentally unwell, frequently under Security supervision."
+ title_outfit = /decl/hierarchy/outfit/job/medical/psychiatrist/psychologist
+
+/datum/alt_title/psychotherapist
+ title = "Psychotherapist"
+ title_blurb = "A Psychotherapist provides mental health services to crew members in need, focusing more on therapy than medication. They may also be \
+ called upon to determine whatever ails the mentally unwell, frequently under Security supervision."
+ title_outfit = /decl/hierarchy/outfit/job/medical/psychiatrist/psychologist
+
/datum/job/paramedic
- pto_type = PTO_MEDICAL
\ No newline at end of file
+ pto_type = PTO_MEDICAL
+ alt_titles = list("Emergency Medical Technician" = /datum/alt_title/emt, "Medical Responder" = /datum/alt_title/medical_responder)
+
+/datum/alt_title/medical_responder
+ title = "Medical Responder"
+ title_blurb = "A Medical Responder is primarily concerned with the recovery of patients who are unable to make it to the Medical Department on their \
+ own. They are capable of keeping a patient stabilized until they reach the hands of someone with more training."
+ title_outfit = /decl/hierarchy/outfit/job/medical/paramedic/emt
\ No newline at end of file
diff --git a/code/game/jobs/job/offduty_vr.dm b/code/game/jobs/job/offduty_vr.dm
index fa7e94f5a19..9a1b5ce954f 100644
--- a/code/game/jobs/job/offduty_vr.dm
+++ b/code/game/jobs/job/offduty_vr.dm
@@ -18,9 +18,6 @@
pto_type = PTO_CIVILIAN
economic_modifier = 2
-/datum/alt_title/offduty_civ
- title = "Off-duty Worker"
-
/datum/job/offduty_cargo
title = "Off-duty Cargo"
latejoin_only = TRUE
@@ -37,9 +34,6 @@
pto_type = PTO_CARGO
economic_modifier = 2
-/datum/alt_title/offduty_crg
- title = "Off-duty Cargo"
-
/datum/job/offduty_engineering
title = "Off-duty Engineer"
latejoin_only = TRUE
@@ -56,9 +50,6 @@
pto_type = PTO_ENGINEERING
economic_modifier = 5
-/datum/alt_title/offduty_eng
- title = "Off-duty Engineer"
-
/datum/job/offduty_medical
title = "Off-duty Medic"
latejoin_only = TRUE
@@ -75,9 +66,6 @@
pto_type = PTO_MEDICAL
economic_modifier = 5
-/datum/alt_title/offduty_med
- title = "Off-duty Medic"
-
/datum/job/offduty_science
title = "Off-duty Scientist"
latejoin_only = TRUE
@@ -94,9 +82,6 @@
pto_type = PTO_SCIENCE
economic_modifier = 5
-/datum/alt_title/offduty_sci
- title = "Off-duty Scientist"
-
/datum/job/offduty_security
title = "Off-duty Officer"
latejoin_only = TRUE
@@ -113,5 +98,18 @@
pto_type = PTO_SECURITY
economic_modifier = 4
-/datum/alt_title/offduty_sec
- title = "Off-duty Officer"
+/datum/job/offduty_exploration
+ title = "Off-duty Explorer"
+ latejoin_only = TRUE
+ timeoff_factor = -1
+ total_positions = -1
+ faction = "Station"
+ departments = list(DEPARTMENT_OFFDUTY)
+ supervisors = "nobody! Enjoy your time off"
+ selection_color = "#999440"
+ access = list(access_maint_tunnels, access_external_airlocks)
+ minimal_access = list(access_maint_tunnels, access_external_airlocks)
+ outfit_type = /decl/hierarchy/outfit/job/assistant/explorer
+ job_description = "Off-duty crew has no responsibilities or authority and is just there to spend their well-deserved time off."
+ pto_type = PTO_EXPLORATION
+ economic_modifier = 5
diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm
index 2364486285f..79d1be6c3bf 100644
--- a/code/game/jobs/job/science.dm
+++ b/code/game/jobs/job/science.dm
@@ -23,7 +23,6 @@
access_tox_storage, access_teleporter, access_sec_doors,
access_research, access_robotics, access_xenobiology, access_ai_upload, access_tech_storage,
access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, access_network)
- alt_titles = list("Research Supervisor")
minimum_character_age = 25
minimal_player_age = 14
diff --git a/code/game/jobs/job/science_vr.dm b/code/game/jobs/job/science_vr.dm
index 481a31438ef..0356656446b 100644
--- a/code/game/jobs/job/science_vr.dm
+++ b/code/game/jobs/job/science_vr.dm
@@ -11,30 +11,77 @@
access_tox_storage, access_teleporter,
access_research, access_robotics, access_xenobiology, access_ai_upload, access_tech_storage,
access_RC_announce, access_keycard_auth, access_tcomsat, access_xenoarch, access_eva, access_network, access_xenobotany)
+ alt_titles = list("Research Supervisor" = /datum/alt_title/research_supervisor, "Research Manager" = /datum/alt_title/research_manager,
+ "Head of Development" = /datum/alt_title/head_of_development,"Head Scientist" = /datum/alt_title/head_scientist)
+
+/datum/alt_title/research_manager
+ title = "Research Manager"
+
+/datum/alt_title/head_of_development
+ title = "Head of Development"
+
+/datum/alt_title/head_scientist
+ title = "Head Scientist"
+
/datum/job/scientist
spawn_positions = 5
pto_type = PTO_SCIENCE
- alt_titles = list("Xenoarchaeologist" = /datum/alt_title/xenoarch, "Anomalist" = /datum/alt_title/anomalist, \
- "Phoron Researcher" = /datum/alt_title/phoron_research, "Circuit Designer" = /datum/alt_title/circuit_designer)
+ alt_titles = list("Lab Assistant" = /datum/alt_title/lab_assistant, "Xenoarchaeologist" = /datum/alt_title/xenoarch, "Xenopaleontologist" = /datum/alt_title/xenopaleontologist, \
+ "Anomalist" = /datum/alt_title/anomalist, "Phoron Researcher" = /datum/alt_title/phoron_research, "Gas Physicist" = /datum/alt_title/gas_physicist, \
+ "Circuit Designer" = /datum/alt_title/circuit_designer, "Circuit Programmer" = /datum/alt_title/circuit_programmer)
access = list(access_robotics, access_tox, access_tox_storage, access_research, access_xenobiology, access_xenoarch, access_xenobotany)
minimal_access = list(access_tox, access_tox_storage, access_research, access_xenoarch) // Unchanged (for now?), mostly here for reference
+/datum/alt_title/lab_assistant
+ title = "Lab Assistant"
+ title_blurb = "A Lab Assistant is a lower-level member of research staff, whose main purpose is to help scientists with their specialized work in more menial fashion, while also \
+ learning the specializations in process."
+
+/datum/alt_title/xenopaleontologist
+ title = "Xenopaleontologist"
+ title_blurb = "A Xenopaleontologist enters digsites in search of fossils and other ancient remants of alien life. These digsites are frequently in vacuum or other inhospitable \
+ locations, and as such a Xenopaleontologist should be prepared to handle hostile evironmental conditions."
+
+/datum/alt_title/gas_physicist
+ title = "Gas Physicist"
+ title_blurb = "A Gas Physicist is a specialist in various practical applications of gasses, but currently focuses their attention on phoron, and has knowledge of its practical uses and dangers. \
+ Many Gas Physicists are interested in the combustability and explosive properties of gaseous phoron, as well as the specific hazards \
+ of working with the substance in that state."
/datum/alt_title/circuit_designer
title = "Circuit Designer"
title_blurb = "A Circuit Designer is a Scientist whose expertise is working with integrated circuits. They are familar with the workings and programming of those devices. \
They work to create various useful devices using the capabilities of integrated circuitry."
+/datum/alt_title/circuit_programmer
+ title = "Circuit Programmer"
+ title_blurb = "A Circuit Programmer is a Scientist whose expertise is working with integrated circuits. They are familar with the workings and programming of those devices. \
+ They work to create various useful devices using the capabilities of integrated circuitry."
+
+
/datum/job/xenobiologist
spawn_positions = 3
pto_type = PTO_SCIENCE
+ alt_titles = list("Xenozoologist" = /datum/alt_title/xenozoologist, "Xenoanthropologist" = /datum/alt_title/xenoanthropologist)
+
+/datum/alt_title/xenozoologist
+ title = "Xenozoologist"
+
+/datum/alt_title/xenoanthropologist
+ title = "Xenoanthropologist"
+ title_blurb = "Xenoanthropologist still heavily focuses their study on alien lifeforms, but their specialty leans more towards fellow sapient beings than simple animals."
+
/datum/job/roboticist
total_positions = 3
pto_type = PTO_SCIENCE
+ alt_titles = list("Assembly Technician" = /datum/alt_title/assembly_tech, "Biomechanical Engineer" = /datum/alt_title/biomech, "Mechatronic Engineer" = /datum/alt_title/mech_tech)
+
+/datum/alt_title/assembly_tech
+ title = "Assembly Technician"
//////////////////////////////////
// Xenobotanist
@@ -59,3 +106,7 @@
outfit_type = /decl/hierarchy/outfit/job/science/xenobiologist
job_description = "A Xenobotanist grows and cares for a variety of abnormal, custom made, and frequently dangerous plant life. When the products of these plants \
are both safe and beneficial to the station, they may choose to introduce it to the rest of the crew."
+ alt_titles = list("Xenoflorist" = /datum/alt_title/xenoflorist)
+
+/datum/alt_title/xenoflorist
+ title = "Xenoflorist"
diff --git a/code/game/jobs/job/security_vr.dm b/code/game/jobs/job/security_vr.dm
index 4f7604b9371..e9b9017d9af 100644
--- a/code/game/jobs/job/security_vr.dm
+++ b/code/game/jobs/job/security_vr.dm
@@ -11,15 +11,47 @@
access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers,
access_construction,
access_heads, access_hos, access_RC_announce, access_keycard_auth, access_external_airlocks)
+ alt_titles = list("Security Commander" = /datum/alt_title/sec_commander, "Chief of Security" = /datum/alt_title/sec_chief, "Security Manager" = /datum/alt_title/security_manager)
+
+/datum/alt_title/security_manager
+ title = "Security Manager"
+
/datum/job/warden
pto_type = PTO_SECURITY
dept_time_required = 20
+ alt_titles = list("Brig Sentry" = /datum/alt_title/brig_sentry, "Armory Superintendent" = /datum/alt_title/armory_superintendent)
+
+/datum/alt_title/brig_sentry
+ title = "Brig Sentry"
+
+/datum/alt_title/armory_superintendent
+ title = "Armory Superintendent"
+
/datum/job/detective
pto_type = PTO_SECURITY
+ alt_titles = list("Investigator" = /datum/alt_title/investigator, "Security Inspector" = /datum/alt_title/security_inspector, "Forensic Technician" = /datum/alt_title/forensic_tech)
+
+/datum/alt_title/investigator
+ title = "Investigator"
+
+/datum/alt_title/security_inspector
+ title = "Security Inspector"
+
/datum/job/officer
total_positions = 5
spawn_positions = 5
- pto_type = PTO_SECURITY
\ No newline at end of file
+ pto_type = PTO_SECURITY
+ alt_titles = list("Patrol Officer" = /datum/alt_title/patrol_officer, "Security Guard" = /datum/alt_title/security_guard,
+ "Security Deputy" = /datum/alt_title/security_guard, "Junior Officer" = /datum/alt_title/junior_officer)
+
+/datum/alt_title/patrol_officer
+ title = "Patrol Officer"
+
+/datum/alt_title/security_guard
+ title = "Security Guard"
+
+/datum/alt_title/security_deputy
+ title = "Security Deputy"
\ No newline at end of file
diff --git a/code/game/jobs/job/special_vr.dm b/code/game/jobs/job/special_vr.dm
index 5c1a027061a..dcb6a51521a 100644
--- a/code/game/jobs/job/special_vr.dm
+++ b/code/game/jobs/job/special_vr.dm
@@ -24,47 +24,31 @@
get_access()
return get_all_accesses().Copy()
-/*/datum/job/centcom_visitor //For Pleasure // You mean for admin abuse... -Ace
- title = "CentCom Visitor"
- department = "Civilian"
- head_position = 1
+/datum/job/emergency_responder //For staff managing/leading ERTs
+ title = "Emergency Responder"
+ departments = list("Central Command")
+ department_accounts = list(DEPARTMENT_COMMAND, DEPARTMENT_ENGINEERING, DEPARTMENT_MEDICAL, DEPARTMENT_RESEARCH, DEPARTMENT_SECURITY, DEPARTMENT_CARGO, DEPARTMENT_PLANET, DEPARTMENT_CIVILIAN)
faction = "Station"
total_positions = 2
spawn_positions = 1
supervisors = "company officials and Corporate Regulations"
selection_color = "#1D1D4F"
- idtype = /obj/item/weapon/card/id/centcom
access = list()
minimal_access = list()
minimal_player_age = 14
economic_modifier = 20
whitelist_only = 1
latejoin_only = 1
+ outfit_type = /decl/hierarchy/outfit/job/emergency_responder
+ job_description = "Emergency Responders are usually called in to deal with on-station emergencies that the crew require assistance to deal with."
- minimum_character_age = 25
- ideal_character_age = 40
+ minimum_character_age = 18
+ ideal_character_age = 30
- equip(var/mob/living/carbon/human/H)
- if(!H) return 0
- H.equip_to_slot_or_del(new /obj/item/device/radio/headset/centcom(H), slot_l_ear)
- switch(H.backbag)
- if(2) H.equip_to_slot_or_del(new /obj/item/weapon/storage/backpack(H), slot_back)
- if(3) H.equip_to_slot_or_del(new /obj/item/weapon/storage/backpack/satchel(H), slot_back)
- if(4) H.equip_to_slot_or_del(new /obj/item/weapon/storage/backpack/satchel(H), slot_back)
- H.equip_to_slot_or_del(new /obj/item/clothing/under/rank/centcom, slot_w_uniform)
- H.equip_to_slot_or_del(new /obj/item/device/pda/centcom(H), slot_belt)
- H.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(H), slot_shoes)
- H.equip_to_slot_or_del(new /obj/item/clothing/gloves/white(H), slot_gloves)
- H.equip_to_slot_or_del(new /obj/item/clothing/head/beret/centcom/officer(H), slot_head)
- H.equip_to_slot_or_del(new /obj/item/clothing/glasses/omnihud(H), slot_l_store)
-
- H.implant_loyalty()
-
- return 1
+ pto_type = PTO_CIVILIAN
get_access()
- var/access = get_all_accesses()
- return access*/
+ return get_all_accesses().Copy()
/datum/job/clown
title = "Clown"
@@ -78,18 +62,18 @@
selection_color = "#515151"
economic_modifier = 1
job_description = "A Clown is there to entertain the crew and keep high morale using various harmless pranks and ridiculous jokes!"
- alt_titles = list("Clown" = /datum/alt_title/clown, "Jester" = /datum/alt_title/jester)
whitelist_only = 1
latejoin_only = 1
outfit_type = /decl/hierarchy/outfit/job/clown
pto_type = PTO_CIVILIAN
-
-/datum/alt_title/clown
- title = "Clown"
+ alt_titles = list("Jester" = /datum/alt_title/jester, "Fool" = /datum/alt_title/fool)
/datum/alt_title/jester
title = "Jester"
+/datum/alt_title/fool
+ title = "Fool"
+
/datum/job/clown/get_access()
if(config.assistant_maint)
return list(access_maint_tunnels, access_entertainment)
@@ -108,17 +92,14 @@
selection_color = "#515151"
economic_modifier = 1
job_description = "A Mime is there to entertain the crew and keep high morale using unbelievable performances and acting skills!"
- alt_titles = list("Mime" = /datum/alt_title/mime, "Interpretive Dancer" = /datum/alt_title/interpretive_dancer)
+ alt_titles = list("Poseur" = /datum/alt_title/poseur)
whitelist_only = 1
latejoin_only = 1
outfit_type = /decl/hierarchy/outfit/job/mime
pto_type = PTO_CIVILIAN
-/datum/alt_title/mime
- title = "Mime"
-
-/datum/alt_title/interpretive_dancer
- title = "Interpretive Dancer"
+/datum/alt_title/poseur
+ title = "Poseur"
/datum/job/mime/get_access()
if(config.assistant_maint)
diff --git a/code/game/machinery/buttons.dm b/code/game/machinery/buttons.dm
index d15ea493ecf..19716f5d74b 100644
--- a/code/game/machinery/buttons.dm
+++ b/code/game/machinery/buttons.dm
@@ -16,9 +16,3 @@
/obj/machinery/button/attackby(obj/item/weapon/W, mob/user as mob)
return attack_hand(user)
-
-// VOREStation Edit Begin
-/obj/machinery/button/attack_hand(obj/item/weapon/W, mob/user as mob)
- if(..()) return 1
- playsound(src, 'sound/machines/button.ogg', 100, 1)
-// VOREStation Edit End
diff --git a/code/game/machinery/buttons_vr.dm b/code/game/machinery/buttons_vr.dm
new file mode 100644
index 00000000000..a8c9c4bed1e
--- /dev/null
+++ b/code/game/machinery/buttons_vr.dm
@@ -0,0 +1,23 @@
+/obj/machinery/button/attack_hand(obj/item/weapon/W, mob/user as mob)
+ if(..()) return 1
+ playsound(src, 'sound/machines/button.ogg', 100, 1)
+
+/obj/machinery/button/windowtint/multitint
+ name = "tint control"
+ desc = "A remote control switch for polarized windows and doors."
+
+/obj/machinery/button/windowtint/multitint/toggle_tint()
+ use_power(5)
+ active = !active
+ update_icon()
+
+ var/in_range = range(src,range)
+ for(var/obj/structure/window/reinforced/polarized/W in in_range)
+ if(W.id == src.id || !W.id)
+ spawn(0)
+ W.toggle()
+ for(var/obj/machinery/door/D in in_range)
+ if(D.icon_tinted)
+ if(D.id_tint == src.id || !D.id_tint)
+ spawn(0)
+ D.toggle()
\ No newline at end of file
diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm
index 6921cf989c8..7ff97c83e85 100644
--- a/code/game/machinery/computer/arcade.dm
+++ b/code/game/machinery/computer/arcade.dm
@@ -30,7 +30,7 @@
// If it's a generic arcade machine, pick a random arcade
// circuit board for it and make the new machine
if(!circuit)
- var/choice = pick(typesof(/obj/item/weapon/circuitboard/arcade) - /obj/item/weapon/circuitboard/arcade)
+ var/choice = pick(subtypesof(/obj/item/weapon/circuitboard/arcade) - /obj/item/weapon/circuitboard/arcade/clawmachine)
var/obj/item/weapon/circuitboard/CB = new choice()
new CB.build_path(loc, CB)
qdel(src)
@@ -1072,3 +1072,250 @@
#undef ORION_STATUS_NORMAL
#undef ORION_STATUS_GAMEOVER
#undef ORION_STATUS_MARKET
+
+//////////////////
+// Claw Machine //
+//////////////////
+
+/obj/machinery/computer/arcade/clawmachine
+ name = "AlliCo Grab-a-Gift"
+ desc = "Show off your arcade skills for that special someone!"
+ icon_state = "clawmachine"
+ icon_keyboard = null
+ icon_screen = null
+ circuit = /obj/item/weapon/circuitboard/arcade/clawmachine
+ prizes = list(/obj/random/plushie)
+ var/wintick = 0
+ var/winprob = 0
+ var/instructions = "Insert 1 thaler or swipe a card to play!"
+ var/gameStatus = "CLAWMACHINE_NEW"
+ var/gamepaid = 0
+ var/gameprice = 1
+ var/winscreen = ""
+
+/// Payment
+/obj/machinery/computer/arcade/clawmachine/attackby(obj/item/I as obj, mob/user as mob)
+ if(..())
+ return
+
+ if(gamepaid == 0 && vendor_account && !vendor_account.suspended)
+ var/paid = 0
+ var/obj/item/weapon/card/id/W = I.GetID()
+ if(W) //for IDs and PDAs and wallets with IDs
+ paid = pay_with_card(W,I)
+ else if(istype(I, /obj/item/weapon/spacecash/ewallet))
+ var/obj/item/weapon/spacecash/ewallet/C = I
+ paid = pay_with_ewallet(C)
+ else if(istype(I, /obj/item/weapon/spacecash))
+ var/obj/item/weapon/spacecash/C = I
+ paid = pay_with_cash(C, user)
+ if(paid)
+ gamepaid = 1
+ instructions = "Hit start to play!"
+ return
+ return
+
+////// Cash
+/obj/machinery/computer/arcade/clawmachine/proc/pay_with_cash(var/obj/item/weapon/spacecash/cashmoney, mob/user)
+ if(!emagged)
+ if(gameprice > cashmoney.worth)
+
+ // This is not a status display message, since it's something the character
+ // themselves is meant to see BEFORE putting the money in
+ to_chat(usr, "[bicon(cashmoney)] That is not enough money. ")
+ return 0
+
+ if(istype(cashmoney, /obj/item/weapon/spacecash))
+
+ visible_message("\The [usr] inserts some cash into \the [src]. ")
+ cashmoney.worth -= gameprice
+
+ if(cashmoney.worth <= 0)
+ usr.drop_from_inventory(cashmoney)
+ qdel(cashmoney)
+ else
+ cashmoney.update_icon()
+
+ // Machine has no idea who paid with cash
+ credit_purchase("(cash)")
+ return 1
+ if(emagged)
+ playsound(src, 'sound/arcade/steal.ogg', 50, 1, extrarange = -3, falloff = 0.1, ignore_walls = FALSE)
+ to_chat(user, "It doesn't seem to accept that! Seem you'll need to swipe a valid ID. ")
+
+
+///// Ewallet
+/obj/machinery/computer/arcade/clawmachine/proc/pay_with_ewallet(var/obj/item/weapon/spacecash/ewallet/wallet)
+ if(!emagged)
+ visible_message("\The [usr] swipes \the [wallet] through \the [src]. ")
+ playsound(src, 'sound/machines/id_swipe.ogg', 50, 1)
+ if(gameprice > wallet.worth)
+ visible_message("Insufficient funds. ")
+ return 0
+ else
+ wallet.worth -= gameprice
+ credit_purchase("[wallet.owner_name] (chargecard)")
+ return 1
+ if(emagged)
+ playsound(src, 'sound/arcade/steal.ogg', 50, 1, extrarange = -3, falloff = 0.1, ignore_walls = FALSE)
+ to_chat(usr, "It doesn't seem to accept that! Seem you'll need to swipe a valid ID. ")
+
+///// ID
+/obj/machinery/computer/arcade/clawmachine/proc/pay_with_card(var/obj/item/weapon/card/id/I, var/obj/item/ID_container)
+ if(I==ID_container || ID_container == null)
+ visible_message("\The [usr] swipes \the [I] through \the [src]. ")
+ else
+ visible_message("\The [usr] swipes \the [ID_container] through \the [src]. ")
+ playsound(src, 'sound/machines/id_swipe.ogg', 50, 1)
+ var/datum/money_account/customer_account = get_account(I.associated_account_number)
+ if(!customer_account)
+ visible_message("Error: Unable to access account. Please contact technical support if problem persists. ")
+ return 0
+
+ if(customer_account.suspended)
+ visible_message("Unable to access account: account suspended. ")
+ return 0
+
+ // Have the customer punch in the PIN before checking if there's enough money. Prevents people from figuring out acct is
+ // empty at high security levels
+ if(customer_account.security_level != 0) //If card requires pin authentication (ie seclevel 1 or 2)
+ var/attempt_pin = input("Enter pin code", "Vendor transaction") as num
+ customer_account = attempt_account_access(I.associated_account_number, attempt_pin, 2)
+
+ if(!customer_account)
+ visible_message("Unable to access account: incorrect credentials. ")
+ return 0
+
+ if(gameprice > customer_account.money)
+ visible_message("Insufficient funds in account. ")
+ return 0
+ else
+ // Okay to move the money at this point
+ if(emagged)
+ gameprice = customer_account.money
+ // debit money from the purchaser's account
+ customer_account.money -= gameprice
+
+ // create entry in the purchaser's account log
+ var/datum/transaction/T = new()
+ T.target_name = "[vendor_account.owner_name] (via [name])"
+ T.purpose = "Purchase of arcade game([name])"
+ if(gameprice > 0)
+ T.amount = "([gameprice])"
+ else
+ T.amount = "[gameprice]"
+ T.source_terminal = name
+ T.date = current_date_string
+ T.time = stationtime2text()
+ customer_account.transaction_log.Add(T)
+
+ // Give the vendor the money. We use the account owner name, which means
+ // that purchases made with stolen/borrowed card will look like the card
+ // owner made them
+ credit_purchase(customer_account.owner_name)
+ return 1
+
+/// Add to vendor account
+
+/obj/machinery/computer/arcade/clawmachine/proc/credit_purchase(var/target as text)
+ vendor_account.money += gameprice
+
+ var/datum/transaction/T = new()
+ T.target_name = target
+ T.purpose = "Purchase of arcade game([name])"
+ T.amount = "[gameprice]"
+ T.source_terminal = name
+ T.date = current_date_string
+ T.time = stationtime2text()
+ vendor_account.transaction_log.Add(T)
+
+/// End Payment
+
+/obj/machinery/computer/arcade/clawmachine/New()
+ ..()
+
+/obj/machinery/computer/arcade/clawmachine/attack_hand(mob/living/user)
+ if(..())
+ return
+ tgui_interact(user)
+
+/// TGUI Stuff
+
+/obj/machinery/computer/arcade/clawmachine/tgui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = 0, datum/tgui/master_ui = null, datum/tgui_state/state = GLOB.tgui_default_state)
+ ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open)
+ if(!ui)
+ ui = new(user, src, ui_key, "ClawMachine", name, 300, 400, master_ui, state)
+ ui.autoupdate = TRUE
+ ui.open()
+
+/obj/machinery/computer/arcade/clawmachine/tgui_data(mob/user)
+ var/list/data = list()
+
+ data["wintick"] = wintick
+ data["instructions"] = instructions
+ data["gameStatus"] = gameStatus
+ data["winscreen"] = winscreen
+
+ return data
+
+/obj/machinery/computer/arcade/clawmachine/tgui_act(action, params)
+ if(..())
+ return
+
+ if(action == "newgame" && gamepaid == 0)
+ playsound(src, 'sound/arcade/steal.ogg', 50, 1, extrarange = -3, falloff = 0.1, ignore_walls = FALSE)
+
+ if(action == "newgame" && gamepaid == 1)
+ gameStatus = "CLAWMACHINE_ON"
+ icon_state = "clawmachine_move"
+ instructions = "Guide the claw to the prize you want!"
+ wintick = 0
+
+ if(action == "return" && gameStatus == "CLAWMACHINE_END")
+ gameStatus = "CLAWMACHINE_NEW"
+
+ if(action == "pointless" && wintick < 10)
+ wintick += 1
+
+ if(action == "pointless" && wintick >= 10)
+ instructions = "Insert 1 thaler or swipe a card to play!"
+ clawvend()
+
+/obj/machinery/computer/arcade/clawmachine/proc/clawvend() /// True to a real claw machine, it's NEARLY impossible to win.
+ winprob += 1 /// Yeah.
+
+ if(prob(winprob)) /// YEAH.
+ if(!emagged)
+ prizevend()
+ winscreen = "You won!"
+ else if(emagged)
+ gameprice = 1
+ emagged = 0
+ winscreen = "You won...?"
+ var/obj/item/weapon/grenade/G = new /obj/item/weapon/grenade/explosive(get_turf(src)) /// YEAAAAAAAAAAAAAAAAAAH!!!!!!!!!!
+ G.activate()
+ G.throw_at(get_turf(usr),10,10) /// Play stupid games, win stupid prizes.
+
+ playsound(src, 'sound/arcade/Ori_win.ogg', 50, 1, extrarange = -3, falloff = 0.1, ignore_walls = FALSE)
+ winprob = 0
+
+ else
+ playsound(src, 'sound/arcade/Ori_fail.ogg', 50, 1, extrarange = -3, falloff = 0.1, ignore_walls = FALSE)
+ winscreen = "Aw, shucks. Try again!"
+ wintick = 0
+ gamepaid = 0
+ icon_state = "clawmachine"
+ gameStatus = "CLAWMACHINE_END"
+
+/obj/machinery/computer/arcade/clawmachine/emag_act(mob/user)
+ if(!emagged)
+ to_chat(user, "You modify the claw of the machine. The next one is sure to win! You just have to pay... ")
+ name = "AlliCo Snag-A-Prize"
+ desc = "Get some goodies, all for you!"
+ instructions = "Swipe a card to play!"
+ winprob = 100
+ gamepaid = 0
+ wintick = 0
+ gameStatus = "CLAWMACHINE_NEW"
+ emagged = 1
+ return 1
\ No newline at end of file
diff --git a/code/game/machinery/computer/camera_vr.dm b/code/game/machinery/computer/camera_vr.dm
new file mode 100644
index 00000000000..1e006b0f4bb
--- /dev/null
+++ b/code/game/machinery/computer/camera_vr.dm
@@ -0,0 +1,26 @@
+/obj/machinery/computer/security/abductor
+ name = "camera uplink"
+ desc = "Used for hacking into camera networks"
+ icon = 'icons/obj/abductor.dmi'
+ icon_state = "camera"
+ network = list( "Mercenary",
+ "Cargo",
+ "Circuits",
+ "Civilian",
+ "Command",
+ "Engine",
+ "Engineering",
+ "Exploration",
+ "Medical",
+ "Mining Outpost",
+ "Outside",
+ "Research",
+ "Research Outpost",
+ "Robots",
+ "Security",
+ "Telecommunications",
+ "Tether",
+ "TalonShip",
+ "Entertainment",
+ "Communicators"
+ )
\ No newline at end of file
diff --git a/code/game/machinery/computer/guestpass.dm b/code/game/machinery/computer/guestpass.dm
index 5fc8c77bd0e..20fd6991a01 100644
--- a/code/game/machinery/computer/guestpass.dm
+++ b/code/game/machinery/computer/guestpass.dm
@@ -168,9 +168,9 @@
if(reas)
reason = reas
if("duration")
- var/dur = input("Duration (in minutes) during which pass is valid (up to 120 minutes).", "Duration") as num|null
+ var/dur = input("Duration (in minutes) during which pass is valid (up to 360 minutes).", "Duration") as num|null //VOREStation Edit
if(dur)
- if(dur > 0 && dur <= 120)
+ if(dur > 0 && dur <= 360) //VOREStation Edit
duration = dur
else
to_chat(usr, "Invalid duration. ")
diff --git a/code/game/machinery/computer/id_restorer_vr.dm b/code/game/machinery/computer/id_restorer_vr.dm
index 7afabc5492e..acd4caa14ca 100644
--- a/code/game/machinery/computer/id_restorer_vr.dm
+++ b/code/game/machinery/computer/id_restorer_vr.dm
@@ -30,14 +30,15 @@
if(..()) return
if(stat & (NOPOWER|BROKEN)) return
+ if(!inserted) // No point in giving you an option what to do if there's no ID to do things with.
+ to_chat(user, "No ID is inserted. ")
+ return
+
var/choice = alert(user,"What do you want to do?","[src]","Restore ID access","Eject ID","Cancel")
if(user.incapacitated() || (get_dist(src, user) > 1))
return
switch(choice)
if("Restore ID access")
- if(!inserted)
- to_chat(user, "No ID is inserted. ")
- return
var/mob/living/carbon/human/H = user
if(!(istype(H)))
to_chat(user, "Invalid user detected. Access denied. ")
@@ -66,9 +67,6 @@
flick(icon_fail, src)
return
if("Eject ID")
- if(!inserted)
- to_chat(user, "No ID is inserted. ")
- return
if(ishuman(user))
inserted.forceMove(get_turf(src))
if(!user.get_active_hand())
diff --git a/code/game/machinery/computer/security.dm b/code/game/machinery/computer/security.dm
index 0b6ab77d7a2..1fbd897113d 100644
--- a/code/game/machinery/computer/security.dm
+++ b/code/game/machinery/computer/security.dm
@@ -317,16 +317,16 @@
if(!length(t1))
return
- for(var/datum/data/record/R in data_core.security)
- if(t1 == lowertext(R.fields["name"]) || t1 == lowertext(R.fields["id"]) || t1 == lowertext(R.fields["b_dna"]))
- active2 = R
+ for(var/datum/data/record/R in data_core.general)
+ if(t1 == lowertext(R.fields["name"]) || t1 == lowertext(R.fields["id"]) || t1 == lowertext(R.fields["fingerprint"]))
+ active1 = R
break
- if(!active2)
- set_temp("Security record not found. You must enter the person's exact name, ID or DNA.", "danger")
+ if(!active1)
+ set_temp("Security record not found. You must enter the person's exact name, ID, or fingerprint.", "danger")
return
- for(var/datum/data/record/E in data_core.general)
- if(E.fields["name"] == active2.fields["name"] && E.fields["id"] == active2.fields["id"])
- active1 = E
+ for(var/datum/data/record/E in data_core.security)
+ if(E.fields["name"] == active1.fields["name"] && E.fields["id"] == active1.fields["id"])
+ active2 = E
break
screen = SEC_DATA_RECORD
if("print_p")
diff --git a/code/game/machinery/deployable.dm b/code/game/machinery/deployable.dm
index db275597960..64a3cc1fc78 100644
--- a/code/game/machinery/deployable.dm
+++ b/code/game/machinery/deployable.dm
@@ -1,111 +1,8 @@
/*
CONTAINS:
Deployable items
-Barricades
*/
-//Barricades!
-/obj/structure/barricade
- name = "barricade"
- desc = "This space is blocked off by a barricade."
- icon = 'icons/obj/structures.dmi'
- icon_state = "barricade"
- anchored = 1.0
- density = 1.0
- var/health = 100
- var/maxhealth = 100
- var/datum/material/material
-
-/obj/structure/barricade/New(var/newloc, var/material_name)
- ..(newloc)
- if(!material_name)
- material_name = "wood"
- material = get_material_by_name("[material_name]")
- if(!material)
- qdel(src)
- return
- name = "[material.display_name] barricade"
- desc = "This space is blocked off by a barricade made of [material.display_name]."
- color = material.icon_colour
- maxhealth = material.integrity
- health = maxhealth
-
-/obj/structure/barricade/get_material()
- return material
-
-/obj/structure/barricade/attackby(obj/item/W as obj, mob/user as mob)
- user.setClickCooldown(user.get_attack_speed(W))
- if(istype(W, /obj/item/stack))
- var/obj/item/stack/D = W
- if(D.get_material_name() != material.name)
- return //hitting things with the wrong type of stack usually doesn't produce messages, and probably doesn't need to.
- if(health < maxhealth)
- if(D.get_amount() < 1)
- to_chat(user, "You need one sheet of [material.display_name] to repair \the [src]. ")
- return
- visible_message("[user] begins to repair \the [src]. ")
- if(do_after(user,20) && health < maxhealth)
- if(D.use(1))
- health = maxhealth
- visible_message("[user] repairs \the [src]. ")
- return
- return
- else
- switch(W.damtype)
- if("fire")
- health -= W.force * 1
- if("brute")
- health -= W.force * 0.75
- if(material == (get_material_by_name(MAT_WOOD) || get_material_by_name(MAT_SIFWOOD)))
- playsound(src, 'sound/effects/woodcutting.ogg', 100, 1)
- else
- playsound(src, 'sound/weapons/smash.ogg', 50, 1)
- CheckHealth()
- ..()
-
-/obj/structure/barricade/proc/CheckHealth()
- if(health <= 0)
- dismantle()
- return
-
-/obj/structure/barricade/take_damage(var/damage)
- health -= damage
- CheckHealth()
- return
-
-/obj/structure/barricade/attack_generic(var/mob/user, var/damage, var/attack_verb)
- visible_message("[user] [attack_verb] the [src]! ")
- if(material == get_material_by_name("resin"))
- playsound(src, 'sound/effects/attackblob.ogg', 100, 1)
- else if(material == (get_material_by_name(MAT_WOOD) || get_material_by_name(MAT_SIFWOOD)))
- playsound(src, 'sound/effects/woodcutting.ogg', 100, 1)
- else
- playsound(src, 'sound/weapons/smash.ogg', 50, 1)
- user.do_attack_animation(src)
- health -= damage
- CheckHealth()
- return
-
-/obj/structure/barricade/proc/dismantle()
- material.place_dismantled_product(get_turf(src))
- visible_message("\The [src] falls apart! ")
- qdel(src)
- return
-
-/obj/structure/barricade/ex_act(severity)
- switch(severity)
- if(1.0)
- dismantle()
- if(2.0)
- health -= 25
- CheckHealth()
-
-/obj/structure/barricade/CanPass(atom/movable/mover, turf/target)//So bullets will fly over and stuff.
- if(istype(mover) && mover.checkpass(PASSTABLE))
- return TRUE
- return FALSE
-
-//Actual Deployable machinery stuff
/obj/machinery/deployable
name = "deployable"
desc = "deployable"
diff --git a/code/game/machinery/doors/airlock_vr.dm b/code/game/machinery/doors/airlock_vr.dm
index c26bb9187c3..eb1594283b4 100644
--- a/code/game/machinery/doors/airlock_vr.dm
+++ b/code/game/machinery/doors/airlock_vr.dm
@@ -20,3 +20,15 @@
req_one_access = list()
normalspeed = FALSE // So it closes faster and hopefully keeps the warm air inside.
hackProof = TRUE //VOREStation Edit - No borgos
+
+/obj/machinery/door/airlock/glass_security/polarized
+ name = "Electrochromic Security Airlock"
+ icon_tinted = 'icons/obj/doors/Doorsectinted_vr.dmi'
+
+/obj/machinery/door/airlock/glass_medical/polarized
+ name = "Electrochromic Medical Airlock"
+ icon_tinted = 'icons/obj/doors/doormedtinted_vr.dmi'
+
+/obj/machinery/door/airlock/glass_command/polarized
+ name = "Electrochormic Command Airlock"
+ icon_tinted = 'icons/obj/doors/Doorcomtinted_vr.dmi'
diff --git a/code/game/machinery/doors/door_vr.dm b/code/game/machinery/doors/door_vr.dm
index 024162bc359..6c36a2514d3 100644
--- a/code/game/machinery/doors/door_vr.dm
+++ b/code/game/machinery/doors/door_vr.dm
@@ -4,6 +4,9 @@
/obj/machinery/door
var/reinforcing = 0 //vorestation addition
+ var/tintable = 0
+ var/icon_tinted
+ var/id_tint
/obj/machinery/door/firedoor
heat_proof = 1
@@ -102,4 +105,29 @@
/obj/machinery/door/blast/regular/
heat_proof = 1 //just so repairing them doesn't try to fireproof something that never takes fire damage
+/obj/machinery/door/proc/toggle()
+ if(glass)
+ icon = icon_tinted
+ glass = 0
+ if(!operating && density)
+ set_opacity(1)
+ else
+ icon = initial(icon)
+ glass = 1
+ if(!operating)
+ set_opacity(0)
+/obj/machinery/button/windowtint/doortint
+ name = "door tint control"
+ desc = "A remote control switch for polarized glass doors."
+
+/obj/machinery/button/windowtint/doortint/toggle_tint()
+ use_power(5)
+ active = !active
+ update_icon()
+
+ for(var/obj/machinery/door/D in range(src,range))
+ if(D.icon_tinted && (D.id_tint == src.id || !D.id_tint))
+ spawn(0)
+ D.toggle()
+ return
\ No newline at end of file
diff --git a/code/game/machinery/doors/multi_tile_vr.dm b/code/game/machinery/doors/multi_tile_vr.dm
new file mode 100644
index 00000000000..f8a76c51ea1
--- /dev/null
+++ b/code/game/machinery/doors/multi_tile_vr.dm
@@ -0,0 +1,22 @@
+/obj/machinery/door/airlock/multi_tile/glass/polarized
+ name = "Electrochromic Glass Airlock"
+ icon_tinted = 'icons/obj/doors/Door2x1tinted_vr.dmi'
+
+/obj/machinery/door/airlock/multi_tile/glass/polarized/New()
+ ..()
+ create_fillers()
+
+/obj/machinery/door/airlock/multi_tile/glass/polarized/toggle()
+ . = ..()
+ if(!operating)
+ if(filler1)
+ filler1.set_opacity(opacity)
+ if(filler2)
+ filler2.set_opacity(opacity)
+
+/obj/machinery/door/airlock/multi_tile/glass/polarized/close()
+ . = ..()
+ if(filler1)
+ filler1.set_opacity(!glass)
+ if(filler2)
+ filler2.set_opacity(!glass)
\ No newline at end of file
diff --git a/code/game/machinery/event/stage_vr.dm b/code/game/machinery/event/stage_vr.dm
new file mode 100644
index 00000000000..1190498a214
--- /dev/null
+++ b/code/game/machinery/event/stage_vr.dm
@@ -0,0 +1,10 @@
+/obj/structure/event/stage
+ name = "stage"
+ desc = "It's a stage!"
+ icon = 'icons/misc/event/stage.dmi'
+ icon_state = "stage1"
+ anchored = 1.0
+ density = 0
+ pixel_y = -224
+ pixel_x = -224
+ plane = -44
\ No newline at end of file
diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm
index 1afa9910f45..a96ef4ed0aa 100644
--- a/code/game/machinery/machinery.dm
+++ b/code/game/machinery/machinery.dm
@@ -327,7 +327,10 @@ Class Procs:
return 0
if(!component_parts)
return 0
- if(panel_open)
+ to_chat(user, "Following parts detected in [src]: ")
+ for(var/obj/item/C in component_parts)
+ to_chat(user, " [C.name] ")
+ if(panel_open || !R.panel_req)
var/obj/item/weapon/circuitboard/CB = circuit
var/P
for(var/obj/item/weapon/stock_parts/A in component_parts)
@@ -347,10 +350,6 @@ Class Procs:
break
update_icon()
RefreshParts()
- else
- to_chat(user, "Following parts detected in the machine: ")
- for(var/var/obj/item/C in component_parts) //var/var/obj/item/C?
- to_chat(user, " [C.name] ")
return 1
// Default behavior for wrenching down machines. Supports both delay and instant modes.
@@ -426,6 +425,9 @@ Class Procs:
/obj/machinery/proc/dismantle()
playsound(src, 'sound/items/Crowbar.ogg', 50, 1)
+ for(var/obj/I in contents)
+ if(istype(I,/obj/item/weapon/card/id))
+ I.forceMove(src.loc)
//TFF 3/6/19 - port Cit RP fix of infinite frames. If it doesn't have a circuit board, don't create a frame. Return a smack instead. BONK!
if(!circuit)
return 0
diff --git a/code/game/machinery/portable_turret_vr.dm b/code/game/machinery/portable_turret_vr.dm
index 4af3a781427..90866e1d632 100644
--- a/code/game/machinery/portable_turret_vr.dm
+++ b/code/game/machinery/portable_turret_vr.dm
@@ -1,6 +1,28 @@
+/obj/machinery/porta_turret/stationary/CIWS
+ name = "CIWS turret"
+ desc = "A ship weapons turret designed for light defense."
+ req_one_access = list(access_cent_general)
+ health = 200
+ maxhealth = 200
+ enabled = TRUE
+ lethal = TRUE
+ check_weapons = TRUE
+ can_salvage = FALSE
+
+/obj/machinery/porta_turret/stationary/syndie/CIWS
+ name = "mercenary CIWS turret"
+ desc = "A ship weapons turret designed for light defense."
+ req_one_access = list(access_syndicate)
+ health = 200
+ maxhealth = 200
+ enabled = TRUE
+ lethal = TRUE
+ check_weapons = TRUE
+ can_salvage = FALSE
+
/obj/machinery/porta_turret/industrial/military
name = "military CIWS turret"
- desc = "A ship-grade weapons turret designed for anti-fighter defense."
+ desc = "A ship weapons turret designed for anti-fighter defense."
req_one_access = list(access_cent_general)
installation = /obj/item/weapon/gun/energy/lasercannon
health = 500
@@ -9,17 +31,4 @@
lethal = TRUE
check_weapons = TRUE
auto_repair = TRUE
- can_salvage = FALSE
-
-/obj/machinery/porta_turret/stationary/syndie/CIWS
- name = "mercenary CIWS turret"
- desc = "A ship-grade weapons turret designed for anti-fighter defense."
- req_one_access = list(access_syndicate)
- installation = /obj/item/weapon/gun/energy/lasercannon
- health = 500
- maxhealth = 500
- enabled = TRUE
- lethal = TRUE
- check_weapons = TRUE
- auto_repair = TRUE
can_salvage = FALSE
\ No newline at end of file
diff --git a/code/game/machinery/rechargestation.dm b/code/game/machinery/rechargestation.dm
index af7cdd5dfb4..259c907bde9 100644
--- a/code/game/machinery/rechargestation.dm
+++ b/code/game/machinery/rechargestation.dm
@@ -87,25 +87,44 @@
else if(ishuman(occupant))
var/mob/living/carbon/human/H = occupant
- // In case they somehow end up with positive values for otherwise unobtainable damage...
- if(H.getToxLoss() > 0)
- H.adjustToxLoss(-(rand(1,3)))
- if(H.getOxyLoss() > 0)
- H.adjustOxyLoss(-(rand(1,3)))
- if(H.getCloneLoss() > 0)
- H.adjustCloneLoss(-(rand(1,3)))
- if(H.getBrainLoss() > 0)
- H.adjustBrainLoss(-(rand(1,3)))
+ if(H.isSynthetic())
+ // In case they somehow end up with positive values for otherwise unobtainable damage...
+ if(H.getToxLoss() > 0)
+ H.adjustToxLoss(-(rand(1,3)))
+ if(H.getOxyLoss() > 0)
+ H.adjustOxyLoss(-(rand(1,3)))
+ if(H.getCloneLoss() > 0)
+ H.adjustCloneLoss(-(rand(1,3)))
+ if(H.getBrainLoss() > 0)
+ H.adjustBrainLoss(-(rand(1,3)))
- // Also recharge their internal battery.
- if(H.isSynthetic() && H.nutrition < 500) //VOREStation Edit
- H.nutrition = min(H.nutrition+10, 500) //VOREStation Edit
- cell.use(7000/450*10)
+ // Also recharge their internal battery.
+ if(H.isSynthetic() && H.nutrition < 500) //VOREStation Edit
+ H.nutrition = min(H.nutrition+10, 500) //VOREStation Edit
+ cell.use(7000/450*10)
- // And clear up radiation
- if(H.radiation > 0)
- H.radiation = max(H.radiation - rand(5, 15), 0)
+ // And clear up radiation
+ if(H.radiation > 0)
+ H.radiation = max(H.radiation - rand(5, 15), 0)
+ if(H.wearing_rig) // stepping into a borg charger to charge your rig and fix your shit
+ var/obj/item/weapon/rig/wornrig = H.get_rig()
+ if(wornrig) // just to make sure
+ for(var/obj/item/rig_module/storedmod in wornrig.installed_modules)
+ if(weld_rate && storedmod.damage && cell.checked_use(weld_power_use * weld_rate * CELLRATE))
+ to_chat(H, "[storedmod] is repaired! ")
+ storedmod.damage = 0
+ if(wornrig.chest)
+ var/obj/item/clothing/suit/space/rig/rigchest = wornrig.chest
+ if(weld_rate && rigchest.damage && cell.checked_use(weld_power_use * weld_rate * CELLRATE))
+ rigchest.breaches = list()
+ rigchest.calc_breach_damage()
+ to_chat(H, "[rigchest] is repaired! ")
+ if(wornrig.cell)
+ var/obj/item/weapon/cell/rigcell = wornrig.cell
+ var/diff = min(rigcell.maxcharge - rigcell.charge, charging_power * CELLRATE) // Capped by charging_power / tick
+ var/charge_used = cell.use(diff)
+ rigcell.give(charge_used)
/obj/machinery/recharge_station/examine(mob/user)
. = ..()
@@ -237,7 +256,7 @@
else if(istype(L, /mob/living/carbon/human))
var/mob/living/carbon/human/H = L
- if(H.isSynthetic())
+ if(H.isSynthetic() || H.wearing_rig)
add_fingerprint(H)
H.reset_view(src)
H.forceMove(src)
diff --git a/code/game/machinery/syndicatebeacon_vr.dm b/code/game/machinery/syndicatebeacon_vr.dm
index ef6b3da0bbf..668b36dcb70 100644
--- a/code/game/machinery/syndicatebeacon_vr.dm
+++ b/code/game/machinery/syndicatebeacon_vr.dm
@@ -25,7 +25,7 @@
updateUsrDialog()
return
var/mob/M = locate(href_list["traitormob"])
- if(M.mind.special_role || jobban_isbanned(M, "Syndicate"))
+ if(M.mind.tcrystals > 0 || jobban_isbanned(M, "Syndicate"))
temptext = "We have no need for you at this time. Have a pleasant day. "
updateUsrDialog()
return
@@ -33,7 +33,9 @@
if(istype(M, /mob/living/carbon/human))
var/mob/living/carbon/human/N = M
to_chat(N, "Access granted, here are the supplies! ")
- traitors.equip(N)
+ traitors.spawn_uplink(N)
+ N.mind.tcrystals = DEFAULT_TELECRYSTAL_AMOUNT
+ N.mind.accept_tcrystals = 1
message_admins("[N]/([N.ckey]) has recieved an uplink and telecrystals from the syndicate beacon.")
updateUsrDialog()
diff --git a/code/game/machinery/telecomms/broadcaster.dm b/code/game/machinery/telecomms/broadcaster.dm
index 19bc0304217..813c756ab40 100644
--- a/code/game/machinery/telecomms/broadcaster.dm
+++ b/code/game/machinery/telecomms/broadcaster.dm
@@ -233,17 +233,19 @@ var/message_delay = 0 // To make sure restarting the recentmessages list is kept
if(is_freq_listening(signal)) // detect subspace signals
- signal.data["done"] = 1 // mark the signal as being broadcasted
+ //signal.data["done"] = 1 // mark the signal as being broadcasted since we're a broadcaster
signal.data["compression"] = 0
+ /*
// Search for the original signal and mark it as done as well
var/datum/signal/original = signal.data["original"]
if(original)
original.data["done"] = 1
+ */
// For some reason level is both used as a list and not a list, and now it needs to be a list.
// Because this is a 'all in one' machine, we're gonna just cheat.
- signal.data["level"] = using_map.contact_levels.Copy()
+ //signal.data["level"] = using_map.contact_levels.Copy()
if(signal.data["slow"] > 0)
sleep(signal.data["slow"]) // simulate the network lag if necessary
diff --git a/code/game/machinery/telecomms/broadcaster_vr.dm b/code/game/machinery/telecomms/broadcaster_vr.dm
new file mode 100644
index 00000000000..4bdccfbc803
--- /dev/null
+++ b/code/game/machinery/telecomms/broadcaster_vr.dm
@@ -0,0 +1,46 @@
+//ERT version with unlimited range (doesn't even check) and uses no power, to enable ert comms to work anywhere.
+/obj/machinery/telecomms/allinone/ert
+ use_power = USE_POWER_OFF
+ idle_power_usage = 0
+
+/obj/machinery/telecomms/allinone/ert/receive_signal(datum/signal/signal)
+ if(!on) // has to be on to receive messages
+ return
+
+ if(is_freq_listening(signal)) // detect subspace signals
+
+ //signal.data["done"] = 1 // mark the signal as being broadcasted since we're a broadcaster
+ signal.data["compression"] = 0
+
+ /*
+ // Search for the original signal and mark it as done as well
+ var/datum/signal/original = signal.data["original"]
+ if(original)
+ original.data["done"] = 1
+ */
+
+ // For some reason level is both used as a list and not a list, and now it needs to be a list.
+ // Because this is a 'all in one' machine, we're gonna just cheat.
+ //signal.data["level"] = using_map.contact_levels.Copy()
+
+ if(signal.data["slow"] > 0)
+ sleep(signal.data["slow"]) // simulate the network lag if necessary
+
+ /* ###### Broadcast a message using signal.data ###### */
+
+ var/datum/radio_frequency/connection = signal.data["connection"]
+
+ var/list/forced_radios
+ for(var/weakref/wr in linked_radios_weakrefs)
+ var/obj/item/device/radio/R = wr.resolve()
+ if(istype(R))
+ LAZYDISTINCTADD(forced_radios, R)
+
+ if(connection.frequency in CENT_FREQS) // if ert broadcast, just
+ Broadcast_Message(signal.data["connection"], signal.data["mob"],
+ signal.data["vmask"], signal.data["vmessage"],
+ signal.data["radio"], signal.data["message"],
+ signal.data["name"], signal.data["job"],
+ signal.data["realname"], signal.data["vname"], DATA_NORMAL,
+ signal.data["compression"], list(0), connection.frequency,
+ signal.data["verb"], forced_radios)
diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm
index c918fca5d21..4f3d532c279 100644
--- a/code/game/machinery/vending.dm
+++ b/code/game/machinery/vending.dm
@@ -458,13 +458,9 @@ GLOBAL_LIST_EMPTY(vending_products)
if(!can_buy(R, usr))
return
-
- vend_ready = FALSE // From this point onwards, vendor is locked to performing this transaction only, until it is resolved.
-
if(R.price <= 0)
vend(R, usr)
add_fingerprint(usr)
- vend_ready = TRUE
return TRUE
if(issilicon(usr)) //If the item is not free, provide feedback if a synth is trying to buy something.
@@ -473,6 +469,9 @@ GLOBAL_LIST_EMPTY(vending_products)
if(!ishuman(usr))
return
+
+ vend_ready = FALSE // From this point onwards, vendor is locked to performing this transaction only, until it is resolved.
+
var/mob/living/carbon/human/H = usr
var/obj/item/weapon/card/id/C = H.GetIdCard()
diff --git a/code/game/machinery/vending_machines.dm b/code/game/machinery/vending_machines.dm
index e04568c1d08..098d231ce77 100644
--- a/code/game/machinery/vending_machines.dm
+++ b/code/game/machinery/vending_machines.dm
@@ -753,7 +753,9 @@
/obj/item/toy/plushie/borgplushie/scrubpuppy = 1,
/obj/item/toy/plushie/foxbear = 1,
/obj/item/toy/plushie/nukeplushie = 1,
- /obj/item/toy/plushie/otter = 1)
+ /obj/item/toy/plushie/otter = 1,
+ /obj/item/toy/plushie/vox = 1,
+ /obj/item/toy/mistletoe = 1)
//VOREStation Add End
premium = list(/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne = 1,
/obj/item/weapon/storage/trinketbox = 2)
@@ -793,7 +795,9 @@
/obj/item/toy/plushie/borgplushie/scrubpuppy = 50,
/obj/item/toy/plushie/foxbear = 50,
/obj/item/toy/plushie/nukeplushie = 50,
- /obj/item/toy/plushie/otter = 50)
+ /obj/item/toy/plushie/otter = 50,
+ /obj/item/toy/plushie/vox = 50,
+ /obj/item/toy/mistletoe = 50)
//VOREStation Add End
diff --git a/code/game/machinery/vending_machines_vr.dm b/code/game/machinery/vending_machines_vr.dm
index a4ce500db2d..fd113ee799b 100644
--- a/code/game/machinery/vending_machines_vr.dm
+++ b/code/game/machinery/vending_machines_vr.dm
@@ -84,6 +84,158 @@
)
contraband = list(/obj/item/weapon/reagent_containers/food/snacks/mysterysoup = 10)
vend_delay = 15
+
+//Specific food vending machines for events that want them!
+
+/obj/machinery/vending/fooditalian
+ name = "Italian Imports"
+ desc = "You wanted some italian food? Well here's some imported from the local pizza place!"
+ icon_state = "hotfood"
+ products = list(/obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/mushroompizza = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/vegetablepizza = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/margherita = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/meatpizza = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/pineapple = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/pastatomato = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/meatballspagetti = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/meatball = 15
+ )
+ contraband = list(/obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/oldpizza = 1)
+ vend_delay = 10
+
+/obj/machinery/vending/foodfast
+ name = "United Grills"
+ desc = "Not sure how they're united but man is this grilled food delicious! Though it seems to just be a lot of fast food..."
+ icon_state = "hotfood"
+ products = list(/obj/item/weapon/reagent_containers/food/snacks/monkeyburger = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/cheeseburger = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/fishburger = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/clownburger = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/mimeburger = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/bigbiteburger = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/superbiteburger = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/burger/bacon = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/hotdog = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/chickenfillet = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/fries = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/cheesyfries = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/chilicheesefries = 10
+ )
+ contraband = list(/obj/item/weapon/reagent_containers/food/snacks/ghostburger = 3,
+ /obj/item/weapon/reagent_containers/food/snacks/tofuburger = 5)
+ vend_delay = 10
+
+/obj/machinery/vending/foodmeat
+ name = "Meaty Marvels"
+ desc = "What's a marvel is how you're not ordering from this machine yet!"
+ icon_state = "hotfood"
+ products = list(/obj/item/weapon/reagent_containers/food/snacks/ribplate = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/meatbread = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/meat_pocket = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/meatpie = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/bacon_flatbread = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/roastbeef = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/stuffed_meatball = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/meatsteak = 20
+ )
+ contraband = list(/obj/item/weapon/reagent_containers/food/snacks/monkeysdelight = 5)
+ vend_delay = 10
+
+/obj/machinery/vending/foodasian
+ name = "Authenticate Asian"
+ desc = "Some good ol' Sol food!"
+ icon_state = "hotfood"
+ products = list(/obj/item/weapon/reagent_containers/food/snacks/sliceable/sushi = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/chawanmushi = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/generalschicken = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/chickenkatsu = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sweet_and_sour = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/bibimbap = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/hotandsoursoup = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/kitsuneudon = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/milosoup = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/lomein = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/friedrice = 10
+ )
+ contraband = list(/obj/item/weapon/reagent_containers/food/snacks/monkeyburger = 1)
+ vend_delay = 10
+
+/obj/machinery/vending/foodfish
+ name = "Fishy Food"
+ desc = "Don't mind the name, this is 100% fish!"
+ icon_state = "hotfood"
+ products = list(/obj/item/weapon/reagent_containers/food/snacks/sliceable/grilled_carp = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/kudzudonburi = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/zestfish = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/lobstercooked = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sashimi = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sharkmeatcooked = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sharkmeatdip = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sharkmeatcubes = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/cuttlefishcooked = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/monkfishcooked = 10
+ )
+ contraband = list(/obj/item/weapon/reagent_containers/food/snacks/sliceable/monkfish = 1)
+ vend_delay = 10
+
+/obj/machinery/vending/foodveggie
+ name = "Veggie Varieties"
+ desc = "Even vegitarians have their own vending machines! How thoughtful."
+ icon_state = "hotfood"
+ products = list(/obj/item/weapon/reagent_containers/food/snacks/beetsoup = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/eggplantparm = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/eggbowl = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/flowerchildsalad = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/tossedsalad = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/fruitsalad = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/grilledcheese = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/stewedsoymeat = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/tofurkey = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/stuffing = 10
+ )
+ contraband = list(/obj/item/weapon/reagent_containers/food/snacks/meatsteak = 1)
+ vend_delay = 10
+
+/obj/machinery/vending/fooddessert
+ name = "Delightful Desserts"
+ desc = "Even if you've stuffed your face with a pizza or two, you ALWAYS have room for dessert!"
+ icon_state = "hotfood"
+ products = list(/obj/item/weapon/reagent_containers/food/snacks/applepie = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/cherrypie = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/keylimepie = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/pie = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/pumpkinpie = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/berryclafoutis = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/funnelcake = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/plaincake = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/birthdaycake = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/carrotcake = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesecake = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/lemoncake = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/limecake = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/orangecake = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/peanutcake = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/icecreamsandwich = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/cookie = 15,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/brownies = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/chocolatebar = 10,
+ /obj/item/weapon/reagent_containers/food/snacks/chocolatepiece = 20
+ )
+ contraband = list(/obj/item/weapon/reagent_containers/food/snacks/donut/chaos = 10)
+ vend_delay = 10
+
+/obj/machinery/vending/foodstuffing
+ name = "Stuffing Site"
+ desc = "Is... is it just full of stuffing? No wait, there's turkey in there too."
+ icon_state = "hotfood"
+ products = list(/obj/item/weapon/reagent_containers/food/snacks/stuffing = 50,
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/turkey= 20
+ )
+ contraband = list(/obj/item/weapon/reagent_containers/food/snacks/tofurkey = 10)
+ vend_delay = 10
+
+//End of food event machines
+
/* For later, then
/obj/machinery/vending/weapon_machine
name = "Frozen Star Guns&Ammo"
@@ -1456,6 +1608,30 @@
req_log_access = access_cmo
has_logs = 1
+/obj/machinery/vending/abductor
+ name = "Abduct-U"
+ desc = "A mysterious machine which can fabricate many tools for acquiring test subjects."
+ icon = 'icons/obj/abductor_vr.dmi'
+ icon_state = "dispenser_2way"
+ products = list(/obj/item/weapon/card/id/syndicate/station_access = 1,
+ /obj/item/weapon/storage/box/syndie_kit/chameleon = 1,
+ /obj/item/clothing/mask/bandana = 1,
+ /obj/item/clothing/glasses/sunglasses = 1,
+ /obj/item/device/radio/headset/syndicate/alt = 1,
+ /obj/item/device/pda = 1,
+ /obj/item/device/communicator = 1,
+ /obj/item/weapon/tape_roll = 2,
+ /obj/item/weapon/handcuffs = 4,
+ /obj/item/weapon/handcuffs/legcuffs = 4,
+ /obj/item/weapon/cell/device/weapon/recharge/alien = 2,
+ /obj/item/device/chameleon = 1,
+ /obj/item/weapon/storage/mre/menu11 = 2,
+ /obj/item/device/flash = 2,
+ /obj/item/weapon/pen/reagent/paralysis = 4,
+ /obj/item/device/perfect_tele/alien = 1
+ )
+ vend_delay = 15
+
/obj/machinery/vending/loadout
name = "Fingers and Toes"
desc = "A special vendor for gloves and shoes!"
diff --git a/code/game/mecha/combat/durand.dm b/code/game/mecha/combat/durand.dm
index aa5a9e000c1..19bd2b9c53e 100644
--- a/code/game/mecha/combat/durand.dm
+++ b/code/game/mecha/combat/durand.dm
@@ -33,6 +33,9 @@
defence_mode_possible = 1
+ icon_scale_x = 1.5
+ icon_scale_y = 1.5
+
/*
/obj/mecha/combat/durand/New()
..()
diff --git a/code/game/mecha/combat/fighter.dm b/code/game/mecha/combat/fighter.dm
index 9d0fd7cfbf6..bf176f6a692 100644
--- a/code/game/mecha/combat/fighter.dm
+++ b/code/game/mecha/combat/fighter.dm
@@ -13,6 +13,8 @@
icon_state = ""
initial_icon = ""
+ dir_in = null //Don't reset direction when empty
+
step_in = 2 //Fast
health = 400
diff --git a/code/game/mecha/combat/gygax.dm b/code/game/mecha/combat/gygax.dm
index 0323124c479..1f9d4a0b6e3 100644
--- a/code/game/mecha/combat/gygax.dm
+++ b/code/game/mecha/combat/gygax.dm
@@ -31,6 +31,9 @@
overload_possible = 1
+ icon_scale_x = 1.35
+ icon_scale_y = 1.35
+
//Not quite sure how to move those yet.
/obj/mecha/combat/gygax/get_commands()
var/output = {"
diff --git a/code/game/mecha/combat/marauder.dm b/code/game/mecha/combat/marauder.dm
index e2c0b9467a3..fd0442a2948 100644
--- a/code/game/mecha/combat/marauder.dm
+++ b/code/game/mecha/combat/marauder.dm
@@ -44,6 +44,9 @@
/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster
)
+ icon_scale_x = 1.5
+ icon_scale_y = 1.5
+
/obj/mecha/combat/marauder/seraph
desc = "Heavy-duty, command-type exosuit. This is a custom model, utilized only by high-ranking military personnel."
name = "Seraph"
diff --git a/code/game/mecha/equipment/mecha_equipment.dm b/code/game/mecha/equipment/mecha_equipment.dm
index bec2b1a6c36..c716b1f33e6 100644
--- a/code/game/mecha/equipment/mecha_equipment.dm
+++ b/code/game/mecha/equipment/mecha_equipment.dm
@@ -49,6 +49,9 @@
..()
return
+/obj/item/mecha_parts/mecha_equipment/proc/add_equip_overlay(obj/mecha/M as obj)
+ return
+
/obj/item/mecha_parts/mecha_equipment/proc/update_chassis_page()
if(chassis)
send_byjax(chassis.occupant,"exosuit.browser","eq_list",chassis.get_equipment_list())
diff --git a/code/game/mecha/equipment/tools/repair_droid.dm b/code/game/mecha/equipment/tools/repair_droid.dm
index 7cd8ebd9ab7..acae64142f8 100644
--- a/code/game/mecha/equipment/tools/repair_droid.dm
+++ b/code/game/mecha/equipment/tools/repair_droid.dm
@@ -26,9 +26,10 @@
pr_repair_droid = null
..()
-/obj/item/mecha_parts/mecha_equipment/repair_droid/attach(obj/mecha/M as obj)
+/obj/item/mecha_parts/mecha_equipment/repair_droid/add_equip_overlay(obj/mecha/M as obj)
..()
- droid_overlay = new(src.icon, icon_state = "repair_droid")
+ if(!droid_overlay)
+ droid_overlay = new(src.icon, icon_state = "repair_droid")
M.add_overlay(droid_overlay)
return
diff --git a/code/game/mecha/equipment/tools/running_board.dm b/code/game/mecha/equipment/tools/running_board.dm
new file mode 100644
index 00000000000..aa2748c7a78
--- /dev/null
+++ b/code/game/mecha/equipment/tools/running_board.dm
@@ -0,0 +1,17 @@
+// concept borrowed from vgstation-coders/vgstation13#26316 on GitHub
+/obj/item/mecha_parts/mecha_equipment/runningboard
+ name = "hacked powered exosuit running board"
+ desc = "A running board with a power-lifter attachment, to quickly catapult exosuit pilots into the cockpit. Fits any exosuit."
+ icon_state = "mecha_runningboard"
+ origin_tech = list(TECH_MATERIAL = 6)
+ equip_type = EQUIP_HULL
+
+/obj/item/mecha_parts/mecha_equipment/runningboard/limited
+ name = "powered exosuit running board"
+ desc = "A running board with a power-lifter attachment, to quickly catapult exosuit pilots into the cockpit. Only fits to working exosuits."
+
+/obj/item/mecha_parts/mecha_equipment/runningboard/limited/can_attach(obj/mecha/M)
+ if(istype(M, /obj/mecha/working)) // is this a ripley?
+ . = ..()
+ else
+ return FALSE
\ No newline at end of file
diff --git a/code/game/mecha/equipment/tools/shield.dm b/code/game/mecha/equipment/tools/shield.dm
index ce0c43e7da9..0a50869e884 100644
--- a/code/game/mecha/equipment/tools/shield.dm
+++ b/code/game/mecha/equipment/tools/shield.dm
@@ -37,15 +37,19 @@
my_shield = null
..()
+/obj/item/mecha_parts/mecha_equipment/combat_shield/add_equip_overlay(obj/mecha/M as obj)
+ ..()
+ if(!drone_overlay)
+ drone_overlay = new(src.icon, icon_state = "shield_droid")
+ M.overlays += drone_overlay
+ return
+
/obj/item/mecha_parts/mecha_equipment/combat_shield/attach(obj/mecha/M as obj)
..()
if(chassis)
my_shield.shield_health = 0
my_shield.my_mecha = chassis
my_shield.forceMove(chassis)
-
- drone_overlay = new(src.icon, icon_state = "shield_droid")
- M.overlays += drone_overlay
return
/obj/item/mecha_parts/mecha_equipment/combat_shield/detach()
diff --git a/code/game/mecha/equipment/tools/syringe_gun.dm b/code/game/mecha/equipment/tools/syringe_gun.dm
index 7449d80c0f1..1658a01df6d 100644
--- a/code/game/mecha/equipment/tools/syringe_gun.dm
+++ b/code/game/mecha/equipment/tools/syringe_gun.dm
@@ -467,11 +467,15 @@
if(enabled)
set_ready_state(0)
log_message("Activated.")
- chassis.overlays += drone_overlay
else
set_ready_state(1)
log_message("Deactivated.")
- chassis.overlays -= drone_overlay
+
+/obj/item/mecha_parts/mecha_equipment/crisis_drone/add_equip_overlay(obj/mecha/M as obj)
+ ..()
+ if(enabled)
+ M.add_overlay(drone_overlay)
+ return
/obj/item/mecha_parts/mecha_equipment/crisis_drone/Topic(href, href_list)
..()
diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm
index e9e3397bba8..2e68ca068d5 100644
--- a/code/game/mecha/mecha.dm
+++ b/code/game/mecha/mecha.dm
@@ -208,6 +208,7 @@
for(var/path in starting_equipment)
var/obj/item/mecha_parts/mecha_equipment/ME = new path(src)
ME.attach(src)
+ update_transform()
/obj/mecha/drain_power(var/drain_check)
@@ -1576,11 +1577,12 @@
src.verbs += /obj/mecha/verb/eject
src.Entered(mmi_as_oc)
src.Move(src.loc)
- src.icon_state = src.reset_icon()
+ update_icon()
set_dir(dir_in)
src.log_message("[mmi_as_oc] moved in as pilot.")
if(!hasInternalDamage())
src.occupant << sound('sound/mecha/nominal.ogg',volume=50)
+ update_icon()
return 1
else
return 0
@@ -1803,6 +1805,14 @@
set src in oview(1)
move_inside()
+//returns an equipment object if we have one of that type, useful since is_type_in_list won't return the object
+//since is_type_in_list uses caching, this is a slower operation, so only use it if needed
+/obj/mecha/proc/get_equipment(var/equip_type)
+ for(var/obj/item/mecha_parts/mecha_equipment/ME in equipment)
+ if(istype(ME,equip_type))
+ return ME
+ return null
+
/obj/mecha/proc/move_inside()
if (usr.stat || !ishuman(usr))
return
@@ -1843,18 +1853,22 @@
return
// to_chat(usr, "You start climbing into [src.name]")
-
- visible_message("
\The [usr] starts to climb into [src.name] ")
-
- if(enter_after(40,usr))
- if(!src.occupant)
- moved_inside(usr)
- if(ishuman(occupant)) //Aeiou
- GrantActions(occupant, 1)
- else if(src.occupant!=usr)
- to_chat(usr, "[src.occupant] was faster. Try better next time, loser.")
+ if(get_equipment(/obj/item/mecha_parts/mecha_equipment/runningboard))
+ visible_message("
\The [usr] is instantly lifted into [src.name] by the running board! ")
+ moved_inside(usr)
+ if(ishuman(occupant))
+ GrantActions(occupant, 1)
else
- to_chat(usr, "You stop entering the exosuit.")
+ visible_message("
\The [usr] starts to climb into [src.name] ")
+ if(enter_after(40,usr))
+ if(!src.occupant)
+ moved_inside(usr)
+ if(ishuman(occupant)) //Aeiou
+ GrantActions(occupant, 1)
+ else if(src.occupant!=usr)
+ to_chat(usr, "[src.occupant] was faster. Try better next time, loser.")
+ else
+ to_chat(usr, "You stop entering the exosuit.")
return
/obj/mecha/proc/moved_inside(var/mob/living/carbon/human/H as mob)
@@ -1871,7 +1885,7 @@
src.forceMove(src.loc)
src.verbs += /obj/mecha/verb/eject
src.log_append_to_last("[H] moved in as pilot.")
- src.icon_state = src.reset_icon()
+ update_icon()
//VOREStation Edit Add
if(occupant.hud_used)
minihud = new (occupant.hud_used, src)
@@ -1991,7 +2005,7 @@
occupant.clear_alert("mech damage")
occupant.in_enclosed_vehicle = 0
occupant = null
- icon_state = src.reset_icon()+"-open"
+ update_icon()
set_dir(dir_in)
verbs -= /obj/mecha/verb/eject
@@ -2651,13 +2665,6 @@
return 1
return 0
-/obj/mecha/proc/reset_icon()
- if (initial_icon)
- icon_state = initial_icon
- else
- icon_state = initial(icon_state)
- return icon_state
-
//This is for mobs mostly.
/obj/mecha/attack_generic(var/mob/user, var/damage, var/attack_message)
diff --git a/code/game/mecha/mecha_appearance.dm b/code/game/mecha/mecha_appearance.dm
new file mode 100644
index 00000000000..5136ef070b6
--- /dev/null
+++ b/code/game/mecha/mecha_appearance.dm
@@ -0,0 +1,65 @@
+
+
+/obj/mecha
+ // Show the pilot.
+ var/show_pilot = FALSE
+
+ // The state of the 'face', or the thing that overlays on the pilot. If this isn't set, it will probably look really weird.
+ var/face_state = null
+ var/icon/face_overlay
+
+ var/icon/pilot_image
+
+ // How many pixels do we bump the pilot upward?
+ var/pilot_lift = 0
+
+/obj/mecha/update_transform()
+ // Now for the regular stuff.
+ var/matrix/M = matrix()
+ M.Scale(icon_scale_x, icon_scale_y)
+ M.Translate(0, 16*(icon_scale_y-1))
+ animate(src, transform = M, time = 10)
+ return
+
+/obj/mecha/update_icon()
+ if(!initial_icon)
+ initial_icon = initial(icon_state)
+
+ if(occupant)
+ icon_state = initial_icon
+ else
+ icon_state = "[initial_icon]-open"
+
+ cut_overlays()
+
+ if(show_pilot)
+ if(occupant)
+ pilot_image = getCompoundIcon(occupant)
+
+ if(!istype(occupant, /mob/living/carbon/brain))
+
+ var/icon/Cutter
+
+ if("[initial_icon]_cutter" in icon_states(icon))
+ Cutter = new(src.icon, "[initial_icon]_cutter")
+
+ if(Cutter)
+ pilot_image.Blend(Cutter, ICON_MULTIPLY, y = (-1 * pilot_lift))
+
+ var/image/Pilot = image(pilot_image)
+
+ Pilot.pixel_y = pilot_lift
+
+ add_overlay(Pilot)
+ else
+ pilot_image = null
+
+ if(face_state && !face_overlay)
+ face_overlay = new(src.icon, icon_state = face_state)
+
+ if(face_overlay)
+ add_overlay(face_overlay)
+
+ for(var/obj/item/mecha_parts/mecha_equipment/ME in equipment)
+ ME.add_equip_overlay(src)
+ return
diff --git a/code/game/mecha/medical/odysseus.dm b/code/game/mecha/medical/odysseus.dm
index dbba0cd2518..4db6332cb10 100644
--- a/code/game/mecha/medical/odysseus.dm
+++ b/code/game/mecha/medical/odysseus.dm
@@ -17,6 +17,9 @@
step_energy_drain = 6
var/obj/item/clothing/glasses/hud/health/mech/hud
+ icon_scale_x = 1.2
+ icon_scale_y = 1.2
+
/obj/mecha/medical/odysseus/New()
..()
hud = new /obj/item/clothing/glasses/hud/health/mech(src)
diff --git a/code/game/mecha/working/ripley.dm b/code/game/mecha/working/ripley.dm
index aff19e301dd..def044c9bbc 100644
--- a/code/game/mecha/working/ripley.dm
+++ b/code/game/mecha/working/ripley.dm
@@ -24,6 +24,9 @@
/obj/item/mecha_parts/component/electrical
)
+ icon_scale_x = 1.2
+ icon_scale_y = 1.2
+
/obj/mecha/working/ripley/Destroy()
for(var/atom/movable/A in src.cargo)
A.loc = loc
@@ -92,6 +95,20 @@
for(var/obj/item/mecha_parts/mecha_tracking/B in src.contents)//Deletes the beacon so it can't be found easily
qdel (B)
+/obj/mecha/working/ripley/antique
+ name = "APLU \"Geiger\""
+ desc = "You can't beat the classics."
+ icon_state = "ripley-old"
+ initial_icon = "ripley-old"
+
+ show_pilot = TRUE
+ pilot_lift = 5
+
+ max_utility_equip = 1
+ max_universal_equip = 3
+
+ icon_scale_x = 1
+ icon_scale_y = 1
//Vorestation Edit Start
diff --git a/code/game/objects/effects/decals/posters/voreposters_vr.dm b/code/game/objects/effects/decals/posters/voreposters_vr.dm
index 006bf32d274..c08869a05f0 100644
--- a/code/game/objects/effects/decals/posters/voreposters_vr.dm
+++ b/code/game/objects/effects/decals/posters/voreposters_vr.dm
@@ -86,3 +86,23 @@
icon_state = "dwposter11"
name = "Secgun"
desc = "A striking, wordless advertisement for NanoTrasen's security department. It wasn't very effective and just seems to be used as a warning sign."
+/datum/poster/vore_25
+ icon_state = "sbsposter14"
+ name = "Awoo"
+ desc = "A top contender for 'images you can hear'."
+/datum/poster/vore_26
+ icon_state = "sbsposter15"
+ name = "LikeEmSmall"
+ desc = "An advertisement for a defunct dating service for normal-sized individuals to find micro partners."
+/datum/poster/vore_27
+ icon_state = "sbsposter16"
+ name = "Borgar"
+ desc = "What do you want from Space McDonalds?"
+/datum/poster/vore_28
+ icon_state = "sbsposter17"
+ name = "DiveIn"
+ desc = "A limited edition holographic poster that seems to feature subliminal suggestions and conditioning."
+/datum/poster/vore_29
+ icon_state = "sbsposter18"
+ name = "Perdition"
+ desc = "You get the feeling that whomever made this intended for you to feel very differently than you do when you look at it."
diff --git a/code/game/objects/effects/landmarks_vr.dm b/code/game/objects/effects/landmarks_vr.dm
index 1111b717248..b9dd81e9673 100644
--- a/code/game/objects/effects/landmarks_vr.dm
+++ b/code/game/objects/effects/landmarks_vr.dm
@@ -1,3 +1,6 @@
+/obj/effect/landmark
+ var/abductor = 0
+
/obj/effect/landmark/late_antag
name = "Antag Latespawn"
var/antag_id
diff --git a/code/game/objects/effects/mines.dm b/code/game/objects/effects/mines.dm
index c522b4300e0..c5e1f26c615 100644
--- a/code/game/objects/effects/mines.dm
+++ b/code/game/objects/effects/mines.dm
@@ -7,16 +7,32 @@
icon_state = "uglymine"
var/triggered = 0
var/smoke_strength = 3
- var/mineitemtype = /obj/item/weapon/mine
+ var/obj/item/weapon/mine/mineitemtype = /obj/item/weapon/mine
var/panel_open = 0
var/datum/wires/mines/wires = null
register_as_dangerous_object = TRUE
+ var/camo_net = FALSE // Will the mine 'cloak' on deployment?
+
+ // The trap item will be triggered in some manner when detonating. Default only checks for grenades.
+ var/obj/item/trap = null
+
/obj/effect/mine/New()
icon_state = "uglyminearmed"
wires = new(src)
+ if(ispath(trap))
+ trap = new trap(src)
+
+/obj/effect/mine/Initialize()
+ ..()
+
+ if(camo_net)
+ alpha = 50
+
/obj/effect/mine/Destroy()
+ if(trap)
+ QDEL_NULL(trap)
qdel_null(wires)
return ..()
@@ -25,11 +41,33 @@
triggered = 1
s.set_up(3, 1, src)
s.start()
- explosion(loc, 0, 2, 3, 4) //land mines are dangerous, folks.
- visible_message("\The [src.name] detonates!")
+
+ if(trap)
+ trigger_trap(M)
+ visible_message("\The [src.name] flashes as it is triggered!")
+
+ else
+ explosion(loc, 0, 2, 3, 4) //land mines are dangerous, folks.
+ visible_message("\The [src.name] detonates!")
+
qdel(s)
qdel(src)
+/obj/effect/mine/proc/trigger_trap(var/mob/living/victim)
+ if(istype(trap, /obj/item/weapon/grenade))
+ var/obj/item/weapon/grenade/G = trap
+ trap = null
+ G.forceMove(get_turf(src))
+ if(victim.ckey)
+ msg_admin_attack("[key_name_admin(victim)] stepped on \a [src.name], triggering [trap]")
+ G.activate()
+
+ if(istype(trap, /obj/item/device/transfer_valve))
+ var/obj/item/device/transfer_valve/TV = trap
+ trap = null
+ TV.forceMove(get_turf(src))
+ TV.toggle_valve()
+
/obj/effect/mine/bullet_act()
if(prob(50))
explode()
@@ -63,6 +101,9 @@
"
You very carefully screw the mine's panel [panel_open ? "open" : "closed"]. ")
playsound(src, W.usesound, 50, 1)
+ // Panel open, stay uncloaked, or uncloak if already cloaked. If you don't cloak on place, ignore it and just be normal alpha.
+ alpha = camo_net ? (panel_open ? 255 : 50) : 255
+
else if((W.is_wirecutter() || istype(W, /obj/item/device/multitool)) && panel_open)
interact(user)
else
@@ -74,6 +115,9 @@
user.set_machine(src)
wires.Interact(user)
+/obj/effect/mine/camo
+ camo_net = TRUE
+
/obj/effect/mine/dnascramble
mineitemtype = /obj/item/weapon/mine/dnascramble
@@ -193,6 +237,9 @@
spawn(0)
qdel(src)
+/obj/effect/mine/emp/camo
+ camo_net = TRUE
+
/obj/effect/mine/incendiary
mineitemtype = /obj/item/weapon/mine/incendiary
@@ -208,6 +255,26 @@
spawn(0)
qdel(src)
+/obj/effect/mine/gadget
+ mineitemtype = /obj/item/weapon/mine/gadget
+
+/obj/effect/mine/gadget/explode(var/mob/living/M)
+ var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread()
+ triggered = 1
+ s.set_up(3, 1, src)
+ s.start()
+
+ if(trap)
+ trigger_trap(M)
+ visible_message("\The [src.name] flashes as it is triggered!")
+
+ else
+ explosion(loc, 0, 0, 2, 2)
+ visible_message("\The [src.name] detonates!")
+
+ qdel(s)
+ qdel(src)
+
/////////////////////////////////////////////
// The held item version of the above mines
/////////////////////////////////////////////
@@ -219,6 +286,10 @@
var/countdown = 10
var/minetype = /obj/effect/mine //This MUST be an /obj/effect/mine type, or it'll runtime.
+ var/obj/item/trap = null
+
+ var/list/allowed_gadgets = null
+
/obj/item/weapon/mine/attack_self(mob/user as mob) // You do not want to move or throw a land mine while priming it... Explosives + Sudden Movement = Bad Times
add_fingerprint(user)
msg_admin_attack("[key_name_admin(user)] primed \a [src]")
@@ -231,11 +302,39 @@
prime(user, TRUE)
return
+/obj/item/weapon/mine/attackby(obj/item/W as obj, mob/living/user as mob)
+ if(W.is_screwdriver() && trap)
+ to_chat(user, "
You begin removing \the [trap]. ")
+ if(do_after(user, 10 SECONDS))
+ to_chat(user, "
You finish disconnecting the mine's trigger. ")
+ trap.forceMove(get_turf(src))
+ trap = null
+ return
+
+ if(LAZYLEN(allowed_gadgets) && !trap)
+ var/allowed = FALSE
+
+ for(var/path in allowed_gadgets)
+ if(istype(W, path))
+ allowed = TRUE
+ break
+
+ if(allowed)
+ user.drop_from_inventory(W)
+ W.forceMove(src)
+ trap = W
+
+ ..()
+
/obj/item/weapon/mine/proc/prime(mob/user as mob, var/explode_now = FALSE)
visible_message("\The [src.name] beeps as the priming sequence completes.")
var/obj/effect/mine/R = new minetype(get_turf(src))
src.transfer_fingerprints_to(R)
R.add_fingerprint(user)
+ if(trap)
+ R.trap = trap
+ trap = null
+ R.trap.forceMove(R)
if(explode_now)
R.explode(user)
spawn(0)
@@ -286,8 +385,14 @@
desc = "A small explosive mine with a fire symbol on the side."
minetype = /obj/effect/mine/incendiary
+/obj/item/weapon/mine/gadget
+ name = "gadget mine"
+ desc = "A small pressure-triggered device. If no component is added, the internal release bolts will detonate in unison when triggered."
+
+ allowed_gadgets = list(/obj/item/weapon/grenade, /obj/item/device/transfer_valve)
+
// This tells AI mobs to not be dumb and step on mines willingly.
/obj/item/weapon/mine/is_safe_to_step(mob/living/L)
if(!L.hovering)
return FALSE
- return ..()
\ No newline at end of file
+ return ..()
diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm
index e90cf3aaea8..6da2255e1b8 100644
--- a/code/game/objects/items.dm
+++ b/code/game/objects/items.dm
@@ -942,3 +942,12 @@ modules/mob/living/carbon/human/life.dm if you die, you will be zoomed out.
/obj/item/proc/openTip(location, control, params, user)
openToolTip(user, src, params, title = name, content = desc)
+
+// These procs are for RPEDs and part ratings. The concept for this was borrowed from /vg/station.
+// Gets the rating of the item, used in stuff like machine construction.
+/obj/item/proc/get_rating()
+ return FALSE
+
+// Like the above, but used for RPED sorting of parts.
+/obj/item/proc/rped_rating()
+ return get_rating()
\ No newline at end of file
diff --git a/code/game/objects/items/devices/defib.dm b/code/game/objects/items/devices/defib.dm
index 8e5fa683c90..f938f0eab18 100644
--- a/code/game/objects/items/devices/defib.dm
+++ b/code/game/objects/items/devices/defib.dm
@@ -509,8 +509,8 @@
return // Still no brain.
// If the brain'd `defib_timer` var gets below this number, brain damage will happen at a linear rate.
- // This is measures in `Life()` ticks. E.g. 10 minute defib timer = 6000 world.time units = 3000 `Life()` ticks.
- var/brain_damage_timer = ((config.defib_timer MINUTES) / 2) - ((config.defib_braindamage_timer MINUTES) / 2)
+ // This is measures in `Life()` ticks. E.g. 10 minute defib timer = 300 `Life()` ticks. // Original math was VERY off. Life() tick occurs every ~2 seconds, not every 2 world.time ticks.
+ var/brain_damage_timer = ((config.defib_timer MINUTES) / 20) - ((config.defib_braindamage_timer MINUTES) / 20)
if(brain.defib_timer > brain_damage_timer)
return // They got revived before brain damage got a chance to set in.
diff --git a/code/game/objects/items/devices/spy_bug.dm b/code/game/objects/items/devices/spy_bug.dm
index 03d0bdd60ca..60ca5cc1a29 100644
--- a/code/game/objects/items/devices/spy_bug.dm
+++ b/code/game/objects/items/devices/spy_bug.dm
@@ -88,6 +88,14 @@
if(get_dist(user, src) == 0)
. += "It has a tiny camera inside. Needs to be both configured and brought in contact with monitor device to be fully functional."
+/obj/item/device/camerabug/update_icon()
+ ..()
+
+ if(anchored) // Standard versions are relatively obvious if not hidden in a container. Anchoring them is advised, to disguise them.
+ alpha = 50
+ else
+ alpha = 255
+
/obj/item/device/camerabug/attackby(obj/item/W as obj, mob/living/user as mob)
if(istype(W, /obj/item/device/bug_monitor))
var/obj/item/device/bug_monitor/SM = W
@@ -101,6 +109,15 @@
linkedmonitor = null
else
to_chat(user, "Error: The device is linked to another monitor.")
+
+ else if(W.is_wrench() && user.a_intent != I_HURT)
+ if(isturf(loc))
+ anchored = !anchored
+
+ to_chat(user, "
You [anchored ? "" : "un"]secure \the [src]. ")
+
+ update_icon()
+ return
else
if(W.force >= 5)
visible_message("\The [src] lens shatters!")
diff --git a/code/game/objects/items/devices/translocator_vr.dm b/code/game/objects/items/devices/translocator_vr.dm
index 3e2d5dc5c7f..fc35d21fc79 100644
--- a/code/game/objects/items/devices/translocator_vr.dm
+++ b/code/game/objects/items/devices/translocator_vr.dm
@@ -92,11 +92,11 @@
else
return ..()
-/obj/item/device/perfect_tele/proc/unload_ammo(mob/user)
+/obj/item/device/perfect_tele/proc/unload_ammo(mob/user, var/ignore_inactive_hand_check = 0)
if(battery_lock)
to_chat(user,"
[src] does not have a battery port. ")
return
- if(user.get_inactive_hand() == src && power_source)
+ if((user.get_inactive_hand() == src || ignore_inactive_hand_check) && power_source)
to_chat(user,"
You eject \the [power_source] from \the [src]. ")
user.put_in_hands(power_source)
power_source = null
@@ -111,7 +111,7 @@
return FALSE
return TRUE
-/obj/item/device/perfect_tele/attack_self(mob/user)
+/obj/item/device/perfect_tele/attack_self(mob/user, var/radial_menu_anchor = src)
if(loc_network)
for(var/obj/item/device/perfect_tele_beacon/stationary/nb in premade_tele_beacons)
if(nb.tele_network == loc_network)
@@ -124,8 +124,7 @@
and tele-vore. Make sure you carefully examine someone's OOC prefs before teleporting them if you are \
going to use this device for ERP purposes. This device records all warnings given and teleport events for \
admin review in case of pref-breaking, so just don't do it.","OOC WARNING")
-
- var/choice = show_radial_menu(user, src, radial_images, custom_check = CALLBACK(src, .proc/check_menu, user), require_near = TRUE, tooltips = TRUE)
+ var/choice = show_radial_menu(user, radial_menu_anchor, radial_images, custom_check = CALLBACK(src, .proc/check_menu, user), require_near = TRUE, tooltips = TRUE)
if(!choice)
return
@@ -281,7 +280,7 @@
//Seems okay to me!
return TRUE
-/obj/item/device/perfect_tele/afterattack(mob/living/target, mob/living/user, proximity)
+/obj/item/device/perfect_tele/afterattack(mob/living/target, mob/living/user, proximity, var/ignore_fail_chance = 0)
//No, you can't teleport people from over there.
if(!proximity)
return
@@ -312,11 +311,12 @@
R.force_dismount(rider)
//Failure chance
- if(prob(failure_chance) && beacons.len >= 2)
- var/list/wrong_choices = beacons - destination.tele_name
- var/wrong_name = pick(wrong_choices)
- destination = beacons[wrong_name]
- to_chat(user,"
\The [src] malfunctions and sends you to the wrong beacon! ")
+ if (!ignore_fail_chance)
+ if(prob(failure_chance) && beacons.len >= 2)
+ var/list/wrong_choices = beacons - destination.tele_name
+ var/wrong_name = pick(wrong_choices)
+ destination = beacons[wrong_name]
+ to_chat(user,"
\The [src] malfunctions and sends you to the wrong beacon! ")
//Destination beacon vore checking
var/turf/dT = get_turf(destination)
diff --git a/code/game/objects/items/devices/uplink.dm b/code/game/objects/items/devices/uplink.dm
index 5b6e55290e9..c4069be3ed7 100644
--- a/code/game/objects/items/devices/uplink.dm
+++ b/code/game/objects/items/devices/uplink.dm
@@ -112,6 +112,7 @@ GLOBAL_LIST_BOILERPLATE(world_uplinks, /obj/item/device/uplink)
/obj/item/device/uplink/hidden/tgui_interact(mob/user, datum/tgui/ui, datum/tgui/parent_ui)
if(!active)
toggle()
+ uses = user.mind.tcrystals
ui = SStgui.try_update_ui(user, src, ui)
if(!ui)
ui = new(user, src, "Uplink", "Remote Uplink")
diff --git a/code/game/objects/items/paintkit.dm b/code/game/objects/items/paintkit.dm
index 223c9a20182..45430a41c9a 100644
--- a/code/game/objects/items/paintkit.dm
+++ b/code/game/objects/items/paintkit.dm
@@ -241,7 +241,7 @@
M.initial_icon = new_icon
if(new_icon_file)
M.icon = new_icon_file
- M.reset_icon()
+ M.update_icon()
use(1, user)
/obj/mecha/attackby(var/obj/item/weapon/W, var/mob/user)
diff --git a/code/game/objects/items/robot/robot_upgrades_vr.dm b/code/game/objects/items/robot/robot_upgrades_vr.dm
index ad2556f8101..b31f737e78d 100644
--- a/code/game/objects/items/robot/robot_upgrades_vr.dm
+++ b/code/game/objects/items/robot/robot_upgrades_vr.dm
@@ -31,8 +31,8 @@
return 1
/obj/item/borg/upgrade/bellysizeupgrade
- name = "robotic Hound process capacity upgrade Module"
- desc = "Used to upgrade a hound belly capacity. This only affects total volume and such, you won't be able to support more than one patient. Usable once."
+ name = "robohound capacity expansion module"
+ desc = "Used to double a robohound's belly capacity. This only affects total volume, and won't allow support of more than one patient in case of sleeper bellies. Can only be applied once."
icon_state = "cyborg_upgrade2"
item_state = "cyborg_upgrade"
require_module = 1
diff --git a/code/game/objects/items/stacks/matter_synth.dm b/code/game/objects/items/stacks/matter_synth.dm
index d92cd5f8dda..02c6518374e 100644
--- a/code/game/objects/items/stacks/matter_synth.dm
+++ b/code/game/objects/items/stacks/matter_synth.dm
@@ -56,3 +56,6 @@
name = "Bandage Synthesizer"
max_energy = 10
recharge_rate = 1
+
+/datum/matter_synth/cloth
+ name = "Cloth Synthesizer"
diff --git a/code/game/objects/items/stacks/sandbags.dm b/code/game/objects/items/stacks/sandbags.dm
new file mode 100644
index 00000000000..c4e755c4852
--- /dev/null
+++ b/code/game/objects/items/stacks/sandbags.dm
@@ -0,0 +1,158 @@
+/obj/item/stack/sandbags
+ name = "sandbag"
+ desc = "Filled sandbags. Fortunately pre-filled."
+ singular_name = "sandbag"
+ icon = 'icons/obj/sandbags.dmi'
+ icon_state = "sandbag"
+ w_class = ITEMSIZE_LARGE
+ force = 10.0
+ throwforce = 20.0
+ throw_speed = 5
+ throw_range = 3
+ drop_sound = 'sound/items/drop/clothing.ogg'
+ pickup_sound = 'sound/items/pickup/clothing.ogg'
+ matter = list(MAT_CLOTH = SHEET_MATERIAL_AMOUNT * 2)
+ max_amount = 30
+ attack_verb = list("hit", "bludgeoned", "pillowed")
+ no_variants = TRUE
+ stacktype = /obj/item/stack/sandbags
+
+ pass_color = TRUE
+
+ var/bag_material = "cloth"
+
+/obj/item/stack/sandbags/cyborg
+ name = "sandbag synthesizer"
+ desc = "A device that makes filled sandbags. Don't ask how."
+ gender = NEUTER
+ matter = null
+ uses_charge = 1
+ charge_costs = list(500)
+ stacktype = /obj/item/stack/sandbags
+
+ bag_material = MAT_SYNCLOTH
+
+/obj/item/stack/sandbags/New(var/newloc, var/amt, var/bag_mat)
+ ..()
+ recipes = sandbag_recipes
+ update_icon()
+
+ if(bag_mat)
+ bag_material = bag_mat
+
+ var/datum/material/M = get_material_by_name("[bag_material]")
+ if(!M)
+ qdel(src)
+ return
+
+ color = M.icon_colour
+
+/obj/item/stack/sandbags/update_icon()
+ var/amount = get_amount()
+
+ slowdown = round(amount / 10, 0.1)
+
+var/global/list/datum/stack_recipe/sandbag_recipes = list( \
+ new/datum/stack_recipe("barricade", /obj/structure/barricade/sandbag, 3, time = 5 SECONDS, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE))
+
+/obj/item/stack/sandbags/produce_recipe(datum/stack_recipe/recipe, var/quantity, mob/user)
+ var/required = quantity*recipe.req_amount
+ var/produced = min(quantity*recipe.res_amount, recipe.max_res_amount)
+
+ if (!can_use(required))
+ if (produced>1)
+ to_chat(user, "
You haven't got enough [src] to build \the [produced] [recipe.title]\s! ")
+ else
+ to_chat(user, "
You haven't got enough [src] to build \the [recipe.title]! ")
+ return
+
+ if (recipe.one_per_turf && (locate(recipe.result_type) in user.loc))
+ to_chat(user, "
There is another [recipe.title] here! ")
+ return
+
+ if (recipe.on_floor && !isfloor(user.loc))
+ to_chat(user, "
\The [recipe.title] must be constructed on the floor! ")
+ return
+
+ if (recipe.time)
+ to_chat(user, "
Building [recipe.title] ... ")
+ if (!do_after(user, recipe.time))
+ return
+
+ if (use(required))
+ var/atom/O = new recipe.result_type(user.loc, bag_material)
+
+ if(istype(O, /obj))
+ var/obj/Ob = O
+
+ if(LAZYLEN(Ob.matter)) // Law of equivalent exchange.
+ Ob.matter.Cut()
+
+ else
+ Ob.matter = list()
+
+ var/mattermult = istype(Ob, /obj/item) ? min(2000, 400 * Ob.w_class) : 2000
+
+ Ob.matter[recipe.use_material] = mattermult / produced * required
+
+ O.set_dir(user.dir)
+ O.add_fingerprint(user)
+
+ if (istype(O, /obj/item/stack))
+ var/obj/item/stack/S = O
+ S.amount = produced
+ S.add_to_stacks(user)
+
+ if (istype(O, /obj/item/weapon/storage)) //BubbleWrap - so newly formed boxes are empty
+ for (var/obj/item/I in O)
+ qdel(I)
+
+ if ((pass_color || recipe.pass_color))
+ if(!color)
+ if(recipe.use_material)
+ var/datum/material/MAT = get_material_by_name(recipe.use_material)
+ if(MAT.icon_colour)
+ O.color = MAT.icon_colour
+ else
+ return
+ else
+ O.color = color
+
+// Empty bags. Yes, you need to fill them.
+
+/obj/item/stack/emptysandbag
+ name = "sandbag"
+ desc = "Empty sandbags. You know what must be done."
+ singular_name = "sandbag"
+ icon = 'icons/obj/sandbags.dmi'
+ icon_state = "sandbag_e"
+ w_class = ITEMSIZE_LARGE
+
+ strict_color_stacking = TRUE
+ max_amount = 30
+ stacktype = /obj/item/stack/emptysandbag
+
+ pass_color = TRUE
+
+ var/bag_material = "cloth"
+
+/obj/item/stack/emptysandbag/New(var/newloc, var/amt, var/bag_mat)
+ ..(newloc, amt)
+
+ if(bag_mat)
+ bag_material = bag_mat
+
+ var/datum/material/M = get_material_by_name("[bag_material]")
+ if(!M)
+ qdel(src)
+ return
+
+ color = M.icon_colour
+
+/obj/item/stack/emptysandbag/attack_self(var/mob/user)
+ while(do_after(user, 1 SECOND) && can_use(1) && istype(get_turf(src), /turf/simulated/floor/outdoors))
+ use(1)
+ var/obj/item/stack/sandbags/SB = new (get_turf(src), 1, bag_material)
+ SB.color = color
+ if(user)
+ to_chat(user, "
You fill a sandbag. ")
diff --git a/code/game/objects/items/stacks/sheets/leather.dm b/code/game/objects/items/stacks/sheets/leather.dm
index 54bc1e2fce9..3076d2dfb8f 100644
--- a/code/game/objects/items/stacks/sheets/leather.dm
+++ b/code/game/objects/items/stacks/sheets/leather.dm
@@ -83,6 +83,30 @@
icon = 'icons/mob/alien.dmi'
icon_state = "weed_extract"
+//Step one - dehairing.
+/obj/item/stack/animalhide/attackby(obj/item/weapon/W as obj, mob/user as mob)
+ if(has_edge(W) || is_sharp(W))
+ //visible message on mobs is defined as visible_message(var/message, var/self_message, var/blind_message)
+ user.visible_message("
\The [user] starts cutting hair off \the [src] ", "
You start cutting the hair off \the [src] ", "You hear the sound of a knife rubbing against flesh")
+ if(do_after(user,50))
+ to_chat(user, "
You cut the hair from this [src.singular_name] ")
+ //Try locating an exisitng stack on the tile and add to there if possible
+ for(var/obj/item/stack/hairlesshide/HS in user.loc)
+ if(HS.amount < 50 && istype(HS, process_type))
+ HS.amount++
+ src.use(1)
+ return
+ //If it gets to here it means it did not find a suitable stack on the tile.
+ var/obj/item/stack/HS = new process_type(usr.loc)
+ if(istype(HS))
+ HS.amount = 1
+ src.use(1)
+ else
+ ..()
+
+
+//Step two - washing..... it's actually in washing machine code, and ere.
+
/obj/item/stack/hairlesshide
name = "hairless hide"
desc = "This hide was stripped of it's hair, but still needs tanning."
@@ -106,6 +130,19 @@
return
+/obj/item/stack/hairlesshide/proc/rapidcure(var/stacknum = 1)
+ stacknum = min(stacknum, amount)
+
+ while(stacknum)
+ var/obj/item/stack/wetleather/I = new wet_type(get_turf(src))
+
+ if(istype(I))
+ I.dry()
+
+ use(1)
+ stacknum -= 1
+
+//Step three - drying
/obj/item/stack/wetleather
name = "wet leather"
desc = "This leather has been cleaned but still needs to be dried."
@@ -119,31 +156,6 @@
var/dry_type = /obj/item/stack/material/leather
-//Step one - dehairing.
-/obj/item/stack/animalhide/attackby(obj/item/weapon/W as obj, mob/user as mob)
- if(has_edge(W) || is_sharp(W))
- //visible message on mobs is defined as visible_message(var/message, var/self_message, var/blind_message)
- usr.visible_message("
\The [usr] starts cutting hair off \the [src] ", "
You start cutting the hair off \the [src] ", "You hear the sound of a knife rubbing against flesh")
- if(do_after(user,50))
- to_chat(usr, "
You cut the hair from this [src.singular_name] ")
- //Try locating an exisitng stack on the tile and add to there if possible
- for(var/obj/item/stack/hairlesshide/HS in usr.loc)
- if(HS.amount < 50 && istype(HS, process_type))
- HS.amount++
- src.use(1)
- return
- //If it gets to here it means it did not find a suitable stack on the tile.
- var/obj/item/stack/HS = new process_type(usr.loc)
- if(istype(HS))
- HS.amount = 1
- src.use(1)
- else
- ..()
-
-
-//Step two - washing..... it's actually in washing machine code.
-
-//Step three - drying
/obj/item/stack/wetleather/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume)
..()
if(exposed_temperature >= drying_threshold_temperature)
diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm
index 5fa718564f4..d42d6c0e563 100644
--- a/code/game/objects/items/stacks/stack.dm
+++ b/code/game/objects/items/stacks/stack.dm
@@ -163,7 +163,7 @@
if (recipe.time)
to_chat(user, "
Building [recipe.title] ... ")
- if (!do_after(user, recipe.time, exclusive = TRUE))
+ if (!do_after(user, recipe.time))
return
if (use(required))
diff --git a/code/game/objects/items/stacks/tiles/fifty_spawner_tiles.dm b/code/game/objects/items/stacks/tiles/fifty_spawner_tiles.dm
index 098926f5350..e9d5f6a2a51 100644
--- a/code/game/objects/items/stacks/tiles/fifty_spawner_tiles.dm
+++ b/code/game/objects/items/stacks/tiles/fifty_spawner_tiles.dm
@@ -8,6 +8,10 @@
name = "stack of sifgrass"
type_to_spawn = /obj/item/stack/tile/grass/sif
+/obj/fiftyspawner/grass/sif/forest
+ name = "stack of sifgrass"
+ type_to_spawn = /obj/item/stack/tile/grass/sif/forest
+
/obj/fiftyspawner/wood
name = "stack of wood"
type_to_spawn = /obj/item/stack/tile/wood
diff --git a/code/game/objects/items/stacks/tiles/tile_types.dm b/code/game/objects/items/stacks/tiles/tile_types.dm
index d2a6522ce20..5e5ac1a746d 100644
--- a/code/game/objects/items/stacks/tiles/tile_types.dm
+++ b/code/game/objects/items/stacks/tiles/tile_types.dm
@@ -47,6 +47,11 @@
singular_name = "sivian grass floor tile"
desc = "A patch of grass like those that decorate the plains of Sif."
+/obj/item/stack/tile/grass/sif/forest
+ name = "sivian overgrowth tile"
+ singular_name = "sivian overgrowth floor tile"
+ desc = "A patch of dark overgrowth like those that decorate the plains of Sif."
+
/*
* Wood
*/
diff --git a/code/game/objects/items/toys/toys_vr.dm b/code/game/objects/items/toys/toys_vr.dm
index 91c3ed7e06f..73f73d88334 100644
--- a/code/game/objects/items/toys/toys_vr.dm
+++ b/code/game/objects/items/toys/toys_vr.dm
@@ -1,3 +1,9 @@
+/obj/item/toy/mistletoe
+ name = "mistletoe"
+ desc = "You are supposed to kiss someone under these"
+ icon = 'icons/obj/toy_vr.dmi'
+ icon_state = "mistletoe"
+
/obj/item/toy/plushie/lizardplushie
name = "lizard plushie"
desc = "An adorable stuffed toy that resembles a lizardperson."
@@ -50,6 +56,14 @@
/obj/item/toy/plushie/borgplushie/scrubpuppy
icon_state = "scrubpuppy"
+/obj/item/toy/plushie/borgplushie/drakiesec
+ icon = 'icons/obj/drakietoy_vr.dmi'
+ icon_state = "secdrake"
+
+/obj/item/toy/plushie/borgplushie/drakiemed
+ icon = 'icons/obj/drakietoy_vr.dmi'
+ icon_state = "meddrake"
+
/obj/item/toy/plushie/foxbear
name = "toy fox"
desc = "Issa fox!"
@@ -68,3 +82,22 @@
desc = "A perfectly sized snuggable river weasel! Keep away from Clams."
icon = 'icons/obj/toy_vr.dmi'
icon_state = "plushie_otter"
+
+/obj/item/toy/plushie/vox
+ name = "vox plushie"
+ desc = "A stitched-together vox, fresh from the skipjack. Press its belly to hear it skree!"
+ icon = 'icons/obj/toy_vr.dmi'
+ icon_state = "plushie_vox"
+ var/cooldown = 0
+
+/obj/item/toy/plushie/vox/attack_self(mob/user as mob)
+ if(!cooldown)
+ playsound(user, 'sound/voice/shriek1.ogg', 10, 0)
+ src.visible_message("
Skreee! ")
+ cooldown = 1
+ addtimer(CALLBACK(src, .proc/cooldownreset), 50)
+ return ..()
+
+/obj/item/toy/plushie/vox/proc/cooldownreset()
+ cooldown = 0
+
diff --git a/code/game/objects/items/weapons/circuitboards/computer/computer.dm b/code/game/objects/items/weapons/circuitboards/computer/computer.dm
index 91b09022a54..9948edea42f 100644
--- a/code/game/objects/items/weapons/circuitboards/computer/computer.dm
+++ b/code/game/objects/items/weapons/circuitboards/computer/computer.dm
@@ -101,6 +101,11 @@
build_path = /obj/machinery/computer/arcade/orion_trail
origin_tech = list(TECH_DATA = 1)
+/obj/item/weapon/circuitboard/arcade/clawmachine
+ name = T_BOARD("grab-a-gift arcade machine")
+ build_path = /obj/machinery/computer/arcade/clawmachine
+ origin_tech = list(TECH_DATA = 1)
+
/obj/item/weapon/circuitboard/turbine_control
name = T_BOARD("turbine control console")
build_path = /obj/machinery/computer/turbine_computer
diff --git a/code/game/objects/items/weapons/clown_items.dm b/code/game/objects/items/weapons/clown_items.dm
index 73604b49f9c..c3a94fb1003 100644
--- a/code/game/objects/items/weapons/clown_items.dm
+++ b/code/game/objects/items/weapons/clown_items.dm
@@ -6,12 +6,12 @@
*/
/*
- * Banana Peals
+ * Banana Peels
*/
/obj/item/weapon/bananapeel/Crossed(atom/movable/AM as mob|obj)
if(AM.is_incorporeal())
return
- if (istype(AM, /mob/living))
+ if(istype(AM, /mob/living))
var/mob/living/M = AM
M.slip("the [src.name]",4)
/*
@@ -28,7 +28,7 @@
/obj/item/weapon/soap/Crossed(atom/movable/AM as mob|obj)
if(AM.is_incorporeal())
return
- if (istype(AM, /mob/living))
+ if(istype(AM, /mob/living))
var/mob/living/M = AM
M.slip("the [src.name]",3)
@@ -68,11 +68,20 @@
/*
* Bike Horns
*/
+/obj/item/weapon/bikehorn
+ var/honk_sound = 'sound/items/bikehorn.ogg'
+
/obj/item/weapon/bikehorn/attack_self(mob/user as mob)
- if (spam_flag == 0)
+ if(spam_flag == 0)
spam_flag = 1
- playsound(src, 'sound/items/bikehorn.ogg', 50, 1)
+ playsound(src, honk_sound, 50, 1)
src.add_fingerprint(user)
spawn(20)
spam_flag = 0
return
+
+/obj/item/weapon/bikehorn/Crossed(atom/movable/AM as mob|obj)
+ if(AM.is_incorporeal())
+ return
+ if(istype(AM, /mob/living))
+ playsound(src, honk_sound, 50, 1)
diff --git a/code/game/objects/items/weapons/id cards/station_ids_vr.dm b/code/game/objects/items/weapons/id cards/station_ids_vr.dm
index b659e756b3a..756ab3bc9cd 100644
--- a/code/game/objects/items/weapons/id cards/station_ids_vr.dm
+++ b/code/game/objects/items/weapons/id cards/station_ids_vr.dm
@@ -1,2 +1,102 @@
/obj/item/weapon/card/id/gold/captain/spare/fakespare
- rank = "null"
\ No newline at end of file
+ rank = "null"
+
+/obj/item/weapon/card/id/itg
+ name = "identification card"
+ desc = "A small card designating affiliation with the Ironcrest Transport Group."
+ icon = 'icons/obj/card_vr.dmi'
+ icon_state = "itg"
+ item_state = "itg_id"
+
+/obj/item/weapon/card/id/itg/green
+ icon_state = "itg_green"
+ item_state = "itg_green_id"
+
+/obj/item/weapon/card/id/itg/red
+ icon_state = "itg_red"
+ item_state = "itg_red_id"
+
+/obj/item/weapon/card/id/itg/purple
+ icon_state = "itg_purple"
+ item_state = "itg_purple_id"
+
+/obj/item/weapon/card/id/itg/white
+ icon_state = "itg_white"
+ item_state = "itg_white_id"
+
+/obj/item/weapon/card/id/itg/orange
+ icon_state = "itg_orange"
+ item_state = "itg_orange_id"
+
+/obj/item/weapon/card/id/itg/blue
+ icon_state = "itg_blue"
+ item_state = "itg_blue_id"
+
+/obj/item/weapon/card/id/itg/event
+ name = "\improper ITG Crew ID"
+ assignment = "Crew"
+ rank = "Crew"
+ access = list(777)
+
+/obj/item/weapon/card/id/itg/event/pilot
+ name = "\improper ITG Pilot's ID"
+ desc = "An ID card belonging to the Pilot of an ITG vessel. The Pilot's responsibility is primarily to fly the ship. They may also be tasked to assist with cargo movement duties."
+ assignment = "Pilot"
+ rank = "Pilot"
+
+/obj/item/weapon/card/id/itg/event/service
+ name = "\improper ITG Cook's ID"
+ desc = "An ID card belonging to the Cook of an ITG vessel. The Cook's responsibility is primarily to provide sustinence to the crew and passengers. The Cook answers to the Passenger Liason. In the absence of a Passenger Liason, the Cook is also responsible for tending to passenger related care and duties."
+ assignment = "Cook"
+ rank = "Cook"
+ icon_state = "itg_green"
+ item_state = "itg_green_id"
+
+/obj/item/weapon/card/id/itg/event/security
+ name = "\improper ITG Security's ID"
+ desc = "An ID card belonging to Security of an ITG vessel. Security's responsibility is primarily to protect the ship, cargo, or facility. They may also be tasked to assist with cargo movement duties and rescue operations. ITG Security is almost exclusively defensive. They should not start fights, but they are very capable of finishing them."
+ assignment = "Security"
+ rank = "Security"
+ icon_state = "itg_red"
+ item_state = "itg_red_id"
+
+/obj/item/weapon/card/id/itg/event/research
+ name = "\improper ITG Research's ID"
+ desc = "An ID card belonging to ITG Research staff. ITG Research staff primarily specializes in starship and starship engine design, and overcoming astronomic phenomena."
+ assignment = "Research"
+ rank = "Research"
+ icon_state = "itg_purple"
+ item_state = "itg_purple_id"
+
+/obj/item/weapon/card/id/itg/event/medical
+ name = "\improper ITG Medic's ID"
+ desc = "An ID card belonging to the Medic of an ITG vessel. The Medic's responsibility is primarily to treat crew and passenger injuries. They may also be tasked with rescue operations."
+ assignment = "Medic"
+ rank = "Medic"
+ icon_state = "itg_white"
+ item_state = "itg_white_id"
+
+/obj/item/weapon/card/id/itg/event/engineer
+ name = "\improper ITG Engineer's ID"
+ desc = "An ID card belonging to the Engineer of an ITG vessel. The Engineer's responsibility is primarily to maintain the ship. They may also be tasked to assist with cargo movement duties."
+ assignment = "Engineer"
+ rank = "Engineer"
+ icon_state = "itg_orange"
+ item_state = "itg_orange_id"
+
+/obj/item/weapon/card/id/itg/event/passengerliason
+ name = "\improper ITG Passenger Liason's ID"
+ desc = "An ID card belonging to the Passenger Liason of an ITG vessel. The Passenger Liason's responsibility is primarily to manage and tend to passenger needs and maintain supplies and facilities for passenger use."
+ assignment = "Passenger Liason"
+ rank = "Passenger Liason"
+ icon_state = "itg_blue"
+ item_state = "itg_blue_id"
+
+/obj/item/weapon/card/id/itg/event/captain
+ name = "\improper ITG Captain's ID"
+ desc = "An ID card belonging to the Captain of an ITG vessel. The Captain's responsibility is primarily to manage crew to ensure smooth ship operations. Captains often also often pilot the vessel when no dedicated pilot is assigned."
+ assignment = "Captain"
+ rank = "Captain"
+ icon_state = "itg_blue"
+ item_state = "itg_blue_id"
+ access = list(777, 778)
\ No newline at end of file
diff --git a/code/game/objects/items/weapons/material/material_weapons.dm b/code/game/objects/items/weapons/material/material_weapons.dm
index 23c04f2a818..5563b71689f 100644
--- a/code/game/objects/items/weapons/material/material_weapons.dm
+++ b/code/game/objects/items/weapons/material/material_weapons.dm
@@ -97,6 +97,8 @@
/obj/item/weapon/material/proc/check_health(var/consumed)
if(health<=0)
+ health = 0
+
if(fragile)
shatter(consumed)
else if(!dulled && can_dull)
diff --git a/code/game/objects/items/weapons/material/misc.dm b/code/game/objects/items/weapons/material/misc.dm
index 754943671ef..d8906955a15 100644
--- a/code/game/objects/items/weapons/material/misc.dm
+++ b/code/game/objects/items/weapons/material/misc.dm
@@ -93,3 +93,118 @@
//icon_state = "reinf-snowball"
force_divisor = 0.20
thrown_force_divisor = 0.25
+
+/obj/item/weapon/material/whip
+ name = "whip"
+ desc = "A tool used to discipline animals, or look cool. Mostly the latter."
+ description_info = "Help - Standard attack, no modifiers.
\
+ Disarm - Disarming strike. Attempts to disarm the target at range, similar to an unarmed disarm. Additionally, will force the target (if possible) to move away from you.
\
+ Grab - Grappling strike. Attempts to pull the target toward you. This can also move objects.
\
+ Harm - A standard strike with a small chance to disarm."
+ icon = 'icons/obj/weapons.dmi'
+ icon_state = "whip"
+ item_state = "chain"
+ default_material = MAT_LEATHER
+ slot_flags = SLOT_BELT
+ w_class = ITEMSIZE_NORMAL
+ origin_tech = list(TECH_COMBAT = 2)
+ attack_verb = list("flogged", "whipped", "lashed", "disciplined")
+ force_divisor = 0.15
+ thrown_force_divisor = 0.25
+ reach = 2
+
+ item_icons = list(
+ slot_l_hand_str = 'icons/mob/items/lefthand_melee.dmi',
+ slot_r_hand_str = 'icons/mob/items/righthand_melee.dmi',
+ )
+
+/obj/item/weapon/material/whip/afterattack(atom/A as mob|obj|turf|area, mob/user as mob, proximity)
+ ..()
+
+ if(!proximity)
+ return
+
+ if(istype(A, /atom/movable))
+ var/atom/movable/AM = A
+ if(AM.anchored)
+ to_chat(user, "
\The [AM] won't budge. ")
+ return
+
+ else
+ if(!istype(AM, /obj/item))
+ user.visible_message("
\The [AM] is pulled along by \the [src]! ")
+ AM.Move(get_step(AM, get_dir(AM, src)))
+ return
+
+ else
+ user.visible_message("
\The [AM] is snatched by \the [src]! ")
+ AM.throw_at(user, reach, 0.1, user)
+
+/obj/item/weapon/material/whip/apply_hit_effect(mob/living/target, mob/living/user, var/hit_zone)
+ if(user.a_intent)
+ switch(user.a_intent)
+ if(I_HURT)
+ if(prob(10) && istype(target, /mob/living/carbon/human) && user.zone_sel in list(BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT, BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND))
+ to_chat(target, "
\The [src] rips at your hands! ")
+ ranged_disarm(target)
+ if(I_DISARM)
+ if(prob(min(90, force * 3)) && istype(target, /mob/living/carbon/human) && user.zone_sel in list(BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT, BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND))
+ ranged_disarm(target)
+ else
+ target.visible_message("
\The [src] sends \the [target] stumbling away. ")
+ target.Move(get_step(target,get_dir(user,target)))
+ if(I_GRAB)
+ var/turf/STurf = get_turf(target)
+ spawn(2)
+ playsound(STurf, 'sound/effects/snap.ogg', 60, 1)
+ target.visible_message("
\The [src] yanks \the [target] towards \the [user]! ")
+ target.throw_at(get_turf(get_step(user,get_dir(user,target))), 2, 1, src)
+
+ ..()
+
+/obj/item/weapon/material/whip/proc/ranged_disarm(var/mob/living/carbon/human/H, var/mob/living/user)
+ if(istype(H))
+ var/list/holding = list(H.get_active_hand() = 40, H.get_inactive_hand() = 20)
+
+ if(user.zone_sel in list(BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND))
+ for(var/obj/item/weapon/gun/W in holding)
+ if(W && prob(holding[W]))
+ var/list/turfs = list()
+ for(var/turf/T in view())
+ turfs += T
+ if(turfs.len)
+ var/turf/target = pick(turfs)
+ visible_message("
[H]'s [W] goes off due to \the [src]! ")
+ return W.afterattack(target,H)
+
+ if(!(H.species.flags & NO_SLIP) && prob(10) && user.zone_sel in list(BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT))
+ var/armor_check = H.run_armor_check(user.zone_sel, "melee")
+ H.apply_effect(3, WEAKEN, armor_check)
+ playsound(src, 'sound/weapons/thudswoosh.ogg', 50, 1, -1)
+ if(armor_check < 60)
+ visible_message("
\The [src] has tripped [H]! ")
+ else
+ visible_message("
\The [src] attempted to trip [H]! ")
+ return
+
+ else
+ if(H.break_all_grabs(user))
+ playsound(src, 'sound/weapons/thudswoosh.ogg', 50, 1, -1)
+ return
+
+ if(user.zone_sel in list(BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND))
+ for(var/obj/item/I in holding)
+ if(I && prob(holding[I]))
+ H.drop_from_inventory(I)
+ visible_message("
\The [src] has disarmed [H]! ")
+ playsound(src, 'sound/weapons/thudswoosh.ogg', 50, 1, -1)
+ return
+
+/obj/item/weapon/material/whip/suicide_act(mob/user)
+ var/datum/gender/T = gender_datums[user.get_visible_gender()]
+ user.visible_message(span("danger", "\The [user] [T.is] strangling [T.himself] with \the [src]! It looks like [T.he] [T.is] trying to commit suicide."), span("danger", "You start to strangle yourself with \the [src]!"), span("danger", "You hear the sound of someone choking!"))
+ return (OXYLOSS)
+
+/obj/item/weapon/material/whip/attack_self(mob/user)
+ user.visible_message("
\The [user] cracks \the [src]! ")
+ playsound(src, 'sound/effects/snap.ogg', 50, 1)
diff --git a/code/game/objects/items/weapons/melee/misc.dm b/code/game/objects/items/weapons/melee/misc.dm
index 4185cf92c24..b7684d6a7fa 100644
--- a/code/game/objects/items/weapons/melee/misc.dm
+++ b/code/game/objects/items/weapons/melee/misc.dm
@@ -9,10 +9,12 @@
origin_tech = list(TECH_COMBAT = 4)
attack_verb = list("flogged", "whipped", "lashed", "disciplined")
- suicide_act(mob/user)
- var/datum/gender/T = gender_datums[user.get_visible_gender()]
- user.visible_message(span("danger", "\The [user] [T.is] strangling [T.himself] with \the [src]! It looks like [T.he] [T.is] trying to commit suicide."), span("danger", "You start to strangle yourself with \the [src]!"), span("danger", "You hear the sound of someone choking!"))
- return (OXYLOSS)
+ reach = 2
+
+/obj/item/weapon/melee/chainofcommand/suicide_act(mob/user)
+ var/datum/gender/T = gender_datums[user.get_visible_gender()]
+ user.visible_message(span("danger", "\The [user] [T.is] strangling [T.himself] with \the [src]! It looks like [T.he] [T.is] trying to commit suicide."), span("danger", "You start to strangle yourself with \the [src]!"), span("danger", "You hear the sound of someone choking!"))
+ return (OXYLOSS)
/obj/item/weapon/melee/umbrella
name = "umbrella"
diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm
index 6b60255f46b..cea6a3bf7be 100644
--- a/code/game/objects/items/weapons/storage/bags.dm
+++ b/code/game/objects/items/weapons/storage/bags.dm
@@ -124,7 +124,7 @@
to_chat(user, "
You fill the [src]. ")
else if(!silent)
to_chat(user, "
You fail to pick anything up with \the [src]. ")
- if(istype(user.pulling, /obj/structure/ore_box/)) //Bit of a crappy way to do this, as it doubles spam for the user, but it works.
+ if(istype(user.pulling, /obj/structure/ore_box)) //Bit of a crappy way to do this, as it doubles spam for the user, but it works.
var/obj/structure/ore_box/O = user.pulling
O.attackby(src, user)
diff --git a/code/game/objects/items/weapons/storage/egg_vr.dm b/code/game/objects/items/weapons/storage/egg_vr.dm
new file mode 100644
index 00000000000..0ea3b673e10
--- /dev/null
+++ b/code/game/objects/items/weapons/storage/egg_vr.dm
@@ -0,0 +1,182 @@
+//Item type vorepanel egg release containers.
+
+/obj/item/weapon/storage/vore_egg
+ name = "egg"
+ desc = "It's an egg; it's smooth to the touch." //This is the default egg.
+ icon = 'icons/obj/egg_new_vr.dmi'
+ icon_state = "egg"
+ var/open_egg_icon = 'icons/obj/egg_open_vr.dmi'
+ item_icons = list(
+ slot_l_hand_str = 'icons/mob/items/lefthand_storage.dmi',
+ slot_r_hand_str = 'icons/mob/items/righthand_storage.dmi',
+ )
+ w_class = 2
+ max_w_class = 0
+ show_messages = 0
+ allow_quick_empty = TRUE
+ use_sound = 'sound/items/drop/flesh.ogg'
+
+/obj/item/weapon/storage/vore_egg/open(mob/user as mob)
+ icon = open_egg_icon
+ ..()
+
+/obj/item/weapon/storage/vore_egg/proc/hatch(mob/living/user as mob)
+ visible_message("
\The [src] begins to shake as something pushes out from within! ")
+ animate_shake()
+ if(do_after(user, 50))
+ if(use_sound)
+ playsound(src, src.use_sound, 50, 0, -5)
+ animate_shake()
+ drop_contents()
+ icon = open_egg_icon
+
+/obj/item/weapon/storage/vore_egg/proc/animate_shake()
+ var/init_px = pixel_x
+ var/shake_dir = pick(-1, 1)
+ animate(src, transform=turn(matrix(), 8*shake_dir), pixel_x=init_px + 2*shake_dir, time=1)
+ animate(transform=null, pixel_x=init_px, time=6, easing=ELASTIC_EASING)
+
+/obj/item/weapon/storage/vore_egg/unathi
+ name = "unathi egg"
+ desc = "Some species of Unathi apparently lay soft-shelled eggs!"
+ icon_state = "egg_unathi"
+
+/obj/item/weapon/storage/vore_egg/nevrean
+ name = "nevrean egg"
+ desc = "Most Nevreans lay hard-shelled eggs!"
+ icon_state = "egg_nevrean"
+
+/obj/item/weapon/storage/vore_egg/human
+ name = "human egg"
+ desc = "Some humans lay eggs that are--wait, what?"
+ icon_state = "egg_human"
+
+/obj/item/weapon/storage/vore_egg/tajaran
+ name = "tajaran egg"
+ desc = "Apparently that's what a Tajaran egg looks like. Weird."
+ icon_state = "egg_tajaran"
+
+/obj/item/weapon/storage/vore_egg/skrell
+ name = "skrell egg"
+ desc = "Its soft and squishy"
+ icon_state = "egg_skrell"
+
+/obj/item/weapon/storage/vore_egg/shark
+ name = "akula egg"
+ desc = "Its soft and slimy to the touch"
+ icon_state = "egg_akula"
+
+/obj/item/weapon/storage/vore_egg/sergal
+ name = "sergal egg"
+ desc = "An egg with a slightly fuzzy exterior, and a hard layer beneath."
+ icon_state = "egg_sergal"
+
+/obj/item/weapon/storage/vore_egg/slime
+ name = "slime egg"
+ desc = "An egg with a soft and squishy interior, coated with slime."
+ icon_state = "egg_slime"
+
+/obj/item/weapon/storage/vore_egg/special //Not actually used, but the sprites are in, and it's there in case any admins need to spawn in the egg for any specific reasons.
+ name = "special egg"
+ desc = "This egg has a very unique look to it."
+ icon_state = "egg_unique"
+
+/obj/item/weapon/storage/vore_egg/scree
+ name = "Chimera egg"
+ desc = "...You don't know what type of creature laid this egg."
+ icon_state = "egg_scree"
+
+/obj/item/weapon/storage/vore_egg/xenomorph
+ name = "Xenomorph egg"
+ desc = "Some type of pitch black egg. It has a slimy exterior coating."
+ icon_state = "egg_xenomorph"
+
+/obj/item/weapon/storage/vore_egg/chocolate
+ name = "chocolate egg"
+ desc = "Delicious. May contain a choking hazard."
+ icon_state = "egg_chocolate"
+
+/obj/item/weapon/storage/vore_egg/owlpellet
+ name = "boney egg"
+ desc = "Can an egg shell be made of bones and hair?"
+ icon_state = "egg_pellet"
+
+/obj/item/weapon/storage/vore_egg/slimeglob
+ name = "glob of slime"
+ desc = "Very squishy."
+ icon_state = "egg_slimeglob"
+
+/obj/item/weapon/storage/vore_egg/chicken
+ name = "chicken egg"
+ desc = "Looks like chickens come in all sizes and shapes."
+ icon_state = "egg_chicken"
+
+/obj/item/weapon/storage/vore_egg/synthetic
+ name = "synthetic egg"
+ desc = "Can robots lay eggs?"
+ icon_state = "egg_synthetic"
+
+/obj/item/weapon/storage/vore_egg/badrecipe
+ name = "Burned mess"
+ desc = "Someone didn't cook this egg quite right..."
+ icon_state = "egg_badrecipe"
+
+/obj/item/weapon/storage/vore_egg/escapepod
+ name = "small escape pod"
+ desc = "Someone left in a hurry."
+ icon_state = "egg_escapepod"
+
+/obj/item/weapon/storage/vore_egg/cocoon
+ name = "web cocoon"
+ desc = "It straight up smells like spiders in here."
+ icon_state = "egg_cocoon"
+
+/obj/item/weapon/storage/vore_egg/bugcocoon
+ name = "bug cocoon"
+ desc = "Metamorphosis!"
+ icon_state = "egg_bugcocoon"
+
+/obj/item/weapon/storage/vore_egg/rock
+ name = "rock egg"
+ desc = "It looks like a small boulder."
+ icon_state = "egg_rock"
+
+/obj/item/weapon/storage/vore_egg/yellow
+ name = "yellow egg"
+ desc = "It is a nice yellow egg."
+ icon_state = "egg_yellow"
+
+/obj/item/weapon/storage/vore_egg/blue
+ name = "blue egg"
+ desc = "It is a nice blue egg."
+ icon_state = "egg_blue"
+
+/obj/item/weapon/storage/vore_egg/green
+ name = "green egg"
+ desc = "It is a nice green egg."
+ icon_state = "egg_green"
+
+/obj/item/weapon/storage/vore_egg/orange
+ name = "orange egg"
+ desc = "It is a nice orange egg."
+ icon_state = "egg_orange"
+
+/obj/item/weapon/storage/vore_egg/purple
+ name = "purple egg"
+ desc = "It is a nice purple egg."
+ icon_state = "egg_purple"
+
+/obj/item/weapon/storage/vore_egg/red
+ name = "red egg"
+ desc = "It is a nice red egg."
+ icon_state = "egg_red"
+
+/obj/item/weapon/storage/vore_egg/rainbow
+ name = "rainbow egg"
+ desc = "It looks so colorful."
+ icon_state = "egg_rainbow"
+
+/obj/item/weapon/storage/vore_egg/pinkspots
+ name = "spotted pink egg"
+ desc = "It is a cute pink egg with white spots."
+ icon_state = "egg_pinkspots"
diff --git a/code/game/objects/items/weapons/storage/storage.dm b/code/game/objects/items/weapons/storage/storage.dm
index 4759b066674..64de9b68a26 100644
--- a/code/game/objects/items/weapons/storage/storage.dm
+++ b/code/game/objects/items/weapons/storage/storage.dm
@@ -523,9 +523,11 @@
if(((!(ishuman(usr) || isrobot(usr))) && (src.loc != usr)) || usr.stat || usr.restrained())
return
+ drop_contents()
- var/turf/T = get_turf(src)
+/obj/item/weapon/storage/proc/drop_contents() // why is this a proc? literally just for RPEDs
hide_from(usr)
+ var/turf/T = get_turf(src)
for(var/obj/item/I in contents)
remove_from_storage(I, T)
diff --git a/code/game/objects/items/weapons/traps.dm b/code/game/objects/items/weapons/traps.dm
index 0ec9bc7af38..c583ce1eef2 100644
--- a/code/game/objects/items/weapons/traps.dm
+++ b/code/game/objects/items/weapons/traps.dm
@@ -1,3 +1,9 @@
+
+/*
+ * Beartraps.
+ * Buckles crossing individuals, doing moderate brute damage.
+ */
+
/obj/item/weapon/beartrap
name = "mechanical trap"
throw_speed = 2
@@ -158,3 +164,238 @@
color = "#C9DCE1"
origin_tech = list(TECH_MATERIAL = 4, TECH_BLUESPACE = 3, TECH_MAGNET = 4, TECH_PHORON = 2, TECH_ARCANE = 1)
+
+/*
+ * Barbed-Wire.
+ * Slows individuals crossing it. Barefoot individuals will be cut. Can be electrified by placing over a cable node.
+ */
+
+/obj/item/weapon/material/barbedwire
+ name = "barbed wire"
+ desc = "A coil of wire."
+ icon = 'icons/obj/trap.dmi'
+ icon_state = "barbedwire"
+ anchored = FALSE
+ layer = TABLE_LAYER
+ w_class = ITEMSIZE_LARGE
+ explosion_resistance = 1
+ can_dull = TRUE
+ fragile = TRUE
+ force_divisor = 0.20
+ thrown_force_divisor = 0.25
+
+ sharp = TRUE
+
+/obj/item/weapon/material/barbedwire/set_material(var/new_material)
+ ..()
+
+ if(!QDELETED(src))
+ health = round(material.integrity / 3)
+ name = (material.get_edge_damage() * force_divisor > 15) ? "[material.display_name] razor wire" : "[material.display_name] [initial(name)]"
+
+/obj/item/weapon/material/barbedwire/proc/can_use(mob/user)
+ return (user.IsAdvancedToolUser() && !issilicon(user) && !user.stat && !user.restrained())
+
+/obj/item/weapon/material/barbedwire/attack_hand(mob/user as mob)
+ if(anchored && can_use(user))
+ user.visible_message(
+ "
[user] starts to collect \the [src]. ",
+ "
You begin collecting \the [src]! ",
+ "You hear the sound of rustling [material.name]."
+ )
+ playsound(src, 'sound/machines/click.ogg', 50, 1)
+
+ if(do_after(user, health))
+ user.visible_message(
+ "
[user] has collected \the [src]. ",
+ "
You have collected \the [src]! "
+ )
+ anchored = 0
+ update_icon()
+ else
+ ..()
+
+/obj/item/weapon/material/barbedwire/attack_self(mob/user as mob)
+ ..()
+ if(!anchored && can_use(user))
+ user.visible_message(
+ "
[user] starts to deploy \the [src]. ",
+ "
You begin deploying \the [src]! ",
+ "You hear the rustling of [material.name]."
+ )
+
+ if (do_after(user, 60))
+ user.visible_message(
+ "
[user] has deployed \the [src]. ",
+ "
You have deployed \the [src]! ",
+ "You hear the rustling of [material.name]."
+ )
+ playsound(src, 'sound/items/Wirecutter.ogg',70, 1)
+ spawn(2)
+ playsound(src, 'sound/items/Wirecutter.ogg',40, 1)
+ user.drop_from_inventory(src)
+ forceMove(get_turf(src))
+ anchored = 1
+ update_icon()
+
+/obj/item/weapon/material/barbedwire/attackby(obj/item/W as obj, mob/user as mob)
+ if(!istype(W))
+ return
+
+ if((W.flags & NOCONDUCT) || !shock(user, 70, pick(BP_L_HAND, BP_R_HAND)))
+ user.setClickCooldown(user.get_attack_speed(W))
+ user.do_attack_animation(src)
+ playsound(src, 'sound/effects/grillehit.ogg', 40, 1)
+
+ var/inc_damage = W.force
+
+ if(W.is_wirecutter())
+ if(!shock(user, 100, pick(BP_L_HAND, BP_R_HAND)))
+ playsound(src, W.usesound, 100, 1)
+ inc_damage *= 3
+
+ if(W.damtype != BRUTE)
+ inc_damage *= 0.3
+
+ health -= inc_damage
+
+ check_health()
+
+ ..()
+
+/obj/item/weapon/material/barbedwire/update_icon()
+ ..()
+
+ if(anchored)
+ icon_state = "[initial(icon_state)]-out"
+ else
+ icon_state = "[initial(icon_state)]"
+
+/obj/item/weapon/material/barbedwire/Crossed(atom/movable/AM as mob|obj)
+ if(AM.is_incorporeal())
+ return
+ if(anchored && isliving(AM))
+ var/mob/living/L = AM
+ if(L.m_intent == "run")
+ L.visible_message(
+ "
[L] steps in \the [src]. ",
+ "
You step in \the [src]! ",
+ "
You hear a sharp rustling! "
+ )
+ attack_mob(L)
+ update_icon()
+ ..()
+
+/obj/item/weapon/material/barbedwire/proc/shock(mob/user as mob, prb, var/target_zone = BP_TORSO)
+ if(!anchored || health == 0) // anchored/destroyed grilles are never connected
+ return 0
+ if(material.conductivity <= 0)
+ return 0
+ if(!prob(prb))
+ return 0
+ if(!in_range(src, user))//To prevent TK and mech users from getting shocked
+ return 0
+ var/turf/T = get_turf(src)
+ var/obj/structure/cable/C = T.get_cable_node()
+ if(C)
+ if(C.powernet)
+ var/datum/powernet/PN = C.powernet
+
+ if(PN)
+ PN.trigger_warning()
+
+ var/PN_damage = PN.get_electrocute_damage() * (material.conductivity / 50)
+
+ var/drained_energy = PN_damage * 10 / CELLRATE
+
+ PN.draw_power(drained_energy)
+
+ if(ishuman(user))
+ var/mob/living/carbon/human/H = user
+
+ var/obj/item/organ/external/affected = H.get_organ(check_zone(target_zone))
+
+ H.electrocute_act(PN_damage, src, H.get_siemens_coefficient_organ(affected))
+
+ else
+ if(isliving(user))
+ var/mob/living/L = user
+ L.electrocute_act(PN_damage, src, 0.8)
+
+ var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread
+ s.set_up(3, 1, src)
+ s.start()
+ if(user.stunned)
+ return 1
+ else
+ return 0
+ return 0
+
+/obj/item/weapon/material/barbedwire/proc/attack_mob(mob/living/L)
+ var/target_zone
+ if(L.lying)
+ target_zone = ran_zone()
+ else
+ target_zone = pick("l_foot", "r_foot", "l_leg", "r_leg")
+
+ //armour
+ var/blocked = L.run_armor_check(target_zone, "melee")
+ var/soaked = L.get_armor_soak(target_zone, "melee")
+
+ if(blocked >= 100)
+ return
+
+ if(soaked >= 30)
+ return
+
+ if(L.buckled) //wheelchairs, office chairs, rollerbeds
+ return
+
+ shock(L, 100, target_zone)
+
+ L.add_modifier(/datum/modifier/entangled, 3 SECONDS)
+
+ if(!L.apply_damage(force * (issilicon(L) ? 0.25 : 1), BRUTE, target_zone, blocked, soaked, src, sharp, edge))
+ return
+
+ playsound(src, 'sound/effects/glass_step.ogg', 50, 1) // not sure how to handle metal shards with sounds
+ if(ishuman(L))
+ var/mob/living/carbon/human/H = L
+
+ if(H.species.siemens_coefficient<0.5) //Thick skin.
+ return
+
+ if( H.shoes || ( H.wear_suit && (H.wear_suit.body_parts_covered & FEET) ) )
+ return
+
+ if(H.species.flags & NO_MINOR_CUT)
+ return
+
+ to_chat(H, "
You step directly on \the [src]! ")
+
+ var/list/check = list("l_foot", "r_foot")
+ while(check.len)
+ var/picked = pick(check)
+ var/obj/item/organ/external/affecting = H.get_organ(picked)
+ if(affecting)
+ if(affecting.robotic >= ORGAN_ROBOT)
+ return
+ if(affecting.take_damage(force, 0))
+ H.UpdateDamageIcon()
+ H.updatehealth()
+ if(affecting.organ_can_feel_pain())
+ H.Weaken(3)
+ return
+ check -= picked
+
+ if(material.is_brittle() && prob(material.hardness))
+ health = 0
+ else if(!prob(material.hardness))
+ health--
+ check_health()
+
+ return
+
+/obj/item/weapon/material/barbedwire/plastic
+ name = "snare wire"
+ default_material = MAT_PLASTIC
diff --git a/code/game/objects/random/mapping.dm b/code/game/objects/random/mapping.dm
index 16be9dff94b..4d40578c1ef 100644
--- a/code/game/objects/random/mapping.dm
+++ b/code/game/objects/random/mapping.dm
@@ -92,6 +92,8 @@
return pick(prob(30);/obj/effect/mine,
prob(25);/obj/effect/mine/frag,
prob(25);/obj/effect/mine/emp,
+ prob(15);/obj/effect/mine/camo,
+ prob(15);/obj/effect/mine/emp/camo,
prob(10);/obj/effect/mine/stun,
prob(10);/obj/effect/mine/incendiary,)
diff --git a/code/game/objects/random/misc.dm b/code/game/objects/random/misc.dm
index 913ffda9b74..53f06af9f98 100644
--- a/code/game/objects/random/misc.dm
+++ b/code/game/objects/random/misc.dm
@@ -673,7 +673,10 @@
/obj/item/toy/plushie/borgplushie/scrubpuppy,
/obj/item/toy/plushie/foxbear,
/obj/item/toy/plushie/nukeplushie,
- /obj/item/toy/plushie/otter)
+ /obj/item/toy/plushie/otter,
+ /obj/item/toy/plushie/vox,
+ /obj/item/toy/plushie/borgplushie/drakiesec,
+ /obj/item/toy/plushie/borgplushie/drakiemed)
//VOREStation Add End
/obj/random/plushielarge
diff --git a/code/game/objects/structures/barricades.dm b/code/game/objects/structures/barricades.dm
new file mode 100644
index 00000000000..34ab6025c73
--- /dev/null
+++ b/code/game/objects/structures/barricades.dm
@@ -0,0 +1,185 @@
+//Barricades!
+/obj/structure/barricade
+ name = "barricade"
+ desc = "This space is blocked off by a barricade."
+ icon = 'icons/obj/structures.dmi'
+ icon_state = "barricade"
+ anchored = 1.0
+ density = 1.0
+ var/health = 100
+ var/maxhealth = 100
+ var/datum/material/material
+
+/obj/structure/barricade/New(var/newloc, var/material_name)
+ ..(newloc)
+ if(!material_name)
+ material_name = "wood"
+ material = get_material_by_name("[material_name]")
+ if(!material)
+ qdel(src)
+ return
+ name = "[material.display_name] barricade"
+ desc = "This space is blocked off by a barricade made of [material.display_name]."
+ color = material.icon_colour
+ maxhealth = material.integrity
+ health = maxhealth
+
+/obj/structure/barricade/get_material()
+ return material
+
+/obj/structure/barricade/attackby(obj/item/W as obj, mob/user as mob)
+ user.setClickCooldown(user.get_attack_speed(W))
+ if(istype(W, /obj/item/stack))
+ var/obj/item/stack/D = W
+ if(D.get_material_name() != material.name)
+ return //hitting things with the wrong type of stack usually doesn't produce messages, and probably doesn't need to.
+ if(health < maxhealth)
+ if(D.get_amount() < 1)
+ to_chat(user, "
You need one sheet of [material.display_name] to repair \the [src]. ")
+ return
+ visible_message("
[user] begins to repair \the [src]. ")
+ if(do_after(user,20) && health < maxhealth)
+ if(D.use(1))
+ health = maxhealth
+ visible_message("
[user] repairs \the [src]. ")
+ return
+ return
+ else
+ switch(W.damtype)
+ if("fire")
+ health -= W.force * 1
+ if("brute")
+ health -= W.force * 0.75
+ if(material == (get_material_by_name(MAT_WOOD) || get_material_by_name(MAT_SIFWOOD)))
+ playsound(src, 'sound/effects/woodcutting.ogg', 100, 1)
+ else
+ playsound(src, 'sound/weapons/smash.ogg', 50, 1)
+ CheckHealth()
+ ..()
+
+/obj/structure/barricade/proc/CheckHealth()
+ if(health <= 0)
+ dismantle()
+
+ health = min(health, maxhealth)
+
+ return
+
+/obj/structure/barricade/take_damage(var/damage)
+ health -= damage
+ CheckHealth()
+ return
+
+/obj/structure/barricade/attack_generic(var/mob/user, var/damage, var/attack_verb)
+ visible_message("
[user] [attack_verb] the [src]! ")
+ if(material == get_material_by_name("resin"))
+ playsound(src, 'sound/effects/attackblob.ogg', 100, 1)
+ else if(material == (get_material_by_name(MAT_CLOTH) || get_material_by_name(MAT_SYNCLOTH)))
+ playsound(src, 'sound/items/drop/clothing.ogg', 100, 1)
+ else if(material == (get_material_by_name(MAT_WOOD) || get_material_by_name(MAT_SIFWOOD)))
+ playsound(src, 'sound/effects/woodcutting.ogg', 100, 1)
+ else
+ playsound(src, 'sound/weapons/smash.ogg', 50, 1)
+ user.do_attack_animation(src)
+ health -= damage
+ CheckHealth()
+ return
+
+/obj/structure/barricade/proc/dismantle()
+ material.place_dismantled_product(get_turf(src))
+ visible_message("
\The [src] falls apart! ")
+ qdel(src)
+ return
+
+/obj/structure/barricade/ex_act(severity)
+ switch(severity)
+ if(1.0)
+ dismantle()
+ if(2.0)
+ health -= 25
+ CheckHealth()
+
+/obj/structure/barricade/CanPass(atom/movable/mover, turf/target)//So bullets will fly over and stuff.
+ if(istype(mover) && mover.checkpass(PASSTABLE))
+ return TRUE
+ return FALSE
+
+/obj/structure/barricade/sandbag
+ name = "sandbags"
+ desc = "Bags. Bags of sand. It's rough and coarse and somehow stays in the bag."
+ icon = 'icons/obj/sandbags.dmi'
+ icon_state = "blank"
+
+/obj/structure/barricade/sandbag/New(var/newloc, var/material_name)
+ if(!material_name)
+ material_name = "cloth"
+ ..(newloc, material_name)
+ material = get_material_by_name("[material_name]")
+ if(!material)
+ qdel(src)
+ return
+ name = "[material.display_name] [initial(name)]"
+ desc = "This space is blocked off by a barricade made of [material.display_name]."
+ color = null
+ maxhealth = material.integrity * 2 // These things are, commonly, used to stop bullets where possible.
+ health = maxhealth
+ update_connections(1)
+
+/obj/structure/barricade/sandbag/Destroy()
+ update_connections(1, src)
+ ..()
+
+/obj/structure/barricade/sandbag/dismantle()
+ update_connections(1, src)
+ material.place_dismantled_product(get_turf(src))
+ visible_message("
\The [src] falls apart! ")
+ qdel(src)
+ return
+
+/obj/structure/barricade/sandbag/update_icon()
+ if(!material)
+ return
+
+ cut_overlays()
+ var/image/I
+
+ for(var/i = 1 to 4)
+ I = image('icons/obj/sandbags.dmi', "sandbags[connections[i]]", dir = 1<<(i-1))
+ I.color = material.icon_colour
+ add_overlay(I)
+
+ return
+
+/obj/structure/barricade/sandbag/update_connections(propagate = 0, var/obj/structure/barricade/sandbag/ignore = null)
+ if(!material)
+ return
+ var/list/dirs = list()
+ for(var/obj/structure/barricade/sandbag/S in orange(src, 1))
+ if(!S.material)
+ continue
+ if(S == ignore)
+ continue
+ if(propagate >= 1)
+ S.update_connections(propagate - 1, ignore)
+ if(can_join_with(S))
+ dirs += get_dir(src, S)
+
+ connections = dirs_to_corner_states(dirs)
+
+ update_icon()
+
+/obj/structure/barricade/sandbag/proc/can_join_with(var/obj/structure/barricade/sandbag/S)
+ if(material == S.material)
+ return 1
+ return 0
+
+/obj/structure/barricade/sandbag/CanPass(atom/movable/mover, turf/target)
+ . = ..()
+
+ if(.)
+ if(istype(mover, /obj/item/projectile))
+ var/obj/item/projectile/P = mover
+
+ if(P.firer && get_dist(P.firer, src) > 1) // If you're firing from adjacent turfs, you are unobstructed.
+ if(P.armor_penetration < (material.protectiveness + material.hardness) || prob(33))
+ return FALSE
diff --git a/code/game/objects/structures/bonfire.dm b/code/game/objects/structures/bonfire.dm
index 3da06fa2265..f07fb8d1dc3 100644
--- a/code/game/objects/structures/bonfire.dm
+++ b/code/game/objects/structures/bonfire.dm
@@ -133,13 +133,13 @@
return FALSE
if(istype(consumed_fuel, /obj/item/stack/material/log))
- next_fuel_consumption = world.time + 2 MINUTES
+ next_fuel_consumption = world.time + 6 MINUTES //VOREStation Edit
qdel(consumed_fuel)
update_icon()
return TRUE
else if(istype(consumed_fuel, /obj/item/stack/material/wood)) // One log makes two planks of wood.
- next_fuel_consumption = world.time + 1 MINUTE
+ next_fuel_consumption = world.time + 3 MINUTE //VOREStation Edit
qdel(consumed_fuel)
update_icon()
return TRUE
@@ -330,13 +330,13 @@
return FALSE
if(istype(consumed_fuel, /obj/item/stack/material/log))
- next_fuel_consumption = world.time + 2 MINUTES
+ next_fuel_consumption = world.time + 6 MINUTES //VOREStation Edit
qdel(consumed_fuel)
update_icon()
return TRUE
else if(istype(consumed_fuel, /obj/item/stack/material/wood)) // One log makes two planks of wood.
- next_fuel_consumption = world.time + 1 MINUTE
+ next_fuel_consumption = world.time + 3 MINUTES //VOREStation Edit
qdel(consumed_fuel)
update_icon()
return TRUE
diff --git a/code/game/objects/structures/crates_lockers/closets/egg_vr.dm b/code/game/objects/structures/crates_lockers/closets/egg_vr.dm
index ba0809f6381..dabc8fd88bb 100644
--- a/code/game/objects/structures/crates_lockers/closets/egg_vr.dm
+++ b/code/game/objects/structures/crates_lockers/closets/egg_vr.dm
@@ -36,11 +36,11 @@
icon_opened = "egg_unathi_open"
/obj/structure/closet/secure_closet/egg/nevrean
- name = "nevarean egg"
- desc = "Most Nevareans lay hard-shelled eggs!"
- icon_state = "egg_nevarean"
- icon_closed = "egg_nevarean"
- icon_opened = "egg_nevarean_open"
+ name = "nevrean egg"
+ desc = "Most Nevreans lay hard-shelled eggs!"
+ icon_state = "egg_nevrean"
+ icon_closed = "egg_nevrean"
+ icon_opened = "egg_nevrean_open"
/obj/structure/closet/secure_closet/egg/human
name = "human egg"
diff --git a/code/game/objects/structures/ghost_pods/event_vr.dm b/code/game/objects/structures/ghost_pods/event_vr.dm
new file mode 100644
index 00000000000..c724b9bd809
--- /dev/null
+++ b/code/game/objects/structures/ghost_pods/event_vr.dm
@@ -0,0 +1,101 @@
+/obj/structure/ghost_pod/ghost_activated/maintpred
+ name = "maintenance hole"
+ desc = "Looks like some creature dug its way into station's maintenance..."
+ icon = 'icons/effects/effects.dmi'
+ icon_state = "tunnel_hole"
+ icon_state_opened = "tunnel_hole"
+ density = FALSE
+ ghost_query_type = /datum/ghost_query/maints_pred
+ anchored = TRUE
+ invisibility = INVISIBILITY_OBSERVER
+ spawn_active = TRUE
+ var/announce_prob = 35
+ var/list/possible_mobs = list("Space Bumblebee" = /mob/living/simple_mob/vore/bee,
+ "Voracious Lizard" = /mob/living/simple_mob/vore/aggressive/dino,
+ "Giant Frog" = /mob/living/simple_mob/vore/aggressive/frog,
+ "Giant Rat" = /mob/living/simple_mob/vore/aggressive/rat,
+ "Juvenile Solargrub" = /mob/living/simple_mob/vore/solargrub,
+ "Red Panda" = /mob/living/simple_mob/vore/redpanda,
+ "Fennec" = /mob/living/simple_mob/vore/fennec,
+ "Fennix" = /mob/living/simple_mob/vore/fennix,
+ "Jelly Blob" = /mob/living/simple_mob/animal/space/jelly,
+ "Wolf" = /mob/living/simple_mob/animal/wolf,
+ "Sect Queen" = /mob/living/simple_mob/vore/sect_queen,
+ "Defanged Xenomorph" = /mob/living/simple_mob/vore/xeno_defanged,
+ )
+
+/obj/structure/ghost_pod/ghost_activated/maintpred/create_occupant(var/mob/M)
+ ..()
+ var/choice
+ var/randomize
+ var/finalized = "No"
+
+ while(finalized == "No" && M.client)
+ choice = input(M,"What type of predator do you want to play as?") as null|anything in possible_mobs
+ if(!choice)
+ randomize = TRUE
+ break
+
+ if(choice)
+ finalized = alert(M, "Are you sure you want to play as [choice]?","Confirmation","No","Yes")
+
+ if(randomize)
+ choice = pick(possible_mobs)
+
+ var/mobtype = possible_mobs[choice]
+ var/mob/living/simple_mob/newPred = new mobtype(get_turf(src))
+ qdel(newPred.ai_holder)
+ newPred.ai_holder = null
+ //newPred.movement_cooldown = 0 // The "needless artificial speed cap" exists for a reason
+ if(M.mind)
+ M.mind.transfer_to(newPred)
+ to_chat(M, "
You are [newPred] , somehow having gotten aboard the station in search of food. \
+ You are wary of environment around you, but you do feel rather peckish. Stick around dark, secluded places to avoid danger or, \
+ if you are cute enough, try to make friends with this place's inhabitants. ")
+ newPred.ckey = M.ckey
+ newPred.visible_message("
[newPred] emerges from somewhere! ")
+
+ if(prob(announce_prob))
+ spawn(2 MINUTES)
+ command_announcement.Announce("Unexpected biosignature detected in the maintenance tunnels of [station_name()].", "Lifesign Alert")
+
+ qdel(src)
+
+/obj/structure/ghost_pod/ghost_activated/maintpred/no_announce
+ announce_prob = 0
+
+/obj/structure/ghost_pod/ghost_activated/morphspawn
+ name = "weird goo"
+ desc = "A pile of weird gunk... Wait, is it actually moving?"
+ icon = 'icons/mob/animal_vr.dmi'
+ icon_state = "morph"
+ icon_state_opened = "morph_dead"
+ density = FALSE
+ ghost_query_type = /datum/ghost_query/morph
+ anchored = TRUE
+ invisibility = INVISIBILITY_OBSERVER
+ spawn_active = TRUE
+ var/announce_prob = 50
+
+/obj/structure/ghost_pod/ghost_activated/morphspawn/create_occupant(var/mob/M)
+ ..()
+ var/mob/living/simple_mob/vore/hostile/morph/newMorph = new /mob/living/simple_mob/vore/hostile/morph(get_turf(src))
+ if(M.mind)
+ M.mind.transfer_to(newMorph)
+ to_chat(M, "
You are a Morph , somehow having gotten aboard the station in your wandering. \
+ You are wary of environment around you, but your primal hunger still calls for you to find prey. Seek a convincing disguise, \
+ using your amorphous form to traverse vents to find and consume weak prey. ")
+ to_chat(M, "
You can use shift + click on objects to disguise yourself as them, but your strikes are nearly useless when you are disguised. \
+ You can undisguise yourself by shift + clicking yourself, but disguise being switched, or turned on and off has a short cooldown. You can also ventcrawl, \
+ by using alt + click on the vent or scrubber. ")
+ newMorph.ckey = M.ckey
+ newMorph.visible_message("
A morph appears to crawl out of somewhere. ")
+
+ if(prob(announce_prob))
+ spawn(2 MINUTES)
+ command_announcement.Announce("Unexpected biosignature detected in the maintenance tunnels of [station_name()].", "Lifesign Alert")
+
+ qdel(src)
+
+/obj/structure/ghost_pod/ghost_activated/morphspawn/no_announce
+ announce_prob = 0
\ No newline at end of file
diff --git a/code/game/objects/structures/ghost_pods/ghost_pods.dm b/code/game/objects/structures/ghost_pods/ghost_pods.dm
index 12cfe24dc22..386d493d2db 100644
--- a/code/game/objects/structures/ghost_pods/ghost_pods.dm
+++ b/code/game/objects/structures/ghost_pods/ghost_pods.dm
@@ -36,6 +36,10 @@
// Override this to create whatever mob you need. Be sure to call ..() if you don't want it to make infinite mobs.
/obj/structure/ghost_pod/proc/create_occupant(var/mob/M)
used = TRUE
+ //VOREStation Addition Start
+ if(src in active_ghost_pods)
+ active_ghost_pods -= src
+ //VOREStation Addition End
return TRUE
@@ -52,6 +56,7 @@
// VOREStation Addition Start
if(!used)
activated = TRUE
+ ghostpod_startup(FALSE)
// VOREStation Addition End
/obj/structure/ghost_pod/manual/attack_ai(var/mob/living/silicon/user)
diff --git a/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm b/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm
index 9eedbb453cf..2d8f8198c50 100644
--- a/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm
+++ b/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm
@@ -1,3 +1,11 @@
+/obj/structure/ghost_pod/Destroy()
+ if(src in active_ghost_pods)
+ active_ghost_pods -= src
+ ..()
+
+/obj/structure/ghost_pod
+ var/spawn_active = FALSE
+
/obj/structure/ghost_pod/manual
var/remains_active = FALSE
var/activated = FALSE
@@ -28,4 +36,14 @@
busy = FALSE
- create_occupant(user)
\ No newline at end of file
+ create_occupant(user)
+
+/obj/structure/ghost_pod/proc/ghostpod_startup(var/notify = FALSE)
+ if(!(src in active_ghost_pods))
+ active_ghost_pods += src
+ if(notify)
+ trigger()
+
+/obj/structure/ghost_pod/ghost_activated/Initialize()
+ ..()
+ ghostpod_startup(spawn_active)
\ No newline at end of file
diff --git a/code/game/objects/structures/ghost_pods/human.dm b/code/game/objects/structures/ghost_pods/human.dm
index 246c4b3e654..814db9cd757 100644
--- a/code/game/objects/structures/ghost_pods/human.dm
+++ b/code/game/objects/structures/ghost_pods/human.dm
@@ -8,9 +8,10 @@
icon = 'icons/obj/Cryogenic2.dmi'
icon_state = "sleeper_1"
icon_state_opened = "sleeper_0"
- density = TRUE
+ density = FALSE
ghost_query_type = /datum/ghost_query/stowaway
- anchored = FALSE
+ anchored = TRUE
+ invisibility = 60
var/occupant_type = "stowaway"
@@ -123,7 +124,9 @@
if(allow_appearance_change)
H.change_appearance(APPEARANCE_ALL, H, check_species_whitelist = 1)
- visible_message("
\The [src] [pick("gurgles", "seizes", "clangs")] before releasing \the [H]! ")
+// visible_message("
\The [src] [pick("gurgles", "seizes", "clangs")] before releasing \the [H]! ")
+
+ qdel(src)
// Manual Variant
// This one lacks the emag option due to the fact someone has to activate it, and they will probably help the person.
diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm
index 295aa9239cc..b8597d6d292 100644
--- a/code/game/objects/structures/lattice.dm
+++ b/code/game/objects/structures/lattice.dm
@@ -11,12 +11,12 @@
/obj/structure/lattice/Initialize()
. = ..()
- if(!(istype(src.loc, /turf/space) || istype(src.loc, /turf/simulated/open) || istype(src.loc, /turf/simulated/mineral)))
+ if(!(istype(src.loc, /turf/space) || istype(src.loc, /turf/simulated/open) || istype(src.loc, /turf/simulated/mineral) || istype(src.loc, /turf/simulated/shuttle/plating/airless/carry)))
return INITIALIZE_HINT_QDEL
for(var/obj/structure/lattice/LAT in src.loc)
if(LAT != src)
- crash_with("Found multiple lattices at '[log_info_line(loc)]'")
+ log_debug("Found multiple lattices at '[log_info_line(loc)]'") //VOREStation Edit, why was this a runtime, it's harmless
return INITIALIZE_HINT_QDEL
icon = 'icons/obj/smoothlattice.dmi'
icon_state = "latticeblank"
diff --git a/code/game/objects/structures/props/alien_props_vr.dm b/code/game/objects/structures/props/alien_props_vr.dm
index b306d610bab..ffad6aa1e5d 100644
--- a/code/game/objects/structures/props/alien_props_vr.dm
+++ b/code/game/objects/structures/props/alien_props_vr.dm
@@ -10,4 +10,8 @@
desc = "This seems to be a container for something."
icon = 'icons/obj/abductor_vr.dmi'
icon_state = "experiment"
- interaction_message = "
You don't see any mechanism to open this thing. Probably for the best. "
\ No newline at end of file
+ interaction_message = "
You don't see any mechanism to open this thing. Probably for the best. "
+
+/obj/structure/prop/alien/dispenser/twoway
+ icon = 'icons/obj/abductor_vr.dmi'
+ icon_state = "dispenser_2way"
\ No newline at end of file
diff --git a/code/game/objects/structures/props/blackbox.dm b/code/game/objects/structures/props/blackbox.dm
index a28b82349f0..052b7d7609a 100644
--- a/code/game/objects/structures/props/blackbox.dm
+++ b/code/game/objects/structures/props/blackbox.dm
@@ -130,3 +130,122 @@
A repeating ping, before silence.
End of second log.
"}
+
+//VOREStation additions below this line - Killian's wrecks
+/obj/structure/prop/blackbox/mackerel_wreck
+ catalogue_data = list(/datum/category_item/catalogue/information/blackbox/mackerel_wreck)
+
+/datum/category_item/catalogue/information/blackbox/mackerel_wreck
+ name = "Black Box Data - ITV Phish Phood"
+ desc = {"
+
+
BEGIN LOG
+
(blaring alarms)
+
Shipboard Computer: Collision warning. Collision warning.
+
Shipboard Computer: High speed impact detected.
+
Shipboard Computer: Extensive damage detected.
+
Shipboard Computer: Starboard nacelle offline.
+
Shipboard Computer: Port nacelle damaged.
+
Shipboard Computer: Fore starboard impact buffer shattered.
+
Shipboard Computer: Fore port impact buffer critically damaged.
+
Shipboard Computer: Warning. Canopy breached. Warning. Canopy breached.
+
Shipboard Computer: Danger. Canopy depressurized.
+
Shipboard Computer: Warning. Sensors indicate crawlspaces exposed to vacuum.
+
Unknown Voice 1: Wow, that thing really did a number on this ship for a fifty year old piece of shit warhead huh?
+
Unknown Voice 2: No kidding!
+
Shipboard Computer: Danger. Lethal trauma to operator detected.
+
Unknown Voice 1: Fucking hell, will you shut that thing up?
+
(several loud metallic impacts)
+
Shipboard Computer: Warning. Intruders detec--*kzzzht*
+
(alarms cease)
+
Unknown Voice 2: There. Fuck. Finally. Sorry.
+
Unknown Voice 2: I hope whatever this idiot was hauling is here. Why were they in such a hurry anyway?
+
Unknown Voice 1: Beats me- and hand me that crowbar already.
+
Unknown Voice 2: Here, catch.
+
Unknown Voice 1: \'cha, nice. Let's see...
+
(sound of metal creaking, then a loud snapping sound)
+
Unknown Voice 1: And here she is.
+
Unknown Voice 2: (whistling) What a beauty. How much you think it\'ll go for?
+
Unknown Voice 1: Enough we\'ll never have to worry about doing another job all the way out here ever again.
+
Unknown Voice 2: Shiny. Now let\'s bounce before the ess-defs show up.
+
Unknown Voice 1: I hear that,
brat .
+
END LOG
+
+
CATALOGUER VOICE RECOGNITION RESULTS:
+ No match found for either speaker, but contextual clues and use of Old Earth russian (\'brat\', approximately \'brother\' or \'pal\') suggests out-of-sector criminal elements.
+ "}
+
+/obj/structure/prop/blackbox/gecko_wreck
+ catalogue_data = list(/datum/category_item/catalogue/information/blackbox/gecko_wreck)
+
+/datum/category_item/catalogue/information/blackbox/gecko_wreck
+ name = "Black Box Data - ITV Sticky Situation"
+ desc = {"
+
+
BEGIN LOG
+
(blaring alarms)
+
Shipboard Computer: Alert. Multiple impacts detected along starboard side.
+
Shipboard Computer: Multiple hull breaches detected. Starboard cargo hatches have been breached.
+
Shipboard Computer: Warning. Nacelle engines offline. Thrust reduced by thirty-five-point-three percent.
+
Unknown Voice 1: Agh! Shit! How'd they know-
+
(loud explosion, sound of rushing air)
+
Shipboard Computer: Danger. Canopy breached.
+
(mechanical whine, followed by a deep hiss)
+
Shipboard Computer: Automatic lockdown successfully engaged.
+
Unknown Voice 1: (wheezing) Mother
fucker! Jackson, Phelps, stand by to repel boarders!
+
Unknown Voice 2: Roger!
+
Unknown Voice 3: Already there.
+
Shipboard Computer: Warning. Minor breach in Engineering. Local depressurization in five minutes.
+
Unknown Voice 1: Shit, shit, shit.
+
Unknown Voice 3: Jackson\'s down!
+
Unknown Voice 1: Motherf-
+
Unknown Voice 4: Captain . Enough. You know why we\'re here, and we have your engineer. Tell us where you hid the goods and maybe we\'ll let you live.
+
Unknown Voice 5: Let me go you son of a-
+
(gunshot, ballistic)
+
Unknown Voice 4: You fucking idiot!
+
Unknown Voice 6: Don\'t you start, you said-
+
Unknown Voice 4: I don\'t care what I fucking said, shit-for-brains!
+
Unknown Voice 7: Boss, I
hate to rain on your little parade but SDF just popped up on my scopes, \'bout... fifty klicks out, closing fast. Be on top of us in a few minutes tops.
+
Unknown Voice 4: Fuck! You, dumbass! Link up with the others and grab as many crates as you can! Pray for your sake that we get the right one!
+
END LOG
+
+
CATALOGUER DATA ANALYSIS RESULTS:
+ No matches found for any of the voices involved. Ship manifest suggests a crew of at least six, but under the circumstances three of the recorded voices are clearly not from the crew.
+
+ Audio resynthesis of firearm discharge matches common high-caliber ballistic sidearm cartridges, best match 10mm Watson Special. An uncommon cartridge, one not manufactured locally.
+ "}
+
+/obj/structure/prop/blackbox/salamander_wreck
+ catalogue_data = list(/datum/category_item/catalogue/information/blackbox/salamander_wreck)
+
+/datum/category_item/catalogue/information/blackbox/salamander_wreck
+ name = "Black Box Data - ITV Unity"
+ desc = {"
+
+
BEGIN LOG
+
Unknown Speaker 1: Hey cap, you seeing this?
+
Unknown Speaker 2 (\"Cap\"): Yea-- what the fuck?
+
Unknown Speaker 1: Yeah that was my reaction.
+
Unknown Speaker 3: What are you tw-- holy shit, what
is that?
+
Unknown Speakers 1 & 2: We don't know!
+
Unknown Speaker 4: What\'s all the yel-- fuck me sideways, what the hell?
+
Unknown Speaker 2 (\"Cap\"): Stars above and fucking below, they never said anything like this was in the cans... shouldn't the port bioscanners have picked this up?
+
Unknown Speaker 3: I
told you that guy was one shady motherfucker, and whaddaya know.
+
Unknown Speaker 1: No kidding. Christ. What\'s the play, cap?
+
Unknown Speaker 4: I say we shoot this crap into the nearest star. Or gas giant maybe.
+
Unknown Speaker 2 (\"Cap\"): Pretty much. Get in one of the voidsuits and rig the can up with some spare O2 canisters -- plot it a course that\'ll sling it right into V3\'s atmosphere.
+
Unknown Speaker 1: Yeah, sure. That shouldn\'t take long. Then what?
+
Unknown Speaker 2 (\"Cap\"): Let\'s see... ah, perfect. There's another ship passing close by, and I know the captain. We'll take our suits out and have her pick us up. Max, you still got those old cutting charges I told you to get rid of?
+
Unknown Speaker 4 (\"Max\"): No. (pause) ...but also yes.
+
Unknown Speaker 2 (\"Cap\"): Your propensity for ignoring my orders has once again paid off... man, I\'m gonna miss the Unity, but... better this way. I want holes in both sides of the engine bay and one in the portside crawlspace. Lock all the doors open and depressurize the main cabins. Drain as much fuel as you can, break up the main power block, and scatter the parts.
+
Unknown Speaker 1: You want us to scuttle her, chief?
+
Unknown Speaker 2 (\"Cap\"): Nail on the head, my friend.
+
Unknown Speaker 3: Let\'s get rid of that fucking can first, I think it just blinked at me.
+
END LOG
+
+
CATALOGUER VOICE RECOGNITION RESULTS:
+
SPEAKER ONE: No match.
+
SPEAKER TWO, \"CAP\": Predicted to be Jeremiah Wells, human, last registered owner of the ITV Unity and small-time smuggler of fake alien artefacts. Wanted for smuggling and sale of said (fake) alien artefacts. 87% confidence.
+
SPEAKER THREE: Predicted to be Allie Wells, human, niece of Captain Wells. 90% confidence.
+
SPEAKER FOUR, \"MAX\": Predicted to be Maxwell Ulysses Sarevic, zorren, known smuggler, and wanted in the Elysian Colonies for liberation of slaves and, quote, \'harshing my vibe, and being a, like,
total lamer , dude\', unquote. 99% confidence.
+ "}
\ No newline at end of file
diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm
index f93ceaf0a1f..78384b02851 100644
--- a/code/game/objects/structures/signs.dm
+++ b/code/game/objects/structures/signs.dm
@@ -321,73 +321,344 @@
desc = "A warning sign which reads XENOBIOLOGY."
icon_state = "xenobio3"
+//direction signs presented by the order they appear in the dmi
/obj/structure/sign/directions
name = "direction sign"
- desc = "A direction sign, claiming to know the way."
+ desc = "A direction sign, claiming to know the way to... somewhere?"
icon_state = "direction"
+ icon = 'icons/obj/decals_directions.dmi'
+ //TODO: set up overlay systems, inc. interactions (e.g. vines clear w/ plantbgone or fire, snow can be brushed off or melted, and so on)
+//disabled this proc, it serves no purpose except to overwrite the description that already exists. may have been intended for making your own signs?
+//seems to defeat the point of having a generic directional sign that mappers could edit and use in POIs? left it here in case something breaks.
+/*
/obj/structure/sign/directions/New()
..()
- desc = "A direction sign, pointing out which way \the [src] is."
-
-/obj/structure/sign/directions/science
- name = "\improper Science department"
- desc = "A direction sign, pointing out which way the Science department is."
- icon_state = "direction_sci"
+ desc = "A direction sign, pointing out the way to \the [src]."
+*/
+//engineering signs
/obj/structure/sign/directions/engineering
- name = "\improper Engineering department"
- desc = "A direction sign, pointing out which way the Engineering department is."
+ name = "\improper Engineering Department"
+ desc = "A direction sign, pointing out the way to the Engineering Department."
icon_state = "direction_eng"
+/obj/structure/sign/directions/engineering/reactor
+ name = "\improper Reactor"
+ desc = "A direction sign, pointing out the way to the Reactor."
+ icon_state = "direction_core"
+
+/obj/structure/sign/directions/engineering/solars
+ name = "\improper Solar Array"
+ desc = "A direction sign, pointing out the way to the nearest Solar Array."
+ icon_state = "direction_solar"
+
+/obj/structure/sign/directions/engineering/atmospherics
+ name = "\improper Atmospherics Department"
+ desc = "A direction sign, pointing out the way to the Atmospherics Department."
+ icon_state = "direction_atmos"
+
+/obj/structure/sign/directions/engineering/gravgen
+ name = "\improper Gravity Generator"
+ desc = "A direction sign, pointing out the way to the Artificial Gravity Generator."
+ icon_state = "direction_grav"
+
+/obj/structure/sign/directions/engineering/engeqp
+ name = "\improper Engineering Equipment Storage"
+ desc = "A direction sign, pointing out the way to Engineering Equipment Storage."
+ icon_state = "direction_engeqp"
+
+//security signs
/obj/structure/sign/directions/security
- name = "\improper Security department"
- desc = "A direction sign, pointing out which way the Security department is."
+ name = "\improper Security Department"
+ desc = "A direction sign, pointing out the way to the Security Department."
icon_state = "direction_sec"
+/obj/structure/sign/directions/security/armory
+ name = "\improper Armory"
+ desc = "A direction sign, pointing out the way to the Armory."
+ icon_state = "direction_armory"
+
+/obj/structure/sign/directions/security/brig
+ name = "\improper Brig"
+ desc = "A direction sign, pointing out the way to the Brig."
+ icon_state = "direction_brig"
+
+/obj/structure/sign/directions/security/seceqp
+ name = "\improper Security Equipment Storage"
+ desc = "A direction sign, pointing out the way to Security Equipment Storage."
+ icon_state = "direction_seceqp"
+
+/obj/structure/sign/directions/security/internal_affairs
+ name = "\improper Internal Affairs Office"
+ desc = "A direction sign, pointing out the way to the Internal Affairs Office."
+ icon_state = "direction_intaff"
+
+/obj/structure/sign/directions/security/forensics
+ name = "\improper Forensics Lab"
+ desc = "A direction sign, pointing out the way to the Forensics Lab."
+ icon_state = "direction_forensics"
+
+/obj/structure/sign/directions/security/forensics/alt
+ icon_state = "direction_lab"
+
+/obj/structure/sign/directions/security/interrogation
+ name = "\improper Interrogations"
+ desc = "A direction sign, pointing out the way to Interrogations."
+ icon_state = "direction_interrogation"
+
+//science signs
+/obj/structure/sign/directions/science
+ name = "\improper Science Department"
+ desc = "A direction sign, pointing out the way to the Science Department."
+ icon_state = "direction_sci"
+
+/obj/structure/sign/directions/science/rnd
+ name = "\improper Research & Development"
+ desc = "A direction sign, pointing out the way to Research & Development."
+ icon_state = "direction_rnd"
+
+/obj/structure/sign/directions/science/toxins
+ name = "\improper Toxins Lab"
+ desc = "A direction sign, pointing out the way to the Toxins Lab."
+ icon_state = "direction_sci"
+
+/obj/structure/sign/directions/science/robotics
+ name = "\improper Robotics Workshop"
+ desc = "A direction sign, pointing out the way to the Robotics Workshop."
+ icon_state = "direction_robotics"
+
+/obj/structure/sign/directions/science/xenoarch
+ name = "\improper Xenoarchaeology Lab"
+ desc = "A direction sign, pointing out the way to the Xenoarchaeology Lab."
+ icon_state = "direction_xenoarch"
+
+/obj/structure/sign/directions/science/xenobiology
+ name = "\improper Xenobiology Lab"
+ desc = "A direction sign, pointing out the way to the Xenobiology Lab."
+ icon_state = "direction_xbio"
+
+/obj/structure/sign/directions/science/xenoflora
+ name = "\improper Xenoflora Lab"
+ desc = "A direction sign, pointing out the way to the Xenoflora Lab."
+ icon_state = "direction_xflora"
+
+/obj/structure/sign/directions/science/exploration
+ name = "\improper Exploration Department"
+ desc = "A direction sign, pointing out the way to the Exploration Department."
+ icon_state = "direction_explo"
+
+//medical signs
/obj/structure/sign/directions/medical
name = "\improper Medical Bay"
- desc = "A direction sign, pointing out which way the Medical Bay is."
+ desc = "A direction sign, pointing out the way to the Medical Bay."
icon_state = "direction_med"
+/obj/structure/sign/directions/medical/chemlab
+ name = "\improper Chemistry Lab"
+ desc = "A direction sign, pointing out the way to the Chemistry Lab."
+ icon_state = "direction_med"
+
+/obj/structure/sign/directions/medical/surgery
+ name = "\improper Surgery"
+ desc = "A direction sign, pointing out the way to Surgery."
+ icon_state = "direction_surgery"
+
+/obj/structure/sign/directions/medical/operating_1
+ name = "\improper Operating Theatre 1"
+ desc = "A direction sign, pointing out the way to Operating Theatre 1."
+ icon_state = "direction_op1"
+
+/obj/structure/sign/directions/medical/operating_2
+ name = "\improper Operating Theatre 2"
+ desc = "A direction sign, pointing out the way to Operating Theatre 2."
+ icon_state = "direction_op2"
+
+/obj/structure/sign/directions/medical/virology
+ name = "\improper Virology"
+ desc = "A direction sign, pointing out the way to the Virology Lab."
+ icon_state = "direction_viro"
+
+/obj/structure/sign/directions/medical/medeqp
+ name = "\improper Medical Equipment Storage"
+ desc = "A direction sign, pointing out the way to Medical Equipment Storage."
+ icon_state = "direction_medeqp"
+
+/obj/structure/sign/directions/medical/morgue
+ name = "\improper Morgue"
+ desc = "A direction sign, pointing out the way to the Morgue."
+ icon_state = "direction_morgue"
+
+/obj/structure/sign/directions/medical/cloning
+ name = "\improper Cloning Lab"
+ desc = "A direction sign, pointing out the way to the Cloning Lab."
+ icon_state = "direction_cloning"
+
+/obj/structure/sign/directions/medical/resleeving
+ name = "\improper Resleeving Lab"
+ desc = "A direction sign, pointing out the way to the Resleeving Lab."
+ icon_state = "direction_resleeve"
+
+//special signs
/obj/structure/sign/directions/evac
name = "\improper Evacuation"
- desc = "A direction sign, pointing out which way the Escape Shuttle dock is."
+ desc = "A direction sign, pointing out the way to the Escape Shuttle Dock."
icon_state = "direction_evac"
+/obj/structure/sign/directions/eva
+ name = "\improper Extra-Vehicular Activity"
+ desc = "A direction sign, pointing out the way to the EVA Bay."
+ icon_state = "direction_eva"
+
+//command signs
+/obj/structure/sign/directions/ai_core
+ name = "\improper AI Core"
+ desc = "A direction sign, pointing out the way to the AI Core."
+ icon_state = "direction_ai_core"
+
/obj/structure/sign/directions/bridge
name = "\improper Bridge"
+ desc = "A direction sign, pointing out the way to the Bridge."
icon_state = "direction_bridge"
+/obj/structure/sign/directions/command
+ name = "\improper Command"
+ desc = "A direction sign, pointing out the way to the Command Center."
+ icon_state = "direction_command"
+
+/obj/structure/sign/directions/teleporter
+ name = "\improper Teleporter"
+ desc = "A direction sign, pointing out the way to the Teleporter."
+ icon_state = "direction_teleport"
+
+/obj/structure/sign/directions/telecomms
+ name = "\improper Telecommunications Hub"
+ desc = "A direction sign, pointing out the way to the Telecommunications Hub."
+ icon_state = "direction_tcomms"
+
+//cargonia signs
/obj/structure/sign/directions/cargo
- name = "\improper Cargo department"
- desc = "A direction sign, pointing out which way the Cargo department is."
+ name = "\improper Cargo Department"
+ desc = "A direction sign, pointing out the way to the Cargo Department."
icon_state = "direction_crg"
-// VOREStation Edit - New signs for us
-/obj/structure/sign/directions/command
- icon = 'icons/obj/decals_vr.dmi'
- name = "\improper Command department"
- desc = "A direction sign, pointing out which way the Command department is."
- icon_state = "direction_cmd"
+/obj/structure/sign/directions/cargo/mining
+ name = "\improper Mining Department"
+ desc = "A direction sign, pointing out the way to the Mining Department."
+ icon_state = "direction_mining"
-/obj/structure/sign/directions/elevator
- icon = 'icons/obj/decals_vr.dmi'
- name = "\improper Space Elevator"
- desc = "A direction sign, pointing out which way the Space Elevator is."
- icon_state = "direction_elv"
-// VOREStation Edit End
-
-/obj/structure/sign/directions/cryo
- name = "\improper Cryogenic Storage"
- desc = "A direction sign, pointing out which way cryogenic storage is."
- icon_state = "direction_cry"
+/obj/structure/sign/directions/cargo/refinery
+ name = "\improper Refinery"
+ desc = "A direction sign, pointing out the way to the Refinery."
+ icon_state = "direction_refinery"
+//civilian/misc signs
/obj/structure/sign/directions/roomnum
name = "room number"
desc = "A sign detailing the number of the room beside it."
icon_state = "roomnum"
+/obj/structure/sign/directions/cryo
+ name = "\improper Cryogenic Storage"
+ desc = "A direction sign, pointing out the way to Cryogenic Storage."
+ icon_state = "direction_cry"
+
+/obj/structure/sign/directions/elevator
+ name = "\improper Elevator"
+ desc = "A direction sign, pointing out the way to the nearest elevator."
+ icon_state = "direction_elv"
+
+/obj/structure/sign/directions/bar
+ name = "\improper Bar"
+ desc = "A direction sign, pointing out the way to the nearest watering hole."
+ icon_state = "direction_bar"
+
+/obj/structure/sign/directions/kitchen
+ name = "\improper Kitchen"
+ desc = "A pictographic direction sign with a knife, plate, and fork, pointing out the way to the nearest dining establishment."
+ icon_state = "direction_kitchen"
+
+/obj/structure/sign/directions/tram
+ name = "\improper Public Transit Station"
+ desc = "A direction sign, pointing out the way to the nearest public transit station."
+ icon_state = "direction_tram"
+
+/obj/structure/sign/directions/janitor
+ name = "\improper Custodial Closet"
+ desc = "A direction sign, pointing out the way to the Custodial Closet."
+ icon_state = "direction_janitor"
+
+/obj/structure/sign/directions/chapel
+ name = "\improper Chapel"
+ desc = "A direction sign, pointing out the way to the Chapel."
+ icon_state = "direction_chapel"
+
+/obj/structure/sign/directions/dorms
+ name = "\improper Dormitories"
+ desc = "A direction sign, pointing out the way to the Dormitories."
+ icon_state = "direction_dorms"
+
+/obj/structure/sign/directions/library
+ name = "\improper Library"
+ desc = "A direction sign, pointing out the way to the Library."
+ icon_state = "direction_library"
+
+/obj/structure/sign/directions/dock
+ name = "\improper Dock"
+ desc = "A direction sign, pointing out the way to the nearest docking area."
+ icon_state = "direction_dock"
+
+/obj/structure/sign/directions/gym
+ name = "\improper Gym"
+ desc = "A direction sign, pointing out the way to the Gym."
+ icon_state = "direction_gym"
+
+/obj/structure/sign/directions/pool
+ name = "\improper Pool"
+ desc = "A direction sign, pointing out the way to the Pool."
+ icon_state = "direction_pool"
+
+/obj/structure/sign/directions/recreation
+ name = "\improper Recreation Area"
+ desc = "A direction sign, pointing out the way to the nearest Recreation Area."
+ icon_state = "direction_recreation"
+
+/obj/structure/sign/directions/stairwell
+ name = "\improper Stairwell"
+ desc = "A direction sign with stairs and a door, pointing out the way to the nearest stairwell."
+ icon_state = "stairwell"
+
+/obj/structure/sign/directions/stairs_up
+ name = "\improper Stairs Up"
+ desc = "A direction sign with stairs and an upward-slanted arrow, pointing out the way to the nearest set of stairs that go up."
+ icon_state = "stairs_up"
+
+/obj/structure/sign/directions/stairs_down
+ name = "\improper Stairs Down"
+ desc = "A direction sign with stairs and a downward-slanted arrow, pointing out the way to the nearest set of stairs that go down."
+ icon_state = "stairs_down"
+
+/obj/structure/sign/directions/ladderwell
+ name = "\improper Access Shaft"
+ desc = "A direction sign with a ladder and a door, pointing out the way to the nearest access shaft."
+ icon_state = "ladderwell"
+
+/obj/structure/sign/directions/ladder_up
+ name = "\improper Ladder Up"
+ desc = "A direction sign with a ladder and an upward arrow, pointing out the way to the nearest ladder that goes up."
+ icon_state = "ladder_up"
+
+/obj/structure/sign/directions/ladder_down
+ name = "\improper Ladder Down"
+ desc = "A direction sign with a ladder and a downward arrow, pointing out the way to the nearest ladder that goes down."
+ icon_state = "ladder_down"
+
+/obj/structure/sign/directions/exit
+ name = "\improper Emergency Exit"
+ desc = "A lurid green sign that unmistakably identifies that the door it's next to as an emergency exit route."
+ icon_state = "exit_sign"
+
+//OTHER STUFF
/obj/structure/sign/christmas/lights
name = "Christmas lights"
desc = "Flashy and pretty."
diff --git a/code/game/objects/structures/signs_vr.dm b/code/game/objects/structures/signs_vr.dm
new file mode 100644
index 00000000000..321ba27fc7d
--- /dev/null
+++ b/code/game/objects/structures/signs_vr.dm
@@ -0,0 +1,5 @@
+/obj/structure/sign/itg
+ icon = 'icons/obj/decals_vr.dmi'
+ name = "\improper ITG"
+ desc = "A polished metal sign which reads 'Ironcrest Transport Group'."
+ icon_state = "itg"
\ No newline at end of file
diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm
index 27330786b13..a7037105d2c 100644
--- a/code/game/objects/structures/watercloset.dm
+++ b/code/game/objects/structures/watercloset.dm
@@ -451,6 +451,7 @@
busy = 0
O.clean_blood()
+ O.water_act(rand(1,10))
user.visible_message( \
"
[user] washes \a [I] using \the [src]. ", \
"
You wash \a [I] using \the [src]. ")
diff --git a/code/game/objects/structures/watercloset_vr.dm b/code/game/objects/structures/watercloset_vr.dm
new file mode 100644
index 00000000000..7e8790fbcc1
--- /dev/null
+++ b/code/game/objects/structures/watercloset_vr.dm
@@ -0,0 +1,41 @@
+//Flushable toilets on station levels. Flushing sends stuff directly to a trashpit landmark without stinking up the cargo office.
+//Only on-station toilets are affected and only if the trashpit landmark also exists. Otherwise toilets will stay normal.
+
+/obj/structure/toilet
+ var/teleplumbed = FALSE
+ var/exit_landmark
+
+/obj/structure/toilet/Initialize()
+ if(z in global.using_map.map_levels)
+ teleplumbed = TRUE
+ exit_landmark = locate(/obj/effect/landmark/teleplumb_exit)
+ if(teleplumbed && exit_landmark)
+ desc = "The BS-500, a bluespace rift-rotation-based waste disposal unit for small matter. This one seems remarkably clean."
+ return ..()
+
+/obj/structure/toilet/attack_hand(mob/living/user as mob)
+ if(open && teleplumbed && exit_landmark)
+ var/list/bowl_contents = list()
+ for(var/obj/item/I in loc.contents)
+ if(istype(I) && !I.anchored)
+ bowl_contents += I
+ if(bowl_contents.len)
+ user.visible_message("
[user] flushes the toilet. ", "
You flush the toilet. ")
+ playsound(src, 'sound/vore/death7.ogg', 50, 1) //Got lazy about getting new sound files. Have a sick remix lmao.
+ playsound(src, 'sound/effects/bubbles.ogg', 50, 1)
+ playsound(src, 'sound/mecha/powerup.ogg', 30, 1)
+ for(var/obj/item/F in bowl_contents)
+ F.forceMove(get_turf(exit_landmark))
+ bowl_contents -= F
+ return
+ return ..()
+
+/obj/structure/toilet/attack_ai(mob/user as mob)
+ if(isrobot(user))
+ if(user.client && user.client.eye == user)
+ return attack_hand(user)
+ else
+ return attack_hand(user)
+
+/obj/effect/landmark/teleplumb_exit
+ name = "teleplumbing exit"
diff --git a/code/game/turfs/flooring/flooring.dm b/code/game/turfs/flooring/flooring.dm
index 08133f1b727..31d39aa47d8 100644
--- a/code/game/turfs/flooring/flooring.dm
+++ b/code/game/turfs/flooring/flooring.dm
@@ -148,6 +148,15 @@ var/list/flooring_types
icon_base = "grass_sif"
build_type = /obj/item/stack/tile/grass/sif
has_base_range = 1
+
+/decl/flooring/grass/sif/forest
+ name = "thick growth"
+ desc = "A natural moss that has adapted to the sheer cold climate."
+ flags = TURF_REMOVE_SHOVEL
+ icon = 'icons/turf/outdoors.dmi'
+ icon_base = "grass_sif_dark"
+ build_type = /obj/item/stack/tile/grass/sif/forest
+ has_base_range = 1
/decl/flooring/water
name = "water"
diff --git a/code/game/turfs/flooring/flooring_decals_vr.dm b/code/game/turfs/flooring/flooring_decals_vr.dm
index 438f8a12234..285f2142d79 100644
--- a/code/game/turfs/flooring/flooring_decals_vr.dm
+++ b/code/game/turfs/flooring/flooring_decals_vr.dm
@@ -129,4 +129,7 @@
/obj/effect/floor_decal/emblem/talon_big
icon_state = "talon_big"
/obj/effect/floor_decal/emblem/talon_big/center
- icon_state = "talon_center"
\ No newline at end of file
+ icon_state = "talon_center"
+
+/obj/effect/floor_decal/emblem/itgdauntless
+ icon_state = "itgdauntless"
\ No newline at end of file
diff --git a/code/game/turfs/flooring/flooring_vr.dm b/code/game/turfs/flooring/flooring_vr.dm
index 3ece493930a..2567ffd1a6d 100644
--- a/code/game/turfs/flooring/flooring_vr.dm
+++ b/code/game/turfs/flooring/flooring_vr.dm
@@ -16,4 +16,11 @@
name = "flesh"
desc = "This slick flesh ripples and squishes under your touch"
icon = 'icons/turf/stomach_vr.dmi'
- icon_base = "flesh_floor"
\ No newline at end of file
+ icon_base = "flesh_floor"
+
+/decl/flooring/grass/outdoors
+ flags = TURF_REMOVE_SHOVEL
+
+/decl/flooring/grass/outdoors/forest
+ icon = 'icons/turf/outdoors.dmi'
+ icon_base = "grass-dark"
\ No newline at end of file
diff --git a/code/game/turfs/simulated/floor_types_vr.dm b/code/game/turfs/simulated/floor_types_vr.dm
index 78e417fdc1d..ae0ca1292e8 100644
--- a/code/game/turfs/simulated/floor_types_vr.dm
+++ b/code/game/turfs/simulated/floor_types_vr.dm
@@ -12,6 +12,11 @@
light_power = 0.8
light_color = "#66ffff" // Bright cyan.
+/turf/simulated/shuttle/floor/alienplating/vacuum
+ oxygen = 0
+ nitrogen = 0
+ temperature = TCMB
+
/turf/simulated/floor/flesh
name = "flesh"
desc = "This slick flesh ripples and squishes under your touch"
@@ -43,6 +48,35 @@
icon_state = "floor"
set_light(0,0,"#ffffff")
+/turf/simulated/shuttle/plating/airless/carry/attackby(obj/item/C, mob/user) //this is gross
+ if (istype(C, /obj/item/stack/rods))
+ var/obj/structure/lattice/L = locate(/obj/structure/lattice, src)
+ if(L)
+ return
+ var/obj/item/stack/rods/R = C
+ if (R.use(1))
+ to_chat(user, "
Constructing support lattice ... ")
+ playsound(src, 'sound/weapons/Genhit.ogg', 50, 1)
+ new/obj/structure/lattice(src)
+ return
+
+ if (istype(C, /obj/item/stack/tile/floor))
+ var/obj/structure/lattice/L = locate(/obj/structure/lattice, src)
+ if(L)
+ var/obj/item/stack/tile/floor/S = C
+ if (S.get_amount() < 1)
+ return
+ qdel(L)
+ playsound(src, 'sound/weapons/Genhit.ogg', 50, 1)
+ S.use(1)
+ ChangeTurf(/turf/simulated/floor/airless)
+ return
+ else
+ to_chat(user, "
The plating is going to need some support. ")
+
+/turf/simulated/shuttle/plating/airless/carry/is_solid_structure()
+ return locate(/obj/structure/lattice, src)
+
/turf/simulated/floor/gorefloor
name = "infected tile"
desc = "Slick, sickly-squirming meat has grown in and out of cracks once empty. It pulsates intermittently, and with every beat, blood seeps out of pores."
@@ -53,4 +87,5 @@
name = "putrid mass"
desc = "It is entirely made of sick, gurgling flesh. It is releasing a sickly odour."
icon_state = "bloodfloor_2"
- icon = 'icons/goonstation/turf/meatland.dmi'
\ No newline at end of file
+ icon = 'icons/goonstation/turf/meatland.dmi'
+
diff --git a/code/game/turfs/simulated/outdoors/grass.dm b/code/game/turfs/simulated/outdoors/grass.dm
index 5c764a97da8..65d0e472f16 100644
--- a/code/game/turfs/simulated/outdoors/grass.dm
+++ b/code/game/turfs/simulated/outdoors/grass.dm
@@ -6,7 +6,7 @@ var/list/grass_types = list(
name = "grass"
icon_state = "grass0"
edge_blending_priority = 4
- initial_flooring = /decl/flooring/grass
+ initial_flooring = /decl/flooring/grass/outdoors // VOREStation Edit
turf_layers = list(
/turf/simulated/floor/outdoors/rocks,
/turf/simulated/floor/outdoors/dirt
@@ -81,10 +81,12 @@ var/list/grass_types = list(
grass_chance = 80
//tree_chance = 20
edge_blending_priority = 5
+ initial_flooring = /decl/flooring/grass/outdoors/forest // VOREStation Edit
/turf/simulated/floor/outdoors/grass/sif/forest
name = "thick growth"
icon_state = "grass_sif_dark0"
+ initial_flooring = /decl/flooring/grass/sif/forest
edge_blending_priority = 5
tree_chance = 10
grass_chance = 1
@@ -94,3 +96,4 @@ var/list/grass_types = list(
/obj/structure/flora/sif/eyes = 5,
/obj/structure/flora/sif/tendrils = 30
)
+
diff --git a/code/game/turfs/unsimulated/beach_vr.dm b/code/game/turfs/unsimulated/beach_vr.dm
new file mode 100644
index 00000000000..be3130a72ec
--- /dev/null
+++ b/code/game/turfs/unsimulated/beach_vr.dm
@@ -0,0 +1,5 @@
+/turf/simulated/floor/beach/sand/outdoors
+ outdoors = TRUE
+
+/turf/simulated/floor/beach/sand/desert/outdoors
+ outdoors = TRUE
\ No newline at end of file
diff --git a/code/global_vr.dm b/code/global_vr.dm
index 9d06ea18a3d..278df90f79a 100644
--- a/code/global_vr.dm
+++ b/code/global_vr.dm
@@ -12,7 +12,9 @@ var/list/shell_module_types = list(
"Standard", "Service", "Clerical", "Service-Hound"
)
+var/list/awayabductors = list() // List of scatter landmarks for Abductors in Gateways
var/list/eventdestinations = list() // List of scatter landmarks for VOREStation event portals
+var/list/eventabductors = list() // List of scatter landmarks for VOREStation abductor portals
var/global/list/acceptable_fruit_types= list(
"ambrosia",
diff --git a/code/modules/admin/admin_verb_lists.dm b/code/modules/admin/admin_verb_lists.dm
index 0eaedc9fbeb..3fa8903f72d 100644
--- a/code/modules/admin/admin_verb_lists.dm
+++ b/code/modules/admin/admin_verb_lists.dm
@@ -104,7 +104,6 @@ var/list/admin_verbs_admin = list(
/client/proc/toggle_attack_logs,
/datum/admins/proc/paralyze_mob,
/client/proc/fixatmos,
- /datum/admins/proc/quick_nif, //VOREStation Add,
/datum/admins/proc/sendFax,
/client/proc/despawn_player,
/datum/admins/proc/view_feedback
@@ -139,7 +138,6 @@ var/list/admin_verbs_fun = list(
/datum/admins/proc/call_supply_drop,
/datum/admins/proc/call_drop_pod,
/client/proc/smite,
- /client/proc/smite_vr, //VOREStation Add,
/client/proc/admin_lightning_strike,
)
@@ -150,7 +148,6 @@ var/list/admin_verbs_spawn = list(
/datum/admins/proc/spawn_plant,
/datum/admins/proc/spawn_atom, //allows us to spawn instances,
/client/proc/respawn_character,
- /client/proc/spawn_character_mob, //VOREStation Add,
/client/proc/virus2_editor,
/client/proc/spawn_chemdisp_cartridge,
/client/proc/map_template_load,
@@ -181,6 +178,7 @@ var/list/admin_verbs_server = list(
/datum/admins/proc/toggle_space_ninja,
/client/proc/toggle_random_events,
/client/proc/check_customitem_activity,
+ /client/proc/nanomapgen_DumpImage,
/client/proc/modify_server_news,
/client/proc/recipe_dump,
/client/proc/panicbunker,
@@ -228,7 +226,7 @@ var/list/admin_verbs_debug = list(
/client/proc/toggle_debug_logs,
/client/proc/admin_ghost, //allows us to ghost/reenter body at will,
/datum/admins/proc/view_runtimes,
- // /client/proc/show_gm_status, // VOREStation Edit - We don't use SSgame_master yet.
+ /client/proc/show_gm_status,
/datum/admins/proc/change_weather,
/datum/admins/proc/change_time,
/client/proc/admin_give_modifier,
@@ -403,7 +401,7 @@ var/list/admin_verbs_event_manager = list(
/client/proc/callproc,
/client/proc/callproc_datum,
/client/proc/debug_controller,
- // /client/proc/show_gm_status, // VOREStation Edit - We don't use SSgame_master yet.
+ /client/proc/show_gm_status,
/datum/admins/proc/change_weather,
/datum/admins/proc/change_time,
/client/proc/admin_give_modifier,
diff --git a/code/modules/admin/admin_verb_lists_vr.dm b/code/modules/admin/admin_verb_lists_vr.dm
new file mode 100644
index 00000000000..b024211d2cc
--- /dev/null
+++ b/code/modules/admin/admin_verb_lists_vr.dm
@@ -0,0 +1,575 @@
+//admin verb groups - They can overlap if you so wish. Only one of each verb will exist in the verbs list regardless
+var/list/admin_verbs_default = list(
+// /datum/admins/proc/show_player_panel, //shows an interface for individual players, with various links (links require additional flags, //VOREStation Remove,
+// /client/proc/player_panel_new, //shows an interface for all players, with links to various panels, //VOREStation Remove,
+// /client/proc/player_panel, //VOREStation Remove,
+ /client/proc/deadmin_self, //destroys our own admin datum so we can play as a regular player,
+ /client/proc/cmd_admin_say, //VOREStation Add,
+ /client/proc/cmd_mod_say, //VOREStation Add,
+ /client/proc/cmd_event_say, //VOREStation Add,
+// /client/proc/hide_verbs, //hides all our adminverbs, //VOREStation Remove,
+// /client/proc/hide_most_verbs, //hides all our hideable adminverbs, //VOREStation Remove,
+// /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify, //VOREStation Remove,
+// /client/proc/mark_datum_mapview, //VOREStation Remove,
+// /client/proc/cmd_check_new_players, //allows us to see every new player, //VOREStation Remove,
+// /client/proc/check_antagonists, //shows all antags,
+// /client/proc/cmd_mod_say,
+// /client/proc/deadchat //toggles deadchat on/off,
+// /client/proc/toggle_ahelp_sound,
+ )
+
+var/list/admin_verbs_admin = list(
+ /datum/admins/proc/set_tcrystals,
+ /datum/admins/proc/add_tcrystals,
+ /client/proc/invisimin, //allows our mob to go invisible/visible,
+ /datum/admins/proc/show_traitor_panel, //interface which shows a mob's mind.,
+ /datum/admins/proc/show_game_mode, //Configuration window for the current game mode.,
+ /datum/admins/proc/force_mode_latespawn, //Force the mode to try a latespawn proc,
+ /datum/admins/proc/force_antag_latespawn, //Force a specific template to try a latespawn proc,
+ /datum/admins/proc/toggleenter, //toggles whether people can join the current game,
+ /datum/admins/proc/toggleguests, //toggles whether guests can join the current game,
+ /datum/admins/proc/announce, //priority announce something to all clients.,
+ /datum/admins/proc/intercom, //send a fake intercom message, like an arrivals announcement,
+ /datum/admins/proc/intercom_convo, //send a fake intercom conversation, like an ATC exchange,
+ /client/proc/colorooc, //allows us to set a custom colour for everythign we say in ooc,
+ /client/proc/admin_ghost, //allows us to ghost/reenter body at will,
+ /datum/admins/proc/show_player_panel, //shows an interface for individual players, with various links (links require additional flags, //VOREStation Add,
+ /client/proc/player_panel_new, //shows an interface for all players, with links to various panels, //VOREStation Add,
+ /client/proc/player_panel, //VOREStation Add,
+ /client/proc/hide_verbs, //hides all our adminverbs, //VOREStation Add,
+ /client/proc/hide_most_verbs, //hides all our hideable adminverbs, //VOREStation Add,
+ /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify, //VOREStation Add,
+ /client/proc/mark_datum_mapview, //VOREStation Add,
+ /client/proc/cmd_check_new_players, //allows us to see every new player, //VOREStation Add,
+ /client/proc/toggle_view_range, //changes how far we can see,
+ /datum/admins/proc/view_txt_log, //shows the server log (diary) for today,
+ /datum/admins/proc/view_atk_log, //shows the server combat-log, doesn't do anything presently,
+ /client/proc/cmd_admin_pm_context, //right-click adminPM interface,
+ /client/proc/cmd_admin_pm_panel, //admin-pm list,
+ /client/proc/cmd_admin_subtle_message, //send an message to somebody as a 'voice in their head',
+ /client/proc/cmd_admin_delete, //delete an instance/object/mob/etc,
+ /client/proc/cmd_admin_check_contents, //displays the contents of an instance,
+ /client/proc/cmd_admin_check_player_logs, //checks a player's attack logs,
+ /client/proc/cmd_admin_check_dialogue_logs, //checks a player's dialogue logs,
+ /datum/admins/proc/access_news_network, //allows access of newscasters,
+ /client/proc/giveruntimelog, //allows us to give access to runtime logs to somebody,
+ /client/proc/getserverlog, //allows us to fetch server logs (diary) for other days,
+ /client/proc/jumptocoord, //we ghost and jump to a coordinate,
+ /client/proc/Getmob, //teleports a mob to our location,
+ /client/proc/Getkey, //teleports a mob with a certain ckey to our location,
+// /client/proc/sendmob, //sends a mob somewhere, -Removed due to it needing two sorting procs to work, which were executed every time an admin right-clicked. ~Errorage,
+ /client/proc/Jump,
+ /client/proc/jumptokey, //allows us to jump to the location of a mob with a certain ckey,
+ /client/proc/jumptomob, //allows us to jump to a specific mob,
+ /client/proc/jumptoturf, //allows us to jump to a specific turf,
+ /client/proc/admin_call_shuttle, //allows us to call the emergency shuttle,
+ /client/proc/admin_cancel_shuttle, //allows us to cancel the emergency shuttle, sending it back to CentCom,
+ /client/proc/cmd_admin_direct_narrate, //send text directly to a player with no padding. Useful for narratives and fluff-text,
+ /client/proc/cmd_admin_world_narrate, //sends text to all players with no padding,
+ /client/proc/cmd_admin_z_narrate, //VOREStation Add,
+ /client/proc/cmd_admin_create_centcom_report,
+ /client/proc/check_words, //displays cult-words,
+ /client/proc/check_ai_laws, //shows AI and borg laws,
+ /client/proc/rename_silicon, //properly renames silicons,
+ /client/proc/manage_silicon_laws, // Allows viewing and editing silicon laws. ,
+ /client/proc/check_antagonists,
+ /client/proc/admin_memo, //admin memo system. show/delete/write. +SERVER needed to delete admin memos of others,
+ /client/proc/dsay, //talk in deadchat using our ckey/fakekey,
+// /client/proc/toggle_hear_deadcast, //toggles whether we hear deadchat,
+ /client/proc/investigate_show, //various admintools for investigation. Such as a singulo grief-log,
+ /client/proc/secrets,
+ /datum/admins/proc/toggleooc, //toggles ooc on/off for everyone,
+ /datum/admins/proc/togglelooc, //toggles looc on/off for everyone,
+ /datum/admins/proc/toggleoocdead, //toggles ooc on/off for everyone who is dead,
+ /datum/admins/proc/togglehubvisibility, //toggles visibility on the BYOND Hub.,
+ /datum/admins/proc/toggledsay, //toggles dsay on/off for everyone,
+ /client/proc/game_panel, //game panel, allows to change game-mode etc,
+ /client/proc/cmd_admin_say, //admin-only ooc chat,
+ /client/proc/cmd_mod_say,
+ /client/proc/cmd_event_say,
+ /datum/admins/proc/PlayerNotes,
+ /datum/admins/proc/show_player_info,
+ /client/proc/free_slot, //frees slot for chosen job,
+ /client/proc/cmd_admin_change_custom_event,
+ /client/proc/cmd_admin_rejuvenate,
+ /client/proc/toggleghostwriters,
+ /client/proc/toggledrones,
+ /datum/admins/proc/show_skills,
+ /client/proc/check_customitem_activity,
+ /client/proc/man_up,
+ /client/proc/global_man_up,
+ /client/proc/response_team, // Response Teams admin verb,
+ /client/proc/trader_ship, // Trader ship admin verb,
+ /client/proc/toggle_antagHUD_use,
+ /client/proc/toggle_antagHUD_restrictions,
+ /client/proc/allow_character_respawn, // Allows a ghost to respawn ,
+ /client/proc/event_manager_panel,
+ /client/proc/empty_ai_core_toggle_latejoin,
+ /client/proc/empty_ai_core_toggle_latejoin,
+ /client/proc/aooc,
+ /client/proc/change_human_appearance_admin, // Allows an admin to change the basic appearance of human-based mobs ,
+ /client/proc/change_human_appearance_self, // Allows the human-based mob itself change its basic appearance ,
+ /client/proc/change_security_level,
+ /client/proc/view_chemical_reaction_logs,
+ /client/proc/makePAI,
+ /client/proc/toggle_debug_logs,
+ /client/proc/toggle_attack_logs,
+ /datum/admins/proc/paralyze_mob,
+ /client/proc/fixatmos,
+ /datum/admins/proc/quick_nif, //VOREStation Add,
+ /datum/admins/proc/set_uplink, //VOREStation Add,
+ /datum/admins/proc/sendFax,
+ /client/proc/despawn_player,
+ /datum/admins/proc/view_feedback
+ )
+
+var/list/admin_verbs_ban = list(
+ /client/proc/unban_panel,
+ /client/proc/jobbans
+ )
+
+var/list/admin_verbs_sounds = list(
+ /client/proc/play_local_sound,
+ /client/proc/play_sound,
+ /client/proc/play_server_sound
+ )
+
+var/list/admin_verbs_fun = list(
+ /client/proc/object_talk,
+ /datum/admins/proc/cmd_admin_dress,
+ /client/proc/cmd_admin_gib_self,
+ /client/proc/drop_bomb,
+ /client/proc/everyone_random,
+ /client/proc/cinematic,
+ /datum/admins/proc/toggle_aliens,
+ /datum/admins/proc/toggle_space_ninja,
+ /client/proc/cmd_admin_add_freeform_ai_law,
+ /client/proc/cmd_admin_add_random_ai_law,
+ /client/proc/make_sound,
+ /client/proc/toggle_random_events,
+ /client/proc/editappear,
+ /client/proc/roll_dices,
+ /datum/admins/proc/call_supply_drop,
+ /datum/admins/proc/call_drop_pod,
+ /client/proc/smite,
+ /client/proc/smite_vr, //VOREStation Add,
+ /client/proc/admin_lightning_strike,
+ )
+
+var/list/admin_verbs_spawn = list(
+ /datum/admins/proc/spawn_fruit,
+ /datum/admins/proc/spawn_custom_item,
+ /datum/admins/proc/check_custom_items,
+ /datum/admins/proc/spawn_plant,
+ /datum/admins/proc/spawn_atom, //allows us to spawn instances,
+ /client/proc/respawn_character,
+ /client/proc/spawn_character_mob, //VOREStation Add,
+ /client/proc/virus2_editor,
+ /client/proc/spawn_chemdisp_cartridge,
+ /client/proc/map_template_load,
+ /client/proc/map_template_upload,
+ /client/proc/map_template_load_on_new_z
+ )
+
+var/list/admin_verbs_server = list(
+ /datum/admins/proc/capture_map,
+ /client/proc/Set_Holiday,
+ /client/proc/ToRban,
+ /datum/admins/proc/startnow,
+ /datum/admins/proc/restart,
+ /datum/admins/proc/delay,
+ /datum/admins/proc/toggleaban,
+ /datum/admins/proc/togglepersistence,
+ /client/proc/cmd_mod_say,
+ /client/proc/toggle_log_hrefs,
+ /datum/admins/proc/immreboot,
+ /client/proc/everyone_random,
+ /datum/admins/proc/toggleAI,
+ /client/proc/cmd_admin_delete, //delete an instance/object/mob/etc,
+ /client/proc/cmd_debug_del_all,
+ /datum/admins/proc/adrev,
+ /datum/admins/proc/adspawn,
+ /datum/admins/proc/adjump,
+ /datum/admins/proc/toggle_aliens,
+ /datum/admins/proc/toggle_space_ninja,
+ /client/proc/toggle_random_events,
+ /client/proc/check_customitem_activity,
+ /client/proc/modify_server_news,
+ /client/proc/recipe_dump,
+ /client/proc/panicbunker,
+ /client/proc/paranoia_logging,
+ /client/proc/ip_reputation
+ )
+
+var/list/admin_verbs_debug = list(
+ /client/proc/getruntimelog, //allows us to access runtime logs to somebody,
+ /client/proc/cmd_admin_list_open_jobs,
+ /client/proc/Debug2,
+ /client/proc/kill_air,
+ /client/proc/ZASSettings,
+ /client/proc/cmd_debug_make_powernets,
+ /client/proc/kill_airgroup,
+ /client/proc/debug_controller,
+ /client/proc/debug_antagonist_template,
+ /client/proc/cmd_debug_mob_lists,
+ /client/proc/cmd_debug_using_map,
+ /client/proc/cmd_admin_delete,
+ /client/proc/cmd_debug_del_all,
+ /client/proc/cmd_debug_tog_aliens,
+ /client/proc/cmd_display_del_log,
+ /client/proc/cmd_display_init_log,
+ /client/proc/cmd_display_overlay_log,
+ /client/proc/air_report,
+ /client/proc/reload_admins,
+ /client/proc/reload_eventMs,
+ /client/proc/restart_controller,
+ /datum/admins/proc/restart,
+ /client/proc/print_random_map,
+ /client/proc/create_random_map,
+ /client/proc/apply_random_map,
+ /client/proc/overlay_random_map,
+ /client/proc/delete_random_map,
+ /client/proc/show_plant_genes,
+ /client/proc/enable_debug_verbs,
+ /client/proc/callproc,
+ /client/proc/callproc_datum,
+ /client/proc/SDQL2_query,
+ /client/proc/Jump,
+ /client/proc/jumptomob,
+ /client/proc/jumptocoord,
+ /client/proc/dsay,
+ /client/proc/toggle_debug_logs,
+ /client/proc/admin_ghost, //allows us to ghost/reenter body at will,
+ /datum/admins/proc/show_player_panel, //shows an interface for individual players, with various links (links require additional flags, //VOREStation Add,
+ /client/proc/player_panel_new, //shows an interface for all players, with links to various panels, //VOREStation Add,
+ /client/proc/player_panel, //VOREStation Add,
+ /client/proc/hide_verbs, //hides all our adminverbs, //VOREStation Add,
+ /client/proc/hide_most_verbs, //hides all our hideable adminverbs, //VOREStation Add,
+ /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify, //VOREStation Add,
+ /client/proc/mark_datum_mapview, //VOREStation Add,
+ /client/proc/cmd_check_new_players, //allows us to see every new player, //VOREStation Add,
+ /datum/admins/proc/view_runtimes,
+ // /client/proc/show_gm_status, // VOREStation Edit - We don't use SSgame_master yet.
+ /datum/admins/proc/set_uplink, //VOREStation Add,
+ /datum/admins/proc/change_weather,
+ /datum/admins/proc/change_time,
+ /client/proc/admin_give_modifier,
+ /client/proc/simple_DPS,
+ /datum/admins/proc/view_feedback
+ )
+
+var/list/admin_verbs_paranoid_debug = list(
+ /client/proc/callproc,
+ /client/proc/callproc_datum,
+ /client/proc/debug_controller
+ )
+
+var/list/admin_verbs_possess = list(
+ /proc/possess,
+ /proc/release
+ )
+var/list/admin_verbs_permissions = list(
+ /client/proc/edit_admin_permissions
+ )
+var/list/admin_verbs_rejuv = list(
+ /client/proc/respawn_character
+ )
+
+//verbs which can be hidden - needs work
+var/list/admin_verbs_hideable = list(
+ /client/proc/deadmin_self,
+// /client/proc/deadchat,
+ /datum/admins/proc/show_traitor_panel,
+ /datum/admins/proc/toggleenter,
+ /datum/admins/proc/toggleguests,
+ /datum/admins/proc/announce,
+ /client/proc/colorooc,
+ /client/proc/admin_ghost,
+ /client/proc/toggle_view_range,
+ /datum/admins/proc/view_txt_log,
+ /datum/admins/proc/view_atk_log,
+ /client/proc/cmd_admin_subtle_message,
+ /client/proc/cmd_admin_check_contents,
+ /client/proc/cmd_admin_check_player_logs,
+ /client/proc/cmd_admin_check_dialogue_logs,
+ /datum/admins/proc/access_news_network,
+ /client/proc/admin_call_shuttle,
+ /client/proc/admin_cancel_shuttle,
+ /client/proc/cmd_admin_direct_narrate,
+ /client/proc/cmd_admin_world_narrate,
+ /client/proc/cmd_admin_z_narrate, //VOREStation Add,
+ /client/proc/check_words,
+ /client/proc/play_local_sound,
+ /client/proc/play_sound,
+ /client/proc/play_server_sound,
+ /client/proc/object_talk,
+ /datum/admins/proc/cmd_admin_dress,
+ /client/proc/cmd_admin_gib_self,
+ /client/proc/drop_bomb,
+ /client/proc/cinematic,
+ /datum/admins/proc/toggle_aliens,
+ /datum/admins/proc/toggle_space_ninja,
+ /client/proc/cmd_admin_add_freeform_ai_law,
+ /client/proc/cmd_admin_add_random_ai_law,
+ /client/proc/cmd_admin_create_centcom_report,
+ /client/proc/make_sound,
+ /client/proc/toggle_random_events,
+ /client/proc/cmd_admin_add_random_ai_law,
+ /client/proc/Set_Holiday,
+ /client/proc/ToRban,
+ /datum/admins/proc/startnow,
+ /datum/admins/proc/restart,
+ /datum/admins/proc/delay,
+ /datum/admins/proc/toggleaban,
+ /client/proc/toggle_log_hrefs,
+ /datum/admins/proc/immreboot,
+ /client/proc/everyone_random,
+ /datum/admins/proc/toggleAI,
+ /datum/admins/proc/adrev,
+ /datum/admins/proc/adspawn,
+ /datum/admins/proc/adjump,
+ /client/proc/restart_controller,
+ /client/proc/cmd_admin_list_open_jobs,
+ /client/proc/callproc,
+ /client/proc/callproc_datum,
+ /client/proc/Debug2,
+ /client/proc/reload_admins,
+ /client/proc/kill_air,
+ /client/proc/cmd_debug_make_powernets,
+ /client/proc/kill_airgroup,
+ /client/proc/debug_controller,
+ /client/proc/startSinglo,
+ /client/proc/simple_DPS,
+ /client/proc/cmd_debug_mob_lists,
+ /client/proc/cmd_debug_using_map,
+ /client/proc/cmd_debug_del_all,
+ /client/proc/cmd_debug_tog_aliens,
+ /client/proc/cmd_display_del_log,
+ /client/proc/air_report,
+ /client/proc/enable_debug_verbs,
+ /client/proc/roll_dices,
+ /proc/possess,
+ /proc/release,
+ /datum/admins/proc/set_uplink, //VOREStation Add,
+ /datum/admins/proc/set_tcrystals
+ )
+var/list/admin_verbs_mod = list(
+ /client/proc/cmd_admin_pm_context, //right-click adminPM interface,
+ /client/proc/cmd_admin_pm_panel, //admin-pm list,
+ /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game.,
+ /datum/admins/proc/PlayerNotes,
+ /client/proc/admin_ghost, //allows us to ghost/reenter body at will,
+ /datum/admins/proc/show_player_panel, //shows an interface for individual players, with various links (links require additional flags, //VOREStation Add,
+ /client/proc/player_panel_new, //shows an interface for all players, with links to various panels, //VOREStation Add,
+ /client/proc/player_panel, //VOREStation Add,
+ /client/proc/hide_verbs, //hides all our adminverbs, //VOREStation Add,
+ /client/proc/hide_most_verbs, //hides all our hideable adminverbs, //VOREStation Add,
+ /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify, //VOREStation Add,
+ /client/proc/mark_datum_mapview, //VOREStation Add,
+ /client/proc/cmd_check_new_players, //allows us to see every new player, //VOREStation Add,
+ /client/proc/cmd_mod_say,
+ /client/proc/cmd_event_say,
+ /datum/admins/proc/show_player_info,
+ /datum/admins/proc/show_traitor_panel,
+ /client/proc/colorooc,
+ /client/proc/player_panel_new,
+ /client/proc/dsay,
+ /datum/admins/proc/show_skills,
+ /datum/admins/proc/show_player_panel,
+ /client/proc/check_antagonists,
+ /client/proc/aooc,
+ /client/proc/jobbans,
+ /client/proc/toggle_attack_logs,
+ /client/proc/cmd_admin_subtle_message, //send an message to somebody as a 'voice in their head',
+ /datum/admins/proc/paralyze_mob,
+ /client/proc/cmd_admin_direct_narrate,
+ /client/proc/cmd_admin_z_narrate, //VOREStation Add,
+ /client/proc/allow_character_respawn, // Allows a ghost to respawn ,
+ /datum/admins/proc/sendFax,
+ /client/proc/getserverlog, //allows us to fetch server logs (diary) for other days,
+ /datum/admins/proc/view_persistent_data,
+ /datum/admins/proc/view_txt_log, //shows the server log (diary) for today,
+ /datum/admins/proc/view_atk_log //shows the server combat-log, doesn't do anything presently,
+)
+
+var/list/admin_verbs_event_manager = list(
+ /client/proc/cmd_event_say,
+ /client/proc/cmd_admin_pm_context,
+ /client/proc/cmd_admin_pm_panel,
+ /client/proc/admin_ghost,
+ /datum/admins/proc/show_player_panel, //shows an interface for individual players, with various links (links require additional flags, //VOREStation Add,
+ /client/proc/player_panel_new, //shows an interface for all players, with links to various panels, //VOREStation Add,
+ /client/proc/player_panel, //VOREStation Add,
+ /client/proc/hide_verbs, //hides all our adminverbs, //VOREStation Add,
+ /client/proc/hide_most_verbs, //hides all our hideable adminverbs, //VOREStation Add,
+ /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify, //VOREStation Add,
+ /client/proc/mark_datum_mapview, //VOREStation Add,
+ /client/proc/cmd_check_new_players, //allows us to see every new player, //VOREStation Add,
+ /datum/admins/proc/show_player_info,
+ /client/proc/dsay,
+ /client/proc/cmd_admin_subtle_message,
+ /client/proc/debug_variables,
+ /client/proc/check_antagonists,
+ /client/proc/aooc,
+ /datum/admins/proc/paralyze_mob,
+ /client/proc/cmd_admin_direct_narrate,
+ /client/proc/cmd_admin_z_narrate, //VOREStation Add,
+ /client/proc/allow_character_respawn,
+ /datum/admins/proc/sendFax,
+ /client/proc/respawn_character,
+ /proc/possess,
+ /proc/release,
+ /datum/admins/proc/change_weather,
+ /datum/admins/proc/change_time,
+ /client/proc/admin_give_modifier,
+ /client/proc/Jump,
+ /client/proc/jumptomob,
+ /client/proc/jumptocoord,
+ /client/proc/cmd_admin_delete,
+ /datum/admins/proc/delay,
+ /client/proc/Set_Holiday,
+ /client/proc/make_sound,
+ /client/proc/toggle_random_events,
+ /datum/admins/proc/cmd_admin_dress,
+ /client/proc/cmd_admin_gib_self,
+ /client/proc/drop_bomb,
+ /client/proc/cmd_admin_add_freeform_ai_law,
+ /client/proc/cmd_admin_add_random_ai_law,
+ /client/proc/make_sound,
+ /client/proc/toggle_random_events,
+ /client/proc/editappear,
+ /client/proc/roll_dices,
+ /datum/admins/proc/call_supply_drop,
+ /datum/admins/proc/call_drop_pod,
+ /datum/admins/proc/PlayerNotes,
+ /client/proc/callproc,
+ /client/proc/callproc_datum,
+ /client/proc/debug_controller,
+ // /client/proc/show_gm_status, // VOREStation Edit - We don't use SSgame_master yet.
+ /datum/admins/proc/change_weather,
+ /datum/admins/proc/change_time,
+ /client/proc/admin_give_modifier,
+ /datum/admins/proc/cmd_admin_dress,
+ /client/proc/cmd_admin_gib_self,
+ /datum/admins/proc/set_tcrystals,
+ /datum/admins/proc/add_tcrystals,
+ /client/proc/invisimin, //allows our mob to go invisible/visible,
+ /datum/admins/proc/show_traitor_panel, //interface which shows a mob's mind.,
+ /datum/admins/proc/show_game_mode, //Configuration window for the current game mode.,
+ /datum/admins/proc/force_mode_latespawn, //Force the mode to try a latespawn proc,
+ /datum/admins/proc/force_antag_latespawn, //Force a specific template to try a latespawn proc,
+ /datum/admins/proc/announce, //priority announce something to all clients.,
+ /datum/admins/proc/intercom, //send a fake intercom message, like an arrivals announcement,
+ /datum/admins/proc/intercom_convo, //send a fake intercom conversation, like an ATC exchange,
+ /client/proc/colorooc, //allows us to set a custom colour for everythign we say in ooc,
+ /client/proc/admin_ghost, //allows us to ghost/reenter body at will,
+ /client/proc/toggle_view_range, //changes how far we can see,
+ /client/proc/cmd_admin_pm_context, //right-click adminPM interface,
+ /client/proc/cmd_admin_pm_panel, //admin-pm list,
+ /client/proc/cmd_admin_subtle_message, //send an message to somebody as a 'voice in their head',
+ /client/proc/cmd_admin_delete, //delete an instance/object/mob/etc,
+ /client/proc/cmd_admin_check_contents, //displays the contents of an instance,
+ /client/proc/cmd_admin_check_player_logs, //checks a player's attack logs,
+ /client/proc/cmd_admin_check_dialogue_logs, //checks a player's dialogue logs,
+ /datum/admins/proc/access_news_network, //allows access of newscasters,
+ /client/proc/jumptocoord, //we ghost and jump to a coordinate,
+ /client/proc/Getmob, //teleports a mob to our location,
+ /client/proc/Getkey, //teleports a mob with a certain ckey to our location,
+ /client/proc/Jump,
+ /client/proc/jumptokey, //allows us to jump to the location of a mob with a certain ckey,
+ /client/proc/jumptomob, //allows us to jump to a specific mob,
+ /client/proc/jumptoturf, //allows us to jump to a specific turf,
+ /client/proc/admin_call_shuttle, //allows us to call the emergency shuttle,
+ /client/proc/admin_cancel_shuttle, //allows us to cancel the emergency shuttle, sending it back to CentCom,
+ /client/proc/cmd_admin_direct_narrate, //send text directly to a player with no padding. Useful for narratives and fluff-text,
+ /client/proc/cmd_admin_world_narrate, //sends text to all players with no padding,
+ /client/proc/cmd_admin_z_narrate, //VOREStation Add,
+ /client/proc/cmd_admin_create_centcom_report,
+ /client/proc/check_words, //displays cult-words,
+ /client/proc/check_ai_laws, //shows AI and borg laws,
+ /client/proc/rename_silicon, //properly renames silicons,
+ /client/proc/manage_silicon_laws, // Allows viewing and editing silicon laws. ,
+ /client/proc/check_antagonists,
+ /client/proc/admin_memo, //admin memo system. show/delete/write. +SERVER needed to delete admin memos of others,
+ /client/proc/dsay, //talk in deadchat using our ckey/fakekey,
+ /client/proc/secrets,
+ /client/proc/game_panel, //game panel, allows to change game-mode etc,
+ /client/proc/cmd_mod_say,
+ /client/proc/cmd_event_say,
+ /datum/admins/proc/show_player_info,
+ /client/proc/free_slot, //frees slot for chosen job,
+ /client/proc/cmd_admin_change_custom_event,
+ /client/proc/cmd_admin_rejuvenate,
+ /client/proc/toggleghostwriters,
+ /datum/admins/proc/show_skills,
+ /client/proc/man_up,
+ /client/proc/global_man_up,
+ /client/proc/response_team, // Response Teams admin verb,
+ /client/proc/trader_ship, // Trader ship admin verb,
+ /client/proc/allow_character_respawn, // Allows a ghost to respawn ,
+ /client/proc/event_manager_panel,
+ /client/proc/aooc,
+ /client/proc/change_human_appearance_admin, // Allows an admin to change the basic appearance of human-based mobs ,
+ /client/proc/change_human_appearance_self, // Allows the human-based mob itself change its basic appearance ,
+ /client/proc/change_security_level,
+ /client/proc/makePAI,
+ /client/proc/toggle_debug_logs,
+ /client/proc/toggle_attack_logs,
+ /datum/admins/proc/paralyze_mob,
+ /client/proc/fixatmos,
+ /datum/admins/proc/sendFax,
+ /client/proc/despawn_player,
+ /datum/admins/proc/view_feedback,
+ /datum/admins/proc/capture_map,
+ /client/proc/Set_Holiday,
+ /datum/admins/proc/startnow,
+ /datum/admins/proc/restart,
+ /datum/admins/proc/delay,
+ /client/proc/cmd_mod_say,
+ /datum/admins/proc/immreboot,
+ /client/proc/everyone_random,
+ /client/proc/cmd_admin_delete, //delete an instance/object/mob/etc,
+ /client/proc/cmd_debug_del_all,
+ /client/proc/toggle_random_events,
+ /client/proc/modify_server_news
+
+)
+
+/client/proc/add_admin_verbs()
+ if(holder)
+ verbs += admin_verbs_default
+ if(holder.rights & R_BUILDMODE) verbs += /client/proc/togglebuildmodeself
+ if(holder.rights & R_ADMIN) verbs += admin_verbs_admin
+ if(holder.rights & R_BAN) verbs += admin_verbs_ban
+ if(holder.rights & R_FUN) verbs += admin_verbs_fun
+ if(holder.rights & R_SERVER) verbs += admin_verbs_server
+ if(holder.rights & R_DEBUG)
+ verbs += admin_verbs_debug
+ if(config.debugparanoid && !(holder.rights & R_ADMIN))
+ verbs.Remove(admin_verbs_paranoid_debug) //Right now it's just callproc but we can easily add others later on.
+ if(holder.rights & R_POSSESS) verbs += admin_verbs_possess
+ if(holder.rights & R_PERMISSIONS) verbs += admin_verbs_permissions
+ if(holder.rights & R_STEALTH) verbs += /client/proc/stealth
+ if(holder.rights & R_REJUVINATE) verbs += admin_verbs_rejuv
+ if(holder.rights & R_SOUNDS) verbs += admin_verbs_sounds
+ if(holder.rights & R_SPAWN) verbs += admin_verbs_spawn
+ if(holder.rights & R_MOD) verbs += admin_verbs_mod
+ if(holder.rights & R_EVENT) verbs += admin_verbs_event_manager
+
+/client/proc/remove_admin_verbs()
+ verbs.Remove(
+ admin_verbs_default,
+ /client/proc/togglebuildmodeself,
+ admin_verbs_admin,
+ admin_verbs_ban,
+ admin_verbs_fun,
+ admin_verbs_server,
+ admin_verbs_debug,
+ admin_verbs_possess,
+ admin_verbs_permissions,
+ /client/proc/stealth,
+ admin_verbs_rejuv,
+ admin_verbs_sounds,
+ admin_verbs_spawn,
+ debug_verbs
+ )
diff --git a/code/modules/admin/admin_vr.dm b/code/modules/admin/admin_vr.dm
new file mode 100644
index 00000000000..356d69a3761
--- /dev/null
+++ b/code/modules/admin/admin_vr.dm
@@ -0,0 +1,12 @@
+/datum/admins/proc/set_uplink(mob/living/carbon/human/H as mob)
+ set category = "Debug"
+ set name = "Set Uplink"
+ set desc = "Allows admins to set up an uplink on a character. This will be required for a character to use telecrystals."
+ set popup_menu = FALSE
+
+ if(check_rights(R_ADMIN|R_DEBUG))
+ traitors.spawn_uplink(H)
+ H.mind.tcrystals = DEFAULT_TELECRYSTAL_AMOUNT
+ H.mind.accept_tcrystals = 1
+ else
+ to_chat(usr, "You do not have access to this command.")
\ No newline at end of file
diff --git a/code/modules/admin/verbs/adminsay.dm b/code/modules/admin/verbs/adminsay.dm
index ba75d453175..b9332751b56 100644
--- a/code/modules/admin/verbs/adminsay.dm
+++ b/code/modules/admin/verbs/adminsay.dm
@@ -11,9 +11,9 @@
log_adminsay(msg,src)
- //VOREStation Edit Start - Adds R_EVENT
+ //VOREStation Edit Start - Adds R_STEALTH
for(var/client/C in GLOB.admins)
- if(check_rights(R_ADMIN|R_EVENT))
+ if(check_rights(R_ADMIN|R_STEALTH))
to_chat(C, "
" + create_text_tag("admin", "ADMIN:", C) + " [key_name(usr, 1)] ([admin_jump_link(mob, src)]): [msg] ")
//VOREStation Edit End
@@ -24,7 +24,7 @@
set name = "Msay"
set hidden = 1
- if(!check_rights(R_ADMIN|R_MOD|R_SERVER|R_EVENT)) //VOREStation Edit
+ if(!check_rights(R_ADMIN|R_MOD|R_SERVER|R_STEALTH)) //VOREStation Edit
return
msg = sanitize(msg)
@@ -47,7 +47,7 @@
set name = "Esay"
set hidden = 1
- if(!check_rights(R_ADMIN|R_MOD|R_EVENT|R_SERVER|R_EVENT))
+ if(!check_rights(R_ADMIN|R_MOD|R_EVENT|R_SERVER|R_STEALTH)) //VOREStation Edit
return
msg = sanitize(msg)
diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm
index 2898145795b..58e982822b1 100644
--- a/code/modules/admin/verbs/randomverbs.dm
+++ b/code/modules/admin/verbs/randomverbs.dm
@@ -515,6 +515,12 @@ Traitors and the like can also be revived with the previous role mostly intact.
if(new_character.mind)
new_character.mind.loaded_from_ckey = picked_ckey
new_character.mind.loaded_from_slot = picked_slot
+
+ for(var/lang in picked_client.prefs.alternate_languages)
+ var/datum/language/chosen_language = GLOB.all_languages[lang]
+ if(chosen_language)
+ if(is_lang_whitelisted(src,chosen_language) || (new_character.species && (chosen_language.name in new_character.species.secondary_langs)))
+ new_character.add_language(lang)
//VOREStation Add End
//If desired, apply equipment.
diff --git a/code/modules/admin/verbs/randomverbs_vr.dm b/code/modules/admin/verbs/randomverbs_vr.dm
index dbf38882d95..d4fa30c8243 100644
--- a/code/modules/admin/verbs/randomverbs_vr.dm
+++ b/code/modules/admin/verbs/randomverbs_vr.dm
@@ -71,4 +71,29 @@
feedback_add_details("admin_verb","SCAM") //heh
- return new_mob
\ No newline at end of file
+ return new_mob
+
+/client/proc/cmd_admin_z_narrate() // Allows administrators to fluff events a little easier -- TLE
+ set category = "Special Verbs"
+ set name = "Z Narrate"
+ set desc = "Narrates to your Z level."
+
+ if (!holder)
+ return
+
+ var/msg = input("Message:", text("Enter the text you wish to appear to everyone:")) as text
+ if(!(msg[1] == "<" && msg[length(msg)] == ">")) //You can use HTML but only if the whole thing is HTML. Tries to prevent admin 'accidents'.
+ msg = sanitize(msg)
+
+ if (!msg)
+ return
+
+ var/pos_z = get_z(src.mob)
+ if (!pos_z)
+ return
+ for(var/mob/M in player_list)
+ if(M.z == pos_z)
+ to_chat(M, msg)
+ log_admin("ZNarrate: [key_name(usr)] : [msg]")
+ message_admins("
ZNarrate: [key_name_admin(usr)] : [msg] ", 1)
+ feedback_add_details("admin_verb","GLNA") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
diff --git a/code/modules/admin/verbs/striketeam.dm b/code/modules/admin/verbs/striketeam.dm
index c0c64008c90..98438fb9491 100644
--- a/code/modules/admin/verbs/striketeam.dm
+++ b/code/modules/admin/verbs/striketeam.dm
@@ -47,6 +47,7 @@ var/const/commandos_possible = 6 //if more Commandos are needed in the future
if(!choice)
if(alert("Error, no mission set. Do you want to exit the setup process?",,"Yes","No")=="Yes")
return
+ consider_ert_load() //VOREStation Add
if(team.deployed)
to_chat(usr, "Looks like someone beat you to it.")
diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm
index 115ecaa54d6..6aa06ef4ec2 100644
--- a/code/modules/awaymissions/corpse.dm
+++ b/code/modules/awaymissions/corpse.dm
@@ -23,7 +23,11 @@
var/corpseidjob = null // Needs to be in quotes, such as "Clown" or "Chef." This just determines what the ID reads as, not their access
var/corpseidaccess = null //This is for access. See access.dm for which jobs give what access. Again, put in quotes. Use "Captain" if you want it to be all access.
var/corpseidicon = null //For setting it to be a gold, silver, CentCom etc ID
- var/species = SPECIES_HUMAN
+ var/species = SPECIES_HUMAN //defaults to generic-ass humans
+ var/random_species = FALSE //flip to TRUE to randomize species from the list below
+ var/list/random_species_list = list(SPECIES_HUMAN,SPECIES_TAJ,SPECIES_UNATHI,SPECIES_SKRELL) //preset list that can be overriden downstream. only includes common humanoids for voidsuit compatibility's sake.
+// var/random_appearance = FALSE //TODO: make this work
+// var/cause_of_death = null //TODO: set up a cause-of-death system. needs to support both damage types and actual wound types, so a body can have been bitten/stabbed/clawed/shot/burned/lasered/etc. to death
delete_me = TRUE
/obj/effect/landmark/corpse/Initialize()
@@ -33,13 +37,20 @@
/obj/effect/landmark/corpse/proc/createCorpse() //Creates a mob and checks for gear in each slot before attempting to equip it.
var/mob/living/carbon/human/M = new /mob/living/carbon/human (src.loc)
- M.set_species(species)
+ if(random_species)
+ var/random_pick = pick(random_species_list)
+ M.set_species(random_pick)
+ src.species = random_pick
+ else
+ M.set_species(species)
+ //TODO: insert appearance randomization, needs to be species-based
M.real_name = src.name
M.death(1) //Kills the new mob
+ //TODO: insert cause of death handling/wound simulation here
if(src.corpseuniform)
M.equip_to_slot_or_del(new src.corpseuniform(M), slot_w_uniform)
if(src.corpsesuit)
- M.equip_to_slot_or_del(new src.corpsesuit(M), slot_wear_suit)
+ M.equip_voidsuit_to_slot_or_del_with_refit(new src.corpsesuit(M), slot_wear_suit, src.species)
if(src.corpseshoes)
M.equip_to_slot_or_del(new src.corpseshoes(M), slot_shoes)
if(src.corpsegloves)
@@ -51,7 +62,7 @@
if(src.corpsemask)
M.equip_to_slot_or_del(new src.corpsemask(M), slot_wear_mask)
if(src.corpsehelmet)
- M.equip_to_slot_or_del(new src.corpsehelmet(M), slot_head)
+ M.equip_voidhelm_to_slot_or_del_with_refit(new src.corpsehelmet(M), slot_head, src.species)
if(src.corpsebelt)
M.equip_to_slot_or_del(new src.corpsebelt(M), slot_belt)
if(src.corpsepocket1)
@@ -84,10 +95,6 @@
// I'll work on making a list of corpses people request for maps, or that I think will be commonly used. Syndicate operatives for example.
-
-
-
-
/obj/effect/landmark/corpse/syndicatesoldier
name = "Mercenary"
corpseuniform = /obj/item/clothing/under/syndicate
@@ -102,8 +109,6 @@
corpseidjob = "Operative"
corpseidaccess = "Syndicate"
-
-
/obj/effect/landmark/corpse/syndicatecommando
name = "Syndicate Commando"
corpseuniform = /obj/item/clothing/under/syndicate
@@ -119,10 +124,14 @@
corpseidjob = "Operative"
corpseidaccess = "Syndicate"
-
-
///////////Civilians//////////////////////
+/obj/effect/landmark/corpse/random_civ
+ name = "Civilian"
+ corpseuniform = /obj/item/clothing/under/color/grey
+ corpseshoes = /obj/item/clothing/shoes/black
+ random_species = TRUE
+
/obj/effect/landmark/corpse/chef
name = "Chef"
corpseuniform = /obj/item/clothing/under/rank/chef
@@ -165,6 +174,7 @@
corpsesuit = /obj/item/clothing/suit/space/void/engineering
corpsemask = /obj/item/clothing/mask/breath
corpsehelmet = /obj/item/clothing/head/helmet/space/void/engineering
+ corpseback = /obj/item/weapon/tank/oxygen
/obj/effect/landmark/corpse/clown
name = "Clown"
@@ -188,6 +198,39 @@
corpseid = 1
corpseidjob = "Scientist"
corpseidaccess = "Scientist"
+
+/obj/effect/landmark/corpse/security
+ name = "Security Officer"
+ corpseradio = /obj/item/device/radio/headset/headset_sec
+ corpseuniform = /obj/item/clothing/under/rank/security
+ corpsesuit = /obj/item/clothing/suit/armor/vest
+ corpseback = /obj/item/weapon/storage/backpack/security
+ corpseshoes = /obj/item/clothing/shoes/boots/jackboots
+ corpseglasses = /obj/item/clothing/glasses/sunglasses/sechud
+ corpsegloves = /obj/item/clothing/gloves/black
+ corpsehelmet = /obj/item/clothing/head/helmet
+ corpseid = 1
+ corpseidjob = "Security Officer"
+ corpseidaccess = "Security Officer"
+
+/obj/effect/landmark/corpse/security/rig
+ corpsesuit = /obj/item/clothing/suit/space/void/security
+ corpsemask = /obj/item/clothing/mask/breath
+ corpsehelmet = /obj/item/clothing/head/helmet/space/void/security
+ corpseback = /obj/item/weapon/tank/jetpack/oxygen
+
+/obj/effect/landmark/corpse/security/rig/eva
+ corpsesuit = /obj/item/clothing/suit/space/void/security/alt
+ corpsehelmet = /obj/item/clothing/head/helmet/space/void/security/alt
+ corpseidjob = "Starship Security Officer"
+
+/obj/effect/landmark/corpse/prisoner
+ name = "Unknown Prisoner"
+ corpseuniform = /obj/item/clothing/under/color/prison
+ corpseshoes = /obj/item/clothing/shoes/orange
+ corpseid = 1
+ corpseidjob = "Prisoner"
+ random_species = TRUE
/obj/effect/landmark/corpse/miner
corpseradio = /obj/item/device/radio/headset/headset_cargo
@@ -203,7 +246,69 @@
corpsesuit = /obj/item/clothing/suit/space/void/mining
corpsemask = /obj/item/clothing/mask/breath
corpsehelmet = /obj/item/clothing/head/helmet/space/void/mining
+ corpseback = /obj/item/weapon/tank/oxygen
+
+/////////////////Vintage//////////////////////
+//define the basic props at this level and only change specifics for variants, e.z.
+/obj/effect/landmark/corpse/vintage
+ name = "Unknown Crewmate"
+ corpseuniform = /obj/item/clothing/under/utility
+ corpsesuit = /obj/item/clothing/suit/space/void/refurb
+ corpsehelmet = /obj/item/clothing/head/helmet/space/void/refurb
+ corpsemask = /obj/item/clothing/mask/breath
+ corpseback = /obj/item/weapon/tank/oxygen
+ corpseid = 1
+ corpseidjob = "Crewmate"
+
+/obj/effect/landmark/corpse/vintage/engineering
+ name = "Unknown Engineer"
+ corpsesuit = /obj/item/clothing/suit/space/void/refurb/engineering
+ corpsehelmet = /obj/item/clothing/head/helmet/space/void/refurb/engineering
+ corpsebelt = /obj/item/weapon/storage/belt/utility/full
+ corpseback = /obj/item/weapon/tank/oxygen/yellow
+ corpseidjob = "Engineer"
+
+/obj/effect/landmark/corpse/vintage/marine
+ name = "Unknown Marine"
+ corpsesuit = /obj/item/clothing/suit/space/void/refurb/marine
+ corpsehelmet = /obj/item/clothing/head/helmet/space/void/refurb/marine
+ corpsebelt = /obj/item/weapon/storage/belt/security/tactical
+ corpseidjob = "Marine"
+
+/obj/effect/landmark/corpse/vintage/medical
+ name = "Unknown Medic"
+ corpsesuit = /obj/item/clothing/suit/space/void/refurb/medical
+ corpsehelmet = /obj/item/clothing/head/helmet/space/void/refurb/medical
+ corpsebelt = /obj/item/weapon/storage/belt/medical
+ corpseidjob = "Medic"
+
+/obj/effect/landmark/corpse/vintage/mercenary
+ name = "Unknown Mercenary"
+ corpsesuit = /obj/item/clothing/suit/space/void/refurb/mercenary
+ corpsehelmet = /obj/item/clothing/head/helmet/space/void/refurb/mercenary
+ corpsebelt = /obj/item/weapon/storage/belt/security/tactical
+ corpseback = /obj/item/weapon/tank/oxygen/red
+ corpseidjob = "Mercenary"
+
+/obj/effect/landmark/corpse/vintage/officer
+ name = "Unknown Captain"
+ corpsesuit = /obj/item/clothing/suit/space/void/refurb/officer
+ corpsehelmet = /obj/item/clothing/head/helmet/space/void/refurb/officer
+ corpseback = /obj/item/weapon/tank/oxygen/yellow
+ corpseidjob = "Captain"
+
+/obj/effect/landmark/corpse/vintage/pilot
+ name = "Unknown Pilot"
+ corpsesuit = /obj/item/clothing/suit/space/void/refurb/pilot
+ corpsehelmet = /obj/item/clothing/head/helmet/space/void/refurb/pilot
+ corpseidjob = "Pilot"
+
+/obj/effect/landmark/corpse/vintage/research
+ name = "Unknown Researcher"
+ corpsesuit = /obj/item/clothing/suit/space/void/refurb/research
+ corpsehelmet = /obj/item/clothing/head/helmet/space/void/refurb/research
+ corpseidjob = "Researcher"
/////////////////Officers//////////////////////
diff --git a/code/modules/awaymissions/gateway.dm b/code/modules/awaymissions/gateway.dm
index 987d395992d..daf964e4433 100644
--- a/code/modules/awaymissions/gateway.dm
+++ b/code/modules/awaymissions/gateway.dm
@@ -133,18 +133,66 @@ obj/machinery/gateway/centerstation/process()
M.set_dir(SOUTH)
return
else
- //VOREStation Addition Start: Prevent taurriding abuse
+ //VOREStation Addition Start: Prevent abuse
+ if(istype(M, /obj/item/device/uav))
+ var/obj/item/device/uav/L = M
+ L.power_down()
if(istype(M, /mob/living))
var/mob/living/L = M
if(LAZYLEN(L.buckled_mobs))
var/datum/riding/R = L.riding_datum
for(var/rider in L.buckled_mobs)
R.force_dismount(rider)
- //VOREStation Addition End: Prevent taurriding abuse
+ //VOREStation Addition End: Prevent abuse
var/obj/effect/landmark/dest = pick(awaydestinations)
if(dest)
M.forceMove(dest.loc)
M.set_dir(SOUTH)
+ //VOREStation Addition Start: Abduction!
+ if(istype(M, /mob/living) && dest.abductor)
+ var/mob/living/L = M
+ //Situations to get the mob out of
+ if(L.buckled)
+ L.buckled.unbuckle_mob()
+ if(istype(L.loc,/obj/mecha))
+ var/obj/mecha/ME = L.loc
+ ME.go_out()
+ else if(istype(L.loc,/obj/machinery/sleeper))
+ var/obj/machinery/sleeper/SL = L.loc
+ SL.go_out()
+ else if(istype(L.loc,/obj/machinery/recharge_station))
+ var/obj/machinery/recharge_station/RS = L.loc
+ RS.go_out()
+ if(!issilicon(L)) //Don't drop borg modules...
+ var/list/mob_contents = list() //Things which are actually drained as a result of the above not being null.
+ mob_contents |= L // The recursive check below does not add the object being checked to its list.
+ mob_contents |= recursive_content_check(L, mob_contents, recursion_limit = 3, client_check = 0, sight_check = 0, include_mobs = 1, include_objects = 1, ignore_show_messages = 1)
+ for(var/obj/item/weapon/holder/I in mob_contents)
+ var/obj/item/weapon/holder/H = I
+ var/mob/living/MI = H.held_mob
+ MI.forceMove(get_turf(H))
+ if(!issilicon(MI)) //Don't drop borg modules...
+ for(var/obj/item/II in MI)
+ if(istype(II,/obj/item/weapon/implant) || istype(II,/obj/item/device/nif))
+ continue
+ MI.drop_from_inventory(II, dest.loc)
+ var/obj/effect/landmark/finaldest = pick(awayabductors)
+ MI.forceMove(finaldest.loc)
+ sleep(1)
+ MI.Paralyse(10)
+ MI << 'sound/effects/bamf.ogg'
+ to_chat(MI,"
You're starting to come to. You feel like you've been out for a few minutes, at least... ")
+ for(var/obj/item/I in L)
+ if(istype(I,/obj/item/weapon/implant) || istype(I,/obj/item/device/nif))
+ continue
+ L.drop_from_inventory(I, dest.loc)
+ var/obj/effect/landmark/finaldest = pick(awayabductors)
+ L.forceMove(finaldest.loc)
+ sleep(1)
+ L.Paralyse(10)
+ L << 'sound/effects/bamf.ogg'
+ to_chat(L,"
You're starting to come to. You feel like you've been out for a few minutes, at least... ")
+ //VOREStation Addition End
return
/obj/machinery/gateway/centerstation/attackby(obj/item/device/W as obj, mob/user as mob)
diff --git a/code/modules/awaymissions/zlevel.dm b/code/modules/awaymissions/zlevel.dm
index dc4ad7ecd61..ee065d41d70 100644
--- a/code/modules/awaymissions/zlevel.dm
+++ b/code/modules/awaymissions/zlevel.dm
@@ -1,5 +1,5 @@
proc/createRandomZlevel()
- if(awaydestinations.len || UNIT_TEST) //crude, but it saves another var! //VOREStation Edit - No loading away missions during Travis testing
+ if(awaydestinations.len || UNIT_TEST) //crude, but it saves another var! //VOREStation Edit - No loading away missions during CI testing
return
var/list/potentialRandomZlevels = list()
@@ -63,9 +63,29 @@ proc/createRandomZlevel()
. = ..()
awaydestinations += src
+/obj/effect/landmark/gateway_scatter/abduct
+ name = "uncalibrated gateway abductor"
+ abductor = 1
+
/obj/effect/landmark/event_scatter
- name = "uncalibrated gateway destination"
+ name = "uncalibrated event destination"
/obj/effect/landmark/event_scatter/Initialize()
. = ..()
eventdestinations += src
+
+/obj/effect/landmark/event_scatter/abduct
+ name = "uncalibrated event abductor"
+ abductor = 1
+
+/obj/effect/landmark/gateway_abduct_dest
+ name = "abductor gateway destination"
+/obj/effect/landmark/gateway_abduct_dest/Initialize()
+ . = ..()
+ awayabductors += src
+
+/obj/effect/landmark/event_abduct_dest
+ name = "abductor event destination"
+/obj/effect/landmark/event_abduct_dest/Initialize()
+ . = ..()
+ eventabductors += src
//VOREStation Add End
diff --git a/code/modules/blob2/blobs/base_blob.dm b/code/modules/blob2/blobs/base_blob.dm
index 71d4ad72543..f9c9eb588d8 100644
--- a/code/modules/blob2/blobs/base_blob.dm
+++ b/code/modules/blob2/blobs/base_blob.dm
@@ -22,6 +22,7 @@ GLOBAL_LIST_EMPTY(all_blobs)
/obj/structure/blob/Initialize(newloc, new_overmind)
if(new_overmind)
overmind = new_overmind
+ faction = overmind.blob_type.faction
update_icon()
if(!integrity)
integrity = max_integrity
@@ -47,19 +48,24 @@ GLOBAL_LIST_EMPTY(all_blobs)
color = null
set_light(0)
+/obj/structure/blob/update_transform()
+ var/matrix/M = matrix()
+ M.Scale(icon_scale_x, icon_scale_y)
+ animate(src, transform = M, time = 10)
+
// Blob tiles are not actually dense so we need Special Code(tm).
/obj/structure/blob/CanPass(atom/movable/mover, turf/target)
if(istype(mover) && mover.checkpass(PASSBLOB))
return TRUE
else if(istype(mover, /mob/living))
var/mob/living/L = mover
- if(L.faction == "blob")
+ if(L.faction == faction)
return TRUE
else if(istype(mover, /obj/item/projectile))
var/obj/item/projectile/P = mover
if(istype(P.firer, /obj/structure/blob))
return TRUE
- if(istype(P.firer) && P.firer.faction == "blob")
+ if(istype(P.firer) && P.firer.faction == faction)
return TRUE
return FALSE
@@ -88,6 +94,7 @@ GLOBAL_LIST_EMPTY(all_blobs)
update_icon()
pulse_timestamp = world.time + 1 SECOND
if(overmind)
+ faction = overmind.blob_type.faction
overmind.blob_type.on_pulse(src)
return TRUE //we did it, we were pulsed!
return FALSE //oh no we failed
@@ -106,6 +113,9 @@ GLOBAL_LIST_EMPTY(all_blobs)
for(var/L in blobs_to_affect)
var/obj/structure/blob/B = L
+ if(B.faction != faction)
+ continue
+
if(!B.overmind && !istype(B, /obj/structure/blob/core) && prob(30))
B.overmind = pulsing_overmind //reclaim unclaimed, non-core blobs.
B.update_icon()
@@ -138,7 +148,8 @@ GLOBAL_LIST_EMPTY(all_blobs)
var/dirn = pick(dirs)
dirs.Remove(dirn)
T = get_step(src, dirn)
- if(!(locate(/obj/structure/blob) in T))
+ var/obj/structure/blob/B = locate(/obj/structure/blob) in T
+ if(!B || B.faction != faction) // Allow opposing blobs to fight.
break
else
T = null
@@ -164,6 +175,7 @@ GLOBAL_LIST_EMPTY(all_blobs)
if(make_blob) //well, can we?
var/obj/structure/blob/B = new /obj/structure/blob/normal(src.loc)
+ B.faction = faction
if(controller)
B.overmind = controller
else
@@ -340,7 +352,7 @@ GLOBAL_LIST_EMPTY(all_blobs)
if(!P)
return
- if(istype(P.firer) && P.firer.faction == "blob")
+ if(istype(P.firer) && P.firer.faction == faction)
return
var/damage = P.get_structure_damage() // So tasers don't hurt the blob.
@@ -366,6 +378,31 @@ GLOBAL_LIST_EMPTY(all_blobs)
if(overmind)
overmind.blob_type.on_water(src, amount)
+/obj/structure/blob/blob_act(var/obj/structure/blob/B)
+ . = ..()
+
+ if(B)
+
+ if(!B.overmind)
+ return
+
+ if(B.faction != faction)
+ var/damage = rand(B.overmind.blob_type.damage_lower, B.overmind.blob_type.damage_upper)
+ var/inc_damage_type = B.overmind.blob_type.damage_type
+
+ if(overmind)
+ damage = overmind.blob_type.on_received_damage(src, damage, inc_damage_type, B)
+
+ else
+ faction = B.faction
+ overmind = B.overmind
+ update_icon()
+ return
+
+ adjust_integrity(-1 * damage)
+
+ return
+
/obj/structure/blob/proc/adjust_integrity(amount)
integrity = between(0, integrity + amount, max_integrity)
if(integrity == 0)
diff --git a/code/modules/blob2/blobs/factory.dm b/code/modules/blob2/blobs/factory.dm
index f9415a6e663..464f89f7606 100644
--- a/code/modules/blob2/blobs/factory.dm
+++ b/code/modules/blob2/blobs/factory.dm
@@ -35,7 +35,7 @@
var/mob/living/simple_mob/blob/spore/S = null
if(overmind)
S = new overmind.blob_type.spore_type(src.loc, src)
- S.faction = "blob"
+ S.faction = overmind.blob_type.faction
if(istype(S))
S.overmind = overmind
overmind.blob_mobs.Add(S)
diff --git a/code/modules/blob2/blobs/normal.dm b/code/modules/blob2/blobs/normal.dm
index a6e841d4ddc..cf25ff5c1bf 100644
--- a/code/modules/blob2/blobs/normal.dm
+++ b/code/modules/blob2/blobs/normal.dm
@@ -19,4 +19,13 @@
if(overmind)
name = "[overmind.blob_type.name]"
else
- name = "inert [base_name]"
\ No newline at end of file
+ name = "inert [base_name]"
+
+/obj/structure/blob/normal/pulsed()
+ ..()
+
+ if(prob(30))
+ adjust_scale((rand(10, 13) / 10), (rand(10, 13) / 10))
+
+ else
+ adjust_scale(1)
diff --git a/code/modules/blob2/core_chunk.dm b/code/modules/blob2/core_chunk.dm
index 7d8f588568e..4abc06843eb 100644
--- a/code/modules/blob2/core_chunk.dm
+++ b/code/modules/blob2/core_chunk.dm
@@ -5,6 +5,7 @@
description_info = "Some blob types will have core effects when the chunk is used in-hand, toggled with an alt click, or constantly active."
icon = 'icons/mob/blob.dmi'
icon_state = "blobcore"
+ flags = OPENCONTAINER
var/datum/blob_type/blob_type // The blob type this dropped from.
var/active_ability_cooldown = 20 SECONDS
@@ -15,11 +16,17 @@
var/passive_ability_cooldown = 5 SECONDS
var/last_passive_use = 0
+ var/can_genesis = TRUE // Can the core chunk be used to grow a new blob?
+
drop_sound = 'sound/effects/slime_squish.ogg'
+/obj/item/weapon/blobcore_chunk/is_open_container()
+ return 1
+
/obj/item/weapon/blobcore_chunk/New(var/atom/newloc, var/datum/blob_type/parentblob = null)
..(newloc)
+ create_reagents(120)
setup_blobtype(parentblob)
/obj/item/weapon/blobcore_chunk/Destroy()
@@ -91,10 +98,57 @@
blob_type.on_chunk_tick(src)
/obj/item/weapon/blobcore_chunk/AltClick(mob/living/carbon/user)
- if(blob_type &&blob_type.chunk_active_type == BLOB_CHUNK_TOGGLE)
+ if(blob_type && blob_type.chunk_active_type == BLOB_CHUNK_TOGGLE)
should_tick = !should_tick
if(should_tick)
to_chat(user, "
\The [src] shudders with life. ")
else
to_chat(user, "
\The [src] stills, returning to a death-like state. ")
+
+/obj/item/weapon/blobcore_chunk/proc/regen(var/newfaction = null)
+ if(istype(blob_type))
+ if(newfaction)
+ blob_type.faction = newfaction
+
+ var/obj/structure/blob/core/NC = new (get_turf(src))
+ NC.overmind.blob_type = blob_type
+ NC.overmind.blob_core.update_icon()
+ return TRUE
+
+ return FALSE
+
+/datum/chemical_reaction/blob_reconstitution
+ name = "Hostile Blob Revival"
+ id = "blob_revival"
+ result = null
+ required_reagents = list("phoron" = 60)
+ result_amount = 1
+
+/datum/chemical_reaction/blob_reconstitution/can_happen(var/datum/reagents/holder)
+ if(holder.my_atom && istype(holder.my_atom, /obj/item/weapon/blobcore_chunk))
+ return ..()
+ return FALSE
+
+/datum/chemical_reaction/blob_reconstitution/on_reaction(var/datum/reagents/holder)
+ var/obj/item/weapon/blobcore_chunk/chunk = holder.my_atom
+ if(chunk.can_genesis && chunk.regen())
+ chunk.visible_message("
[chunk] bubbles, surrounding itself with a rapidly expanding mass of [chunk.blob_type.name]! ")
+ chunk.can_genesis = FALSE
+ else
+ chunk.visible_message("
[chunk] shifts strangely, but falls still. ")
+
+/datum/chemical_reaction/blob_reconstitution/domination
+ name = "Allied Blob Revival"
+ id = "blob_friend"
+ result = null
+ required_reagents = list("hydrophoron" = 40, "peridaxon" = 20, "mutagen" = 20)
+ result_amount = 1
+
+/datum/chemical_reaction/blob_reconstitution/domination/on_reaction(var/datum/reagents/holder)
+ var/obj/item/weapon/blobcore_chunk/chunk = holder.my_atom
+ if(chunk.can_genesis && chunk.regen("neutral"))
+ chunk.visible_message("
[chunk] bubbles, surrounding itself with a rapidly expanding mass of [chunk.blob_type.name]! ")
+ chunk.can_genesis = FALSE
+ else
+ chunk.visible_message("
[chunk] shifts strangely, but falls still. ")
diff --git a/code/modules/blob2/overmind/overmind.dm b/code/modules/blob2/overmind/overmind.dm
index ffcd347dd81..6df0cba6295 100644
--- a/code/modules/blob2/overmind/overmind.dm
+++ b/code/modules/blob2/overmind/overmind.dm
@@ -23,6 +23,14 @@ var/list/overminds = list()
var/ai_controlled = TRUE
var/auto_pilot = FALSE // If true, and if a client is attached, the AI routine will continue running.
+ universal_understand = TRUE
+
+ var/list/has_langs = list(LANGUAGE_BLOB)
+ var/datum/language/default_language = null
+
+/mob/observer/blob/get_default_language()
+ return default_language
+
/mob/observer/blob/Initialize(newloc, pre_placed = 0, starting_points = 60, desired_blob_type = null)
blob_points = starting_points
if(pre_placed) //we already have a core!
@@ -41,6 +49,11 @@ var/list/overminds = list()
if(blob_core)
blob_core.update_icon()
+ for(var/L in has_langs)
+ languages |= GLOB.all_languages[L]
+ if(languages.len)
+ default_language = languages[1]
+
return ..(newloc)
/mob/observer/blob/Destroy()
@@ -67,9 +80,9 @@ var/list/overminds = list()
stat(null, "Power Stored: [blob_points]/[max_blob_points]")
stat(null, "Total Blobs: [GLOB.all_blobs.len]")
-/mob/observer/blob/Move(NewLoc, Dir = 0)
+/mob/observer/blob/Move(var/atom/NewLoc, Dir = 0)
if(placed)
- var/obj/structure/blob/B = locate() in range("3x3", NewLoc)
+ var/obj/structure/blob/B = (locate() in view("5x5", NewLoc))
if(B)
forceMove(NewLoc)
return TRUE
@@ -93,3 +106,62 @@ var/list/overminds = list()
if(blob_points >= 100)
if(!auto_factory() && !auto_resource())
auto_node()
+
+/mob/observer/blob/say(var/message, var/datum/language/speaking = null, var/whispering = 0)
+ message = sanitize(message)
+
+ if(!message)
+ return
+
+ //If you're muted for IC chat
+ if(client)
+ if(message)
+ client.handle_spam_prevention(MUTE_IC)
+ if((client.prefs.muted & MUTE_IC) || say_disabled)
+ to_chat(src, "
You cannot speak in IC (Muted). ")
+ return
+
+ //These will contain the main receivers of the message
+ var/list/listening = list()
+ var/list/listening_obj = list()
+
+ var/turf/T = get_turf(src)
+ if(T)
+ //Obtain the mobs and objects in the message range
+ var/list/results = get_mobs_and_objs_in_view_fast(T, world.view, remote_ghosts = client ? TRUE : FALSE)
+ listening = results["mobs"]
+ listening_obj = results["objs"]
+ else
+ return 1 //If we're in nullspace, then forget it.
+
+ var/list/message_pieces = parse_languages(message)
+ if(istype(message_pieces, /datum/multilingual_say_piece)) // Little quirk for dealing with hivemind/signlang languages.
+ var/datum/multilingual_say_piece/S = message_pieces // Yay for BYOND's hilariously broken typecasting for allowing us to do this.
+ S.speaking.broadcast(src, S.message)
+ return 1
+
+ if(!LAZYLEN(message_pieces))
+ log_runtime(EXCEPTION("Message failed to generate pieces. [message] - [json_encode(message_pieces)]"))
+ return 0
+
+ //Handle nonverbal languages here
+ for(var/datum/multilingual_say_piece/S in message_pieces)
+ if(S.speaking.flags & NONVERBAL)
+ custom_emote(1, "[pick(S.speaking.signlang_verb)].")
+
+ for(var/mob/M in listening)
+ spawn()
+ if(M && src)
+ if(get_dist(M, src) <= world.view || (M.stat == DEAD && !forbid_seeing_deadchat))
+ M.hear_say(message_pieces, "conveys", (M.faction == blob_type.faction), src)
+
+ //Object message delivery
+ for(var/obj/O in listening_obj)
+ spawn(0)
+ if(O && src) //If we still exist, when the spawn processes
+ var/dst = get_dist(get_turf(O),get_turf(src))
+ if(dst <= world.view)
+ O.hear_talk(src, message_pieces, "conveys")
+
+ log_say(message, src)
+ return 1
diff --git a/code/modules/blob2/overmind/powers.dm b/code/modules/blob2/overmind/powers.dm
index f5727e94bfe..4177bac9912 100644
--- a/code/modules/blob2/overmind/powers.dm
+++ b/code/modules/blob2/overmind/powers.dm
@@ -80,8 +80,8 @@
potential_blobs -= temp // Don't take up the core's shield spot.
else if(!istype(temp, /obj/structure/blob/normal))
potential_blobs -= temp // Not a normal blob.
- else if(temp.overmind != src)
- potential_blobs -= temp // Not our blob.
+ else if(temp.overmind != src || temp.overmind.blob_type.faction != blob_type.faction)
+ potential_blobs -= temp // Not our blob, or even an ally.
else
B = temp
break
@@ -123,8 +123,8 @@
potential_blobs -= temp // Don't take up the core's shield spot.
else if(!istype(temp, /obj/structure/blob/normal))
potential_blobs -= temp // Not a normal blob.
- else if(temp.overmind != src)
- potential_blobs -= temp // Not our blob.
+ else if(temp.overmind != src || temp.overmind.blob_type.faction != blob_type.faction)
+ potential_blobs -= temp // Not our blob, or even an ally
else
B = temp
break
@@ -165,8 +165,8 @@
potential_blobs -= temp
else if(!istype(temp, /obj/structure/blob/normal))
potential_blobs -= temp
- else if(temp.overmind != src)
- potential_blobs -= temp // Not our blob.
+ else if(temp.overmind != src || temp.overmind.blob_type.faction != blob_type.faction)
+ potential_blobs -= temp // Not our blob, or even our ally.
else
B = temp
break
@@ -216,7 +216,7 @@
for(var/mob/living/L in view(src))
if(L.stat == DEAD)
continue // Already dying or dead.
- if(L.faction == "blob")
+ if(L.faction == blob_type.faction)
continue // No friendly fire.
if(locate(/obj/structure/blob) in L.loc)
continue // Already has a blob over them.
diff --git a/code/modules/blob2/overmind/types.dm b/code/modules/blob2/overmind/types.dm
index 79df541aae5..8fffbcdbcae 100644
--- a/code/modules/blob2/overmind/types.dm
+++ b/code/modules/blob2/overmind/types.dm
@@ -9,6 +9,8 @@
var/color = "#FFFFFF" // The actual blob's color.
var/complementary_color = "#000000" //a color that's complementary to the normal blob color. Blob mobs are colored in this.
+ var/faction = "blob" // The blob's faction.
+
var/attack_message = "The blob attacks you" // Base message the mob gets when blob_act() gets called on them by the blob. An exclaimation point is added to the end.
var/attack_message_living = null // Appended to attack_message, if the target fails isSynthetic() check.
var/attack_message_synth = null // Ditto, but if they pass isSynthetic().
diff --git a/code/modules/blob2/overmind/types/blazing_oil.dm b/code/modules/blob2/overmind/types/blazing_oil.dm
index 094083e7780..7d8c9f307d5 100644
--- a/code/modules/blob2/overmind/types/blazing_oil.dm
+++ b/code/modules/blob2/overmind/types/blazing_oil.dm
@@ -33,6 +33,8 @@
env.add_thermal_energy(10 * 1000)
/datum/blob_type/blazing_oil/on_chunk_tick(obj/item/weapon/blobcore_chunk/B)
+ B.reagents.add_reagent("thermite_v", 0.5)
+
var/turf/T = get_turf(B)
if(!T)
return
diff --git a/code/modules/blob2/overmind/types/cryogenic_goo.dm b/code/modules/blob2/overmind/types/cryogenic_goo.dm
index 32684ed58f3..564516a71dd 100644
--- a/code/modules/blob2/overmind/types/cryogenic_goo.dm
+++ b/code/modules/blob2/overmind/types/cryogenic_goo.dm
@@ -46,6 +46,8 @@
env.add_thermal_energy(-10 * 1000)
/datum/blob_type/cryogenic_goo/on_chunk_tick(obj/item/weapon/blobcore_chunk/B)
+ B.reagents.add_reagent("cryoslurry", 0.5)
+
var/turf/simulated/T = get_turf(B)
if(!istype(T))
return
diff --git a/code/modules/blob2/overmind/types/ectoplasmic_horror.dm b/code/modules/blob2/overmind/types/ectoplasmic_horror.dm
index f7689847cde..a528ce83889 100644
--- a/code/modules/blob2/overmind/types/ectoplasmic_horror.dm
+++ b/code/modules/blob2/overmind/types/ectoplasmic_horror.dm
@@ -35,7 +35,7 @@
listclearnulls(active_beams)
var/atom/movable/beam_origin = B
for(var/mob/living/L in oview(world.view, B))
- if(L.stat == DEAD || L.faction == "blob")
+ if(L.stat == DEAD || L.faction == faction)
continue
if(prob(5))
var/beamtarget_exists = FALSE
@@ -82,7 +82,7 @@
if(nearby_mobs.len)
listclearnulls(active_beams)
for(var/mob/living/L in nearby_mobs)
- if(L.stat == DEAD || L.faction == "blob")
+ if(L.stat == DEAD || L.faction == faction)
continue
if(prob(5))
var/beamtarget_exists = FALSE
diff --git a/code/modules/blob2/overmind/types/explosive_lattice.dm b/code/modules/blob2/overmind/types/explosive_lattice.dm
index d0484c37254..aec6787eab1 100644
--- a/code/modules/blob2/overmind/types/explosive_lattice.dm
+++ b/code/modules/blob2/overmind/types/explosive_lattice.dm
@@ -30,7 +30,7 @@
for(var/mob/living/L in range(get_turf(victim), 1)) // We don't use orange(), in case there is more than one mob on the target tile.
if(L == victim) // Already hit.
continue
- if(L.faction == "blob") // No friendly fire
+ if(L.faction == faction) // No friendly fire
continue
L.blob_act()
diff --git a/code/modules/blob2/overmind/types/fulminant_organism.dm b/code/modules/blob2/overmind/types/fulminant_organism.dm
index 2d940f93599..4f3788b787f 100644
--- a/code/modules/blob2/overmind/types/fulminant_organism.dm
+++ b/code/modules/blob2/overmind/types/fulminant_organism.dm
@@ -24,9 +24,10 @@
var/mob/living/simple_mob/blob/spore/S = new spore_type(T)
if(istype(S))
S.overmind = O
+ S.faction = faction
O.blob_mobs.Add(S)
else
- S.faction = "blob"
+ S.faction = faction
S.update_icons()
/datum/blob_type/fulminant_organism/on_death(obj/structure/blob/B)
@@ -35,9 +36,10 @@
B.visible_message("
\The [S] floats free from the [name]! ")
if(istype(S))
S.overmind = B.overmind
+ S.faction = faction
B.overmind.blob_mobs.Add(S)
else
- S.faction = "blob"
+ S.faction = faction
S.update_icons()
/datum/blob_type/fulminant_organism/on_chunk_use(obj/item/weapon/blobcore_chunk/B, mob/living/user)
diff --git a/code/modules/blob2/overmind/types/grey_goo.dm b/code/modules/blob2/overmind/types/grey_goo.dm
index 5c93fb46c87..558f624e96f 100644
--- a/code/modules/blob2/overmind/types/grey_goo.dm
+++ b/code/modules/blob2/overmind/types/grey_goo.dm
@@ -14,6 +14,7 @@
attack_message = "The tide tries to swallow you"
attack_message_living = ", and you feel your skin dissolve"
attack_message_synth = ", and your external plating dissolves"
+ faction = "nanomachines"
/datum/blob_type/grey_goo/on_emp(obj/structure/blob/B, severity)
B.adjust_integrity(-(20 / severity))
diff --git a/code/modules/blob2/overmind/types/roiling_mold.dm b/code/modules/blob2/overmind/types/roiling_mold.dm
index e909d060868..4594ad1c9f6 100644
--- a/code/modules/blob2/overmind/types/roiling_mold.dm
+++ b/code/modules/blob2/overmind/types/roiling_mold.dm
@@ -44,7 +44,7 @@
if(!istype(L))
return
- if(istype(B, /obj/structure/blob/factory) && L.stat != DEAD && prob(ai_aggressiveness) && L.faction != "blob")
+ if(istype(B, /obj/structure/blob/factory) && L.stat != DEAD && prob(ai_aggressiveness) && L.faction != faction)
var/obj/item/projectile/arc/spore/P = new(get_turf(B))
P.launch_projectile(L, BP_TORSO, B)
diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm
index dd84f559820..83164afd3c3 100644
--- a/code/modules/client/client procs.dm
+++ b/code/modules/client/client procs.dm
@@ -227,7 +227,6 @@
if(!void)
void = new()
- void.MakeGreed()
screen += void
if((prefs.lastchangelog != changelog_hash) && isnewplayer(src.mob)) //bolds the changelog button on the interface so we know there are updates.
diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes.dm b/code/modules/client/preference_setup/loadout/loadout_eyes.dm
index cc171a08b19..c8c6355ea25 100644
--- a/code/modules/client/preference_setup/loadout/loadout_eyes.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_eyes.dm
@@ -15,6 +15,26 @@
..()
gear_tweaks += gear_tweak_free_color_choice
+/datum/gear/eyes/blindfold
+ display_name = "blindfold"
+ path = /obj/item/clothing/glasses/sunglasses/blindfold
+
+/datum/gear/eyes/whiteblindfold //I may have lost my sight, but at least these folks can see my RAINBOW BLINDFOLD
+ display_name = "blindfold, white (recolorable)"
+ path = /obj/item/clothing/glasses/sunglasses/blindfold/whiteblindfold
+
+/datum/gear/eyes/whiteblindfold/New()
+ ..()
+ gear_tweaks += gear_tweak_free_color_choice
+
+/datum/gear/eyes/thinblindfold
+ display_name = "blindfold, thin white (recolorable)"
+ path = /obj/item/clothing/glasses/sunglasses/thinblindfold
+
+/datum/gear/eyes/thinblindfold/New()
+ ..()
+ gear_tweaks += gear_tweak_free_color_choice
+
/datum/gear/eyes/glasses
display_name = "Glasses, prescription"
path = /obj/item/clothing/glasses/regular
diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm b/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm
index ade7584a339..68699342a4b 100644
--- a/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm
@@ -57,4 +57,4 @@
/datum/gear/eyes/medical/medpatch
display_name = "Health HUDpatch"
- path = /obj/item/clothing/glasses/hud/health/eyepatch
\ No newline at end of file
+ path = /obj/item/clothing/glasses/hud/health/eyepatch
diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
index bf0148f5104..136c6194aca 100644
--- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
@@ -66,6 +66,12 @@
ckeywhitelist = list("argobargsoup")
character_name = list("Lynn Shady")
+/datum/gear/fluff/felina_witchhat
+ path = /obj/item/clothing/head/wizard/marisa/fake
+ display_name = "Felina's Witch Hat"
+ ckeywhitelist = list("argobargsoup")
+ character_name = list("Felina Belliger")
+
/datum/gear/fluff/aronai_ccmeduniform
path = /obj/item/clothing/under/solgov/utility/sifguard/officer/medical
display_name = "centcom medical uniform"
@@ -82,6 +88,13 @@
ckeywhitelist = list("arokha")
character_name = list("Aronai Sieyes")
+/datum/gear/fluff/astra_ritualknife
+ path = /obj/item/weapon/material/knife/ritual/fluff/astra
+ display_name = "Polished Ritual Knife"
+ description = "A well kept strange ritual knife, There is a small tag with the name 'Astra Ether' on it. They are probably looking for this."
+ ckeywhitelist = list("astraether")
+ character_name = list("Astra Ether")
+
/datum/gear/fluff/collar/azura
path = /obj/item/clothing/accessory/collar/azura
display_name = "collar, Azura"
@@ -739,6 +752,12 @@
character_name = list("Clara Mali")
cost = 1
+/datum/gear/fluff/nikki_dorky_outfit
+ path = /obj/item/weapon/storage/box/fluff
+ display_name = "Nikki's Witchy Outfit"
+ ckeywhitelist = list("ryumi")
+ character_name = list("Nikki Yumeno")
+
// S CKEYS
/datum/gear/fluff/brynhild_medal
path = /obj/item/clothing/accessory/medal/silver/valor
@@ -940,6 +959,25 @@
// U CKEYS
// V CKEYS
+/datum/gear/fluff/verie_suit
+ path = /obj/item/clothing/under/fluff/verie
+ display_name = "Verie's Salacious Suit"
+ ckeywhitelist = list("vitoras")
+ character_name = list("Verie")
+
+/datum/gear/fluff/verie_hoodie
+ path = /obj/item/clothing/suit/storage/hooded/fluff/verie
+ display_name = "Verie's Helluva Hoodie"
+ ckeywhitelist = list("vitoras")
+ character_name = list("Verie")
+
+/datum/gear/fluff/verie_comb
+ path = /obj/item/weapon/fluff/verie
+ display_name = "Verie's Crazy Comb"
+ description = "(Note: The highlights this gives you will be placed above EVERYTHING... including mobs!)"
+ ckeywhitelist = list("vitoras")
+ character_name = list("Verie")
+
/datum/gear/fluff/cameron_glasses
path = /obj/item/clothing/glasses/fluff/science_proper
display_name = "Cameron's Science Glasses"
@@ -1040,6 +1078,12 @@
ckeywhitelist = list("vitoras")
character_name = list("Roanna Ti'Rox")
+/datum/gear/fluff/harmony_id
+ path = /obj/item/weapon/card/id/fluff/harmony
+ display_name = "Harmony's ITG-ID card"
+ ckeywhitelist = list("verysoft")
+ character_name = list("Harmony")
+
// W CKEYS
/datum/gear/fluff/sthasha_bracer
path = /obj/item/clothing/accessory/bracer/fluff/xander_sthasha
diff --git a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm
index ce6ada61abf..2aebfd668f4 100644
--- a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm
@@ -18,4 +18,28 @@
/datum/gear/head/detective_alt
display_name = "cyberscope headgear, detective"
path = /obj/item/clothing/head/helmet/detective_alt
- allowed_roles = list("Head of Security", "Detective")
\ No newline at end of file
+ allowed_roles = list("Head of Security", "Detective")
+
+/datum/gear/head/bearpelt
+ display_name = "brown bear pelt"
+ path = /obj/item/clothing/head/pelt
+
+/datum/gear/head/wolfpelt
+ display_name = "brown wolf pelt"
+ path = /obj/item/clothing/head/pelt/wolfpelt
+
+/datum/gear/head/wolfpeltblack
+ display_name = "black wolf pelt"
+ path = /obj/item/clothing/head/pelt/wolfpeltblack
+
+/datum/gear/head/tigerpelt
+ display_name = "shiny tiger pelt"
+ path = /obj/item/clothing/head/pelt/tigerpelt
+
+/datum/gear/head/tigerpeltsnow
+ display_name = "snow tiger pelt"
+ path = /obj/item/clothing/head/pelt/tigerpeltsnow
+
+/datum/gear/head/tigerpeltpink
+ display_name = "pink tiger pelt"
+ path = /obj/item/clothing/head/pelt/tigerpeltpink
\ No newline at end of file
diff --git a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm
index b9cae2ddd01..aa158a1aaa7 100644
--- a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm
@@ -66,4 +66,9 @@
/datum/gear/suit/roles/medical/paramedic_vest
display_name = "paramedic vest"
path = /obj/item/clothing/suit/storage/toggle/paramedic
- allowed_roles = list("Chief Medical Officer","Paramedic","Medical Doctor")
\ No newline at end of file
+ allowed_roles = list("Chief Medical Officer","Paramedic","Medical Doctor")
+
+//greek thing
+/datum/gear/suit/chiton
+ display_name = "chiton"
+ path = /obj/item/clothing/suit/chiton
\ No newline at end of file
diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm
index c26c23ea7a1..d1ec1bca73c 100644
--- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm
@@ -65,7 +65,7 @@
..()
var/list/skirts = list()
for(var/skirt in (typesof(/obj/item/clothing/under/skirt)))
- if(skirt in typesof(/obj/item/clothing/under/skirt/fluff)) //VOREStation addition
+ if((skirt in typesof(/obj/item/clothing/under/skirt/fluff)) || (skirt in typesof(/obj/item/clothing/under/skirt/outfit/fluff))) //VOREStation addition
continue //VOREStation addition
var/obj/item/clothing/under/skirt/skirt_type = skirt
skirts[initial(skirt_type.name)] = skirt_type
diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm
index 8faa4d309b7..d953334b7eb 100644
--- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm
@@ -40,6 +40,15 @@
path = /obj/item/clothing/under/rank/khi/sci
allowed_roles = list("Research Director", "Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Pathfinder", "Explorer")
+/datum/gear/uniform/job_khi/crg
+ display_name = "khi uniform, cargo"
+ path = /obj/item/clothing/under/rank/khi/crg
+ allowed_roles = list("Quartermaster", "Cargo Technician", "Shaft Miner")
+
+/datum/gear/uniform/job_khi/civ
+ display_name = "khi uniform, civ"
+ path = /obj/item/clothing/under/rank/khi/civ
+
//Federation jackets
/datum/gear/suit/job_fed/sec
display_name = "fed uniform, sec"
diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm
index 7124b553376..31a497c8977 100644
--- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm
@@ -166,36 +166,41 @@
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
+/datum/gear/uniform/dept/undercoat/cap
+ display_name = "facility director undercoat (Teshari)"
+ path = /obj/item/clothing/under/seromi/undercoat/jobs/cap
+ allowed_roles = list("Facility Director")
+
+/datum/gear/uniform/dept/undercoat/hop
+ display_name = "head of personnel undercoat (Teshari)"
+ path = /obj/item/clothing/under/seromi/undercoat/jobs/hop
+ allowed_roles = list("Head of Personnel")
+
+/datum/gear/uniform/dept/undercoat/rd
+ display_name = "research director undercoat (Teshari)"
+ path = /obj/item/clothing/under/seromi/undercoat/jobs/rd
+ allowed_roles = list("Research Director")
+
+/datum/gear/uniform/dept/undercoat/hos
+ display_name = "head of security undercoat (Teshari)"
+ path = /obj/item/clothing/under/seromi/undercoat/jobs/hos
+ allowed_roles = list("Head of Security")
+
/datum/gear/uniform/dept/undercoat/ce
display_name = "chief engineer undercoat (Teshari)"
path = /obj/item/clothing/under/seromi/undercoat/jobs/ce
allowed_roles = list("Chief Engineer")
-/datum/gear/uniform/dept/undercoat/ce_w
- display_name = "chief engineer undercoat - white (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/ce_w
- allowed_roles = list("Chief Engineer")
+/datum/gear/uniform/dept/undercoat/cmo
+ display_name = "chief medical officer undercoat (Teshari)"
+ path = /obj/item/clothing/under/seromi/undercoat/jobs/cmo
+ allowed_roles = list("Chief Medical Officer")
/datum/gear/uniform/dept/undercoat/qm
display_name = "quartermaster undercoat (Teshari)"
path = /obj/item/clothing/under/seromi/undercoat/jobs/qm
allowed_roles = list("Quartermaster")
-/datum/gear/uniform/dept/undercoat/command
- display_name = "command undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/command
- allowed_roles = list("Site Manager","Head of Personnel","Head of Security","Chief Engineer","Chief Medical Officer","Research Director")
-
-/datum/gear/uniform/dept/undercoat/command_g
- display_name = "command undercoat - gold buttons (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/command_g
- allowed_roles = list("Site Manager","Head of Personnel","Head of Security","Chief Engineer","Chief Medical Officer","Research Director")
-
-/datum/gear/uniform/dept/undercoat/cmo
- display_name = "chief medical officer undercoat (Teshari)"
- path = /obj/item/clothing/under/seromi/undercoat/jobs/cmo
- allowed_roles = list("Chief Medical Officer")
-
/datum/gear/uniform/dept/undercoat/cargo
display_name = "cargo undercoat (Teshari)"
path = /obj/item/clothing/under/seromi/undercoat/jobs/cargo
@@ -214,7 +219,7 @@
/datum/gear/uniform/dept/undercoat/service
display_name = "service undercoat (Teshari)"
path = /obj/item/clothing/under/seromi/undercoat/jobs/service
- allowed_roles = list("Head of Personnel","Bartender","Botanist","Janitor","Chef","Librarian")
+ allowed_roles = list("Head of Personnel","Bartender","Botanist","Janitor","Chef","Librarian","Chaplain")
/datum/gear/uniform/dept/undercoat/engineer
display_name = "engineering undercoat (Teshari)"
@@ -234,122 +239,283 @@
/datum/gear/uniform/dept/undercoat/robo
display_name = "roboticist undercoat (Teshari)"
path = /obj/item/clothing/under/seromi/undercoat/jobs/robo
- allowed_roles = list("Roboticist")
+ allowed_roles = list("Research Director","Roboticist")
/datum/gear/uniform/dept/undercoat/medical
display_name = "medical undercoat (Teshari)"
path = /obj/item/clothing/under/seromi/undercoat/jobs/medical
- allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Psychiatrist")
/datum/gear/uniform/dept/undercoat/chemistry
display_name = "chemist undercoat (Teshari)"
path = /obj/item/clothing/under/seromi/undercoat/jobs/chemistry
- allowed_roles = list("Chemist")
+ allowed_roles = list("Chief Medical Officer","Chemist")
/datum/gear/uniform/dept/undercoat/virology
display_name = "virologist undercoat (Teshari)"
path = /obj/item/clothing/under/seromi/undercoat/jobs/viro
- allowed_roles = list("Medical Doctor")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor")
+
+/datum/gear/uniform/dept/undercoat/psych
+ display_name = "psychiatrist undercoat (Teshari)"
+ path = /obj/item/clothing/under/seromi/undercoat/jobs/psych
+ allowed_roles = list("Chief Medical Officer","Psychiatrist")
/datum/gear/uniform/dept/undercoat/paramedic
display_name = "paramedic undercoat (Teshari)"
path = /obj/item/clothing/under/seromi/undercoat/jobs/para
- allowed_roles = list("Paramedic")
+ allowed_roles = list("Chief Medical Officer","Paramedic")
/datum/gear/uniform/dept/undercoat/iaa
display_name = "internal affairs undercoat (Teshari)"
path = /obj/item/clothing/under/seromi/undercoat/jobs/iaa
allowed_roles = list("Internal Affairs Agent")
-/datum/gear/suit/dept/cloak/
+/datum/gear/suit/dept/cloak
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
+/datum/gear/suit/dept/cloak/cap
+ display_name = "facility director cloak (Teshari)"
+ path = /obj/item/clothing/suit/storage/seromi/cloak/jobs
+ allowed_roles = list("Facility Director")
+
+/datum/gear/suit/dept/cloak/hop
+ display_name = "head of personnel cloak (Teshari)"
+ path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/hop
+ allowed_roles = list("Head of Personnel")
+
+/datum/gear/suit/dept/cloak/rd
+ display_name = "research director cloak (Teshari)"
+ path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/rd
+ allowed_roles = list("Research Director")
+
+/datum/gear/suit/dept/cloak/hos
+ display_name = "head of security cloak (Teshari)"
+ path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/hos
+ allowed_roles = list("Head of Security")
+
+/datum/gear/suit/dept/cloak/hos/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/hos,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/hos))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
+
/datum/gear/suit/cloak/dept/ce
display_name = "chief engineer cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/ce
allowed_roles = list("Chief Engineer")
-/datum/gear/suit/dept/cloak/qm
- display_name = "quartermaster cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/qm
- allowed_roles = list("Quartermaster")
-
-/datum/gear/suit/dept/cloak/command
- display_name = "command cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/command
- allowed_roles = list("Site Manager","Head of Personnel","Head of Security","Chief Engineer","Chief Medical Officer","Research Director")
+/datum/gear/suit/dept/cloak/ce/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/ce,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/ce))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/cmo
display_name = "chief medical officer cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/cmo
allowed_roles = list("Chief Medical Officer")
+/datum/gear/suit/dept/cloak/cmo/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/cmo,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cmo))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
+
+/datum/gear/suit/dept/cloak/qm
+ display_name = "quartermaster cloak (Teshari)"
+ path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/qm
+ allowed_roles = list("Chief Medical Officer")
+
+/datum/gear/suit/dept/cloak/qm/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/qm,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/qm))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
+
/datum/gear/suit/dept/cloak/cargo
display_name = "cargo cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/cargo
- allowed_roles = list("Cargo Technician","Quartermaster","Shaft Miner")
+ allowed_roles = list("Quartermaster","Shaft Miner","Cargo Technician")
+
+/datum/gear/suit/dept/cloak/cargo/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/cargo,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cargo))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/mining
display_name = "mining cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/mining
allowed_roles = list("Quartermaster","Shaft Miner")
+/datum/gear/suit/dept/cloak/mining/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/mining,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/mining))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
+
/datum/gear/suit/dept/cloak/security
display_name = "security cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/sec
- allowed_roles = list("Head of Security","Detective","Warden","Security Officer",)
+ allowed_roles = list("Head of Security","Detective","Warden","Security Officer")
+
+/datum/gear/suit/dept/cloak/security/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/sec,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/sec))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/service
display_name = "service cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/service
- allowed_roles = list("Head of Personnel","Bartender","Botanist","Janitor","Chef","Librarian")
+ allowed_roles = list("Head of Personnel","Bartender","Botanist","Janitor","Chef","Librarian","Chaplain")
+
+/datum/gear/suit/dept/cloak/service/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/service,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/service))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/engineer
display_name = "engineering cloak (Teshari)"
- path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/eningeer
+ path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/engineer
allowed_roles = list("Chief Engineer","Station Engineer")
+/datum/gear/suit/dept/cloak/engineer/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/engineer,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/engineer))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
+
/datum/gear/suit/dept/cloak/atmos
display_name = "atmospherics cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/atmos
allowed_roles = list("Chief Engineer","Atmospheric Technician")
+/datum/gear/suit/dept/cloak/atmos/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/atmos,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/atmos))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
+
/datum/gear/suit/dept/cloak/research
display_name = "scientist cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/sci
- allowed_roles = list("Research Director","Scientist", "Roboticist", "Xenobiologist")
+ allowed_roles = list("Research Director","Scientist","Roboticist","Xenobiologist")
+
+/datum/gear/suit/dept/cloak/research/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/sci,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/sci))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/robo
display_name = "roboticist cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/robo
- allowed_roles = list("Roboticist")
+ allowed_roles = list("Research Director","Roboticist")
+
+/datum/gear/suit/dept/cloak/robo/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/robo,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/robo))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/medical
display_name = "medical cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/medical
- allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist", "Psychiatrist")
+
+/datum/gear/suit/dept/cloak/medical/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/medical,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/medical))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/chemistry
display_name = "chemist cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/chemistry
allowed_roles = list("Chemist")
+/datum/gear/suit/dept/cloak/chemistry/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/chemistry,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/chemistry))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
+
/datum/gear/suit/dept/cloak/virology
display_name = "virologist cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/viro
allowed_roles = list("Medical Doctor")
+/datum/gear/suit/dept/cloak/virology/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/viro,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/viro))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
+
+/datum/gear/suit/dept/cloak/psych
+ display_name = "psychiatrist cloak (Teshari)"
+ path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/psych
+ allowed_roles = list("Chief Medical Officer","Psychiatrist")
+
/datum/gear/suit/dept/cloak/paramedic
display_name = "paramedic cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/para
- allowed_roles = list("Paramedic")
+ allowed_roles = list("Chief Medical Officer","Paramedic")
+
+/datum/gear/suit/dept/cloak/paramedic/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/para,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/para))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/suit/dept/cloak/iaa
display_name = "internal affairs cloak (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/iaa
allowed_roles = list("Internal Affairs Agent")
+/datum/gear/suit/dept/cloak/iaa/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/iaa,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/iaa))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
+
/datum/gear/uniform/smockcolor
display_name = "smock, recolorable (Teshari)"
path = /obj/item/clothing/under/seromi/smock/white
@@ -360,6 +526,73 @@
..()
gear_tweaks += gear_tweak_free_color_choice
+/datum/gear/suit/beltcloak
+ display_name = "belted cloak selection (Teshari)"
+ path = /obj/item/clothing/suit/storage/seromi/beltcloak/standard
+ whitelisted = SPECIES_TESHARI
+ sort_category = "Xenowear"
+
+/datum/gear/suit/beltcloak/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/beltcloak/standard))
+ var/obj/item/clothing/suit/storage/seromi/beltcloak/standard/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
+
+/datum/gear/suit/beltcloak_color
+ display_name = "belted cloak, recolorable (Teshari)"
+ path = /obj/item/clothing/suit/storage/seromi/beltcloak/standard/white_grey
+ whitelisted = SPECIES_TESHARI
+ sort_category = "Xenowear"
+
+/datum/gear/suit/beltcloak_color/New()
+ ..()
+ gear_tweaks += gear_tweak_free_color_choice
+
+/datum/gear/suit/dept/beltcloak/wrdn
+ display_name = "warden belted cloak (Teshari)"
+ path = /obj/item/clothing/suit/storage/seromi/beltcloak/jobs/wrdn
+ allowed_roles = list("Head of Security","Warden")
+
+/datum/gear/suit/dept/beltcloak/jani
+ display_name = "janitor belted cloak (Teshari)"
+ path = /obj/item/clothing/suit/storage/seromi/beltcloak/jobs/jani
+ allowed_roles = list("Janitor")
+
+/datum/gear/suit/dept/beltcloak/cmd
+ display_name = "command belted cloak (Teshari)"
+ path = /obj/item/clothing/suit/storage/seromi/beltcloak/jobs/command
+ allowed_roles = list("Site Manager","Head of Personnel","Head of Security","Chief Engineer","Chief Medical Officer","Research Director")
+
+/datum/gear/suit/cloak_hood
+ display_name = "hooded cloak selection (Teshari)"
+ path = /obj/item/clothing/suit/storage/hooded/teshari/standard
+ whitelisted = SPECIES_TESHARI
+ sort_category = "Xenowear"
+
+/datum/gear/suit/cloak_hood/New()
+ ..()
+ var/list/cloaks = list()
+ for(var/cloak in typesof(/obj/item/clothing/suit/storage/hooded/teshari/standard))
+ var/obj/item/clothing/suit/storage/seromi/cloak/cloak_type = cloak
+ cloaks[initial(cloak_type.name)] = cloak_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
+
+/datum/gear/uniform/worksuit
+ display_name = "worksuit selection (Teshari)"
+ path = /obj/item/clothing/under/seromi/undercoat/standard/worksuit
+ whitelisted = SPECIES_TESHARI
+ sort_category = "Xenowear"
+
+/datum/gear/uniform/worksuit/New()
+ ..()
+ var/list/worksuits = list()
+ for(var/worksuit in typesof(/obj/item/clothing/under/seromi/undercoat/standard/worksuit))
+ var/obj/item/clothing/under/seromi/undercoat/standard/worksuit/worksuit_type = worksuit
+ worksuits[initial(worksuit_type.name)] = worksuit_type
+ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(worksuits))
+
/datum/gear/uniform/undercoatcolor
display_name = "undercoat, recolorable (Teshari)"
path = /obj/item/clothing/under/seromi/undercoat/standard/white_grey
@@ -379,6 +612,7 @@
/datum/gear/suit/cloakcolor/New()
..()
gear_tweaks += gear_tweak_free_color_choice
+
/datum/gear/suit/labcoat_tesh
display_name = "labcoat, colorable (Teshari)"
path = /obj/item/clothing/suit/storage/toggle/labcoat/teshari
@@ -397,7 +631,6 @@
/datum/gear/suit/teshcoat/New()
..()
-
gear_tweaks += gear_tweak_free_color_choice
/datum/gear/suit/teshcoatwhite
@@ -424,11 +657,16 @@
display_name = "toe-less jackboots"
path = /obj/item/clothing/shoes/boots/jackboots/toeless
-
/datum/gear/shoes/toelessknee
display_name = "toe-less jackboots, knee-length"
path = /obj/item/clothing/shoes/boots/jackboots/toeless/knee
/datum/gear/shoes/toelessthigh
display_name = "toe-less jackboots, thigh-length"
- path = /obj/item/clothing/shoes/boots/jackboots/toeless/thigh
\ No newline at end of file
+ path = /obj/item/clothing/shoes/boots/jackboots/toeless/thigh
+
+/datum/gear/eyes/aerogelgoggles
+ display_name = "airtight orange goggles (Teshari)"
+ path = /obj/item/clothing/glasses/aerogelgoggles
+ whitelisted = SPECIES_TESHARI
+ sort_category = "Xenowear"
diff --git a/code/modules/client/preference_setup/vore/01_ears.dm b/code/modules/client/preference_setup/vore/01_ears.dm
index c36ccd4bca3..dea5be0479b 100644
--- a/code/modules/client/preference_setup/vore/01_ears.dm
+++ b/code/modules/client/preference_setup/vore/01_ears.dm
@@ -13,6 +13,9 @@
var/r_ears2 = 30 // Ear extra color.
var/g_ears2 = 30 // Ear extra color
var/b_ears2 = 30 // Ear extra color
+ var/r_ears3 = 30 // Ear tertiary color.
+ var/g_ears3 = 30 // Ear tertiary color
+ var/b_ears3 = 30 // Ear tertiary color
var/tail_style // Type of selected tail style
var/r_tail = 30 // Tail/Taur color
var/g_tail = 30 // Tail/Taur color
@@ -20,6 +23,9 @@
var/r_tail2 = 30 // For extra overlay.
var/g_tail2 = 30 // For extra overlay.
var/b_tail2 = 30 // For extra overlay.
+ var/r_tail3 = 30 // For tertiary overlay.
+ var/g_tail3 = 30 // For tertiary overlay.
+ var/b_tail3 = 30 // For tertiary overlay.
var/wing_style // Type of selected wing style
var/r_wing = 30 // Wing color
var/g_wing = 30 // Wing color
@@ -27,6 +33,9 @@
var/r_wing2 = 30 // Wing extra color
var/g_wing2 = 30 // Wing extra color
var/b_wing2 = 30 // Wing extra color
+ var/r_wing3 = 30 // Wing tertiary color
+ var/g_wing3 = 30 // Wing tertiary color
+ var/b_wing3 = 30 // Wing tertiary color
// Definition of the stuff for Ears
/datum/category_item/player_setup_item/vore/ears
@@ -41,6 +50,9 @@
S["r_ears2"] >> pref.r_ears2
S["g_ears2"] >> pref.g_ears2
S["b_ears2"] >> pref.b_ears2
+ S["r_ears3"] >> pref.r_ears3
+ S["g_ears3"] >> pref.g_ears3
+ S["b_ears3"] >> pref.b_ears3
S["tail_style"] >> pref.tail_style
S["r_tail"] >> pref.r_tail
S["g_tail"] >> pref.g_tail
@@ -48,6 +60,9 @@
S["r_tail2"] >> pref.r_tail2
S["g_tail2"] >> pref.g_tail2
S["b_tail2"] >> pref.b_tail2
+ S["r_tail3"] >> pref.r_tail3
+ S["g_tail3"] >> pref.g_tail3
+ S["b_tail3"] >> pref.b_tail3
S["wing_style"] >> pref.wing_style
S["r_wing"] >> pref.r_wing
S["g_wing"] >> pref.g_wing
@@ -55,6 +70,9 @@
S["r_wing2"] >> pref.r_wing2
S["g_wing2"] >> pref.g_wing2
S["b_wing2"] >> pref.b_wing2
+ S["r_wing3"] >> pref.r_wing3
+ S["g_wing3"] >> pref.g_wing3
+ S["b_wing3"] >> pref.b_wing3
/datum/category_item/player_setup_item/vore/ears/save_character(var/savefile/S)
S["ear_style"] << pref.ear_style
@@ -64,6 +82,9 @@
S["r_ears2"] << pref.r_ears2
S["g_ears2"] << pref.g_ears2
S["b_ears2"] << pref.b_ears2
+ S["r_ears3"] << pref.r_ears3
+ S["g_ears3"] << pref.g_ears3
+ S["b_ears3"] << pref.b_ears3
S["tail_style"] << pref.tail_style
S["r_tail"] << pref.r_tail
S["g_tail"] << pref.g_tail
@@ -71,6 +92,9 @@
S["r_tail2"] << pref.r_tail2
S["g_tail2"] << pref.g_tail2
S["b_tail2"] << pref.b_tail2
+ S["r_tail3"] << pref.r_tail3
+ S["g_tail3"] << pref.g_tail3
+ S["b_tail3"] << pref.b_tail3
S["wing_style"] << pref.wing_style
S["r_wing"] << pref.r_wing
S["g_wing"] << pref.g_wing
@@ -78,6 +102,9 @@
S["r_wing2"] << pref.r_wing2
S["g_wing2"] << pref.g_wing2
S["b_wing2"] << pref.b_wing2
+ S["r_wing3"] << pref.r_wing3
+ S["g_wing3"] << pref.g_wing3
+ S["b_wing3"] << pref.b_wing3
/datum/category_item/player_setup_item/vore/ears/sanitize_character()
pref.r_ears = sanitize_integer(pref.r_ears, 0, 255, initial(pref.r_ears))
@@ -86,18 +113,28 @@
pref.r_ears2 = sanitize_integer(pref.r_ears2, 0, 255, initial(pref.r_ears2))
pref.g_ears2 = sanitize_integer(pref.g_ears2, 0, 255, initial(pref.g_ears2))
pref.b_ears2 = sanitize_integer(pref.b_ears2, 0, 255, initial(pref.b_ears2))
+ pref.r_ears3 = sanitize_integer(pref.r_ears3, 0, 255, initial(pref.r_ears3))
+ pref.g_ears3 = sanitize_integer(pref.g_ears3, 0, 255, initial(pref.g_ears3))
+ pref.b_ears3 = sanitize_integer(pref.b_ears3, 0, 255, initial(pref.b_ears3))
pref.r_tail = sanitize_integer(pref.r_tail, 0, 255, initial(pref.r_tail))
pref.g_tail = sanitize_integer(pref.g_tail, 0, 255, initial(pref.g_tail))
pref.b_tail = sanitize_integer(pref.b_tail, 0, 255, initial(pref.b_tail))
pref.r_tail2 = sanitize_integer(pref.r_tail2, 0, 255, initial(pref.r_tail2))
pref.g_tail2 = sanitize_integer(pref.g_tail2, 0, 255, initial(pref.g_tail2))
pref.b_tail2 = sanitize_integer(pref.b_tail2, 0, 255, initial(pref.b_tail2))
+ pref.r_tail3 = sanitize_integer(pref.r_tail3, 0, 255, initial(pref.r_tail3))
+ pref.g_tail3 = sanitize_integer(pref.g_tail3, 0, 255, initial(pref.g_tail3))
+ pref.b_tail3 = sanitize_integer(pref.b_tail3, 0, 255, initial(pref.b_tail3))
pref.r_wing = sanitize_integer(pref.r_wing, 0, 255, initial(pref.r_wing))
pref.g_wing = sanitize_integer(pref.g_wing, 0, 255, initial(pref.g_wing))
pref.b_wing = sanitize_integer(pref.b_wing, 0, 255, initial(pref.b_wing))
pref.r_wing2 = sanitize_integer(pref.r_wing2, 0, 255, initial(pref.r_wing2))
pref.g_wing2 = sanitize_integer(pref.g_wing2, 0, 255, initial(pref.g_wing2))
pref.b_wing2 = sanitize_integer(pref.b_wing2, 0, 255, initial(pref.b_wing2))
+ pref.r_wing3 = sanitize_integer(pref.r_wing3, 0, 255, initial(pref.r_wing3))
+ pref.g_wing3 = sanitize_integer(pref.g_wing3, 0, 255, initial(pref.g_wing3))
+ pref.b_wing3 = sanitize_integer(pref.b_wing3, 0, 255, initial(pref.b_wing3))
+
if(pref.ear_style)
pref.ear_style = sanitize_inlist(pref.ear_style, ear_styles_list, initial(pref.ear_style))
var/datum/sprite_accessory/temp_ear_style = ear_styles_list[pref.ear_style]
@@ -122,6 +159,9 @@
character.r_ears2 = pref.r_ears2
character.b_ears2 = pref.b_ears2
character.g_ears2 = pref.g_ears2
+ character.r_ears3 = pref.r_ears3
+ character.b_ears3 = pref.b_ears3
+ character.g_ears3 = pref.g_ears3
character.tail_style = tail_styles_list[pref.tail_style]
character.r_tail = pref.r_tail
character.b_tail = pref.b_tail
@@ -129,6 +169,9 @@
character.r_tail2 = pref.r_tail2
character.b_tail2 = pref.b_tail2
character.g_tail2 = pref.g_tail2
+ character.r_tail3 = pref.r_tail3
+ character.b_tail3 = pref.b_tail3
+ character.g_tail3 = pref.g_tail3
character.wing_style = wing_styles_list[pref.wing_style]
character.r_wing = pref.r_wing
character.b_wing = pref.b_wing
@@ -136,6 +179,9 @@
character.r_wing2 = pref.r_wing2
character.b_wing2 = pref.b_wing2
character.g_wing2 = pref.g_wing2
+ character.r_wing3 = pref.r_wing3
+ character.b_wing3 = pref.b_wing3
+ character.g_wing3 = pref.g_wing3
@@ -153,10 +199,12 @@
. += " Style:
[ear_display] "
if(ear_styles_list[pref.ear_style])
var/datum/sprite_accessory/ears/ear = ear_styles_list[pref.ear_style]
- if (ear.do_colouration)
+ if(ear.do_colouration)
. += "
Change Color [color_square(pref.r_ears, pref.g_ears, pref.b_ears)]
"
- if (ear.extra_overlay)
+ if(ear.extra_overlay)
. += "
Change Secondary Color [color_square(pref.r_ears2, pref.g_ears2, pref.b_ears2)]
"
+ if(ear.extra_overlay2)
+ . += "
Change Tertiary Color [color_square(pref.r_ears3, pref.g_ears3, pref.b_ears3)]
"
var/tail_display = "Normal"
if(pref.tail_style && (pref.tail_style in tail_styles_list))
@@ -169,10 +217,12 @@
if(tail_styles_list[pref.tail_style])
var/datum/sprite_accessory/tail/T = tail_styles_list[pref.tail_style]
- if (T.do_colouration)
+ if(T.do_colouration)
. += "
Change Color [color_square(pref.r_tail, pref.g_tail, pref.b_tail)]
"
- if (T.extra_overlay)
+ if(T.extra_overlay)
. += "
Change Secondary Color [color_square(pref.r_tail2, pref.g_tail2, pref.b_tail2)]
"
+ if(T.extra_overlay2)
+ . += "
Change Tertiary Color [color_square(pref.r_tail3, pref.g_tail3, pref.b_tail3)]
"
var/wing_display = "Normal"
if(pref.wing_style && (pref.wing_style in wing_styles_list))
@@ -189,6 +239,8 @@
. += "
Change Color [color_square(pref.r_wing, pref.g_wing, pref.b_wing)]
"
if (W.extra_overlay)
. += "
Change Secondary Color [color_square(pref.r_wing2, pref.g_wing2, pref.b_wing2)]
"
+ if (W.extra_overlay2)
+ . += "
Change Secondary Color [color_square(pref.r_wing3, pref.g_wing3, pref.b_wing3)]
"
/datum/category_item/player_setup_item/vore/ears/OnTopic(var/href,var/list/href_list, var/mob/user)
if(!CanUseTopic(user))
@@ -219,7 +271,7 @@
return TOPIC_REFRESH_UPDATE_PREVIEW
else if(href_list["ear_color2"])
- var/new_earc2 = input(user, "Choose your character's ear colour:", "Character Preference",
+ var/new_earc2 = input(user, "Choose your character's secondary ear colour:", "Character Preference",
rgb(pref.r_ears2, pref.g_ears2, pref.b_ears2)) as color|null
if(new_earc2)
pref.r_ears2 = hex2num(copytext(new_earc2, 2, 4))
@@ -227,6 +279,15 @@
pref.b_ears2 = hex2num(copytext(new_earc2, 6, 8))
return TOPIC_REFRESH_UPDATE_PREVIEW
+ else if(href_list["ear_color3"])
+ var/new_earc3 = input(user, "Choose your character's tertiary ear colour:", "Character Preference",
+ rgb(pref.r_ears3, pref.g_ears3, pref.b_ears3)) as color|null
+ if(new_earc3)
+ pref.r_ears3 = hex2num(copytext(new_earc3, 2, 4))
+ pref.g_ears3 = hex2num(copytext(new_earc3, 4, 6))
+ pref.b_ears3 = hex2num(copytext(new_earc3, 6, 8))
+ return TOPIC_REFRESH_UPDATE_PREVIEW
+
else if(href_list["tail_style"])
// Construct the list of names allowed for this user.
var/list/pretty_tail_styles = list("Normal" = null)
@@ -260,6 +321,15 @@
pref.b_tail2 = hex2num(copytext(new_tailc2, 6, 8))
return TOPIC_REFRESH_UPDATE_PREVIEW
+ else if(href_list["tail_color3"])
+ var/new_tailc3 = input(user, "Choose your character's tertiary tail/taur colour:", "Character Preference",
+ rgb(pref.r_tail3, pref.g_tail3, pref.b_tail3)) as color|null
+ if(new_tailc3)
+ pref.r_tail3 = hex2num(copytext(new_tailc3, 2, 4))
+ pref.g_tail3 = hex2num(copytext(new_tailc3, 4, 6))
+ pref.b_tail3 = hex2num(copytext(new_tailc3, 6, 8))
+ return TOPIC_REFRESH_UPDATE_PREVIEW
+
else if(href_list["wing_style"])
// Construct the list of names allowed for this user.
var/list/pretty_wing_styles = list("Normal" = null)
@@ -293,4 +363,13 @@
pref.b_wing2 = hex2num(copytext(new_wingc2, 6, 8))
return TOPIC_REFRESH_UPDATE_PREVIEW
+ else if(href_list["wing_color3"])
+ var/new_wingc3 = input(user, "Choose your character's tertiary wing colour:", "Character Preference",
+ rgb(pref.r_wing3, pref.g_wing3, pref.b_wing3)) as color|null
+ if(new_wingc3)
+ pref.r_wing3 = hex2num(copytext(new_wingc3, 2, 4))
+ pref.g_wing3 = hex2num(copytext(new_wingc3, 4, 6))
+ pref.b_wing3 = hex2num(copytext(new_wingc3, 6, 8))
+ return TOPIC_REFRESH_UPDATE_PREVIEW
+
return ..()
diff --git a/code/modules/client/preference_setup/vore/03_egg.dm b/code/modules/client/preference_setup/vore/03_egg.dm
index 648b31b3995..6c090478d5e 100644
--- a/code/modules/client/preference_setup/vore/03_egg.dm
+++ b/code/modules/client/preference_setup/vore/03_egg.dm
@@ -1,15 +1,3 @@
-var/UNATHI_EGG = "Unathi"
-var/TAJARAN_EGG = "Tajaran"
-var/AKULA_EGG = "Akula"
-var/SKRELL_EGG = "Skrell"
-var/SERGAL_EGG = "Sergal"
-var/HUMAN_EGG = "Human"
-var/NEVREAN_EGG = "nevrean"
-var/SLIME_EGG = "Slime"
-var/EGG_EGG = "Egg"
-var/XENOCHIMERA_EGG = "Xenochimera"
-var/XENOMORPH_EGG = "Xenomorph"
-
// Define a place to save appearance in character setup
/datum/preferences
var/vore_egg_type = "Egg" //The egg type they have.
@@ -26,8 +14,7 @@ var/XENOMORPH_EGG = "Xenomorph"
S["vore_egg_type"] << pref.vore_egg_type
/datum/category_item/player_setup_item/vore/egg/sanitize_character()
- var/valid_vore_egg_types = global_vore_egg_types
- pref.vore_egg_type = sanitize_inlist(pref.vore_egg_type, valid_vore_egg_types, initial(pref.vore_egg_type))
+ pref.vore_egg_type = sanitize_inlist(pref.vore_egg_type, global_vore_egg_types, initial(pref.vore_egg_type))
/datum/category_item/player_setup_item/vore/egg/copy_to_mob(var/mob/living/carbon/human/character)
character.vore_egg_type = pref.vore_egg_type
@@ -44,7 +31,7 @@ var/XENOMORPH_EGG = "Xenomorph"
var/list/vore_egg_types = global_vore_egg_types
var/selection = input(user, "Choose your character's egg type:", "Character Preference", pref.vore_egg_type) as null|anything in vore_egg_types
if(selection)
- pref.vore_egg_type = vore_egg_types[selection]
+ pref.vore_egg_type = selection
return TOPIC_REFRESH
else
return
diff --git a/code/modules/client/preference_setup/vore/07_traits.dm b/code/modules/client/preference_setup/vore/07_traits.dm
index e653166b7ad..ecaaa840cf6 100644
--- a/code/modules/client/preference_setup/vore/07_traits.dm
+++ b/code/modules/client/preference_setup/vore/07_traits.dm
@@ -58,21 +58,21 @@
if(pref.species != SPECIES_CUSTOM)
pref.pos_traits.Cut()
- pref.neu_traits.Cut()
pref.neg_traits.Cut()
- else
- // Clean up positive traits
- for(var/path in pref.pos_traits)
- if(!(path in positive_traits))
- pref.pos_traits -= path
- //Neutral traits
- for(var/path in pref.neu_traits)
- if(!(path in neutral_traits))
- pref.neu_traits -= path
- //Negative traits
- for(var/path in pref.neg_traits)
- if(!(path in negative_traits))
- pref.neg_traits -= path
+ // Clean up positive traits
+ for(var/path in pref.pos_traits)
+ if(!(path in positive_traits))
+ pref.pos_traits -= path
+ //Neutral traits
+ for(var/path in pref.neu_traits)
+ if(!(path in neutral_traits))
+ pref.neu_traits -= path
+ if(!(pref.species == SPECIES_CUSTOM) && !(path in everyone_traits))
+ pref.neu_traits -= path
+ //Negative traits
+ for(var/path in pref.neg_traits)
+ if(!(path in negative_traits))
+ pref.neg_traits -= path
var/datum/species/selected_species = GLOB.all_species[pref.species]
if(selected_species.selects_bodytype)
@@ -82,23 +82,27 @@
/datum/category_item/player_setup_item/vore/traits/copy_to_mob(var/mob/living/carbon/human/character)
character.custom_species = pref.custom_species
- var/datum/species/selected_species = GLOB.all_species[pref.species]
if(character.isSynthetic()) //Checking if we have a synth on our hands, boys.
pref.dirty_synth = 1
- if(selected_species.selects_bodytype)
- var/datum/species/custom/CS = character.species
- var/S = pref.custom_base ? pref.custom_base : "Human"
- var/datum/species/custom/new_CS = CS.produceCopy(S, pref.pos_traits + pref.neu_traits + pref.neg_traits, character)
+ var/datum/species/S = character.species
+ var/SB
+ if(S.selects_bodytype)
+ SB = pref.custom_base ? pref.custom_base : "Human"
+ else
+ SB = S.name
+ var/datum/species/new_S = S.produceCopy(SB, pref.pos_traits + pref.neu_traits + pref.neg_traits, character)
- //Any additional non-trait settings can be applied here
- new_CS.blood_color = pref.blood_color
+ //Any additional non-trait settings can be applied here
+ new_S.blood_color = pref.blood_color
+
+ if(pref.species == SPECIES_CUSTOM)
+ //Statistics for this would be nice
+ var/english_traits = english_list(new_S.traits, and_text = ";", comma_text = ";")
+ log_game("TRAITS [pref.client_ckey]/([character]) with: [english_traits]") //Terrible 'fake' key_name()... but they aren't in the same entity yet
+ else
- if(pref.species == SPECIES_CUSTOM)
- //Statistics for this would be nice
- var/english_traits = english_list(new_CS.traits, and_text = ";", comma_text = ";")
- log_game("TRAITS [pref.client_ckey]/([character]) with: [english_traits]") //Terrible 'fake' key_name()... but they aren't in the same entity yet
/datum/category_item/player_setup_item/vore/traits/content(var/mob/user)
. += "
Custom Species Name: "
@@ -109,15 +113,16 @@
. += "
Icon Base: "
. += "
[pref.custom_base ? pref.custom_base : "Human"] "
+ var/traits_left = pref.max_traits
+ . += "
Traits Left: [traits_left]
"
if(pref.species == SPECIES_CUSTOM)
var/points_left = pref.starting_trait_points
- var/traits_left = pref.max_traits
+
for(var/T in pref.pos_traits + pref.neg_traits)
points_left -= traits_costs[T]
traits_left--
. += "
Points Left: [points_left]
"
- . += "
Traits Left: [traits_left]
"
if(points_left < 0 || traits_left < 0 || !pref.custom_species)
. += "
^ Fix things! ^ "
@@ -128,19 +133,18 @@
. += "
- [trait.name] ([trait.cost]) "
. += ""
- . += "
Neutral Trait + "
- . += "
"
-
. += "
Negative Trait + "
. += "
"
+ . += "
Neutral Trait + "
+ . += "
"
. += "
Blood Color: " //People that want to use a certain species to have that species traits (xenochimera/promethean/spider) should be able to set their own blood color.
. += "
Set Color "
. += "
R "
@@ -213,8 +217,12 @@
picklist = positive_traits.Copy() - pref.pos_traits
mylist = pref.pos_traits
if(NEUTRAL_MODE)
- picklist = neutral_traits.Copy() - pref.neu_traits
- mylist = pref.neu_traits
+ if(pref.species == SPECIES_CUSTOM)
+ picklist = neutral_traits.Copy() - pref.neu_traits
+ mylist = pref.neu_traits
+ else
+ picklist = everyone_traits.Copy() - pref.neu_traits
+ mylist = pref.neu_traits
if(NEGATIVE_MODE)
picklist = negative_traits.Copy() - pref.neg_traits
mylist = pref.neg_traits
diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm
index fc42b1efad4..3d6c80eedd4 100644
--- a/code/modules/client/preferences.dm
+++ b/code/modules/client/preferences.dm
@@ -235,7 +235,7 @@ datum/preferences
to_chat(user, "
No mob exists for the given client! ")
close_load_dialog(user)
return
-
+
if(!char_render_holders)
update_preview_icon()
show_character_previews()
@@ -280,7 +280,7 @@ datum/preferences
client.screen |= BG
BG.icon_state = bgstate
BG.screen_loc = preview_screen_locs["BG"]
-
+
for(var/D in global.cardinal)
var/obj/screen/setup_preview/O = LAZYACCESS(char_render_holders, "[D]")
if(!O)
@@ -400,13 +400,15 @@ datum/preferences
if(S)
dat += "
Select a character slot to load "
var/name
+ var/nickname //vorestation edit - This set appends nicknames to the save slot
for(var/i=1, i<= config.character_slots, i++)
S.cd = "/character[i]"
S["real_name"] >> name
+ S["nickname"] >> nickname //vorestation edit
if(!name) name = "Character[i]"
if(i==default_slot)
name = "
[name] "
- dat += "
[name] "
+ dat += "
[name][nickname ? " ([nickname])" : ""] " //vorestation edit
dat += "
"
dat += ""
diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm
index e65590f86c8..60ff3b8e352 100644
--- a/code/modules/clothing/glasses/glasses.dm
+++ b/code/modules/clothing/glasses/glasses.dm
@@ -392,6 +392,18 @@ BLIND // can't see anything
drop_sound = 'sound/items/drop/gloves.ogg'
pickup_sound = 'sound/items/pickup/gloves.ogg'
+/obj/item/clothing/glasses/sunglasses/blindfold/whiteblindfold
+ name = "white blindfold"
+ desc = "A white blindfold that covers the eyes, preventing sight."
+ icon_state = "blindfoldwhite"
+
+/obj/item/clothing/glasses/sunglasses/thinblindfold
+ name = "thin white blindfold"
+ desc = "A thin blindfold to help protect sensitive eyes while still allowing some sight"
+ icon_state = "blindfoldwhite"
+ flash_protection = FLASH_PROTECTION_MODERATE //not as thick, only offers some protection
+ tint = TINT_HEAVY
+
/obj/item/clothing/glasses/sunglasses/blindfold/tape
name = "length of tape"
desc = "It's a robust DIY blindfold!"
@@ -543,3 +555,38 @@ BLIND // can't see anything
desc = "A set of implantable lenses designed to augment your vision"
icon_state = "thermalimplants"
item_state_slots = list(slot_r_hand_str = "sunglasses", slot_l_hand_str = "sunglasses")
+
+/obj/item/clothing/glasses/aerogelgoggles
+ name = "orange goggles"
+ desc = "Teshari designed lightweight goggles."
+ icon_state = "orange-g"
+ item_state_slots = list(slot_r_hand_str = "glasses", slot_l_hand_str = "glasses")
+ action_button_name = "Adjust Orange Goggles"
+ var/up = 0
+ item_flags = AIRTIGHT
+ body_parts_covered = EYES
+ species_restricted = list(SPECIES_TESHARI)
+
+/obj/item/clothing/glasses/aerogelgoggles/attack_self()
+ toggle()
+
+/obj/item/clothing/glasses/aerogelgoggles/verb/toggle()
+ set category = "Object"
+ set name = "Adjust Orange Goggles"
+ set src in usr
+
+ if(usr.canmove && !usr.stat && !usr.restrained())
+ if(src.up)
+ src.up = !src.up
+ flags_inv |= HIDEEYES
+ body_parts_covered |= EYES
+ icon_state = initial(icon_state)
+ to_chat(usr, "You flip \the [src] down to protect your eyes.")
+ else
+ src.up = !src.up
+ flags_inv &= ~HIDEEYES
+ body_parts_covered &= ~EYES
+ icon_state = "[initial(icon_state)]up"
+ to_chat(usr, "You push \the [src] up from in front of your eyes.")
+ update_clothing_icon()
+ usr.update_action_buttons()
diff --git a/code/modules/clothing/glasses/glasses_vr.dm b/code/modules/clothing/glasses/glasses_vr.dm
index a571d893083..7cef44b83c8 100644
--- a/code/modules/clothing/glasses/glasses_vr.dm
+++ b/code/modules/clothing/glasses/glasses_vr.dm
@@ -128,4 +128,4 @@
SPECIES_TESHARI = 'icons/mob/species/seromi/eyes.dmi',
SPECIES_VOX = 'icons/mob/species/vox/eyes.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/eyes.dmi'
- )
\ No newline at end of file
+ )
diff --git a/code/modules/clothing/head/misc_vr.dm b/code/modules/clothing/head/misc_vr.dm
index 6fddde1c3d3..8cfb579201c 100644
--- a/code/modules/clothing/head/misc_vr.dm
+++ b/code/modules/clothing/head/misc_vr.dm
@@ -46,4 +46,44 @@
/obj/item/clothing/head/shiny_hood/closed/poly
name = "polychromic closed shiny hood"
icon_state = "hood_col_o"
- polychromic = TRUE
\ No newline at end of file
+ polychromic = TRUE
+
+/obj/item/clothing/head/pelt
+ name = "Bear pelt"
+ desc = "A luxurious bear pelt, good to keep warm in winter. Or to sleep through winter."
+ icon = 'icons/obj/clothing/hats_vr.dmi'
+ icon_override = 'icons/mob/head_vr.dmi'
+ icon_state = "bearpelt_brown"
+ item_state = "bearpelt_brown"
+
+/obj/item/clothing/head/pelt/wolfpelt
+ name = "Wolf pelt"
+ desc = "A fuzzy wolf pelt, demanding respect as a hunter, well if it isn't synthetic or anything at least. Or bought."
+ icon_override = 'icons/mob/wolfpelt_vr.dmi'
+ icon_state = "wolfpelt_brown"
+ item_state = "wolfpelt_brown"
+
+/obj/item/clothing/head/pelt/wolfpeltblack
+ name = "Wolf pelt"
+ desc = "A fuzzy wolf pelt, demanding respect as a hunter, well if it isn't synthetic or anything at least. Or bought."
+ icon_override = 'icons/mob/wolfpelt_vr.dmi'
+ icon_state = "wolfpelt_gray"
+ item_state = "wolfpelt_gray"
+
+/obj/item/clothing/head/pelt/tigerpelt
+ name = "Shiny tiger pelt"
+ desc = "A vibrant tiger pelt, particularly fabulous."
+ icon_state = "tigerpelt_shiny"
+ item_state = "tigerpelt_shiny"
+
+/obj/item/clothing/head/pelt/tigerpeltsnow
+ name = "Snow tiger pelt"
+ desc = "A pelt of a less vibrant tiger, but rather warm."
+ icon_state = "tigerpelt_snow"
+ item_state = "tigerpelt_snow"
+
+/obj/item/clothing/head/pelt/tigerpeltpink
+ name = "Pink tiger pelt"
+ desc = "A particularly vibrant tiger pelt, for those who want to be the most fabulous at parties."
+ icon_state = "tigerpelt_pink"
+ item_state = "tigerpelt_pink"
\ No newline at end of file
diff --git a/code/modules/clothing/spacesuits/rig/modules/specific/mounted_gun_vr.dm b/code/modules/clothing/spacesuits/rig/modules/specific/mounted_gun_vr.dm
new file mode 100644
index 00000000000..96f609a1dac
--- /dev/null
+++ b/code/modules/clothing/spacesuits/rig/modules/specific/mounted_gun_vr.dm
@@ -0,0 +1,12 @@
+/obj/item/rig_module/mounted/sizegun
+ icon = 'icons/obj/rig_modules.dmi'
+ icon_state = "sizegun"
+ name = "mounted size gun"
+ desc = "A size gun to be mounted on a rig suit. Features interface-based target size adjustment for hands-free size-altering shenanigans."
+
+ engage_string = "Select Size"
+
+ interface_name = "mounted sizegun"
+ interface_desc = "A wrist-mounted, hardsuit cell-powered, size gun. Features interface-based target size adjustment for hands-free size-altering shenanigans."
+
+ gun_type = /obj/item/weapon/gun/energy/sizegun/mounted
diff --git a/code/modules/clothing/spacesuits/spacesuits.dm b/code/modules/clothing/spacesuits/spacesuits.dm
index 280e0a9c98a..cd2f05f5e72 100644
--- a/code/modules/clothing/spacesuits/spacesuits.dm
+++ b/code/modules/clothing/spacesuits/spacesuits.dm
@@ -37,6 +37,9 @@
if(camera_networks)
verbs |= /obj/item/clothing/head/helmet/space/proc/toggle_camera
+ if(type == /obj/item/clothing/head/helmet/space) //VOREStation edit - use the specially refitted sprites by KBraid. Done this way to avoid breaking subtypes.
+ sprite_sheets[SPECIES_TESHARI] = 'icons/mob/species/seromi/helmet_vr.dmi'
+
/obj/item/clothing/head/helmet/space/proc/toggle_camera()
set name = "Toggle Helmet Camera"
set desc = "Turn your helmet's camera on or off."
@@ -89,6 +92,13 @@
valid_accessory_slots = (ACCESSORY_SLOT_OVER | ACCESSORY_SLOT_ARMBAND | ACCESSORY_SLOT_DECOR)
var/list/supporting_limbs //If not-null, automatically splints breaks. Checked when removing the suit.
+//VOREStation edit start - use the specially refitted sprites by KBraid. Done this way to avoid breaking subtypes.
+/obj/item/clothing/suit/space/Initialize()
+ . = ..()
+ if(type == /obj/item/clothing/suit/space)
+ sprite_sheets[SPECIES_TESHARI] = 'icons/mob/species/seromi/suit_vr.dmi'
+//VOREStation edit end.
+
/obj/item/clothing/suit/space/equipped(mob/M)
check_limb_support(M)
..()
diff --git a/code/modules/clothing/suits/aliens/seromi.dm b/code/modules/clothing/suits/aliens/seromi.dm
index 0bea907fbe1..4ce78dff7b2 100644
--- a/code/modules/clothing/suits/aliens/seromi.dm
+++ b/code/modules/clothing/suits/aliens/seromi.dm
@@ -1,47 +1,23 @@
+// Standard Cloaks
/obj/item/clothing/suit/storage/seromi/cloak
- name = "broken cloak"
+ name = "black cloak"
desc = "It drapes over a Teshari's shoulders and closes at the neck with pockets convienently placed inside."
icon = 'icons/mob/species/seromi/teshari_cloak.dmi'
icon_override = 'icons/mob/species/seromi/teshari_cloak.dmi'
- icon_state = "tesh_cloak_bo"
- item_state = "tesh_cloak_bo"
+ icon_state = "tesh_cloak_bn"
+ item_state = "tesh_cloak_bn"
species_restricted = list(SPECIES_TESHARI)
body_parts_covered = UPPER_TORSO|ARMS
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_orange
- name = "black and orange cloak"
- icon_state = "tesh_cloak_bo"
- item_state = "tesh_cloak_bo"
-
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_grey
- name = "black and grey cloak"
- icon_state = "tesh_cloak_bg"
- item_state = "tesh_cloak_bg"
-
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_midgrey
- name = "black and medium grey cloak"
- icon_state = "tesh_cloak_bmg"
- item_state = "tesh_cloak_bmg"
-
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_lightgrey
- name = "black and light grey cloak"
- icon_state = "tesh_cloak_blg"
- item_state = "tesh_cloak_blg"
-
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black_white
- name = "black and white cloak"
- icon_state = "tesh_cloak_bw"
- item_state = "tesh_cloak_bw"
-
/obj/item/clothing/suit/storage/seromi/cloak/standard/black_red
name = "black and red cloak"
icon_state = "tesh_cloak_br"
item_state = "tesh_cloak_br"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/black
- name = "black cloak"
- icon_state = "tesh_cloak_bn"
- item_state = "tesh_cloak_bn"
+/obj/item/clothing/suit/storage/seromi/cloak/standard/black_orange
+ name = "black and orange cloak"
+ icon_state = "tesh_cloak_bo"
+ item_state = "tesh_cloak_bo"
/obj/item/clothing/suit/storage/seromi/cloak/standard/black_yellow
name = "black and yellow cloak"
@@ -73,20 +49,20 @@
icon_state = "tesh_cloak_bbr"
item_state = "tesh_cloak_bbr"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/orange_grey
- name = "orange and grey cloak"
- icon_state = "tesh_cloak_og"
- item_state = "tesh_cloak_og"
+/obj/item/clothing/suit/storage/seromi/cloak/standard/black_grey
+ name = "black and grey cloak"
+ icon_state = "tesh_cloak_bg"
+ item_state = "tesh_cloak_bg"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/rainbow
- name = "rainbow cloak"
- icon_state = "tesh_cloak_rainbow"
- item_state = "tesh_cloak_rainbow"
+/obj/item/clothing/suit/storage/seromi/cloak/standard/black_white
+ name = "black and white cloak"
+ icon_state = "tesh_cloak_bw"
+ item_state = "tesh_cloak_bw"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/lightgrey_grey
- name = "light grey and grey cloak"
- icon_state = "tesh_cloak_lgg"
- item_state = "tesh_cloak_lgg"
+/obj/item/clothing/suit/storage/seromi/cloak/standard/white
+ name = "white cloak"
+ icon_state = "tesh_cloak_wn"
+ item_state = "tesh_cloak_wn"
/obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey
name = "white and grey cloak"
@@ -98,10 +74,10 @@
icon_state = "tesh_cloak_rg"
item_state = "tesh_cloak_rg"
-/obj/item/clothing/suit/storage/seromi/cloak/standard/orange
- name = "orange cloak"
- icon_state = "tesh_cloak_on"
- item_state = "tesh_cloak_on"
+/obj/item/clothing/suit/storage/seromi/cloak/standard/orange_grey
+ name = "orange and grey cloak"
+ icon_state = "tesh_cloak_og"
+ item_state = "tesh_cloak_og"
/obj/item/clothing/suit/storage/seromi/cloak/standard/yellow_grey
name = "yellow and grey cloak"
@@ -133,10 +109,46 @@
icon_state = "tesh_cloak_brg"
item_state = "tesh_cloak_brg"
+/obj/item/clothing/suit/storage/seromi/cloak/standard/rainbow
+ name = "rainbow cloak"
+ icon_state = "tesh_cloak_rainbow"
+ item_state = "tesh_cloak_rainbow"
+
+/obj/item/clothing/suit/storage/seromi/cloak/standard/orange
+ name = "orange cloak"
+ icon_state = "tesh_cloak_on"
+ item_state = "tesh_cloak_on"
+
+/obj/item/clothing/suit/storage/seromi/cloak/standard/dark_retrowave
+ name = "dark aesthetic cloak"
+ icon_state = "tesh_cloak_dretrowave"
+ item_state = "tesh_cloak_dretrowave"
+
+/obj/item/clothing/suit/storage/seromi/cloak/standard/black_glow
+ name = "black and glowing cloak"
+ icon_state = "tesh_cloak_bglowing"
+ item_state = "tesh_cloak_bglowing"
+
+
+// Job Cloaks
/obj/item/clothing/suit/storage/seromi/cloak/jobs
icon = 'icons/mob/species/seromi/deptcloak.dmi'
icon_override = 'icons/mob/species/seromi/deptcloak.dmi'
+/obj/item/clothing/suit/storage/seromi/cloak/jobs/cap
+ name = "facility director cloak"
+ desc = "A soft Teshari cloak made for the Facility Director"
+ icon_state = "tesh_cloak_cap"
+ item_state = "tesh_cloak_cap"
+
+//Cargo
+
+/obj/item/clothing/suit/storage/seromi/cloak/jobs/qm
+ name = "quartermaster cloak"
+ desc = "A soft Teshari cloak made for the Quartermaster"
+ icon_state = "tesh_cloak_qm"
+ item_state = "tesh_cloak_qm"
+
/obj/item/clothing/suit/storage/seromi/cloak/jobs/cargo
name = "cargo cloak"
desc = "A soft Teshari cloak made for the Cargo department"
@@ -149,11 +161,7 @@
icon_state = "tesh_cloak_mine"
item_state = "tesh_cloak_mine"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/command
- name = "command cloak"
- desc = "A soft Teshari cloak made for the Command department"
- icon_state = "tesh_cloak_comm"
- item_state = "tesh_cloak_comm"
+//Engineering
/obj/item/clothing/suit/storage/seromi/cloak/jobs/ce
name = "cheif engineer cloak"
@@ -161,7 +169,7 @@
icon_state = "tesh_cloak_ce"
item_state = "tesh_cloak_ce"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/eningeer
+/obj/item/clothing/suit/storage/seromi/cloak/jobs/engineer
name = "engineering cloak"
desc = "A soft Teshari cloak made for the Engineering department"
icon_state = "tesh_cloak_engie"
@@ -173,6 +181,8 @@
icon_state = "tesh_cloak_atmos"
item_state = "tesh_cloak_atmos"
+//Medical
+
/obj/item/clothing/suit/storage/seromi/cloak/jobs/cmo
name = "chief medical officer cloak"
desc = "A soft Teshari cloak made the Cheif Medical Officer"
@@ -203,6 +213,20 @@
icon_state = "tesh_cloak_para"
item_state = "tesh_cloak_para"
+/obj/item/clothing/suit/storage/seromi/cloak/jobs/psych
+ name = " psychiatrist cloak"
+ desc = "A soft Teshari cloak made for the Psychiatrist"
+ icon_state = "tesh_cloak_psych"
+ item_state = "tesh_cloak_psych"
+
+//Science
+
+/obj/item/clothing/suit/storage/seromi/cloak/jobs/rd
+ name = "research director cloak"
+ desc = "A soft Teshari cloak made for the Research Director"
+ icon_state = "tesh_cloak_rd"
+ item_state = "tesh_cloak_rd"
+
/obj/item/clothing/suit/storage/seromi/cloak/jobs/sci
name = "scientist cloak"
desc = "A soft Teshari cloak made for the Science department"
@@ -215,34 +239,46 @@
icon_state = "tesh_cloak_robo"
item_state = "tesh_cloak_robo"
+//Security
+
+/obj/item/clothing/suit/storage/seromi/cloak/jobs/hos
+ name = "head of security cloak"
+ desc = "A soft Teshari cloak made for the Head of Security"
+ icon_state = "tesh_cloak_hos"
+ item_state = "tesh_cloak_hos"
+
/obj/item/clothing/suit/storage/seromi/cloak/jobs/sec
name = "security cloak"
desc = "A soft Teshari cloak made for the Security department"
icon_state = "tesh_cloak_sec"
item_state = "tesh_cloak_sec"
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/qm
- name = "quartermaster cloak"
- desc = "A soft Teshari cloak made for the Quartermaster"
- icon_state = "tesh_cloak_qm"
- item_state = "tesh_cloak_qm"
-
-/obj/item/clothing/suit/storage/seromi/cloak/jobs/service
- name = "service cloak"
- desc = "A soft Teshari cloak made for the Service department"
- icon_state = "tesh_cloak_serv"
- item_state = "tesh_cloak_serv"
-
/obj/item/clothing/suit/storage/seromi/cloak/jobs/iaa
name = "internal affairs cloak"
desc = "A soft Teshari cloak made for the Internal Affairs Agent"
icon_state = "tesh_cloak_iaa"
item_state = "tesh_cloak_iaa"
+//Service
+
+/obj/item/clothing/suit/storage/seromi/cloak/jobs/hop
+ name = "head of personnel cloak"
+ desc = "A soft Teshari cloak made for the Head of Personnel"
+ icon_state = "tesh_cloak_hop"
+ item_state = "tesh_cloak_hop"
+
+/obj/item/clothing/suit/storage/seromi/cloak/jobs/service
+ name = "service cloak"
+ desc = "A soft Teshari cloak made for the Service department"
+ icon_state = "tesh_cloak_serv"
+ item_state = "tesh_cloak_serv"
+
+//Misc
+
/obj/item/clothing/suit/storage/toggle/labcoat/teshari
name = "Teshari labcoat"
desc = "A small suit that protects against minor chemical spills. This one is a good fit on Teshari."
- icon = 'icons/mob/species/seromi/suit.dmi'
+ icon = 'icons/obj/clothing/species/seromi/suits.dmi'
icon_override = 'icons/mob/species/seromi/suit.dmi'
icon_state = "tesh_labcoat"
species_restricted = list(SPECIES_TESHARI)
@@ -256,7 +292,6 @@
body_parts_covered = UPPER_TORSO|ARMS|LOWER_TORSO|LEGS
species_restricted = list(SPECIES_TESHARI)
-
/obj/item/clothing/suit/storage/toggle/tesharicoatwhite
name = "small coat"
desc = "A coat that seems too small to fit a human."
@@ -264,4 +299,567 @@
icon_override = 'icons/mob/species/seromi/suit.dmi'
icon_state = "tesharicoatwhite"
body_parts_covered = UPPER_TORSO|ARMS|LOWER_TORSO|LEGS
- species_restricted = list(SPECIES_TESHARI)
\ No newline at end of file
+ species_restricted = list(SPECIES_TESHARI)
+
+//Hooded teshari cloaks
+/obj/item/clothing/suit/storage/hooded/teshari
+ name = "Hooded Teshari Cloak"
+ desc = "A soft teshari cloak with an added hood."
+ icon_override = 'icons/mob/species/seromi/teshari_hood.dmi'
+ icon = 'icons/mob/species/seromi/teshari_hood.dmi'
+ icon_state = "tesh_hcloak_bo"
+ item_state_slots = list(slot_r_hand_str = "tesh_hcloak_bo", slot_l_hand_str = "tesh_hcloak_bo")
+ body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
+ flags_inv = HIDEHOLSTER|HIDETIE
+ //hooded = 1 Variable no longer exists, hood is now handled by code/modules/clothing/suit/storage/hooded.dm
+ action_button_name = "Toggle Cloak Hood"
+ hoodtype = /obj/item/clothing/head/tesh_hood
+ allowed = list (/obj/item/weapon/pen, /obj/item/weapon/paper, /obj/item/device/flashlight,/obj/item/weapon/tank/emergency/oxygen, /obj/item/weapon/storage/fancy/cigarettes, /obj/item/weapon/storage/box/matches, /obj/item/weapon/reagent_containers/food/drinks/flask)
+
+/obj/item/clothing/head/tesh_hood
+ name = "Cloak Hood"
+ desc = "A hood attached to a teshari cloak."
+ icon_override = 'icons/mob/species/seromi/teshari_hood.dmi'
+ icon = 'icons/mob/species/seromi/teshari_hood.dmi'
+ icon_state = "tesh_hood_bo"
+ item_state_slots = list(slot_r_hand_str = "tesh_hood_bo", slot_l_hand_str = "tesh_hood_bo")
+ flags_inv = BLOCKHAIR
+ body_parts_covered = HEAD
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_orange
+ name = "black and orange hooded cloak"
+ icon_state = "tesh_hcloak_bo"
+ item_state = "tesh_hcloak_bo"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_orange
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_grey
+ name = "black and grey hooded cloak"
+ icon_state = "tesh_hcloak_bg"
+ item_state = "tesh_hcloak_bg"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_grey
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_midgrey
+ name = "black and medium grey hooded cloak"
+ icon_state = "tesh_hcloak_bmg"
+ item_state = "tesh_hcloak_bmg"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_midgrey
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_lightgrey
+ name = "black and light grey hooded cloak"
+ icon_state = "tesh_hcloak_blg"
+ item_state = "tesh_hcloak_blg"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_lightgrey
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_white
+ name = "black and white hooded cloak"
+ icon_state = "tesh_hcloak_bw"
+ item_state = "tesh_hcloak_bw"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_white
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_red
+ name = "black and red hooded cloak"
+ icon_state = "tesh_hcloak_br"
+ item_state = "tesh_hcloak_br"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_red
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black
+ name = "black hooded cloak"
+ icon_state = "tesh_hcloak_bn"
+ item_state = "tesh_hcloak_bn"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_yellow
+ name = "black and yellow hooded cloak"
+ icon_state = "tesh_hcloak_by"
+ item_state = "tesh_hcloak_by"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_yellow
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_green
+ name = "black and green hooded cloak"
+ icon_state = "tesh_hcloak_bgr"
+ item_state = "tesh_hcloak_bgr"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_green
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_blue
+ name = "black and blue hooded cloak"
+ icon_state = "tesh_hcloak_bbl"
+ item_state = "tesh_hcloak_bbl"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_blue
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_purple
+ name = "black and purple hooded cloak"
+ icon_state = "tesh_hcloak_bp"
+ item_state = "tesh_hcloak_bp"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_purple
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_pink
+ name = "black and pink hooded cloak"
+ icon_state = "tesh_hcloak_bpi"
+ item_state = "tesh_hcloak_bpi"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_pink
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/black_brown
+ name = "black and brown hooded cloak"
+ icon_state = "tesh_hcloak_bbr"
+ item_state = "tesh_hcloak_bbr"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/black_brown
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/orange_grey
+ name = "orange and grey hooded cloak"
+ icon_state = "tesh_hcloak_og"
+ item_state = "tesh_hcloak_og"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/orange_grey
+
+///obj/item/clothing/suit/storage/hooded/teshari/standard/rainbow
+// name = "rainbow hooded cloak"
+// icon_state = "tesh_hcloak_rainbow"
+// item_state = "tesh_hcloak_rainbow"
+// hoodtype = /obj/item/clothing/head/tesh_hood/standard/rainbow
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/lightgrey_grey
+ name = "light grey and grey hooded cloak"
+ icon_state = "tesh_hcloak_lgg"
+ item_state = "tesh_hcloak_lgg"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/lightgrey_grey
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/white_grey
+ name = "white and grey hooded cloak"
+ icon_state = "tesh_hcloak_wg"
+ item_state = "tesh_hcloak_wg"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/white_grey
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/red_grey
+ name = "red and grey hooded cloak"
+ icon_state = "tesh_hcloak_rg"
+ item_state = "tesh_hcloak_rg"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/red_grey
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/orange
+ name = "orange hooded cloak"
+ icon_state = "tesh_hcloak_on"
+ item_state = "tesh_hcloak_on"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/orange
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/yellow_grey
+ name = "yellow and grey hooded cloak"
+ icon_state = "tesh_hcloak_yg"
+ item_state = "tesh_hcloak_yg"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/yellow_grey
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/green_grey
+ name = "green and grey hooded cloak"
+ icon_state = "tesh_hcloak_gg"
+ item_state = "tesh_hcloak_gg"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/green_grey
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/blue_grey
+ name = "blue and grey hooded cloak"
+ icon_state = "tesh_hcloak_blug"
+ item_state = "tesh_hcloak_blug"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/blue_grey
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/purple_grey
+ name = "purple and grey hooded cloak"
+ icon_state = "tesh_hcloak_pg"
+ item_state = "tesh_hcloak_pg"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/purple_grey
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/pink_grey
+ name = "pink and grey hooded cloak"
+ icon_state = "tesh_hcloak_pig"
+ item_state = "tesh_hcloak_pig"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/pink_grey
+
+/obj/item/clothing/suit/storage/hooded/teshari/standard/brown_grey
+ name = "brown and grey hooded cloak"
+ icon_state = "tesh_hcloak_brg"
+ item_state = "tesh_hcloak_brg"
+ hoodtype = /obj/item/clothing/head/tesh_hood/standard/brown_grey
+
+//The actual hoods
+/obj/item/clothing/head/tesh_hood/standard/black_orange
+ name = "black and orange cloak hood"
+ icon_state = "tesh_hood_bo"
+ item_state = "tesh_hood_bo"
+
+/obj/item/clothing/head/tesh_hood/standard/black_grey
+ name = "black and grey cloak hood"
+ icon_state = "tesh_hood_bg"
+ item_state = "tesh_hood_bg"
+
+/obj/item/clothing/head/tesh_hood/standard/black_midgrey
+ name = "black and medium grey cloak hood"
+ icon_state = "tesh_hood_bmg"
+ item_state = "tesh_hood_bmg"
+
+/obj/item/clothing/head/tesh_hood/standard/black_lightgrey
+ name = "black and light grey cloak hood"
+ icon_state = "tesh_hood_blg"
+ item_state = "tesh_hood_blg"
+
+/obj/item/clothing/head/tesh_hood/standard/black_white
+ name = "black and white cloak hood"
+ icon_state = "tesh_hood_bw"
+ item_state = "tesh_hood_bw"
+
+/obj/item/clothing/head/tesh_hood/standard/black_red
+ name = "black and red cloak hood"
+ icon_state = "tesh_hood_br"
+ item_state = "tesh_hood_br"
+
+/obj/item/clothing/head/tesh_hood/standard/black
+ name = "black cloak hood"
+ icon_state = "tesh_hood_bn"
+ item_state = "tesh_hood_bn"
+
+/obj/item/clothing/head/tesh_hood/standard/black_yellow
+ name = "black and yellow cloak hood"
+ icon_state = "tesh_hood_by"
+ item_state = "tesh_hood_by"
+
+/obj/item/clothing/head/tesh_hood/standard/black_green
+ name = "black and green cloak hood"
+ icon_state = "tesh_hood_bgr"
+ item_state = "tesh_hood_bgr"
+
+/obj/item/clothing/head/tesh_hood/standard/black_blue
+ name = "black and blue cloak hood"
+ icon_state = "tesh_hood_bbl"
+ item_state = "tesh_hood_bbl"
+
+/obj/item/clothing/head/tesh_hood/standard/black_purple
+ name = "black and purple cloak hood"
+ icon_state = "tesh_hood_bp"
+ item_state = "tesh_hood_bp"
+
+/obj/item/clothing/head/tesh_hood/standard/black_pink
+ name = "black and pink cloak hood"
+ icon_state = "tesh_hood_bpi"
+ item_state = "tesh_hood_bpi"
+
+/obj/item/clothing/head/tesh_hood/standard/black_brown
+ name = "black and brown cloak hood"
+ icon_state = "tesh_hood_bbr"
+ item_state = "tesh_hood_bbr"
+
+/obj/item/clothing/head/tesh_hood/standard/orange_grey
+ name = "orange and grey cloak hood"
+ icon_state = "tesh_hood_og"
+ item_state = "tesh_hood_og"
+
+/obj/item/clothing/head/tesh_hood/standard/rainbow
+ name = "rainbow cloak hood"
+ icon_state = "tesh_hood_rainbow"
+ item_state = "tesh_hood_rainbow"
+
+/obj/item/clothing/head/tesh_hood/standard/lightgrey_grey
+ name = "light grey and grey cloak hood"
+ icon_state = "tesh_hood_lgg"
+ item_state = "tesh_hood_lgg"
+
+/obj/item/clothing/head/tesh_hood/standard/white_grey
+ name = "white and grey cloak hood"
+ icon_state = "tesh_hood_wg"
+ item_state = "tesh_hood_wg"
+
+/obj/item/clothing/head/tesh_hood/standard/red_grey
+ name = "red and grey cloak hood"
+ icon_state = "tesh_hood_rg"
+ item_state = "tesh_hood_rg"
+
+/obj/item/clothing/head/tesh_hood/standard/orange
+ name = "orange cloak hood"
+ icon_state = "tesh_hood_on"
+ item_state = "tesh_hood_on"
+
+/obj/item/clothing/head/tesh_hood/standard/yellow_grey
+ name = "yellow and grey cloak hood"
+ icon_state = "tesh_hood_yg"
+ item_state = "tesh_hood_yg"
+
+/obj/item/clothing/head/tesh_hood/standard/green_grey
+ name = "green and grey cloak hood"
+ icon_state = "tesh_hood_gg"
+ item_state = "tesh_hood_gg"
+
+/obj/item/clothing/head/tesh_hood/standard/blue_grey
+ name = "blue and grey cloak hood"
+ icon_state = "tesh_hood_blug"
+ item_state = "tesh_hood_blug"
+
+/obj/item/clothing/head/tesh_hood/standard/purple_grey
+ name = "purple and grey cloak hood"
+ icon_state = "tesh_hood_pg"
+ item_state = "tesh_hood_pg"
+
+/obj/item/clothing/head/tesh_hood/standard/pink_grey
+ name = "pink and grey cloak hood"
+ icon_state = "tesh_hood_pig"
+ item_state = "tesh_hood_pig"
+
+/obj/item/clothing/head/tesh_hood/standard/brown_grey
+ name = "brown and grey cloak hood"
+ icon_state = "tesh_hood_brg"
+ item_state = "tesh_hood_brg"
+
+//Belted cloaks
+/obj/item/clothing/suit/storage/seromi/beltcloak
+ name = "belted cloak"
+ desc = "A more ridged and stylized Teshari cloak."
+ icon = 'icons/mob/species/seromi/teshari_cloak.dmi'
+ icon_override = 'icons/mob/species/seromi/teshari_cloak.dmi'
+ icon_state = "tesh_beltcloak_bo"
+ item_state = "tesh_beltcloak_bo"
+ species_restricted = list(SPECIES_TESHARI)
+ body_parts_covered = UPPER_TORSO|ARMS
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_orange
+ name = "black belted cloak (orange)"
+ icon_state = "tesh_beltcloak_bo"
+ item_state = "tesh_beltcloak_bo"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_grey
+ name = "black belted cloak"
+ icon_state = "tesh_beltcloak_bg"
+ item_state = "tesh_beltcloak_bg"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_midgrey
+ name = "black belted cloak (medium grey)"
+ icon_state = "tesh_beltcloak_bmg"
+ item_state = "tesh_beltcloak_bmg"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_lightgrey
+ name = "black belted cloak (light grey)"
+ icon_state = "tesh_beltcloak_blg"
+ item_state = "tesh_beltcloak_blg"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_white
+ name = "black belted cloak (white)"
+ icon_state = "tesh_beltcloak_bw"
+ item_state = "tesh_beltcloak_bw"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_red
+ name = "black belted cloak (red)"
+ icon_state = "tesh_beltcloak_br"
+ item_state = "tesh_beltcloak_br"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black
+ name = "black simple belted cloak"
+ icon_state = "tesh_beltcloak_bn"
+ item_state = "tesh_beltcloak_bn"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_yellow
+ name = "black belted cloak (yellow)"
+ icon_state = "tesh_beltcloak_by"
+ item_state = "tesh_beltcloak_by"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_green
+ name = "black belted cloak (green)"
+ icon_state = "tesh_beltcloak_bgr"
+ item_state = "tesh_beltcloak_bgr"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_blue
+ name = "black belted cloak (blue)"
+ icon_state = "tesh_beltcloak_bbl"
+ item_state = "tesh_beltcloak_bbl"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_purple
+ name = "black belted cloak (purple)"
+ icon_state = "tesh_beltcloak_bp"
+ item_state = "tesh_beltcloak_bp"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_pink
+ name = "black belted cloak (pink)"
+ icon_state = "tesh_beltcloak_bpi"
+ item_state = "tesh_beltcloak_bpi"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/black_brown
+ name = "black belted cloak (brown)"
+ icon_state = "tesh_beltcloak_bbr"
+ item_state = "tesh_beltcloak_bbr"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/orange_grey
+ name = "orange belted cloak"
+ icon_state = "tesh_beltcloak_og"
+ item_state = "tesh_beltcloak_og"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/rainbow
+ name = "rainbow belted cloak"
+ icon_state = "tesh_beltcloak_rainbow"
+ item_state = "tesh_beltcloak_rainbow"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/lightgrey_grey
+ name = "light grey belted cloak"
+ icon_state = "tesh_beltcloak_lgg"
+ item_state = "tesh_beltcloak_lgg"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/white_grey
+ name = "white belted cloak"
+ icon_state = "tesh_beltcloak_wg"
+ item_state = "tesh_beltcloak_wg"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/red_grey
+ name = "red belted cloak"
+ icon_state = "tesh_beltcloak_rg"
+ item_state = "tesh_beltcloak_rg"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/orange
+ name = "orange simple belted cloak"
+ icon_state = "tesh_beltcloak_on"
+ item_state = "tesh_beltcloak_on"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/yellow_grey
+ name = "yellow belted cloak"
+ icon_state = "tesh_beltcloak_yg"
+ item_state = "tesh_beltcloak_yg"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/green_grey
+ name = "green belted cloak"
+ icon_state = "tesh_beltcloak_gg"
+ item_state = "tesh_beltcloak_gg"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/blue_grey
+ name = "blue belted cloak"
+ icon_state = "tesh_beltcloak_blug"
+ item_state = "tesh_beltcloak_blug"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/purple_grey
+ name = "purple belted cloak"
+ icon_state = "tesh_beltcloak_pg"
+ item_state = "tesh_beltcloak_pg"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/pink_grey
+ name = "pink belted cloak"
+ icon_state = "tesh_beltcloak_pig"
+ item_state = "tesh_beltcloak_pig"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/standard/brown_grey
+ name = "brown belted cloak"
+ icon_state = "tesh_beltcloak_brg"
+ item_state = "tesh_beltcloak_brg"
+
+//Belted job cloaks
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs
+ icon = 'icons/mob/species/seromi/deptcloak.dmi'
+ icon_override = 'icons/mob/species/seromi/deptcloak.dmi'
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cargo
+ name = "cargo belted cloak"
+ desc = "A soft Teshari cloak made for the Cargo department"
+ icon_state = "tesh_beltcloak_car"
+ item_state = "tesh_beltcloak_car"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/mining
+ name = "mining belted cloak"
+ desc = "A soft Teshari cloak made for Mining"
+ icon_state = "tesh_beltcloak_mine"
+ item_state = "tesh_beltcloak_mine"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/command
+ name = "command belted cloak"
+ desc = "A soft Teshari cloak made for the Command department"
+ icon_state = "tesh_beltcloak_comm"
+ item_state = "tesh_beltcloak_comm"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/ce
+ name = "chief engineer belted cloak"
+ desc = "A soft Teshari cloak made the Chief Engineer"
+ icon_state = "tesh_beltcloak_ce"
+ item_state = "tesh_beltcloak_ce"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/engineer
+ name = "engineering belted cloak"
+ desc = "A soft Teshari cloak made for the Engineering department"
+ icon_state = "tesh_beltcloak_engie"
+ item_state = "tesh_beltcloak_engie"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/atmos
+ name = "atmospherics belted cloak"
+ desc = "A soft Teshari cloak made for the Atmospheric Technician"
+ icon_state = "tesh_beltcloak_atmos"
+ item_state = "tesh_beltcloak_atmos"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cmo
+ name = "chief medical officer belted cloak"
+ desc = "A soft Teshari cloak made the Chief Medical Officer"
+ icon_state = "tesh_beltcloak_cmo"
+ item_state = "tesh_beltcloak_cmo"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/medical
+ name = "medical belted cloak"
+ desc = "A soft Teshari cloak made for the Medical department"
+ icon_state = "tesh_beltcloak_doc"
+ item_state = "tesh_beltcloak_doc"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/chemistry
+ name = "chemist belted cloak"
+ desc = "A soft Teshari cloak made for the Chemist"
+ icon_state = "tesh_beltcloak_vrem"
+ item_state = "tesh_beltcloak_vrem"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/viro
+ name = "virologist belted cloak"
+ desc = "A soft Teshari cloak made for the Virologist"
+ icon_state = "tesh_beltcloak_viro"
+ item_state = "tesh_beltcloak_viro"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/para
+ name = "paramedic belted cloak"
+ desc = "A soft Teshari cloak made for the Paramedic"
+ icon_state = "tesh_beltcloak_para"
+ item_state = "tesh_beltcloak_para"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/sci
+ name = "scientist belted cloak"
+ desc = "A soft Teshari cloak made for the Science department"
+ icon_state = "tesh_beltcloak_sci"
+ item_state = "tesh_beltcloak_sci"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/robo
+ name = "roboticist belted cloak"
+ desc = "A soft Teshari cloak made for the Roboticist"
+ icon_state = "tesh_beltcloak_robo"
+ item_state = "tesh_beltcloak_robo"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/sec
+ name = "security belted cloak"
+ desc = "A soft Teshari cloak made for the Security department"
+ icon_state = "tesh_beltcloak_sec"
+ item_state = "tesh_beltcloak_sec"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/qm
+ name = "quartermaster belted cloak"
+ desc = "A soft Teshari cloak made for the Quartermaster"
+ icon_state = "tesh_beltcloak_qm"
+ item_state = "tesh_beltcloak_qm"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/service
+ name = "service belted cloak"
+ desc = "A soft Teshari cloak made for the Service department"
+ icon_state = "tesh_beltcloak_serv"
+ item_state = "tesh_beltcloak_serv"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/iaa
+ name = "internal affairs belted cloak"
+ desc = "A soft Teshari cloak made for the Internal Affairs Agent"
+ icon_state = "tesh_beltcloak_iaa"
+ item_state = "tesh_beltcloak_iaa"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/wrdn
+ name = "warden belted cloak"
+ desc = "A soft Teshari cloak made for the Warden"
+ icon_state = "tesh_beltcloak_wrdn"
+ item_state = "tesh_beltcloak_wrdn"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/hos
+ name = "security chief belted cloak"
+ desc = "A soft Teshari cloak made for the Head of Security"
+ icon_state = "tesh_beltcloak_hos"
+ item_state = "tesh_beltcloak_hos"
+
+/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/jani
+ name = "janitor belted cloak"
+ desc = "A soft Teshari cloak made for the Janitor"
+ icon_state = "tesh_beltcloak_jani"
+ item_state = "tesh_beltcloak_jani"
+
diff --git a/code/modules/clothing/suits/miscellaneous_vr.dm b/code/modules/clothing/suits/miscellaneous_vr.dm
index dc181579b91..0790002094f 100644
--- a/code/modules/clothing/suits/miscellaneous_vr.dm
+++ b/code/modules/clothing/suits/miscellaneous_vr.dm
@@ -1,6 +1,13 @@
/obj/item/clothing/suit/customs
desc = "A standard SolCom Customs formal jacket."
+/obj/item/clothing/suit/chiton
+ name = "chiton"
+ desc = "A traditional piece of clothing from Greece."
+ icon = 'icons/mob/suit_vr.dmi'
+ icon_state = "chiton"
+ icon_override = 'icons/obj/clothing/suits_vr.dmi' //why won't it work without this WHY GOD PLEASE
+
//HERE BE TAUR RELATED CLOTHES
/*
diff --git a/code/modules/clothing/suits/utility_vr.dm b/code/modules/clothing/suits/utility_vr.dm
index 0da22a69d9a..e225a53eee3 100644
--- a/code/modules/clothing/suits/utility_vr.dm
+++ b/code/modules/clothing/suits/utility_vr.dm
@@ -15,4 +15,18 @@
flags_inv = HIDEHOLSTER
allowed = list(/obj/item/device/analyzer,/obj/item/stack/medical,/obj/item/weapon/dnainjector,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/hypospray,/obj/item/device/healthanalyzer,/obj/item/device/flashlight/pen,/obj/item/weapon/reagent_containers/glass/bottle,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/pill,/obj/item/weapon/storage/pill_bottle,/obj/item/weapon/paper)
armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 50, rad = 0)
- index = 1
\ No newline at end of file
+ index = 1
+
+/obj/item/clothing/head/radiation
+ sprite_sheets = list(
+ SPECIES_TESHARI = 'icons/mob/species/seromi/helmet_vr.dmi',
+ SPECIES_VOX = 'icons/mob/species/vox/head.dmi',
+ SPECIES_WEREBEAST = 'icons/mob/species/werebeast/head.dmi'
+ )
+
+/obj/item/clothing/suit/radiation
+ sprite_sheets = list(
+ SPECIES_TESHARI = 'icons/mob/species/seromi/suit_vr.dmi',
+ SPECIES_VOX = 'icons/mob/species/vox/suit.dmi',
+ SPECIES_WEREBEAST = 'icons/mob/species/werebeast/suit.dmi'
+ )
diff --git a/code/modules/clothing/under/accessories/accessory_vr.dm b/code/modules/clothing/under/accessories/accessory_vr.dm
index a0a78a79de8..c57656f80cc 100644
--- a/code/modules/clothing/under/accessories/accessory_vr.dm
+++ b/code/modules/clothing/under/accessories/accessory_vr.dm
@@ -12,6 +12,37 @@
item_state = "choker_cst"
overlay_state = "choker_cst"
var/customized = 0
+ var/icon_previous_override
+ sprite_sheets = list(
+ SPECIES_TESHARI = 'icons/mob/species/seromi/ties_vr.dmi'
+ )
+
+//Forces different sprite sheet on equip
+/obj/item/clothing/accessory/choker/New()
+ ..()
+ icon_previous_override = icon_override
+
+/obj/item/clothing/accessory/choker/equipped() //Solution for race-specific sprites for an accessory which is also a suit. Suit icons break if you don't use icon override which then also overrides race-specific sprites.
+ ..()
+ setUniqueSpeciesSprite()
+
+/obj/item/clothing/accessory/choker/proc/setUniqueSpeciesSprite()
+ var/mob/living/carbon/human/H = loc
+ if(!istype(H) && istype(has_suit) && ishuman(has_suit.loc))
+ H = has_suit.loc
+ if(sprite_sheets && istype(H) && H.species.get_bodytype(H) && (H.species.get_bodytype(H) in sprite_sheets))
+ icon_override = sprite_sheets[H.species.get_bodytype(H)]
+ update_clothing_icon()
+
+/obj/item/clothing/accessory/choker/on_attached(var/obj/item/clothing/S, var/mob/user)
+ if(!istype(S))
+ return
+ has_suit = S
+ setUniqueSpeciesSprite()
+ ..(S, user)
+
+/obj/item/clothing/accessory/choker/dropped()
+ icon_override = icon_previous_override
/obj/item/clothing/accessory/choker/attack_self(mob/user as mob)
if(!customized)
@@ -31,6 +62,37 @@
icon_override = 'icons/mob/ties_vr.dmi'
icon_state = "collar_blk"
var/writtenon = 0
+ var/icon_previous_override
+ sprite_sheets = list(
+ SPECIES_TESHARI = 'icons/mob/species/seromi/ties_vr.dmi'
+ )
+
+//Forces different sprite sheet on equip
+/obj/item/clothing/accessory/collar/New()
+ ..()
+ icon_previous_override = icon_override
+
+/obj/item/clothing/accessory/collar/equipped() //Solution for race-specific sprites for an accessory which is also a suit. Suit icons break if you don't use icon override which then also overrides race-specific sprites.
+ ..()
+ setUniqueSpeciesSprite()
+
+/obj/item/clothing/accessory/collar/proc/setUniqueSpeciesSprite()
+ var/mob/living/carbon/human/H = loc
+ if(!istype(H) && istype(has_suit) && ishuman(has_suit.loc))
+ H = has_suit.loc
+ if(sprite_sheets && istype(H) && H.species.get_bodytype(H) && (H.species.get_bodytype(H) in sprite_sheets))
+ icon_override = sprite_sheets[H.species.get_bodytype(H)]
+ update_clothing_icon()
+
+/obj/item/clothing/accessory/collar/on_attached(var/obj/item/clothing/S, var/mob/user)
+ if(!istype(S))
+ return
+ has_suit = S
+ setUniqueSpeciesSprite()
+ ..(S, user)
+
+/obj/item/clothing/accessory/collar/dropped()
+ icon_override = icon_previous_override
/obj/item/clothing/accessory/collar/silver
name = "Silver tag collar"
diff --git a/code/modules/clothing/under/accessories/storage_vr.dm b/code/modules/clothing/under/accessories/storage_vr.dm
new file mode 100644
index 00000000000..ac573a35643
--- /dev/null
+++ b/code/modules/clothing/under/accessories/storage_vr.dm
@@ -0,0 +1,5 @@
+/obj/item/clothing/accessory/storage/bluespace
+ name = "bluespace badge"
+ desc = "A small, shielded device capable of holding a number of items in it. Used for carrying items discreetly."
+ icon_state = "solbadge"
+ item_state = "badge"
\ No newline at end of file
diff --git a/code/modules/clothing/under/xenos/seromi.dm b/code/modules/clothing/under/xenos/seromi.dm
index 71f00f293a4..0593f78f72f 100644
--- a/code/modules/clothing/under/xenos/seromi.dm
+++ b/code/modules/clothing/under/xenos/seromi.dm
@@ -77,6 +77,60 @@
name = "small blue and grey dress"
icon_state = "teshari_bluegreydress"
+// Worksuits
+/obj/item/clothing/under/seromi/undercoat/standard/worksuit
+ name = "small black and red worksuit"
+ icon_state = "teshari_black_red_worksuit"
+ item_state = "teshari_black_red_worksuit"
+ desc = "A small worksuit designed for a Teshari"
+
+/obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackpurple
+ name = "small black and purple worksuit"
+ icon_state = "teshari_black_purple_worksuit"
+ item_state = "teshari_black_purple_worksuit"
+
+/obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackorange
+ name = "small black and orange worksuit"
+ icon_state = "teshari_black_orange_worksuit"
+ item_state = "teshari_black_orange_worksuit"
+
+/obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackblue
+ name = "small black and blue worksuit"
+ icon_state = "teshari_black_blue_worksuit"
+ item_state = "teshari_black_blue_worksuit"
+
+/obj/item/clothing/under/seromi/undercoat/standard/worksuit/blackgreen
+ name = "small black and greeen worksuit"
+ icon_state = "teshari_black_green_worksuit"
+ item_state = "teshari_black_green_worksuit"
+
+/obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitered
+ name = "small white and red worksuit"
+ icon_state = "teshari_white_red_worksuit"
+ item_state = "teshari_white_red_worksuit"
+
+/obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitepurple
+ name = "small white and purple worksuit"
+ icon_state = "teshari_white_purple_worksuit"
+ item_state = "teshari_white_purple_worksuit"
+
+/obj/item/clothing/under/seromi/undercoat/standard/worksuit/whiteorange
+ name = "small white and orange worksuit"
+ icon_state = "teshari_white_orange_worksuit"
+ item_state = "teshari_white_orange_worksuit"
+
+/obj/item/clothing/under/seromi/undercoat/standard/worksuit/whiteblue
+ name = "small white and blue worksuit"
+ icon_state = "teshari_white_blue_worksuit"
+ item_state = "teshari_white_blue_worksuit"
+
+/obj/item/clothing/under/seromi/undercoat/standard/worksuit/whitegreen
+ name = "small white and green worksuit"
+ icon_state = "teshari_white_green_worksuit"
+ item_state = "teshari_white_green_worksuit"
+
+//Standard Undercoats
+
/obj/item/clothing/under/seromi/undercoat
name = "Undercoat"
desc = "A Teshari traditional garb, with a modern twist! Made of micro and nanofibres to make it light and billowy, perfect for going fast and stylishly!"
@@ -96,16 +150,6 @@
icon_state = "tesh_uniform_bg"
item_state = "tesh_uniform_bg"
-/obj/item/clothing/under/seromi/undercoat/standard/black_midgrey
- name = "black and medium grey undercoat"
- icon_state = "tesh_uniform_bmg"
- item_state = "tesh_uniform_bmg"
-
-/obj/item/clothing/under/seromi/undercoat/standard/black_lightgrey
- name = "black and light grey undercoat"
- icon_state = "tesh_uniform_blg"
- item_state = "tesh_uniform_blg"
-
/obj/item/clothing/under/seromi/undercoat/standard/black_white
name = "black and white undercoat"
icon_state = "tesh_uniform_bw"
@@ -211,93 +255,23 @@
icon_state = "tesh_uniform_brg"
item_state = "tesh_uniform_brg"
-/obj/item/clothing/under/seromi/undercoat/standard/blackredworksuit
- name = "small black and red worksuit"
- icon_state = "teshari_black_red_worksuit"
- item_state = "teshari_black_red_worksuit"
- desc = "A small worksuit designed for a Teshari"
-
-/obj/item/clothing/under/seromi/undercoat/standard/blackpurpleworksuit
- name = "small black and purple worksuit"
- icon_state = "teshari_black_purple_worksuit"
- item_state = "teshari_black_purple_worksuit"
- desc = "A small worksuit designed for a Teshari"
-
-/obj/item/clothing/under/seromi/undercoat/standard/blackpurpleworksuit
- name = "small black and orange worksuit"
- icon_state = "teshari_black_orange_worksuit"
- item_state = "teshari_black_orange_worksuit"
- desc = "A small worksuit designed for a Teshari"
-
-/obj/item/clothing/under/seromi/undercoat/standard/blackblueworksuit
- name = "small black and blue worksuit"
- icon_state = "teshari_black_blue_worksuit"
- item_state = "teshari_black_blue_worksuit"
- desc = "A small worksuit designed for a Teshari"
-
-/obj/item/clothing/under/seromi/undercoat/standard/blackgreenworksuit
- name = "small black and greeen worksuit"
- icon_state = "teshari_black_green_worksuit"
- item_state = "teshari_black_green_worksuit"
- desc = "A small worksuit designed for a Teshari"
-
-/obj/item/clothing/under/seromi/undercoat/standard/whiteredworksuit
- name = "small white and red worksuit"
- icon_state = "teshari_white_red_worksuit"
- item_state = "teshari_white_red_worksuit"
- desc = "A small worksuit designed for a Teshari"
-
-/obj/item/clothing/under/seromi/undercoat/standard/whitepurpleworksuit
- name = "small white and purple worksuit"
- icon_state = "teshari_white_purple_worksuit"
- item_state = "teshari_white_purple_worksuit"
- desc = "A small worksuit designed for a Teshari"
-
-/obj/item/clothing/under/seromi/undercoat/standard/whiteorangeworksuit
- name = "small white and orange worksuit"
- icon_state = "teshari_white_orange_worksuit"
- item_state = "teshari_white_orange_worksuit"
- desc = "A small worksuit designed for a Teshari"
-
-/obj/item/clothing/under/seromi/undercoat/standard/whiteblueworksuit
- name = "small white and blue worksuit"
- icon_state = "teshari_white_blue_worksuit"
- item_state = "teshari_white_blue_worksuit"
- desc = "A small worksuit designed for a Teshari"
-
-/obj/item/clothing/under/seromi/undercoat/standard/whitegreenworksuit
- name = "small white and green worksuit"
- icon_state = "teshari_white_green_worksuit"
- item_state = "teshari_white_green_worksuit"
- desc = "A small worksuit designed for a Teshari"
+//Job Undercoats
/obj/item/clothing/under/seromi/undercoat/jobs
icon = 'icons/mob/species/seromi/deptjacket.dmi'
icon_override = 'icons/mob/species/seromi/deptjacket.dmi'
-/obj/item/clothing/under/seromi/undercoat/jobs/cargo
- name = "cargo undercoat"
- desc = "A traditional Teshari garb made for the Cargo department"
- icon_state = "tesh_uniform_car"
- item_state = "tesh_uniform_car"
+/obj/item/clothing/under/seromi/undercoat/jobs/cap
+ name = "facility director undercoat"
+ desc = "A traditional Teshari garb made for the Facility Director"
+ icon_state = "tesh_uniform_cap"
+ item_state = "tesh_uniform_cap"
-/obj/item/clothing/under/seromi/undercoat/jobs/mining
- name = "mining undercoat"
- desc = "A traditional Teshari garb made for Mining"
- icon_state = "tesh_uniform_mine"
- item_state = "tesh_uniform_mine"
-
-/obj/item/clothing/under/seromi/undercoat/jobs/command
- name = "command undercoat"
- desc = "A traditional Teshari garb made for the Command department"
- icon_state = "tesh_uniform_comm"
- item_state = "tesh_uniform_comm"
-
-/obj/item/clothing/under/seromi/undercoat/jobs/command_g
- name = "command undercoat"
- desc = "A traditional Teshari garb made for the Command department. This one has fancier gold buttons"
- icon_state = "tesh_uniform_comm_g"
- item_state = "tesh_uniform_comm_g"
+/obj/item/clothing/under/seromi/undercoat/jobs/hop
+ name = "head of personnel undercoat"
+ desc = "A traditional Teshari garb made for the Head of Personnel"
+ icon_state = "tesh_uniform_hop"
+ item_state = "tesh_uniform_hop"
/obj/item/clothing/under/seromi/undercoat/jobs/ce
name = "cheif engineer undercoat"
@@ -305,11 +279,17 @@
icon_state = "tesh_uniform_ce"
item_state = "tesh_uniform_ce"
-/obj/item/clothing/under/seromi/undercoat/jobs/ce_w
- name = "cheif engineer undercoat"
- desc = "A traditional Teshari garb made for the Chief Engineer. This one is white"
- icon_state = "tesh_uniform_ce_w"
- item_state = "tesh_uniform_ce_w"
+/obj/item/clothing/under/seromi/undercoat/jobs/hos
+ name = "head of security undercoat"
+ desc = "A traditional Teshari garb made for the Head of Security"
+ icon_state = "tesh_uniform_hos"
+ item_state = "tesh_uniform_hos"
+
+/obj/item/clothing/under/seromi/undercoat/jobs/rd
+ name = "research director undercoat"
+ desc = "A traditional Teshari garb made for the Research Director"
+ icon_state = "tesh_uniform_rd"
+ item_state = "tesh_uniform_rd"
/obj/item/clothing/under/seromi/undercoat/jobs/engineer
name = "engineering undercoat"
@@ -329,6 +309,24 @@
icon_state = "tesh_uniform_cmo"
item_state = "tesh_uniform_cmo"
+/obj/item/clothing/under/seromi/undercoat/jobs/qm
+ name = "quartermaster undercoat"
+ desc = "A traditional Teshari garb made for the Quartermaster"
+ icon_state = "tesh_uniform_qm"
+ item_state = "tesh_uniform_qm"
+
+/obj/item/clothing/under/seromi/undercoat/jobs/cargo
+ name = "cargo undercoat"
+ desc = "A traditional Teshari garb made for the Cargo department"
+ icon_state = "tesh_uniform_car"
+ item_state = "tesh_uniform_car"
+
+/obj/item/clothing/under/seromi/undercoat/jobs/mining
+ name = "mining undercoat"
+ desc = "A traditional Teshari garb made for Mining"
+ icon_state = "tesh_uniform_mine"
+ item_state = "tesh_uniform_mine"
+
/obj/item/clothing/under/seromi/undercoat/jobs/medical
name = "medical undercoat"
desc = "A traditional Teshari garb made for the Medical department"
@@ -347,6 +345,12 @@
icon_state = "tesh_uniform_viro"
item_state = "tesh_uniform_viro"
+/obj/item/clothing/under/seromi/undercoat/jobs/psych
+ name = "psychiatrist undercoat"
+ desc = "A traditional Teshari garb made for the Psychiatrist"
+ icon_state = "tesh_uniform_psych"
+ item_state = "tesh_uniform_psych"
+
/obj/item/clothing/under/seromi/undercoat/jobs/para
name = "paramedic undercoat"
desc = "A traditional Teshari garb made for the Paramedic"
@@ -371,12 +375,6 @@
icon_state = "tesh_uniform_sec"
item_state = "tesh_uniform_sec"
-/obj/item/clothing/under/seromi/undercoat/jobs/qm
- name = "quartermaster undercoat"
- desc = "A traditional Teshari garb made for the Quartermaster"
- icon_state = "tesh_uniform_qm"
- item_state = "tesh_uniform_qm"
-
/obj/item/clothing/under/seromi/undercoat/jobs/service
name = "service undercoat"
desc = "A traditional Teshari garb made for the Service department"
@@ -387,4 +385,4 @@
name = "internal affairs undercoat"
desc = "A traditional Teshari garb made for the Internal Affairs Agent"
icon_state = "tesh_uniform_iaa"
- item_state = "tesh_uniform_iaa"
\ No newline at end of file
+ item_state = "tesh_uniform_iaa"
diff --git a/code/modules/economy/cash_register.dm b/code/modules/economy/cash_register.dm
index 1e065eb0793..8184229c8b6 100644
--- a/code/modules/economy/cash_register.dm
+++ b/code/modules/economy/cash_register.dm
@@ -122,7 +122,7 @@
transaction_purpose = t_purpose
item_list += t_purpose
var/t_amount = round(input("Enter price", "New price") as num)
- if (!t_amount || !Adjacent(usr)) return
+ if (!t_amount || !Adjacent(usr) || t_amount < 0) return
transaction_amount += t_amount
price_list += t_amount
playsound(src, 'sound/machines/twobeep.ogg', 25)
diff --git a/code/modules/events/maintenance_predator_vr.dm b/code/modules/events/maintenance_predator_vr.dm
index 06e9f6e5018..b9b370f7e0d 100644
--- a/code/modules/events/maintenance_predator_vr.dm
+++ b/code/modules/events/maintenance_predator_vr.dm
@@ -1,18 +1,6 @@
/datum/event/maintenance_predator
startWhen = 1
- announceWhen = 50
- endWhen = 100
- var/announceProb = 35
- var/list/possible_mobs = list("Space Bumblebee" = /mob/living/simple_mob/vore/bee,
- "Voracious Lizard" = /mob/living/simple_mob/vore/aggressive/dino,
- "Giant Frog" = /mob/living/simple_mob/vore/aggressive/frog,
- "Giant Rat" = /mob/living/simple_mob/vore/aggressive/rat,
- "Juvenile Solargrub" = /mob/living/simple_mob/vore/solargrub,
- "Red Panda" = /mob/living/simple_mob/vore/redpanda,
- "Fennec" = /mob/living/simple_mob/vore/fennec,
- "Fennix" = /mob/living/simple_mob/vore/fennix,
- "Jelly Blob" = /mob/living/simple_mob/animal/space/jelly,
- "Wolf" = /mob/living/simple_mob/animal/wolf)
+ endWhen = 30
/datum/event/maintenance_predator/start()
@@ -31,44 +19,4 @@
kill() // To prevent fake announcements
return
- var/datum/ghost_query/Q = new /datum/ghost_query/maints_pred()
- var/list/winner = Q.query()
-
- if(winner.len)
- var/mob/observer/dead/D = winner[1]
- var/choice
- var/randomize
- var/finalized = "No"
-
- while(finalized == "No" && D.client)
- choice = input(D,"What type of predator do you want to play as?") as null|anything in possible_mobs
- if(!choice)
- randomize = TRUE
- break
-
- if(choice)
- finalized = alert(D, "Are you sure you want to play as [choice]?","Confirmation","No","Yes")
-
- if(randomize)
- choice = pick(possible_mobs)
-
- var/mobtype = possible_mobs[choice]
- var/mob/living/simple_mob/newPred = new mobtype(get_turf(spawnspot))
- qdel(newPred.ai_holder)
- newPred.ai_holder = null
- newPred.movement_cooldown = 0 // Remove the needless artificial speed cap
- if(D.mind)
- D.mind.transfer_to(newPred)
- to_chat(D, "
You are [newPred] , somehow having gotten aboard the station in search of food. \
- You are wary of environment around you, but you do feel rather peckish. Stick around dark, secluded places to avoid danger or, \
- if you are cute enough, try to make friends with this place's inhabitants. ")
- newPred.ckey = D.ckey
- newPred.visible_message("
[newPred] emerges from somewhere! ")
- else
- kill() // To prevent fake announcements
- return
-
-
-/datum/event/maintenance_predator/announce()
- if(prob(announceProb))
- command_announcement.Announce("Unexpected biosignature detected in the maintenance tunnels of [station_name()].", "Lifesign Alert")
\ No newline at end of file
+ new /obj/structure/ghost_pod/ghost_activated/maintpred(get_turf(spawnspot))
diff --git a/code/modules/events/morph_spawn_vr.dm b/code/modules/events/morph_spawn_vr.dm
index 778526efd90..ad1ea9a9f78 100644
--- a/code/modules/events/morph_spawn_vr.dm
+++ b/code/modules/events/morph_spawn_vr.dm
@@ -1,8 +1,6 @@
/datum/event/morph_spawn
startWhen = 1
- announceWhen = 20
endWhen = 30
- var/announceProb = 50
/datum/event/morph_spawn/start()
@@ -21,27 +19,4 @@
kill() // To prevent fake announcements
return
- var/datum/ghost_query/Q = new /datum/ghost_query/morph()
- var/list/winner = Q.query()
-
- if(winner.len)
- var/mob/living/simple_mob/vore/hostile/morph/newMorph = new /mob/living/simple_mob/vore/hostile/morph(get_turf(spawnspot))
- var/mob/observer/dead/D = winner[1]
- if(D.mind)
- D.mind.transfer_to(newMorph)
- to_chat(D, "
You are a Morph , somehow having gotten aboard the station in your wandering. \
- You are wary of environment around you, but your primal hunger still calls for you to find prey. Seek a convincing disguise, \
- using your amorphous form to traverse vents to find and consume weak prey. ")
- to_chat(D, "
You can use shift + click on objects to disguise yourself as them, but your strikes are nearly useless when you are disguised. \
- You can undisguise yourself by shift + clicking yourself, but disguise being switched, or turned on and off has a short cooldown. You can also ventcrawl, \
- by using alt + click on the vent or scrubber. ")
- newMorph.ckey = D.ckey
- newMorph.visible_message("
A morph appears to crawl out of somewhere. ")
- else
- kill() // To prevent fake announcements
- return
-
-
-/datum/event/morph_spawn/announce()
- if(prob(announceProb))
- command_announcement.Announce("Unknown entitity detected boarding [station_name()]. Exercise extra caution.", "Lifesign Alert", new_sound = 'sound/AI/aliens.ogg')
\ No newline at end of file
+ new /obj/structure/ghost_pod/ghost_activated/morphspawn(get_turf(spawnspot))
\ No newline at end of file
diff --git a/code/modules/food/food/snacks.dm b/code/modules/food/food/snacks.dm
index f5ca36f229f..cbe9ff8f77b 100644
--- a/code/modules/food/food/snacks.dm
+++ b/code/modules/food/food/snacks.dm
@@ -6049,6 +6049,40 @@
reagents.add_reagent("protein", 8)
bitesize = 3
+/obj/item/weapon/reagent_containers/food/snacks/chickennoodlesoup
+ name = "chicken noodle soup"
+ gender = PLURAL
+ desc = "A bright bowl of yellow broth with cuts of meat, noodles and carrots."
+ icon = 'icons/obj/food_custom.dmi'
+ icon_state = "chickennoodlesoup"
+ filling_color = "#ead90c"
+ nutriment_amt = 6
+ nutriment_desc = list("warm soup" = 6)
+ center_of_mass = list("x"=16, "y"=5)
+
+/obj/item/weapon/reagent_containers/food/snacks/chickennoodlesoup/Initialize()
+ . = ..()
+ reagents.add_reagent("protein", 4)
+ reagents.add_reagent("water", 5)
+ bitesize = 6
+
+/obj/item/weapon/reagent_containers/food/snacks/chickennoodlesoup
+ name = "chicken noodle soup"
+ gender = PLURAL
+ desc = "A bright bowl of yellow broth with cuts of meat, noodles and carrots."
+ icon = 'icons/obj/food_custom.dmi'
+ icon_state = "chickennoodlesoup"
+ filling_color = "#ead90c"
+ nutriment_amt = 6
+ nutriment_desc = list("warm soup" = 6)
+ center_of_mass = list("x"=16, "y"=5)
+
+/obj/item/weapon/reagent_containers/food/snacks/chickennoodlesoup/Initialize()
+ . = ..()
+ reagents.add_reagent("protein", 4)
+ reagents.add_reagent("water", 5)
+ bitesize = 6
+
/obj/item/weapon/reagent_containers/food/snacks/chilicheesefries
name = "chili cheese fries"
gender = PLURAL
@@ -6402,3 +6436,161 @@
/obj/item/weapon/reagent_containers/food/snacks/lasagna/Initialize()
..()
reagents.add_reagent("protein", 2) //For meaty things.
+
+/obj/item/weapon/reagent_containers/food/snacks/gigapuddi
+ name = "Astro-Pudding"
+ desc = "A crème caramel of astronomical size."
+ icon = 'icons/obj/food.dmi'
+ icon_state = "gigapuddi"
+ trash = /obj/item/trash/plate
+
+/obj/item/weapon/reagent_containers/food/snacks/gigapuddi/New()
+ ..()
+ reagents.add_reagent("nutriment", 20)
+ bitesize = 2
+
+/obj/item/weapon/reagent_containers/food/snacks/gigapuddi/happy
+ desc = "A crème caramel of astronomical size, made with extra love."
+ icon = 'icons/obj/food.dmi'
+ icon_state = "happypuddi"
+
+/obj/item/weapon/reagent_containers/food/snacks/gigapuddi/anger
+ desc = "A crème caramel of astronomical size, made with extra hate."
+ icon_state = "angerpuddi"
+
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/buchedenoel
+ name = "\improper Buche de Noel"
+ desc = "Yule love it!"
+ icon = 'icons/obj/food.dmi'
+ icon_state = "buche"
+ slice_path = /obj/item/weapon/reagent_containers/food/snacks/bucheslice
+ slices_num = 5
+ w_class = 2
+ trash = /obj/item/trash/tray
+
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/buchedenoel/New()
+ ..()
+ reagents.add_reagent("nutriment", 20)
+ reagents.add_reagent("sugar", 9)
+ reagents.add_reagent("coco", 5)
+ bitesize = 3
+
+/obj/item/weapon/reagent_containers/food/snacks/bucheslice
+ name = "\improper Buche de Noel slice"
+ desc = "A slice of winter magic."
+ icon = 'icons/obj/food.dmi'
+ icon_state = "buche_slice"
+ trash = /obj/item/trash/plate
+ bitesize = 2
+
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/turkey
+ name = "turkey"
+ desc = "Tastes like chicken."
+ icon = 'icons/obj/food.dmi'
+ icon_state = "turkey"
+ slice_path = /obj/item/weapon/reagent_containers/food/snacks/turkeyslice
+ slices_num = 6
+ w_class = 2
+ trash = /obj/item/trash/tray
+
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/turkey/New()
+ ..()
+ reagents.add_reagent("nutriment", 20)
+ reagents.add_reagent("blackpepper", 1)
+ reagents.add_reagent("sodiumchloride", 1)
+ reagents.add_reagent("cornoil", 1)
+ bitesize = 5
+
+/obj/item/weapon/reagent_containers/food/snacks/turkeyslice
+ name = "turkey drumstick"
+ desc = "Forsooth!"
+ icon = 'icons/obj/food.dmi'
+ icon_state = "turkey_drumstick"
+ trash = /obj/item/trash/plate
+ bitesize = 2
+
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/suppermatter
+ name = "suppermatter"
+ desc = "Extremely dense and powerful food."
+ slice_path = /obj/item/weapon/reagent_containers/food/snacks/suppermattershard
+ slices_num = 10
+ icon = 'icons/obj/food.dmi'
+ icon_state = "suppermatter"
+ w_class = 2
+
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/suppermatter/New()
+ ..()
+ reagents.add_reagent("nutriment", 48)
+ bitesize = 12
+ set_light(1.4,2,"#FFFF00")
+
+/obj/item/weapon/reagent_containers/food/snacks/suppermattershard
+ name = "suppermatter shard"
+ desc = "A single portion of power."
+ icon = 'icons/obj/food.dmi'
+ icon_state = "suppermattershard"
+ bitesize = 3
+ trash = null
+
+/obj/item/weapon/reagent_containers/food/snacks/suppermattershard/New()
+ ..()
+ set_light(1.4,1.4,"#FFFF00")
+
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/excitingsuppermatter
+ name = "exciting suppermatter"
+ desc = "Extremely dense, powerful and exciting food!"
+ slice_path = /obj/item/weapon/reagent_containers/food/snacks/excitingsuppermattershard
+ slices_num = 10
+ icon = 'icons/obj/food.dmi'
+ icon_state = "excitingsuppermatter"
+ w_class = 2
+
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/excitingsuppermatter/New()
+ ..()
+ reagents.add_reagent("nutriment", 60)
+ bitesize = 12
+ set_light(1.4,2,"#FF0000")
+
+/obj/item/weapon/reagent_containers/food/snacks/excitingsuppermattershard
+ name = "exciting suppermatter shard"
+ desc = "A single portion of exciting power!"
+ icon = 'icons/obj/food.dmi'
+ icon_state = "excitingsuppermattershard"
+ bitesize = 4
+ trash = null
+
+/obj/item/weapon/reagent_containers/food/snacks/excitingsuppermattershard/New()
+ ..()
+ set_light(1.4,1.4,"#FF0000")
+
+/obj/item/weapon/reagent_containers/food/snacks/omurice
+ name = "omelette rice"
+ desc = "Just like your Japanese animes!"
+ icon = 'icons/obj/food.dmi'
+ icon_state = "omurice"
+ trash = /obj/item/trash/plate
+
+/obj/item/weapon/reagent_containers/food/snacks/omurice/New()
+ ..()
+ reagents.add_reagent("nutriment", 8)
+ bitesize = 1
+
+/obj/item/weapon/reagent_containers/food/snacks/omurice/heart
+ icon = 'icons/obj/food.dmi'
+ icon_state = "omuriceheart"
+
+/obj/item/weapon/reagent_containers/food/snacks/omurice/face
+ icon = 'icons/obj/food.dmi'
+ icon_state = "omuriceface"
+
+/obj/item/weapon/reagent_containers/food/snacks/cinnamonbun
+ name = "cinnamon bun"
+ desc = "Life needs frosting!"
+ icon = 'icons/obj/food.dmi'
+ icon_state = "cinnamonbun"
+ trash = null
+
+/obj/item/weapon/reagent_containers/food/snacks/cinnamonbun/New()
+ ..()
+ reagents.add_reagent("nutriment", 8)
+ bitesize = 1
diff --git a/code/modules/food/glass/bottle_vr.dm b/code/modules/food/glass/bottle_vr.dm
index fc1595b699a..5f918f2f7b9 100644
--- a/code/modules/food/glass/bottle_vr.dm
+++ b/code/modules/food/glass/bottle_vr.dm
@@ -5,6 +5,13 @@
icon_state = "bottle-4"
prefill = list("bicaridine" = 60)
+/obj/item/weapon/reagent_containers/glass/bottle/vermicetol
+ name = "vermicetol bottle"
+ desc = "A small bottle. Vermicetol is an powerful analgesic medication and can be used to treat blunt trauma."
+ icon = 'icons/obj/chemical.dmi'
+ icon_state = "bottle-4"
+ prefill = list("vermicetol" = 60)
+
/obj/item/weapon/reagent_containers/glass/bottle/keloderm
name = "keloderm bottle"
desc = "A small bottle. A fifty-fifty mix of the popular burn medications kelotane and deramline."
diff --git a/code/modules/food/recipes_grill.dm b/code/modules/food/recipes_grill.dm
index 86c7998e905..1198660ee75 100644
--- a/code/modules/food/recipes_grill.dm
+++ b/code/modules/food/recipes_grill.dm
@@ -228,4 +228,19 @@
/obj/item/weapon/reagent_containers/food/snacks/bacon,
/obj/item/weapon/reagent_containers/food/snacks/bacon
)
- result = /obj/item/weapon/reagent_containers/food/snacks/burger/bacon
\ No newline at end of file
+ result = /obj/item/weapon/reagent_containers/food/snacks/burger/bacon
+
+/datum/recipe/omurice
+ appliance = GRILL
+ reagents = list("rice" = 5, "ketchup" = 5, "egg" = 3)
+ result = /obj/item/weapon/reagent_containers/food/snacks/omurice
+
+/datum/recipe/omurice/heart
+ appliance = GRILL
+ reagents = list("rice" = 5, "ketchup" = 5, "sugar" = 5, "egg" = 3)
+ result = /obj/item/weapon/reagent_containers/food/snacks/omurice/heart
+
+/datum/recipe/omurice/face
+ appliance = GRILL
+ reagents = list("rice" = 5, "ketchup" = 5, "sodiumchloride" = 5, "egg" = 3)
+ result = /obj/item/weapon/reagent_containers/food/snacks/omurice/face
diff --git a/code/modules/food/recipes_microwave.dm b/code/modules/food/recipes_microwave.dm
index 22a61e0d37e..216eb0303c4 100644
--- a/code/modules/food/recipes_microwave.dm
+++ b/code/modules/food/recipes_microwave.dm
@@ -137,7 +137,7 @@ I said no!
fruit = list("potato" = 1)
items = list(/obj/item/weapon/reagent_containers/food/snacks/cheesewedge)
result = /obj/item/weapon/reagent_containers/food/snacks/loadedbakedpotato
-
+
/datum/recipe/microchips
appliance = MICROWAVE
items = list(
@@ -186,7 +186,7 @@ I said no!
reagents = list("sodiumchloride" = 1, "blackpepper" = 1)
items = list(/obj/item/weapon/reagent_containers/food/snacks/meat)
result = /obj/item/weapon/reagent_containers/food/snacks/meatsteak
-
+
/datum/recipe/syntisteak
reagents = list("sodiumchloride" = 1, "blackpepper" = 1)
items = list(/obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh)
@@ -208,7 +208,7 @@ I said no!
/datum/recipe/amanitajelly
reagents = list("water" = 5, "vodka" = 5, "amatoxin" = 5)
result = /obj/item/weapon/reagent_containers/food/snacks/amanitajelly
-
+
/datum/recipe/amanitajelly/make_food(var/obj/container as obj)
. = ..(container)
for(var/obj/item/weapon/reagent_containers/food/snacks/amanitajelly/being_cooked in .)
@@ -532,7 +532,7 @@ I said no!
fruit = list("potato" = 1, "ambrosia" = 3)
items = list(/obj/item/weapon/reagent_containers/food/snacks/meatball)
result = /obj/item/weapon/reagent_containers/food/snacks/validsalad
-
+
/datum/recipe/validsalad/make_food(var/obj/container as obj)
. = ..(container)
for (var/obj/item/weapon/reagent_containers/food/snacks/validsalad/being_cooked in .)
@@ -552,7 +552,7 @@ I said no!
/obj/item/weapon/reagent_containers/food/snacks/stuffing,
)
result = /obj/item/weapon/reagent_containers/food/snacks/tofurkey
-
+
/datum/recipe/mashedpotato
items = list(
/obj/item/weapon/reagent_containers/food/snacks/spreads/butter // to prevent conflicts with yellow curry
@@ -860,7 +860,7 @@ I said no!
/obj/item/device/soulstone
)
result = /obj/item/weapon/reagent_containers/food/snacks/bageltwo
-
+
/////////////////////////////////////////////////////////////
//Synnono Meme Foods
//
@@ -940,6 +940,20 @@ I said no!
/obj/item/weapon/reagent_containers/food/snacks/bun
)
result = /obj/item/weapon/reagent_containers/food/snacks/chickenfillet
+
+/datum/recipe/chickennoodlesoup
+ fruit = list("carrot" = 1)
+ reagents = list("water" = 10)
+ items = list( /obj/item/weapon/reagent_containers/food/snacks/spagetti, /obj/item/weapon/reagent_containers/food/snacks/rawcutlet)
+ reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
+ result = /obj/item/weapon/reagent_containers/food/snacks/chickennoodlesoup
+
+/datum/recipe/chickennoodlesoup
+ fruit = list("carrot" = 1)
+ reagents = list("water" = 10)
+ items = list( /obj/item/weapon/reagent_containers/food/snacks/spagetti, /obj/item/weapon/reagent_containers/food/snacks/rawcutlet)
+ reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
+ result = /obj/item/weapon/reagent_containers/food/snacks/chickennoodlesoup
/datum/recipe/chilicheesefries
items = list(
@@ -1392,3 +1406,48 @@ I said no!
)
result = /obj/item/weapon/reagent_containers/food/snacks/makaroni
+/datum/recipe/gigapuddi
+ reagents = list("milk" = 15)
+ items = list(
+ /obj/item/weapon/reagent_containers/food/snacks/egg,
+ /obj/item/weapon/reagent_containers/food/snacks/egg
+ )
+ result = /obj/item/weapon/reagent_containers/food/snacks/gigapuddi
+
+/datum/recipe/gigapuddi/happy
+ reagents = list("milk" = 15, "sugar" = 5)
+ items = list(
+ /obj/item/weapon/reagent_containers/food/snacks/egg,
+ /obj/item/weapon/reagent_containers/food/snacks/egg
+ )
+ result = /obj/item/weapon/reagent_containers/food/snacks/gigapuddi/happy
+
+/datum/recipe/gigapuddi/anger
+ reagents = list("milk" = 15, "sodiumchloride" = 5)
+ items = list(
+ /obj/item/weapon/reagent_containers/food/snacks/egg,
+ /obj/item/weapon/reagent_containers/food/snacks/egg
+ )
+ result = /obj/item/weapon/reagent_containers/food/snacks/gigapuddi/anger
+
+/datum/recipe/buchedenoel
+ fruit = list("berries" = 2)
+ reagents = list("milk" = 5, "flour" = 15, "cream" = 10, "coco" = 5, "egg" = 6)
+ result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/buchedenoel
+
+/datum/recipe/turkey
+ fruit = list("carrot" = 2)
+ reagents = list("sodiumchloride" = 1, "blackpepper" = 1)
+ items = list(
+ /obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
+ /obj/item/weapon/reagent_containers/food/snacks/slice/bread,
+ )
+ result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/turkey
+
+/datum/recipe/cinnamonbun
+ reagents = list("sugar" = 15, "cream" = 10)
+ items = list(
+ /obj/item/weapon/reagent_containers/food/snacks/dough
+ )
+ result = /obj/item/weapon/reagent_containers/food/snacks/cinnamonbun
+ result_quantity = 4
diff --git a/code/modules/food/recipes_oven.dm b/code/modules/food/recipes_oven.dm
index 6524763a964..b92f04b09ea 100644
--- a/code/modules/food/recipes_oven.dm
+++ b/code/modules/food/recipes_oven.dm
@@ -557,4 +557,22 @@
/obj/item/weapon/reagent_containers/food/snacks/spagetti,
/obj/item/weapon/reagent_containers/food/snacks/cheesewedge
)
- result = /obj/item/weapon/reagent_containers/food/snacks/macncheese
\ No newline at end of file
+ result = /obj/item/weapon/reagent_containers/food/snacks/macncheese
+
+/datum/recipe/suppermatter
+ appliance = OVEN
+ reagents = list("radium" = 5, "milk" = 5)
+ items = list(
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesecake
+ )
+ reagent_mix = RECIPE_REAGENT_REPLACE
+ result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/suppermatter
+
+/datum/recipe/excitingsuppermatter
+ appliance = OVEN
+ reagents = list("radium" = 5, "spacespice" = 5)
+ items = list(
+ /obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesecake
+ )
+ reagent_mix = RECIPE_REAGENT_REPLACE
+ result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/excitingsuppermatter
diff --git a/code/modules/gamemaster/event2/events/engineering/brand_intelligence.dm b/code/modules/gamemaster/event2/events/engineering/brand_intelligence.dm
index 85f51df1926..d3478bb333b 100644
--- a/code/modules/gamemaster/event2/events/engineering/brand_intelligence.dm
+++ b/code/modules/gamemaster/event2/events/engineering/brand_intelligence.dm
@@ -33,8 +33,8 @@
/datum/event2/event/brand_intelligence/announce()
if(prob(90))
- command_announcement.Announce("An ongoing mass upload of malware for venders has been detected onboard \the [location_name()], \
- which appears to transmit to nearby vendors. The original infected machine is believed to be \a [vender_zero].", "Vender Service Alert")
+ command_announcement.Announce("An ongoing mass upload of malware for vendors has been detected onboard \the [location_name()], \
+ which appears to transmit to nearby vendors. The original infected machine is believed to be \a [vender_zero].", "Vendor Service Alert")
/datum/event2/event/brand_intelligence/start()
infect_vender(vender_zero)
diff --git a/code/modules/games/cards.dm b/code/modules/games/cards.dm
index 91d7d8d6660..0b58b5110fb 100644
--- a/code/modules/games/cards.dm
+++ b/code/modules/games/cards.dm
@@ -343,7 +343,8 @@
H.update_icon()
src.update_icon()
usr.visible_message("
\The [usr] plays \the [discarding]. ")
- H.loc = get_step(usr,usr.dir)
+ H.loc = get_turf(usr)
+ H.Move(get_step(usr,usr.dir))
if(!cards.len)
qdel(src)
diff --git a/code/modules/hydroponics/seed_packets.dm b/code/modules/hydroponics/seed_packets.dm
index 3db8840058b..35e84e150dd 100644
--- a/code/modules/hydroponics/seed_packets.dm
+++ b/code/modules/hydroponics/seed_packets.dm
@@ -176,6 +176,9 @@ GLOBAL_LIST_BOILERPLATE(all_seed_packs, /obj/item/seeds)
/obj/item/seeds/towermycelium
seed_type = "towercap"
+/obj/item/seeds/redtowermycelium
+ seed_type = "redcap"
+
/obj/item/seeds/glowshroom
seed_type = "glowshroom"
diff --git a/code/modules/hydroponics/seedtypes/eggplant.dm b/code/modules/hydroponics/seedtypes/eggplant.dm
index c856f0d3823..cadcd3686c4 100644
--- a/code/modules/hydroponics/seedtypes/eggplant.dm
+++ b/code/modules/hydroponics/seedtypes/eggplant.dm
@@ -28,4 +28,4 @@
kitchen_tag = "egg-plant"
mutants = null
chems = list("nutriment" = list(1,5), "egg" = list(3,12))
- has_item_product = /obj/item/weapon/reagent_containers/food/snacks/egg/purple
\ No newline at end of file
+ has_item_product = /obj/item/weapon/reagent_containers/food/snacks/egg/purple
diff --git a/code/modules/hydroponics/seedtypes/mushrooms.dm b/code/modules/hydroponics/seedtypes/mushrooms.dm
index ceb6b0a33b3..6f3b36c806f 100644
--- a/code/modules/hydroponics/seedtypes/mushrooms.dm
+++ b/code/modules/hydroponics/seedtypes/mushrooms.dm
@@ -131,7 +131,7 @@
seed_name = "tower cap"
display_name = "tower caps"
chems = list("woodpulp" = list(10,1))
- mutants = null
+ mutants = list("redcap")
has_item_product = /obj/item/stack/material/log
/datum/seed/mushroom/towercap/New()
@@ -142,6 +142,18 @@
set_trait(TRAIT_PLANT_COLOUR,"#857F41")
set_trait(TRAIT_PLANT_ICON,"mushroom8")
+/datum/seed/mushroom/towercap/red
+ name = "redcap"
+ seed_name = "red cap"
+ display_name = "red caps"
+ chems = list("woodpulp" = list(10,1), "tannin" = list(1,10))
+ mutants = null
+ has_item_product = null
+
+/datum/seed/mushroom/towercap/red/New()
+ ..()
+ set_trait(TRAIT_PRODUCT_COLOUR,"#b81414")
+
/datum/seed/mushroom/glowshroom
name = "glowshroom"
seed_name = "glowshroom"
diff --git a/code/modules/hydroponics/seedtypes/tobacco.dm b/code/modules/hydroponics/seedtypes/tobacco.dm
new file mode 100644
index 00000000000..d9550fef8cc
--- /dev/null
+++ b/code/modules/hydroponics/seedtypes/tobacco.dm
@@ -0,0 +1,38 @@
+//Tobacco/varieties.
+/datum/seed/tobacco
+ name = "tobacco"
+ seed_name = "tobacco"
+ display_name = "tobacco"
+ kitchen_tag = "tobacco"
+ mutants = list("stimbush")
+ chems = list("nutriment" = list(1,15), "nicotine" = list(1,20))
+
+/datum/seed/tobacco/New()
+ ..()
+ set_trait(TRAIT_HARVEST_REPEAT,1)
+ set_trait(TRAIT_MATURATION,6)
+ set_trait(TRAIT_PRODUCTION,6)
+ set_trait(TRAIT_YIELD,6)
+ set_trait(TRAIT_POTENCY,5)
+ set_trait(TRAIT_PRODUCT_ICON,"leafy")
+ set_trait(TRAIT_PRODUCT_COLOUR,"#6f5648")
+ set_trait(TRAIT_PLANT_ICON,"ambrosia")
+ set_trait(TRAIT_IDEAL_LIGHT, 8)
+
+/datum/seed/tobacco/stimbush
+ name = "stimbush"
+ seed_name = "stim-bush"
+ display_name = "stim-bush"
+ chems = list("nutriment" = list(1,10), "hyperzine" = list(1,10), "synaptizine" = list(1,5))
+
+/datum/seed/tobacco/stimbush/New()
+ ..()
+ set_trait(TRAIT_HARVEST_REPEAT,1)
+ set_trait(TRAIT_MATURATION,6)
+ set_trait(TRAIT_PRODUCTION,6)
+ set_trait(TRAIT_YIELD,6)
+ set_trait(TRAIT_POTENCY,5)
+ set_trait(TRAIT_PRODUCT_ICON,"leafy")
+ set_trait(TRAIT_PRODUCT_COLOUR,"#e08a1e")
+ set_trait(TRAIT_PLANT_ICON,"ambrosia")
+ set_trait(TRAIT_IDEAL_LIGHT, 10)
diff --git a/code/modules/hydroponics/spreading/spreading.dm b/code/modules/hydroponics/spreading/spreading.dm
index 9c8e8107538..8d28c85da62 100644
--- a/code/modules/hydroponics/spreading/spreading.dm
+++ b/code/modules/hydroponics/spreading/spreading.dm
@@ -72,6 +72,7 @@
var/obj/machinery/portable_atmospherics/hydroponics/soil/invisible/plant
/obj/effect/plant/Destroy()
+ neighbors.Cut()
if(seed.get_trait(TRAIT_SPREAD)==2)
unsense_proximity(callback = .HasProximity, center = get_turf(src))
SSplants.remove_plant(src)
diff --git a/code/modules/integrated_electronics/core/printer.dm b/code/modules/integrated_electronics/core/printer.dm
index c5f3e05f136..2480e39fb2f 100644
--- a/code/modules/integrated_electronics/core/printer.dm
+++ b/code/modules/integrated_electronics/core/printer.dm
@@ -29,7 +29,7 @@
/obj/item/device/integrated_circuit_printer/attack_robot(mob/user as mob)
if(Adjacent(user))
- return interact(user)
+ return tgui_interact(user)
else
return ..()
@@ -86,11 +86,10 @@
return ..()
/obj/item/device/integrated_circuit_printer/attack_self(var/mob/user)
- interact(user)
tgui_interact(user)
/obj/item/device/integrated_circuit_printer/tgui_state(mob/user)
- return GLOB.tgui_inventory_state
+ return GLOB.tgui_physical_state
/obj/item/device/integrated_circuit_printer/tgui_interact(mob/user, datum/tgui/ui)
if(dirty_items)
diff --git a/code/modules/materials/material_recipes.dm b/code/modules/materials/material_recipes.dm
index 57bf6b9b7dc..cf1389065a2 100644
--- a/code/modules/materials/material_recipes.dm
+++ b/code/modules/materials/material_recipes.dm
@@ -28,6 +28,7 @@
recipes += new/datum/stack_recipe("[display_name] fork", /obj/item/weapon/material/kitchen/utensil/fork/plastic, 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE)
recipes += new/datum/stack_recipe("[display_name] knife", /obj/item/weapon/material/knife/plastic, 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE)
recipes += new/datum/stack_recipe("[display_name] blade", /obj/item/weapon/material/butterflyblade, 6, time = 20, one_per_turf = 0, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE)
+ recipes += new/datum/stack_recipe("[display_name] defense wire", /obj/item/weapon/material/barbedwire, 10, time = 1 MINUTE, one_per_turf = 0, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE)
/datum/material/steel/generate_recipes()
..()
@@ -222,7 +223,7 @@
/datum/material/cloth/generate_recipes()
recipes = list()
- recipes += new/datum/stack_recipe("woven net", /obj/item/weapon/material/fishing_net, 10, time = 30 SECONDS, pass_stack_color = TRUE)
+ recipes += new/datum/stack_recipe("woven net", /obj/item/weapon/material/fishing_net, 10, time = 30 SECONDS, pass_stack_color = TRUE, supplied_material = "[name]")
recipes += new/datum/stack_recipe("bedsheet", /obj/item/weapon/bedsheet, 10, time = 30 SECONDS, pass_stack_color = TRUE)
recipes += new/datum/stack_recipe("uniform", /obj/item/clothing/under/color/white, 8, time = 15 SECONDS, pass_stack_color = TRUE)
recipes += new/datum/stack_recipe("foot wraps", /obj/item/clothing/shoes/footwraps, 2, time = 5 SECONDS, pass_stack_color = TRUE)
@@ -237,6 +238,7 @@
recipes += new/datum/stack_recipe("baggy pants", /obj/item/clothing/under/pants/baggy/white, 8, time = 10 SECONDS, pass_stack_color = TRUE)
recipes += new/datum/stack_recipe("belt pouch", /obj/item/weapon/storage/belt/fannypack/white, 25, time = 1 MINUTE, pass_stack_color = TRUE)
recipes += new/datum/stack_recipe("crude bandage", /obj/item/stack/medical/crude_pack, 1, time = 2 SECONDS, pass_stack_color = TRUE)
+ recipes += new/datum/stack_recipe("empty sandbag", /obj/item/stack/emptysandbag, 2, time = 2 SECONDS, pass_stack_color = TRUE, supplied_material = "[name]")
/datum/material/resin/generate_recipes()
recipes = list()
@@ -269,3 +271,5 @@
recipes += new/datum/stack_recipe("[display_name] ring", /obj/item/clothing/gloves/ring/material, 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE)
recipes += new/datum/stack_recipe("[display_name] bracelet", /obj/item/clothing/accessory/bracelet/material, 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE)
recipes += new/datum/stack_recipe("[display_name] armor plate", /obj/item/weapon/material/armor_plating, 1, time = 20, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE)
+ recipes += new/datum/stack_recipe("empty sandbag", /obj/item/stack/emptysandbag, 2, time = 2 SECONDS, pass_stack_color = TRUE, supplied_material = "[name]")
+ recipes += new/datum/stack_recipe("whip", /obj/item/weapon/material/whip, 5, time = 15 SECONDS, pass_stack_color = TRUE, supplied_material = "[name]")
diff --git a/code/modules/materials/materials.dm b/code/modules/materials/materials.dm
index 910ee724454..572438107d0 100644
--- a/code/modules/materials/materials.dm
+++ b/code/modules/materials/materials.dm
@@ -1010,6 +1010,19 @@ var/list/name_to_material
pass_stack_colors = TRUE
supply_conversion_value = 2
+/datum/material/cloth/syncloth
+ name = "syncloth"
+ stack_origin_tech = list(TECH_MATERIAL = 3, TECH_BIO = 2)
+ door_icon_base = "wood"
+ ignition_point = T0C+532
+ melting_point = T0C+600
+ integrity = 200
+ protectiveness = 15 // 4%
+ flags = MATERIAL_PADDING
+ conductive = 0
+ pass_stack_colors = TRUE
+ supply_conversion_value = 3
+
/datum/material/cult
name = "cult"
display_name = "disturbing stone"
@@ -1051,6 +1064,7 @@ var/list/name_to_material
//TODO PLACEHOLDERS:
/datum/material/leather
name = MAT_LEATHER
+ display_name = "plainleather"
icon_colour = "#5C4831"
stack_type = /obj/item/stack/material/leather
stack_origin_tech = list(TECH_MATERIAL = 2, TECH_BIO = 2)
diff --git a/code/modules/mining/machine_processing.dm b/code/modules/mining/machine_processing.dm
index da315f24935..c78520121e7 100644
--- a/code/modules/mining/machine_processing.dm
+++ b/code/modules/mining/machine_processing.dm
@@ -85,6 +85,7 @@
data["showAllOres"] = show_all_ores
data["power"] = machine.active
+ data["speed"] = machine.speed_process
return data
@@ -137,6 +138,9 @@
else
to_chat(usr, "
No valid ID. ")
. = TRUE
+ if("speed_toggle")
+ machine.toggle_speed()
+ . = TRUE
else
return FALSE
@@ -204,6 +208,26 @@
if(src.output) break
return
+/obj/machinery/mineral/processing_unit/proc/toggle_speed(var/forced)
+ var/area/refinery_area = get_area(src)
+ if(forced)
+ speed_process = forced
+ else
+ speed_process = !speed_process // switching gears
+ if(speed_process) // high gear
+ STOP_MACHINE_PROCESSING(src)
+ START_PROCESSING(SSfastprocess, src)
+ else // low gear
+ STOP_PROCESSING(SSfastprocess, src)
+ START_MACHINE_PROCESSING(src)
+ for(var/obj/machinery/mineral/unloading_machine/unloader in refinery_area.contents)
+ unloader.toggle_speed()
+ for(var/obj/machinery/conveyor_switch/cswitch in refinery_area.contents)
+ cswitch.toggle_speed()
+ for(var/obj/machinery/mineral/stacking_machine/stacker in refinery_area.contents)
+ stacker.toggle_speed()
+
+
/obj/machinery/mineral/processing_unit/process()
if (!src.output || !src.input)
@@ -215,9 +239,7 @@
var/list/tick_alloys = list()
//Grab some more ore to process this tick.
- for(var/i = 0,i
You start digging.")
playsound(user, 'sound/effects/rustle1.ogg', 50, 1)
- if(!do_after(user,40)) return
+ if(!do_after(user,digspeed)) return
to_chat(user, "You dug a hole. ")
GetDrilled()
@@ -544,7 +545,7 @@ turf/simulated/mineral/floor/light_corner
if(!density)
if(!sand_dug)
sand_dug = 1
- for(var/i=0;i<(rand(3)+2);i++)
+ for(var/i=0;i<5;i++)
new/obj/item/weapon/ore/glass(src)
update_icon()
return
diff --git a/code/modules/mining/shelter_atoms_vr.dm b/code/modules/mining/shelter_atoms_vr.dm
index b9929c76782..4e24c543155 100644
--- a/code/modules/mining/shelter_atoms_vr.dm
+++ b/code/modules/mining/shelter_atoms_vr.dm
@@ -331,6 +331,15 @@ GLOBAL_LIST_EMPTY(unique_deployable)
light_power = 1
light_color = "#FFFFFF"
+/obj/structure/fans/hardlight/colorable
+ name = "hardlight shield"
+ icon_state = "hardlight_colorable"
+
+/obj/structure/fans/hardlight/colorable/abductor
+ name = "hardlight shield"
+ icon_state = "hardlight_colorable"
+ color = "#ff0099"
+
//Signs
/obj/structure/sign/mining
name = "nanotrasen mining corps sign"
diff --git a/code/modules/mob/_modifiers/modifiers_misc.dm b/code/modules/mob/_modifiers/modifiers_misc.dm
index 3b9663d855b..fee761cf307 100644
--- a/code/modules/mob/_modifiers/modifiers_misc.dm
+++ b/code/modules/mob/_modifiers/modifiers_misc.dm
@@ -426,4 +426,14 @@ the artifact triggers the rage.
heat_protection = -0.5
cold_protection = -0.5
- siemens_coefficient = 1.5
\ No newline at end of file
+ siemens_coefficient = 1.5
+
+/datum/modifier/entangled
+ name = "entangled"
+ desc = "Its hard to move."
+
+ on_created_text = "You're caught in something! It's hard to move. "
+ on_expired_text = "Your movement is freed. "
+ stacks = MODIFIER_STACK_EXTEND
+
+ slowdown = 2
diff --git a/code/modules/mob/dead/observer/observer_vr.dm b/code/modules/mob/dead/observer/observer_vr.dm
index 2be0c90b804..7abad3ef09f 100644
--- a/code/modules/mob/dead/observer/observer_vr.dm
+++ b/code/modules/mob/dead/observer/observer_vr.dm
@@ -73,4 +73,31 @@
record.last_notification = world.time
to_chat(src, "New notification has been sent. ")
else
- to_chat(src, "No mind record found! ")
\ No newline at end of file
+ to_chat(src, "No mind record found! ")
+
+/mob/observer/dead/verb/findghostpod() //Moves the ghost instead of just changing the ghosts's eye -Nodrak
+ set category = "Ghost"
+ set name = "Find Ghost Pod"
+ set desc = "Find an active ghost pod"
+ set popup_menu = FALSE
+
+ if(!istype(usr, /mob/observer/dead)) //Make sure they're an observer!
+ return
+
+ var/input = input(usr, "Select a ghost pod:", "Ghost Jump") as null|anything in observe_list_format(active_ghost_pods)
+ if(!input)
+ to_chat(src, "No active ghost pods detected.")
+ return
+
+ var/target = observe_list_format(active_ghost_pods)[input]
+ if (!target)//Make sure we actually have a target
+ return
+ else
+ var/obj/O = target //Destination mob
+ var/turf/T = get_turf(O) //Turf of the destination mob
+
+ if(T && isturf(T)) //Make sure the turf exists, then move the source to that destination.
+ forceMove(T)
+ stop_following()
+ else
+ to_chat(src, "This ghost pod is not located in the game world.")
\ No newline at end of file
diff --git a/code/modules/mob/inventory.dm b/code/modules/mob/inventory.dm
index e6a618272ef..376a1fafa76 100644
--- a/code/modules/mob/inventory.dm
+++ b/code/modules/mob/inventory.dm
@@ -71,6 +71,15 @@ var/list/slot_equipment_priority = list( \
/mob/proc/equip_to_slot_or_del(obj/item/W as obj, slot)
return equip_to_slot_if_possible(W, slot, 1, 1, 0)
+//hurgh. these feel hacky, but they're the only way I could get the damn thing to work. I guess they could be handy for antag spawners too?
+/mob/proc/equip_voidsuit_to_slot_or_del_with_refit(obj/item/clothing/suit/space/void/W as obj, slot, species = SPECIES_HUMAN)
+ W.refit_for_species(species)
+ return equip_to_slot_if_possible(W, slot, 1, 1, 0)
+
+/mob/proc/equip_voidhelm_to_slot_or_del_with_refit(obj/item/clothing/head/helmet/space/void/W as obj, slot, species = SPECIES_HUMAN)
+ W.refit_for_species(species)
+ return equip_to_slot_if_possible(W, slot, 1, 1, 0)
+
//Checks if a given slot can be accessed at this time, either to equip or unequip I
/mob/proc/slot_is_accessible(var/slot, var/obj/item/I, mob/user=null)
return 1
diff --git a/code/modules/mob/language/outsider.dm b/code/modules/mob/language/outsider.dm
index 43ccb5bb7ee..1d73c4640c4 100644
--- a/code/modules/mob/language/outsider.dm
+++ b/code/modules/mob/language/outsider.dm
@@ -154,3 +154,31 @@
key = "]"
flags = RESTRICTED
syllables = list("chan","ange","thi","se")
+
+//Bloblang.
+/datum/language/blob
+ name = LANGUAGE_BLOB
+ desc = "The massive processing power of the Blob's core gives the overmind finely tuned abilities to transmit messages to nearby life-forms through chemical signals."
+ speech_verb = "resonates"
+ ask_verb = "reverberates"
+ exclaim_verb = "shudders"
+ colour = "blob"
+ key = "}"
+ machine_understands = TRUE
+ flags = RESTRICTED
+
+ syllables = list("^", "˅", "-", "°", "~")
+
+/datum/language/corticalborer/broadcast(var/mob/living/speaker,var/message,var/speaker_mask)
+
+ var/mob/living/simple_mob/animal/borer/B
+
+ if(istype(speaker,/mob/living/carbon))
+ var/mob/living/carbon/M = speaker
+ B = M.has_brain_worms()
+ else if(istype(speaker,/mob/living/simple_mob/animal/borer))
+ B = speaker
+
+ if(B)
+ speaker_mask = B.true_name
+ ..(speaker,message,speaker_mask)
diff --git a/code/modules/mob/language/station.dm b/code/modules/mob/language/station.dm
index e7afc819f06..b895ccfdbc9 100644
--- a/code/modules/mob/language/station.dm
+++ b/code/modules/mob/language/station.dm
@@ -204,7 +204,7 @@
)
/datum/language/seromi/get_random_name(gender)
- return ..(gender, 1, 4, 1.5)
+ return ..(gender, 2, 4, 1.5)
/datum/language/zaddat
diff --git a/code/modules/mob/living/butchering.dm b/code/modules/mob/living/butchering.dm
index 514475e2a27..b46abcac015 100644
--- a/code/modules/mob/living/butchering.dm
+++ b/code/modules/mob/living/butchering.dm
@@ -43,6 +43,21 @@
if(LAZYLEN(organs))
organs_by_name.Cut()
+ for(var/path in organs)
+ if(ispath(path))
+ var/obj/item/organ/external/neworg = new path(src)
+ neworg.name = "[name] [neworg.name]"
+ neworg.meat_type = meat_type
+
+ if(istype(src, /mob/living/simple_mob))
+ var/mob/living/simple_mob/SM = src
+ if(SM.limb_icon)
+ neworg.force_icon = SM.limb_icon
+ neworg.force_icon_key = SM.limb_icon_key
+
+ organs |= neworg
+ organs -= path
+
for(var/obj/item/organ/OR in organs)
OR.removed()
organs -= OR
@@ -50,6 +65,14 @@
if(LAZYLEN(internal_organs))
internal_organs_by_name.Cut()
+ for(var/path in internal_organs)
+ if(ispath(path))
+ var/obj/item/organ/neworg = new path(src, TRUE)
+ neworg.name = "[name] [neworg.name]"
+ neworg.meat_type = meat_type
+ internal_organs |= neworg
+ internal_organs -= path
+
for(var/obj/item/organ/OR in internal_organs)
OR.removed()
internal_organs -= OR
diff --git a/code/modules/mob/living/carbon/human/emote_vr.dm b/code/modules/mob/living/carbon/human/emote_vr.dm
index 6a3e65b880e..352729c5da9 100644
--- a/code/modules/mob/living/carbon/human/emote_vr.dm
+++ b/code/modules/mob/living/carbon/human/emote_vr.dm
@@ -247,7 +247,7 @@
set desc = "Switch tail layer on top."
tail_alt = !tail_alt
update_tail_showing()
-
+
/mob/living/carbon/human/verb/hide_wings_vr()
set name = "Show/Hide wings"
set category = "IC"
@@ -260,4 +260,3 @@
else
message = "hides their wings."
visible_message("[src] [message]")
-
diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm
index 889f5281cb1..e28452cc6d8 100644
--- a/code/modules/mob/living/carbon/human/human.dm
+++ b/code/modules/mob/living/carbon/human/human.dm
@@ -52,6 +52,8 @@
dna.real_name = real_name
sync_organ_dna()
+ //verbs |= /mob/living/proc/toggle_selfsurgery //VOREStation Removal
+
/mob/living/carbon/human/Destroy()
human_mob_list -= src
for(var/organ in organs)
diff --git a/code/modules/mob/living/carbon/human/human_powers_vr.dm b/code/modules/mob/living/carbon/human/human_powers_vr.dm
index 1d1954ac331..d21fbfeb052 100644
--- a/code/modules/mob/living/carbon/human/human_powers_vr.dm
+++ b/code/modules/mob/living/carbon/human/human_powers_vr.dm
@@ -13,4 +13,25 @@
to_chat(src, "Reagents purged! ")
return TRUE
-
+
+/mob/living/carbon/human/verb/toggle_eyes_layer()
+ set name = "Switch Eyes/Monitor Layer"
+ set desc = "Toggle rendering of eyes/monitor above markings."
+ set category = "IC"
+
+ if(stat)
+ to_chat(src, "You must be awake and standing to perform this action! ")
+ return
+ var/obj/item/organ/external/head/vr/H = organs_by_name[BP_HEAD]
+ if(!H)
+ to_chat(src, "You don't seem to have a head! ")
+ return
+
+ H.eyes_over_markings = !H.eyes_over_markings
+ update_icons_body()
+
+ var/datum/robolimb/robohead = all_robolimbs[H.model]
+ if(robohead.monitor_styles && robohead.monitor_icon)
+ to_chat(src, "You reconfigure the rendering order of your facial display. ")
+
+ return TRUE
diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm
index fbf1b76b90f..785e223f8ff 100644
--- a/code/modules/mob/living/carbon/human/life.dm
+++ b/code/modules/mob/living/carbon/human/life.dm
@@ -1323,6 +1323,8 @@
if(!O.up)
found_welder = 1
if(!found_welder && nif && nif.flag_check(NIF_V_UVFILTER,NIF_FLAGS_VISION)) found_welder = 1 //VOREStation Add - NIF
+ if(istype(glasses, /obj/item/clothing/glasses/sunglasses/thinblindfold))
+ found_welder = 1
if(!found_welder && istype(head, /obj/item/clothing/head/welding))
var/obj/item/clothing/head/welding/O = head
if(!O.up)
diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm
index 3fb94964da9..dfd34037b6f 100644
--- a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm
+++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm
@@ -54,8 +54,6 @@
base_color = "#f0f0f0"
color_mult = 1
- inherent_verbs = list(/mob/living/proc/shred_limb)
-
has_glowing_eyes = TRUE
death_message = "phases to somewhere far away!"
@@ -66,8 +64,7 @@
speech_bubble_appearance = "ghost"
- genders = list(PLURAL, NEUTER) //no sexual dymorphism
- ambiguous_genders = TRUE //but just in case
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
virus_immune = 1
@@ -219,34 +216,37 @@
/datum/species/shadekin/proc/update_shadekin_hud(var/mob/living/carbon/human/H)
var/turf/T = get_turf(H)
- if(!T)
- return
- if(H.shadekin_energy_display)
- H.shadekin_energy_display.invisibility = 0
+ if(H.shadekin_display)
+ var/l_icon = 0
+ var/e_icon = 0
+
+ H.shadekin_display.invisibility = 0
+ if(T)
+ var/brightness = T.get_lumcount() //Brightness in 0.0 to 1.0
+ var/darkness = 1-brightness //Invert
+ switch(darkness)
+ if(0.80 to 1.00)
+ l_icon = 0
+ if(0.60 to 0.80)
+ l_icon = 1
+ if(0.40 to 0.60)
+ l_icon = 2
+ if(0.20 to 0.40)
+ l_icon = 3
+ if(0.00 to 0.20)
+ l_icon = 4
+
switch(get_energy(H))
+ if(0 to 24)
+ e_icon = 0
+ if(25 to 49)
+ e_icon = 1
+ if(50 to 74)
+ e_icon = 2
+ if(75 to 99)
+ e_icon = 3
if(100 to INFINITY)
- H.shadekin_energy_display.icon_state = "energy0"
- if(75 to 100)
- H.shadekin_energy_display.icon_state = "energy1"
- if(50 to 75)
- H.shadekin_energy_display.icon_state = "energy2"
- if(25 to 50)
- H.shadekin_energy_display.icon_state = "energy3"
- if(0 to 25)
- H.shadekin_energy_display.icon_state = "energy4"
- if(H.shadekin_dark_display)
- H.shadekin_dark_display.invisibility = 0
- var/brightness = T.get_lumcount() //Brightness in 0.0 to 1.0
- var/darkness = 1-brightness //Invert
- switch(darkness)
- if(0.80 to 1.00)
- H.shadekin_dark_display.icon_state = "dark2"
- if(0.60 to 0.80)
- H.shadekin_dark_display.icon_state = "dark1"
- if(0.40 to 0.60)
- H.shadekin_dark_display.icon_state = "dark"
- if(0.20 to 0.40)
- H.shadekin_dark_display.icon_state = "dark-1"
- if(0.00 to 0.20)
- H.shadekin_dark_display.icon_state = "dark-2"
+ e_icon = 4
+
+ H.shadekin_display.icon_state = "shadekin-[l_icon]-[e_icon]"
return
\ No newline at end of file
diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm
index 5017cff7240..23c23b0df83 100644
--- a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm
+++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm
@@ -1,17 +1,8 @@
/obj/screen/shadekin
+ name = "shadekin status"
icon = 'icons/mob/shadekin_hud.dmi'
invisibility = 101
-/obj/screen/shadekin/darkness
- name = "darkness"
- icon_state = "dark"
- alpha = 150
-
-/obj/screen/shadekin/energy
- name = "energy"
- icon_state = "energy0"
- alpha = 150
-
diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm
index d4086e1442d..9860b0c0113 100644
--- a/code/modules/mob/living/carbon/human/species/species.dm
+++ b/code/modules/mob/living/carbon/human/species/species.dm
@@ -102,6 +102,7 @@
var/alcohol_mod = 1 // Multiplier to alcohol strength; 0.5 = half, 0 = no effect at all, 2 = double, etc.
var/pain_mod = 1 // Multiplier to pain effects; 0.5 = half, 0 = no effect (equal to NO_PAIN, really), 2 = double, etc.
var/spice_mod = 1 // Multiplier to spice/capsaicin/frostoil effects; 0.5 = half, 0 = no effect (immunity), 2 = double, etc.
+ var/trauma_mod = 1 // Affects traumatic shock (how fast pain crit happens). 0 = no effect (immunity to pain crit), 2 = double etc.Overriden by "can_feel_pain" var
// set below is EMP interactivity for nonsynth carbons
var/emp_sensitivity = 0 // bitflag. valid flags are: EMP_PAIN, EMP_BLIND, EMP_DEAFEN, EMP_CONFUSE, EMP_STUN, and EMP_(BRUTE/BURN/TOX/OXY)_DMG
var/emp_dmg_mod = 1 // Multiplier to all EMP damage sustained by the mob, if it's EMP-sensitive
diff --git a/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm b/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm
index be37e03c47c..c5d2d72fff6 100644
--- a/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm
@@ -41,6 +41,15 @@
g_ears2 = new_color_rgb_list[2]
b_ears2 = new_color_rgb_list[3]
+ var/current_ter_color = rgb(r_ears3,g_ears3,b_ears3)
+
+ var/new_ter_color = input("Pick tertiary ear color (only applies to some ears):","Ear Color (sec)", current_ter_color) as null|color
+ if(new_ter_color)
+ new_color_rgb_list = hex2rgb(new_sec_color)
+ r_ears3 = new_color_rgb_list[1]
+ g_ears3 = new_color_rgb_list[2]
+ b_ears3 = new_color_rgb_list[3]
+
update_hair() //Includes Virgo ears
/mob/living/carbon/human/proc/shapeshifter_select_tail()
@@ -86,6 +95,15 @@
g_tail2 = new_color_rgb_list[2]
b_tail2 = new_color_rgb_list[3]
+ var/current_ter_color = rgb(r_tail3,g_tail3,b_tail3)
+
+ var/new_ter_color = input("Pick tertiary tail color (only applies to some tails):","Tail Color (sec)", current_ter_color) as null|color
+ if(new_ter_color)
+ new_color_rgb_list = hex2rgb(new_ter_color)
+ r_tail3 = new_color_rgb_list[1]
+ g_tail3 = new_color_rgb_list[2]
+ b_tail3 = new_color_rgb_list[3]
+
update_tail_showing()
/mob/living/carbon/human/proc/shapeshifter_select_wings()
@@ -131,6 +149,16 @@
g_wing2 = new_color_rgb_list[2]
b_wing2 = new_color_rgb_list[3]
+ var/current_ter_color = rgb(r_wing3,g_wing3,b_wing3)
+
+ var/new_ter_color = input("Pick tertiary wing color (only applies to some wings):","Wing Color (sec)", current_ter_color) as null|color
+ if(new_ter_color)
+ new_color_rgb_list = hex2rgb(new_ter_color)
+ r_wing3 = new_color_rgb_list[1]
+ g_wing3 = new_color_rgb_list[2]
+ b_wing3 = new_color_rgb_list[3]
+
+
update_wing_showing()
/mob/living/carbon/human/proc/promethean_select_opaqueness()
diff --git a/code/modules/mob/living/carbon/human/species/species_vr.dm b/code/modules/mob/living/carbon/human/species/species_vr.dm
index 353946d9767..7c62d02b257 100644
--- a/code/modules/mob/living/carbon/human/species/species_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/species_vr.dm
@@ -21,6 +21,8 @@
var/icon_height = 32
var/agility = 20 //prob() to do agile things
+ var/list/traits = list()
+
/datum/species/proc/update_attack_types()
unarmed_attacks = list()
for(var/u_type in unarmed_types)
@@ -44,3 +46,29 @@
nif.nifsofts = nifsofts
else
..()
+/datum/species/proc/produceCopy(var/datum/species/to_copy,var/list/traits,var/mob/living/carbon/human/H)
+ ASSERT(to_copy)
+ ASSERT(istype(H))
+
+ if(ispath(to_copy))
+ to_copy = "[initial(to_copy.name)]"
+ if(istext(to_copy))
+ to_copy = GLOB.all_species[to_copy]
+
+ var/datum/species/new_copy = new to_copy.type()
+
+ new_copy.traits = traits
+
+ //If you had traits, apply them
+ if(new_copy.traits)
+ for(var/trait in new_copy.traits)
+ var/datum/trait/T = all_traits[trait]
+ T.apply(new_copy,H)
+
+ //Set up a mob
+ H.species = new_copy
+
+ if(H.dna)
+ H.dna.ready_dna(H)
+
+ return new_copy
\ No newline at end of file
diff --git a/code/modules/mob/living/carbon/human/species/station/alraune.dm b/code/modules/mob/living/carbon/human/species/station/alraune.dm
index 8353d36cbac..1b0ed79897e 100644
--- a/code/modules/mob/living/carbon/human/species/station/alraune.dm
+++ b/code/modules/mob/living/carbon/human/species/station/alraune.dm
@@ -46,10 +46,6 @@
appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR
inherent_verbs = list(
- /mob/living/carbon/human/proc/succubus_drain,
- /mob/living/carbon/human/proc/succubus_drain_finalize,
- /mob/living/carbon/human/proc/succubus_drain_lethal,
- /mob/living/carbon/human/proc/bloodsuck,
/mob/living/carbon/human/proc/alraune_fruit_select) //Give them the voremodes related to wrapping people in vines and sapping their fluids
color_mult = 1
@@ -58,7 +54,7 @@
flesh_color = "#9ee02c"
blood_color = "#edf4d0" //sap!
base_color = "#1a5600"
-
+
reagent_tag = IS_ALRAUNE
blurb = "Alraunes are a rare sight in space. Their bodies are reminiscent of that of plants, and yet they share many\
@@ -449,7 +445,7 @@
//End of fruit gland code.
-/datum/species/alraune/proc/produceCopy(var/datum/species/to_copy,var/list/traits,var/mob/living/carbon/human/H)
+/datum/species/alraune/produceCopy(var/datum/species/to_copy,var/list/traits,var/mob/living/carbon/human/H)
ASSERT(to_copy)
ASSERT(istype(H))
@@ -475,6 +471,13 @@
new_copy.blood_mask = to_copy.blood_mask
new_copy.damage_mask = to_copy.damage_mask
new_copy.damage_overlays = to_copy.damage_overlays
+ new_copy.traits = traits
+
+ //If you had traits, apply them
+ if(new_copy.traits)
+ for(var/trait in new_copy.traits)
+ var/datum/trait/T = all_traits[trait]
+ T.apply(new_copy,H)
//Set up a mob
H.species = new_copy
diff --git a/code/modules/mob/living/carbon/human/species/station/blank_vr.dm b/code/modules/mob/living/carbon/human/species/station/blank_vr.dm
index 6fd2e5db2db..42678413197 100644
--- a/code/modules/mob/living/carbon/human/species/station/blank_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/station/blank_vr.dm
@@ -29,11 +29,11 @@
num_alternate_languages = 3
assisted_langs = list(LANGUAGE_EAL, LANGUAGE_ROOTLOCAL, LANGUAGE_ROOTGLOBAL, LANGUAGE_VOX)
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
+
spawn_flags = SPECIES_CAN_JOIN
appearance_flags = HAS_HAIR_COLOR | HAS_SKIN_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_EYE_COLOR
- var/list/traits = list()
-
has_limbs = list(
BP_TORSO = list("path" = /obj/item/organ/external/chest, "descriptor" = "torso"),
BP_GROIN = list("path" = /obj/item/organ/external/groin, "descriptor" = "groin"),
@@ -55,7 +55,7 @@
var/datum/species/real = GLOB.all_species[base_species]
return real.race_key
-/datum/species/custom/proc/produceCopy(var/datum/species/to_copy,var/list/traits,var/mob/living/carbon/human/H)
+/datum/species/custom/produceCopy(var/datum/species/to_copy,var/list/traits,var/mob/living/carbon/human/H)
ASSERT(to_copy)
ASSERT(istype(H))
diff --git a/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm b/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm
index dc10bb562b6..4e7ac9376c3 100644
--- a/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm
@@ -13,6 +13,10 @@
"Rapala", "Neaera", "Stok", "Farwa", "Sobaka",
"Wolpin", "Saru", "Sparra")
+ spawn_flags = SPECIES_CAN_JOIN
+ wikilink="https://wiki.vore-station.net/Promethean"
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
+
color_mult = 1
mob_size = MOB_MEDIUM //As of writing, original was MOB_SMALL - Allows normal swapping
trashcan = 1 //They have goopy bodies. They can just dissolve things within them.
@@ -30,10 +34,5 @@
/mob/living/carbon/human/proc/shapeshifter_select_tail,
/mob/living/carbon/human/proc/shapeshifter_select_ears,
/mob/living/proc/set_size,
- /mob/living/carbon/human/proc/succubus_drain,
- /mob/living/carbon/human/proc/succubus_drain_finalize,
- /mob/living/carbon/human/proc/succubus_drain_lethal,
- /mob/living/carbon/human/proc/slime_feed,
- /mob/living/proc/eat_trash,
/mob/living/carbon/human/proc/promethean_select_opaqueness,
)
diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm
index 98f0a3190d5..253f3d2f59b 100644
--- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm
+++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm
@@ -380,6 +380,9 @@ var/global/list/disallowed_protean_accessories = list(
var/obj/belly/B = belly
B.forceMove(blob)
B.owner = blob
+
+ //We can still speak our languages!
+ blob.languages = languages.Copy()
//Flip them to the protean panel
if(panel_was_up)
diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm
index 138af95b25b..ba4b3ee92ad 100644
--- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm
+++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm
@@ -176,7 +176,7 @@
to_chat(src, "Your refactoring is interrupted. ")
to_chat(blob, "Your refactoring is interrupted! ")
active_regen = FALSE
- nano_outofblob()
+ nano_outofblob(blob)
////
diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm
index ec5fe880280..432c9fdc857 100755
--- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm
+++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm
@@ -59,6 +59,8 @@
siemens_coefficient = 1.5 //Very bad zappy times
rarity_value = 5
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
+
has_organ = list(
O_BRAIN = /obj/item/organ/internal/mmi_holder/posibrain/nano,
O_ORCH = /obj/item/organ/internal/nano/orchestrator,
@@ -96,8 +98,7 @@
/mob/living/carbon/human/proc/shapeshifter_select_gender,
/mob/living/carbon/human/proc/shapeshifter_select_wings,
/mob/living/carbon/human/proc/shapeshifter_select_tail,
- /mob/living/carbon/human/proc/shapeshifter_select_ears,
- /mob/living/proc/eat_trash
+ /mob/living/carbon/human/proc/shapeshifter_select_ears
)
var/global/list/abilities = list()
@@ -169,7 +170,7 @@
H.forceMove(H.temporary_form.drop_location())
H.ckey = H.temporary_form.ckey
QDEL_NULL(H.temporary_form)
-
+
to_chat(H, "You died as a Protean. Please sit out of the round for at least 60 minutes before respawning, to represent the time it would take to ship a new-you to the station. ")
for(var/obj/item/organ/I in H.internal_organs)
@@ -312,7 +313,7 @@
material_name = MAT_STEEL
/datum/modifier/protean/steel/tick()
- holder.adjustBruteLoss(-10,include_robo = TRUE) //Looks high, but these ARE modified by species resistances, so this is really 20% of this
+ holder.adjustBruteLoss(-2,include_robo = TRUE) //Looks high, but these ARE modified by species resistances, so this is really 20% of this
holder.adjustFireLoss(-1,include_robo = TRUE) //And this is really double this
var/mob/living/carbon/human/H = holder
for(var/organ in H.internal_organs)
diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm
index 63158f9cba1..db223014b7a 100644
--- a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm
@@ -566,7 +566,7 @@
return
var/mob/living/carbon/human/T = G.affecting // I must say, this is a quite ingenious way of doing it. Props to the original coders.
- if(!istype(T) || T.isSynthetic())
+ if(!istype(T))
to_chat(src, "\The [T] is not able to be fed. ")
return
diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm
index 520b984a0bd..a850e60534f 100644
--- a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm
@@ -25,12 +25,7 @@
inherent_verbs = list(
/mob/living/carbon/human/proc/reconstitute_form,
/mob/living/carbon/human/proc/sonar_ping,
- /mob/living/carbon/human/proc/succubus_drain,
- /mob/living/carbon/human/proc/succubus_drain_finalize,
- /mob/living/carbon/human/proc/succubus_drain_lethal,
- /mob/living/carbon/human/proc/bloodsuck,
/mob/living/carbon/human/proc/tie_hair,
- /mob/living/proc/shred_limb,
/mob/living/proc/flying_toggle,
/mob/living/proc/start_wings_hovering) //Xenochimera get all the special verbs since they can't select traits.
@@ -57,6 +52,8 @@
flags = NO_SCAN | NO_INFECT //Dying as a chimera is, quite literally, a death sentence. Well, if it wasn't for their revive, that is.
appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
+
has_organ = list( //Same organ list as tajarans.
O_HEART = /obj/item/organ/internal/heart,
O_LUNGS = /obj/item/organ/internal/lungs,
@@ -295,7 +292,7 @@
update_xenochimera_hud(H, danger, feral_state)
-/datum/species/xenochimera/proc/produceCopy(var/datum/species/to_copy,var/list/traits,var/mob/living/carbon/human/H)
+/datum/species/xenochimera/produceCopy(var/datum/species/to_copy,var/list/traits,var/mob/living/carbon/human/H)
ASSERT(to_copy)
ASSERT(istype(H))
@@ -321,6 +318,13 @@
new_copy.blood_mask = to_copy.blood_mask
new_copy.damage_mask = to_copy.damage_mask
new_copy.damage_overlays = to_copy.damage_overlays
+ new_copy.traits = traits
+
+ //If you had traits, apply them
+ if(new_copy.traits)
+ for(var/trait in new_copy.traits)
+ var/datum/trait/T = all_traits[trait]
+ T.apply(new_copy,H)
//Set up a mob
H.species = new_copy
@@ -402,6 +406,8 @@
spawn_flags = SPECIES_CAN_JOIN
appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
+
flesh_color = "#AFA59E" //Gray-ish. Not sure if this is really needed, but eh.
base_color = "#333333" //Blackish-gray
blood_color = "#0952EF" //Spiders have blue blood.
@@ -458,13 +464,12 @@
spawn_flags = SPECIES_CAN_JOIN | SPECIES_IS_WHITELISTED | SPECIES_WHITELIST_SELECTABLE
appearance_flags = HAS_HAIR_COLOR | HAS_SKIN_COLOR | HAS_EYE_COLOR
- inherent_verbs = list(
- /mob/living/proc/shred_limb,
- /mob/living/proc/eat_trash)
flesh_color = "#AFA59E"
base_color = "#777777"
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
+
heat_discomfort_strings = list(
"Your fur prickles in the heat.",
"You feel uncomfortably warm.",
diff --git a/code/modules/mob/living/carbon/human/species/station/station_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_vr.dm
index 4141eb8575a..ae53f807324 100644
--- a/code/modules/mob/living/carbon/human/species/station/station_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/station/station_vr.dm
@@ -36,11 +36,12 @@
spawn_flags = SPECIES_CAN_JOIN
appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR
- inherent_verbs = list(/mob/living/proc/shred_limb)
flesh_color = "#AFA59E"
base_color = "#777777"
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
+
heat_discomfort_strings = list(
"Your fur prickles in the heat.",
"You feel uncomfortably warm.",
@@ -78,7 +79,6 @@
secondary_langs = list(LANGUAGE_SKRELLIAN)
name_language = LANGUAGE_SKRELLIAN
color_mult = 1
- inherent_verbs = list(/mob/living/proc/shred_limb)
assisted_langs = list(LANGUAGE_EAL, LANGUAGE_ROOTLOCAL, LANGUAGE_ROOTGLOBAL, LANGUAGE_VOX)
min_age = 18
@@ -98,6 +98,8 @@
primitive_form = "Sobaka"
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
+
spawn_flags = SPECIES_CAN_JOIN
appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR
@@ -125,7 +127,7 @@
secondary_langs = list(LANGUAGE_BIRDSONG)
name_language = LANGUAGE_BIRDSONG
color_mult = 1
- inherent_verbs = list(/mob/living/proc/shred_limb,/mob/living/proc/flying_toggle,/mob/living/proc/start_wings_hovering)
+ inherent_verbs = list(/mob/living/proc/flying_toggle,/mob/living/proc/start_wings_hovering)
min_age = 18
max_age = 80
@@ -142,6 +144,8 @@
primitive_form = "Sparra"
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
+
spawn_flags = SPECIES_CAN_JOIN
appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR
@@ -190,6 +194,8 @@
blood_color = "#240bc4"
color_mult = 1
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
+
heat_discomfort_strings = list(
"Your fur prickles in the heat.",
"You feel uncomfortably warm.",
@@ -214,7 +220,7 @@
// gluttonous = 1
num_alternate_languages = 3
color_mult = 1
- inherent_verbs = list(/mob/living/proc/shred_limb, /mob/living/carbon/human/proc/lick_wounds)
+ inherent_verbs = list(/mob/living/carbon/human/proc/lick_wounds)
blurb = "Vulpkanin are a species of sharp-witted canine-pideds residing on the planet Altam just barely within the \
dual-star Vazzend system. Their politically de-centralized society and independent natures have led them to become a species and \
@@ -231,6 +237,8 @@
spawn_flags = SPECIES_CAN_JOIN
appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
+
flesh_color = "#966464"
base_color = "#B43214"
@@ -246,7 +254,7 @@
color_mult = 1
min_age = 18
gluttonous = 0
- inherent_verbs = list(/mob/living/proc/shred_limb)
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
descriptors = list()
wikilink="https://wiki.vore-station.net/Unathi"
@@ -258,8 +266,9 @@
color_mult = 1
min_age = 18
gluttonous = 0 //Moving this here so I don't have to fix this conflict every time polaris glances at station.dm
- inherent_verbs = list(/mob/living/proc/shred_limb, /mob/living/carbon/human/proc/lick_wounds)
+ inherent_verbs = list(/mob/living/carbon/human/proc/lick_wounds)
heat_discomfort_level = 295 //Prevents heat discomfort spam at 20c
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
wikilink="https://wiki.vore-station.net/Tajaran"
agility = 90
@@ -271,12 +280,14 @@
min_age = 18
reagent_tag = null
assisted_langs = list(LANGUAGE_EAL, LANGUAGE_ROOTLOCAL, LANGUAGE_ROOTGLOBAL, LANGUAGE_VOX)
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
wikilink="https://wiki.vore-station.net/Skrell"
/datum/species/zaddat
spawn_flags = SPECIES_CAN_JOIN
min_age = 18
gluttonous = 0
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
descriptors = list()
// no wiki link exists for Zaddat yet
@@ -291,6 +302,7 @@
/datum/species/diona
spawn_flags = SPECIES_CAN_JOIN | SPECIES_IS_WHITELISTED | SPECIES_WHITELIST_SELECTABLE
min_age = 18
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
wikilink="https://wiki.vore-station.net/Diona"
/datum/species/teshari
@@ -304,6 +316,7 @@
push_flags = ~HEAVY //Allows them to use micro step code.
swap_flags = ~HEAVY
gluttonous = 0
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
descriptors = list()
wikilink="https://wiki.vore-station.net/Teshari"
agility = 90
@@ -311,20 +324,16 @@
inherent_verbs = list(
/mob/living/carbon/human/proc/sonar_ping,
/mob/living/proc/hide,
- /mob/living/proc/shred_limb,
/mob/living/proc/toggle_pass_table
)
-/datum/species/shapeshifter/promethean
- spawn_flags = SPECIES_CAN_JOIN
- wikilink="https://wiki.vore-station.net/Promethean"
-
/datum/species/human
color_mult = 1
icobase = 'icons/mob/human_races/r_human_vr.dmi'
deform = 'icons/mob/human_races/r_def_human_vr.dmi'
appearance_flags = HAS_HAIR_COLOR | HAS_SKIN_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_EYE_COLOR
min_age = 18
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
base_color = "#EECEB3"
wikilink="https://wiki.vore-station.net/Human"
@@ -337,7 +346,6 @@
min_age = 18
icobase = 'icons/mob/human_races/r_vox_old.dmi'
deform = 'icons/mob/human_races/r_def_vox_old.dmi'
- inherent_verbs = list(/mob/living/proc/shred_limb, /mob/living/proc/eat_trash)
descriptors = list(
/datum/mob_descriptor/vox_markings = 0
)
@@ -355,6 +363,7 @@ datum/species/harpy
secondary_langs = list(LANGUAGE_BIRDSONG)
name_language = null
color_mult = 1
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
inherent_verbs = list(/mob/living/proc/flying_toggle,/mob/living/proc/start_wings_hovering)
min_age = 18
@@ -440,8 +449,6 @@ datum/species/harpy
base_color = "#f0f0f0"
color_mult = 1
- inherent_verbs = list(/mob/living/proc/shred_limb)
-
has_glowing_eyes = TRUE
male_cough_sounds = null
@@ -451,8 +458,7 @@ datum/species/harpy
speech_bubble_appearance = "ghost"
- genders = list(PLURAL, NEUTER) //no sexual dymorphism
- ambiguous_genders = TRUE //but just in case
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
breath_type = null
poison_type = null
@@ -513,6 +519,7 @@ datum/species/harpy
//primitive_form = "" //We don't have fennec-monkey sprites.
spawn_flags = SPECIES_IS_RESTRICTED
appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
flesh_color = "#AFA59E"
base_color = "#333333"
@@ -552,6 +559,7 @@ datum/species/harpy
spawn_flags = SPECIES_IS_RESTRICTED
appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR
+ genders = list(MALE, FEMALE, PLURAL, NEUTER)
blood_color = "#12ff12"
flesh_color = "#201730"
@@ -562,4 +570,3 @@ datum/species/harpy
"You feel uncomfortably warm.",
"Your chitin feels hot."
)
- inherent_verbs = list(/mob/living/proc/shred_limb)
diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm
index b0cf780d66a..18fba552c37 100644
--- a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm
+++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm
@@ -140,4 +140,10 @@
/datum/trait/colorblind/para_taj/apply(var/datum/species/S,var/mob/living/carbon/human/H)
..(S,H)
H.add_modifier(/datum/modifier/trait/colorblind_taj)
-
\ No newline at end of file
+
+/datum/trait/neural_hypersensitivity
+ name = "Neural Hypersensitivity"
+ desc = "Your nerves are particularly sensitive to physical changes, leading to experiencing twice the intensity of pain and pleasure alike. Doubles traumatic shock."
+ cost = -1
+ var_changes = list("trauma_mod" = 2)
+
diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm
index 9487ea36faf..b7fee8cea17 100644
--- a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm
+++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm
@@ -25,7 +25,7 @@
cost = 0
var_changes = list("cold_level_1" = 200, "cold_level_2" = 150, "cold_level_3" = 90, "breath_cold_level_1" = 180, "breath_cold_level_2" = 100, "breath_cold_level_3" = 60, "cold_discomfort_level" = 210, "heat_level_1" = 305, "heat_level_2" = 360, "heat_level_3" = 700, "breath_heat_level_1" = 345, "breath_heat_level_2" = 380, "breath_heat_level_3" = 780, "heat_discomfort_level" = 295, "body_temperature" = 290)
excludes = list(/datum/trait/hotadapt)
-
+
/datum/trait/hotadapt
name = "Heat-Adapted"
desc = "You are able to withstand much hotter temperatures than other species, and can even be comfortable in extremely hot environments. You are also more vulnerable to cold environments, and have a higher body temperature as a consequence of these adaptations."
@@ -63,6 +63,7 @@
name = "Bloodsucker"
desc = "Makes you unable to gain nutrition from anything but blood. To compenstate, you get fangs that can be used to drain blood from prey."
cost = 0
+ custom_only = FALSE
var_changes = list("gets_food_nutrition" = 0) //The verb is given in human.dm
/datum/trait/bloodsucker/apply(var/datum/species/S,var/mob/living/carbon/human/H)
@@ -73,6 +74,7 @@
name = "Succubus Drain"
desc = "Makes you able to gain nutrition from draining prey in your grasp."
cost = 0
+ custom_only = FALSE
/datum/trait/succubus_drain/apply(var/datum/species/S,var/mob/living/carbon/human/H)
..(S,H)
@@ -84,6 +86,7 @@
name = "Feeder"
desc = "Allows you to feed your prey using your own body."
cost = 0
+ custom_only = FALSE
/datum/trait/feeder/apply(var/datum/species/S,var/mob/living/carbon/human/H)
..(S,H)
@@ -92,7 +95,8 @@
/datum/trait/hard_vore
name = "Brutal Predation"
desc = "Allows you to tear off limbs & tear out internal organs."
- cost = 0 //I would make this cost a point, since it has some in game value, but there are easier, less damaging ways to perform the same functions.
+ cost = 0
+ custom_only = FALSE
/datum/trait/hard_vore/apply(var/datum/species/S,var/mob/living/carbon/human/H)
..(S,H)
@@ -102,6 +106,7 @@
name = "Trash Can"
desc = "Allows you to dispose of some garbage on the go instead of having to look for a bin or littering like an animal."
cost = 0
+ custom_only = FALSE
var_changes = list("trashcan" = 1)
/datum/trait/trashcan/apply(var/datum/species/S,var/mob/living/carbon/human/H)
@@ -112,6 +117,7 @@
name = "Expensive Taste"
desc = "You only gain nutrition from raw ore and refined minerals. There's nothing that sates the appetite better than precious gems, exotic or rare minerals and you have damn fine taste. Anything else is beneath you."
cost = 0
+ custom_only = FALSE
var_changes = list("gets_food_nutrition" = 0, "eat_minerals" = 1)
/datum/trait/gem_eater/apply(var/datum/species/S,var/mob/living/carbon/human/H)
@@ -122,12 +128,15 @@
name = "Glowing Eyes"
desc = "Your eyes show up above darkness. SPOOKY! And kinda edgey too."
cost = 0
+ custom_only = FALSE
var_changes = list("has_glowing_eyes" = 1)
/datum/trait/glowing_body
name = "Glowing Body"
desc = "Your body glows about as much as a PDA light! Settable color and toggle in Abilities tab ingame."
cost = 0
+ custom_only = FALSE
+
/datum/trait/glowing_body/apply(var/datum/species/S,var/mob/living/carbon/human/H)
..(S,H)
H.verbs |= /mob/living/proc/glow_toggle
@@ -138,36 +147,42 @@
name = "Extreme Spice Intolerance"
desc = "Spicy (and chilly) peppers are three times as strong. (This does not affect pepperspray.)"
cost = 0
+ custom_only = FALSE
var_changes = list("spice_mod" = 3) // 300% as effective if spice_mod is set to 1. If it's not 1 in species.dm, update this!
-
+
/datum/trait/spice_intolerance_basic
name = "Heavy Spice Intolerance"
desc = "Spicy (and chilly) peppers are twice as strong. (This does not affect pepperspray.)"
cost = 0
+ custom_only = FALSE
var_changes = list("spice_mod" = 2) // 200% as effective if spice_mod is set to 1. If it's not 1 in species.dm, update this!
/datum/trait/spice_intolerance_slight
name = "Slight Spice Intolerance"
desc = "You have a slight struggle with spicy foods. Spicy (and chilly) peppers are one and a half times stronger. (This does not affect pepperspray.)"
cost = 0
+ custom_only = FALSE
var_changes = list("spice_mod" = 1.5) // 150% as effective if spice_mod is set to 1. If it's not 1 in species.dm, update this!
/datum/trait/spice_tolerance_basic
name = "Spice Tolerance"
desc = "Spicy (and chilly) peppers are only three-quarters as strong. (This does not affect pepperspray.)"
cost = 0
+ custom_only = FALSE
var_changes = list("spice_mod" = 0.75) // 75% as effective if spice_mod is set to 1. If it's not 1 in species.dm, update this!
-
+
/datum/trait/spice_tolerance_advanced
name = "Strong Spice Tolerance"
desc = "Spicy (and chilly) peppers are only half as strong. (This does not affect pepperspray.)"
cost = 0
+ custom_only = FALSE
var_changes = list("spice_mod" = 0.5) // 50% as effective if spice_mod is set to 1. If it's not 1 in species.dm, update this!
/datum/trait/spice_immunity
name = "Extreme Spice Tolerance"
desc = "Spicy (and chilly) peppers are basically ineffective! (This does not affect pepperspray.)"
cost = 0
+ custom_only = FALSE
var_changes = list("spice_mod" = 0.25) // 25% as effective if spice_mod is set to 1. If it's not 1 in species.dm, update this!
// Alcohol Traits Start Here, from negative to positive.
@@ -175,35 +190,41 @@
name = "Liver of Air"
desc = "The only way you can hold a drink is if it's in your own two hands, and even then you'd best not inhale too deeply near it. Drinks are three times as strong."
cost = 0
+ custom_only = FALSE
var_changes = list("alcohol_mod" = 3) // 300% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this!
/datum/trait/alcohol_intolerance_basic
name = "Liver of Lilies"
desc = "You have a hard time with alcohol. Maybe you just never took to it, or maybe it doesn't agree with you... either way, drinks are twice as strong."
cost = 0
+ custom_only = FALSE
var_changes = list("alcohol_mod" = 2) // 200% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this!
/datum/trait/alcohol_intolerance_slight
name = "Liver of Tulips"
desc = "You have a slight struggle with alcohol. Drinks are one and a half times stronger."
cost = 0
+ custom_only = FALSE
var_changes = list("alcohol_mod" = 1.5) // 150% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this!
/datum/trait/alcohol_tolerance_basic
name = "Liver of Iron"
desc = "You can hold drinks much better than those lily-livered land-lubbers! Arr! Drinks are only three-quarters as strong."
cost = 0
+ custom_only = FALSE
var_changes = list("alcohol_mod" = 0.75) // 75% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this!
-
+
/datum/trait/alcohol_tolerance_advanced
name = "Liver of Steel"
desc = "Drinks tremble before your might! You can hold your alcohol twice as well as those blue-bellied barnacle boilers! Drinks are only half as strong."
cost = 0
+ custom_only = FALSE
var_changes = list("alcohol_mod" = 0.5) // 50% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this!
/datum/trait/alcohol_immunity
name = "Liver of Durasteel"
desc = "You've drunk so much that most booze doesn't even faze you. It takes something like a Pan-Galactic or a pint of Deathbell for you to even get slightly buzzed."
cost = 0
+ custom_only = FALSE
var_changes = list("alcohol_mod" = 0.25) // 25% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this!
// Alcohol Traits End Here.
\ No newline at end of file
diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/trait.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/trait.dm
index 434fc8d846f..605da7e5698 100644
--- a/code/modules/mob/living/carbon/human/species/station/traits_vr/trait.dm
+++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/trait.dm
@@ -5,7 +5,8 @@
var/cost = 0 // 0 is neutral, negative cost means negative, positive cost means positive.
var/list/var_changes // A list to apply to the custom species vars.
var/list/excludes // Store a list of paths of traits to exclude, but done automatically if they change the same vars.
- var/not_for_synths = 0 // Can freaking synths use those.
+ var/not_for_synths = FALSE // Can freaking synths use those.
+ var/custom_only = TRUE // Trait only available for custom species
//Proc can be overridden lower to include special changes, make sure to call up though for the vars changes
/datum/trait/proc/apply(var/datum/species/S,var/mob/living/carbon/human/H)
diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm
index 1176e870a6d..c84f6b4cadd 100644
--- a/code/modules/mob/living/carbon/human/update_icons.dm
+++ b/code/modules/mob/living/carbon/human/update_icons.dm
@@ -78,21 +78,22 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
#define SUIT_STORE_LAYER 17 //Suit storage-slot item
#define BACK_LAYER 18 //Back-slot item
#define HAIR_LAYER 19 //The human's hair
-#define EARS_LAYER 20 //Both ear-slot items (combined image)
-#define EYES_LAYER 21 //Mob's eyes (used for glowing eyes)
-#define FACEMASK_LAYER 22 //Mask-slot item
-#define HEAD_LAYER 23 //Head-slot item
-#define HANDCUFF_LAYER 24 //Handcuffs, if the human is handcuffed, in a secret inv slot
-#define LEGCUFF_LAYER 25 //Same as handcuffs, for legcuffs
-#define L_HAND_LAYER 26 //Left-hand item
-#define R_HAND_LAYER 27 //Right-hand item
-#define WING_LAYER 28 //VOREStation edit. Simply move this up a number if things are added.
-#define TAIL_LAYER_ALT 29 //VOREStation edit. Simply move this up a number if things are added.
-#define MODIFIER_EFFECTS_LAYER 30 //Effects drawn by modifiers
-#define FIRE_LAYER 31 //'Mob on fire' overlay layer
-#define WATER_LAYER 32 //'Mob submerged' overlay layer
-#define TARGETED_LAYER 33 //'Aimed at' overlay layer
-#define TOTAL_LAYERS 33 //VOREStation edit. <---- KEEP THIS UPDATED, should always equal the highest number here, used to initialize a list.
+#define HAIR_ACCESSORY_LAYER 20 //VOREStation edit. Simply move this up a number if things are added.
+#define EARS_LAYER 21 //Both ear-slot items (combined image)
+#define EYES_LAYER 22 //Mob's eyes (used for glowing eyes)
+#define FACEMASK_LAYER 23 //Mask-slot item
+#define HEAD_LAYER 24 //Head-slot item
+#define HANDCUFF_LAYER 25 //Handcuffs, if the human is handcuffed, in a secret inv slot
+#define LEGCUFF_LAYER 26 //Same as handcuffs, for legcuffs
+#define L_HAND_LAYER 27 //Left-hand item
+#define R_HAND_LAYER 28 //Right-hand item
+#define WING_LAYER 29 //VOREStation edit. Simply move this up a number if things are added.
+#define TAIL_LAYER_ALT 30 //VOREStation edit. Simply move this up a number if things are added.
+#define MODIFIER_EFFECTS_LAYER 31 //Effects drawn by modifiers
+#define FIRE_LAYER 32 //'Mob on fire' overlay layer
+#define WATER_LAYER 33 //'Mob submerged' overlay layer
+#define TARGETED_LAYER 34 //'Aimed at' overlay layer
+#define TOTAL_LAYERS 34 //VOREStation edit. <---- KEEP THIS UPDATED, should always equal the highest number here, used to initialize a list.
//////////////////////////////////
/mob/living/carbon/human
@@ -285,6 +286,10 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
if(part.transparent) //VOREStation Edit. For better slime limbs. Avoids using solid var due to limb dropping.
icon_key += "_t" //VOREStation Edit.
+ if(istype(tail_style, /datum/sprite_accessory/tail/taur))
+ if(tail_style.clip_mask) //VOREStation Edit.
+ icon_key += tail_style.clip_mask_state
+
icon_key = "[icon_key][husk ? 1 : 0][fat ? 1 : 0][hulk ? 1 : 0][skeleton ? 1 : 0]"
var/icon/base_icon
if(human_icon_cache[icon_key])
@@ -294,10 +299,27 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
var/obj/item/organ/external/chest = get_organ(BP_TORSO)
base_icon = chest.get_icon()
+ var/icon/Cutter = null
+
+ if(istype(tail_style, /datum/sprite_accessory/tail/taur)) // Tail icon 'cookie cutters' are filled in where icons are preserved. We need to invert that.
+ if(tail_style.clip_mask) //VOREStation Edit.
+ Cutter = new(icon = tail_style.icon, icon_state = tail_style.clip_mask_state)
+
+ Cutter.Blend("#000000", ICON_MULTIPLY) // Make it all black.
+
+ Cutter.SwapColor("#00000000", "#FFFFFFFF") // Everywhere empty, make white.
+ Cutter.SwapColor("#000000FF", "#00000000") // Everywhere black, make empty.
+
+ Cutter.Blend("#000000", ICON_MULTIPLY) // Black again.
+
for(var/obj/item/organ/external/part in organs)
if(isnull(part) || part.is_stump() || part.is_hidden_by_tail()) //VOREStation Edit allowing tails to prevent bodyparts rendering, granting more spriter freedom for taur/digitigrade stuff.
continue
var/icon/temp = part.get_icon(skeleton)
+
+ if((part.organ_tag in list(BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT)) && Cutter)
+ temp.Blend(Cutter, ICON_AND, x = -16)
+
//That part makes left and right legs drawn topmost and lowermost when human looks WEST or EAST
//And no change in rendering for other parts (they icon_position is 0, so goes to 'else' part)
if(part.icon_position & (LEFT | RIGHT))
@@ -407,6 +429,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
//Reset our hair
remove_layer(HAIR_LAYER)
+ remove_layer(HAIR_ACCESSORY_LAYER) //VOREStation Edit
update_eyes() //Pirated out of here, for glowing eyes.
var/obj/item/organ/external/head/head_organ = get_organ(BP_HEAD)
@@ -464,10 +487,26 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
if(head_organ.transparent) //VOREStation Edit. For better slime limbs.
face_standing += rgb(,,,120)
-
+
overlays_standing[HAIR_LAYER] = image(face_standing, layer = BODY_LAYER+HAIR_LAYER)
apply_layer(HAIR_LAYER)
+ // VOREStation Edit - START
+ var/icon/hair_acc_s = get_hair_accessory_overlay()
+ var/image/hair_acc_s_image = null
+ if(hair_acc_s)
+ if(hair_accessory_style.ignores_lighting)
+ hair_acc_s_image = image(hair_acc_s)
+ hair_acc_s_image.plane = PLANE_LIGHTING_ABOVE
+ hair_acc_s_image.appearance_flags = appearance_flags
+ if (hair_acc_s_image)
+ overlays_standing[HAIR_ACCESSORY_LAYER] = hair_acc_s_image
+ apply_layer(HAIR_ACCESSORY_LAYER)
+ return
+ overlays_standing[HAIR_ACCESSORY_LAYER] = image(hair_acc_s, layer = BODY_LAYER+HAIR_ACCESSORY_LAYER)
+ apply_layer(HAIR_ACCESSORY_LAYER)
+ // VOREStation Edit - END
+
/mob/living/carbon/human/update_eyes()
if(QDESTROYING(src))
return
diff --git a/code/modules/mob/living/carbon/human/update_icons_vr.dm b/code/modules/mob/living/carbon/human/update_icons_vr.dm
deleted file mode 100644
index d05f8afa222..00000000000
--- a/code/modules/mob/living/carbon/human/update_icons_vr.dm
+++ /dev/null
@@ -1,32 +0,0 @@
-/mob/living/carbon/human/proc/get_wing_image()
- if(QDESTROYING(src))
- return
-
- //If you are FBP with wing style and didn't set a custom one
- if((synthetic && synthetic.includes_wing && !wing_style) && !wings_hidden)
- var/icon/wing_s = new/icon("icon" = synthetic.icon, "icon_state" = "wing") //I dunno. If synths have some custom wing?
- wing_s.Blend(rgb(src.r_skin, src.g_skin, src.b_skin), species.color_mult ? ICON_MULTIPLY : ICON_ADD)
- return image(wing_s)
-
- //If you have custom wings selected
- if((wing_style && !(wear_suit && wear_suit.flags_inv & HIDETAIL)) && !wings_hidden)
- var/icon/wing_s = new/icon("icon" = wing_style.icon, "icon_state" = flapping && wing_style.ani_state ? wing_style.ani_state : wing_style.icon_state)
- if(wing_style.do_colouration)
- wing_s.Blend(rgb(src.r_wing, src.g_wing, src.b_wing), wing_style.color_blend_mode)
- if(wing_style.extra_overlay)
- var/icon/overlay = new/icon("icon" = wing_style.icon, "icon_state" = wing_style.extra_overlay)
- overlay.Blend(rgb(src.r_wing2, src.g_wing2, src.b_wing2), wing_style.color_blend_mode)
- wing_s.Blend(overlay, ICON_OVERLAY)
- qdel(overlay)
- return image(wing_s)
-
-// TODO - Move this to where it should go ~Leshana
-/mob/proc/stop_flying()
- if(QDESTROYING(src))
- return
- flying = FALSE
- return 1
-
-/mob/living/carbon/human/stop_flying()
- if((. = ..()))
- update_wing_showing()
diff --git a/code/modules/mob/living/carbon/shock.dm b/code/modules/mob/living/carbon/shock.dm
index 894a0a98b02..2b8c94e302f 100644
--- a/code/modules/mob/living/carbon/shock.dm
+++ b/code/modules/mob/living/carbon/shock.dm
@@ -13,8 +13,7 @@
1.2 * src.getShockFireLoss() + \
1.2 * src.getShockBruteLoss() + \
1.7 * src.getCloneLoss() + \
- 2 * src.halloss + \
- -1 * src.chem_effects[CE_PAINKILLER]
+ 2 * src.halloss
if(src.slurring)
src.traumatic_shock -= 20
@@ -27,6 +26,13 @@
src.traumatic_shock += 30
else if(organ.is_dislocated())
src.traumatic_shock += 15
+
+ // Some individuals/species are more or less supectible to pain. Default trauma_mod = 1. Does not affect painkillers
+ if(istype(src, /mob/living/carbon/human))
+ var/mob/living/carbon/human/H = src
+ H.traumatic_shock *= H.species.trauma_mod
+
+ src.traumatic_shock += -1 * src.chem_effects[CE_PAINKILLER]
if(src.traumatic_shock < 0)
src.traumatic_shock = 0
diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm
index 75179e2a3a6..c4b6ad2f584 100644
--- a/code/modules/mob/living/living.dm
+++ b/code/modules/mob/living/living.dm
@@ -943,8 +943,8 @@ default behaviour is:
// Begin VOREstation edit
if(is_shifted)
is_shifted = FALSE
- pixel_x = 0
- pixel_y = 0
+ pixel_x = default_pixel_x
+ pixel_y = default_pixel_y
// End VOREstation edit
if(pulling) // we were pulling a thing and didn't lose it during our move.
diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm
index a8137a8a89e..11158d89a1f 100644
--- a/code/modules/mob/living/living_defense.dm
+++ b/code/modules/mob/living/living_defense.dm
@@ -181,7 +181,7 @@
..()
/mob/living/blob_act(var/obj/structure/blob/B)
- if(stat == DEAD || faction == "blob")
+ if(stat == DEAD || faction == B.faction)
return
var/damage = rand(30, 40)
diff --git a/code/modules/mob/living/living_defines.dm b/code/modules/mob/living/living_defines.dm
index 4238a56080a..ab1e134fe9e 100644
--- a/code/modules/mob/living/living_defines.dm
+++ b/code/modules/mob/living/living_defines.dm
@@ -73,5 +73,7 @@
var/image/selected_image = null // Used for buildmode AI control stuff.
+ var/allow_self_surgery = FALSE // Used to determine if the mob can perform surgery on itself.
+
var/inventory_panel_type = /datum/inventory_panel
var/datum/inventory_panel/inventory_panel
diff --git a/code/modules/mob/living/living_powers.dm b/code/modules/mob/living/living_powers.dm
index 787dd313619..2125f2679e3 100644
--- a/code/modules/mob/living/living_powers.dm
+++ b/code/modules/mob/living/living_powers.dm
@@ -20,3 +20,13 @@
layer = HIDING_LAYER //Just above cables with their 2.44
plane = OBJ_PLANE
to_chat(src,"You are now hiding. ")
+
+/mob/living/proc/toggle_selfsurgery()
+ set name = "Allow Self Surgery"
+ set desc = "Toggles the 'safeties' on self-surgery, allowing you to do so."
+ set category = "Object"
+
+ allow_self_surgery = !allow_self_surgery
+
+ to_chat(usr, "You will [allow_self_surgery ? "now" : "no longer"] attempt to operate upon yourself. ")
+ log_admin("DEBUG \[[world.timeofday]\]: [src.ckey ? "[src.name]:([src.ckey])" : "[src.name]"] has [allow_self_surgery ? "Enabled" : "Disabled"] self surgery.")
diff --git a/code/modules/mob/living/organs.dm b/code/modules/mob/living/organs.dm
index d0489bcf6fa..76694553f6c 100644
--- a/code/modules/mob/living/organs.dm
+++ b/code/modules/mob/living/organs.dm
@@ -17,12 +17,21 @@
return organs_by_name[zone]
/mob/living/gib()
+ for(var/path in internal_organs)
+ if(ispath(path))
+ var/obj/item/organ/neworg = new path(src, TRUE)
+ internal_organs -= path
+ neworg.name = "[name] [neworg.name]"
+ neworg.meat_type = meat_type
+ internal_organs |= neworg
+
for(var/obj/item/organ/I in internal_organs)
I.removed()
if(isturf(I?.loc)) // Some organs qdel themselves or other things when removed
I.throw_at(get_edge_target_turf(src,pick(alldirs)),rand(1,3),30)
for(var/obj/item/organ/external/E in src.organs)
- E.droplimb(0,DROPLIMB_EDGE,1)
+ if(!ispath(E))
+ E.droplimb(0,DROPLIMB_EDGE,1)
..()
diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm
index f21436d3e7e..709f146e67f 100644
--- a/code/modules/mob/living/say.dm
+++ b/code/modules/mob/living/say.dm
@@ -17,7 +17,7 @@ var/list/department_radio_keys = list(
":v" = "Service", ".v" = "Service",
":p" = "AI Private", ".p" = "AI Private",
":y" = "Explorer", ".y" = "Explorer",
- ":t" = "Talon", ".t" = "Talon", //VOREStation Add,
+ ":a" = "Talon", ".a" = "Talon", //VOREStation Add,
":R" = "right ear", ".R" = "right ear",
":L" = "left ear", ".L" = "left ear",
@@ -36,7 +36,7 @@ var/list/department_radio_keys = list(
":V" = "Service", ".V" = "Service",
":P" = "AI Private", ".P" = "AI Private",
":Y" = "Explorer", ".Y" = "Explorer",
- ":T" = "Talon", ".T" = "Talon", //VOREStation Add,
+ ":A" = "Talon", ".A" = "Talon", //VOREStation Add,
//kinda localization -- rastaf0
//same keys as above, but on russian keyboard layout. This file uses cp1251 as encoding.
diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
index bf8012a629f..cc5e4aaced7 100644
--- a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
+++ b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
@@ -689,6 +689,7 @@
max_item_count = 10
startdrain = 100
analyzer = TRUE
+ recycles = FALSE
/obj/item/device/dogborg/sleeper/compactor/decompiler
name = "Matter Decompiler"
@@ -704,6 +705,7 @@
icon_state = "decompiler"
max_item_count = 20
delivery = TRUE
+ recycles = FALSE
/obj/item/device/dogborg/sleeper/compactor/supply //Miner borg belly
name = "Supply Satchel"
@@ -711,5 +713,6 @@
icon_state = "sleeperc"
injection_chems = list("glucose","inaprovaline","tricordrazine")
max_item_count = 10
+ recycles = FALSE
#undef SLEEPER_INJECT_COST
diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm
index ef5336e5b96..9f703ea0269 100644
--- a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm
+++ b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm
@@ -167,7 +167,8 @@
"K9 Alternative" = "k92",
"Secborg model V-2" = "secborg",
"Borgi" = "borgi-sec",
- "Otieborg" = "oties"
+ "Otieborg" = "oties",
+ "Drake" = "drakesec"
)
channels = list("Security" = 1)
networks = list(NETWORK_SECURITY)
@@ -198,7 +199,8 @@
B.water = water
src.modules += B
- R.icon = 'icons/mob/widerobot_vr.dmi'
+ R.icon = 'icons/mob/widerobot_sec_vr.dmi'
+ R.wideborg_dept = 'icons/mob/widerobot_sec_vr.dmi'
R.hands.icon = 'icons/mob/screen1_robot_vr.dmi'
R.ui_style_vr = TRUE
R.pixel_x = -16
@@ -243,7 +245,8 @@
"Medical Hound" = "medihound",
"Dark Medical Hound (Static)" = "medihounddark",
"Mediborg model V-2" = "vale",
- "Borgi" = "borgi-medi"
+ "Borgi" = "borgi-medi",
+ "Drake" = "drakemed"
)
/obj/item/weapon/robot_module/robot/medihound/New(var/mob/living/silicon/robot/R)
@@ -283,7 +286,8 @@
B.water = water
src.modules += B
- R.icon = 'icons/mob/widerobot_vr.dmi'
+ R.icon = 'icons/mob/widerobot_med_vr.dmi'
+ R.wideborg_dept = 'icons/mob/widerobot_med_vr.dmi'
R.hands.icon = 'icons/mob/screen1_robot_vr.dmi'
R.ui_style_vr = TRUE
R.pixel_x = -16
@@ -352,7 +356,8 @@
sprites = list(
"Custodial Hound" = "scrubpup",
"Borgi" = "borgi-jani",
- "Otieborg" = "otiej"
+ "Otieborg" = "otiej",
+ "Drake" = "drakejanit"
)
channels = list("Service" = 1)
pto_type = PTO_CIVILIAN
@@ -416,7 +421,8 @@
G.recipes += new/datum/stack_recipe("glass sheet", /obj/item/stack/material/glass, 1, 1, 20)
src.modules += G
- R.icon = 'icons/mob/widerobot_vr.dmi'
+ R.icon = 'icons/mob/widerobot_jan_vr.dmi'
+ R.wideborg_dept = 'icons/mob/widerobot_jan_vr.dmi'
R.hands.icon = 'icons/mob/screen1_robot_vr.dmi'
R.ui_style_vr = TRUE
R.pixel_x = -16
@@ -437,7 +443,8 @@
"Research Hound" = "science",
"Borgi" = "borgi-sci",
"SciHound" = "scihound",
- "SciHoundDark" = "scihounddark"
+ "SciHoundDark" = "scihounddark",
+ "Drake" = "drakesci"
)
channels = list("Science" = 1)
pto_type = PTO_SCIENCE
@@ -490,7 +497,8 @@
C.synths = list(wire)
src.modules += C
- R.icon = 'icons/mob/widerobot_vr.dmi'
+ R.icon = 'icons/mob/widerobot_sci_vr.dmi'
+ R.wideborg_dept = 'icons/mob/widerobot_sci_vr.dmi'
R.hands.icon = 'icons/mob/screen1_robot_vr.dmi'
R.ui_style_vr = TRUE
R.pixel_x = -16
@@ -512,7 +520,8 @@
"Borgi" = "borgi-eng",
"V2 Engidog" = "thottbot",
"EngiHound" = "engihound",
- "EngiHoundDark" = "engihounddark"
+ "EngiHoundDark" = "engihounddark",
+ "Drake" = "drakeeng"
)
channels = list("Engineering" = 1)
networks = list(NETWORK_ENGINEERING)
@@ -639,7 +648,8 @@
PS.synths = list(plasteel)
src.modules += PS
- R.icon = 'icons/mob/widerobot_vr.dmi'
+ R.icon = 'icons/mob/widerobot_eng_vr.dmi'
+ R.wideborg_dept = 'icons/mob/widerobot_eng_vr.dmi'
R.hands.icon = 'icons/mob/screen1_robot_vr.dmi'
R.ui_style_vr = TRUE
R.pixel_x = -16
@@ -662,6 +672,7 @@
"Pinkhound" = "k69",
"ServicehoundV2" = "serve2",
"ServicehoundV2 Darkmode" = "servedark",
+ "Drake" = "drakemine"
)
channels = list("Service" = 1)
pto_type = PTO_CIVILIAN
@@ -715,7 +726,8 @@
src.modules += B
*/
- R.icon = 'icons/mob/widerobot_vr.dmi'
+ R.icon = 'icons/mob/widerobot_ser_vr.dmi'
+ R.wideborg_dept = 'icons/mob/widerobot_ser_vr.dmi'
R.hands.icon = 'icons/mob/screen1_robot_vr.dmi'
R.ui_style_vr = TRUE
R.pixel_x = -16
@@ -733,7 +745,8 @@
sprites = list(
"KMine" = "kmine",
"CargoHound" = "cargohound",
- "CargoHoundDark" = "cargohounddark"
+ "CargoHoundDark" = "cargohounddark",
+ "Drake" = "drakemine"
)
channels = list("Supply" = 1)
pto_type = PTO_CARGO
@@ -766,7 +779,8 @@
B.water = water
src.modules += B
- R.icon = 'icons/mob/widerobot_vr.dmi'
+ R.icon = 'icons/mob/widerobot_car_vr.dmi'
+ R.wideborg_dept = 'icons/mob/widerobot_car_vr.dmi'
R.hands.icon = 'icons/mob/screen1_robot_vr.dmi'
R.ui_style_vr = TRUE
R.pixel_x = -16
diff --git a/code/modules/mob/living/silicon/robot/robot_modules/syndicate.dm b/code/modules/mob/living/silicon/robot/robot_modules/syndicate.dm
index 7c6f22d6b9a..fe390404328 100644
--- a/code/modules/mob/living/silicon/robot/robot_modules/syndicate.dm
+++ b/code/modules/mob/living/silicon/robot/robot_modules/syndicate.dm
@@ -37,6 +37,12 @@
src.modules += new /obj/item/weapon/pinpointer/shuttle/merc(src)
src.modules += new /obj/item/weapon/melee/energy/sword(src)
+ var/datum/matter_synth/cloth = new /datum/matter_synth/cloth(40000)
+ synths += cloth
+
+ var/obj/item/stack/sandbags/cyborg/SB = new /obj/item/stack/sandbags/cyborg(src)
+ SB.synths += list(cloth)
+
var/jetpack = new/obj/item/weapon/tank/jetpack/carbondioxide(src)
src.modules += jetpack
R.internals = jetpack
diff --git a/code/modules/mob/living/silicon/robot/robot_vr.dm b/code/modules/mob/living/silicon/robot/robot_vr.dm
index 21011e84c7b..f81aee6158d 100644
--- a/code/modules/mob/living/silicon/robot/robot_vr.dm
+++ b/code/modules/mob/living/silicon/robot/robot_vr.dm
@@ -15,6 +15,7 @@
var/sitting = FALSE
var/bellyup = FALSE
does_spin = FALSE
+ var/wideborg_dept = 'icons/mob/widerobot_vr.dmi'
var/vr_icons = list(
"handy-hydro",
"handy-service",
@@ -141,7 +142,13 @@
to_chat(cleaned_human, "[src] cleans your face! ")
/mob/living/silicon/robot/proc/vr_sprite_check()
+ if(custom_sprite == TRUE)
+ return
if(wideborg == TRUE)
+ if(icontype== "Drake") // Why, Why can't we have normal nice things
+ icon = 'icons/mob/drakeborg/drakeborg_vr.dmi'
+ else
+ icon = wideborg_dept
return
if((!(original_icon == icon)) && (!(icon == 'icons/mob/robots_vr.dmi')))
original_icon = icon
diff --git a/code/modules/mob/living/simple_mob/donteatpets_vr.dm b/code/modules/mob/living/simple_mob/donteatpets_vr.dm
new file mode 100644
index 00000000000..3690f6199b4
--- /dev/null
+++ b/code/modules/mob/living/simple_mob/donteatpets_vr.dm
@@ -0,0 +1,52 @@
+//I figured since it's basically always frowned upon to eat the station pets, it would probably be a good idea to just make that not possible normally.
+
+/mob/living/simple_mob/animal/passive/dog/corgi/Ian
+ digestable = 0
+ devourable = 0
+
+/mob/living/simple_mob/animal/passive/dog/corgi/Lisa
+ digestable = 0
+ devourable = 0
+
+/mob/living/simple_mob/animal/passive/dog/corgi/puppy
+ digestable = 0
+ devourable = 0
+
+/mob/living/simple_mob/animal/passive/cat/runtime
+ digestable = 0
+ devourable = 0
+
+/mob/living/simple_mob/animal/passive/cat/kitten
+ digestable = 0
+ devourable = 0
+
+/mob/living/simple_mob/animal/passive/bird/parrot/poly
+ digestable = 0
+ devourable = 0
+
+/mob/living/carbon/human/monkey/punpun
+ digestable = 0
+ devourable = 0
+
+/mob/living/simple_mob/animal/passive/snake/noodle
+ digestable = 0
+ devourable = 0
+
+/mob/living/simple_mob/animal/passive/mouse/white/apple //She's a mouse living with a snake. Accidents happen. But don't gurg apple >:I
+ digestable = 0
+
+/mob/living/simple_mob/animal/passive/fox/renault
+ digestable = 0
+ devourable = 0
+
+/mob/living/simple_mob/animal/passive/crab/Coffee
+ digestable = 0
+ devourable = 0
+
+/mob/living/simple_mob/animal/sif/fluffy
+ digestable = 0
+ devourable = 0
+
+/mob/living/simple_mob/slime/xenobio/rainbow/kendrick
+ digestable = 0
+ devourable = 0
\ No newline at end of file
diff --git a/code/modules/mob/living/simple_mob/simple_mob.dm b/code/modules/mob/living/simple_mob/simple_mob.dm
index 4d178b4ece3..6687b1f3804 100644
--- a/code/modules/mob/living/simple_mob/simple_mob.dm
+++ b/code/modules/mob/living/simple_mob/simple_mob.dm
@@ -173,29 +173,6 @@
if(has_eye_glow)
add_eyes()
- if(LAZYLEN(organs))
- for(var/path in organs)
- if(ispath(path))
- var/obj/item/organ/external/neworg = new path(src)
- neworg.name = "[name] [neworg.name]"
- neworg.meat_type = meat_type
-
- if(limb_icon)
- neworg.force_icon = limb_icon
- neworg.force_icon_key = limb_icon_key
-
- organs |= neworg
- organs -= path
-
- if(LAZYLEN(internal_organs))
- for(var/path in internal_organs)
- if(ispath(path))
- var/obj/item/organ/neworg = new path(src)
- neworg.name = "[name] [neworg.name]"
- neworg.meat_type = meat_type
- internal_organs |= neworg
- internal_organs -= path
-
return ..()
/mob/living/simple_mob/Destroy()
diff --git a/code/modules/mob/living/simple_mob/simple_mob_vr.dm b/code/modules/mob/living/simple_mob/simple_mob_vr.dm
index ef631fa8975..853848b83d7 100644
--- a/code/modules/mob/living/simple_mob/simple_mob_vr.dm
+++ b/code/modules/mob/living/simple_mob/simple_mob_vr.dm
@@ -4,7 +4,9 @@
#define SA_ICON_REST 0x04
/mob/living/simple_mob
- base_attack_cooldown = 15
+ melee_attack_delay = 1
+ base_attack_cooldown = 10
+ melee_miss_chance = 25
var/temperature_range = 40 // How close will they get to environmental temperature before their body stops changing its heat
diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm
index 9fc50395e1e..6d12cff828b 100644
--- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm
@@ -50,3 +50,13 @@
return 0
else
..()
+/mob/living/simple_mob/animal/passive/mouse/white/apple
+ name = "Apple"
+ desc = "Dainty, well groomed and cared for, her eyes glitter with untold knowledge..."
+ gender = FEMALE
+
+/mob/living/simple_mob/animal/passive/mouse/white/apple/New()
+ ..()
+ // Change my name back, don't want to be named Apple (666)
+ name = initial(name)
+ desc = initial(desc)
\ No newline at end of file
diff --git a/code/modules/mob/living/simple_mob/subtypes/blob/blob.dm b/code/modules/mob/living/simple_mob/subtypes/blob/blob.dm
index 44ab4fdd09b..752211812d7 100644
--- a/code/modules/mob/living/simple_mob/subtypes/blob/blob.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/blob/blob.dm
@@ -50,9 +50,13 @@
/mob/living/simple_mob/blob/blob_act(obj/structure/blob/B)
if(!overmind && B.overmind)
overmind = B.overmind
+ faction = B.overmind.blob_type.faction
update_icon()
- if(stat != DEAD && health < maxHealth)
+ if(faction != B.faction && B.overmind)
+ adjustBruteLoss(rand(B.overmind.blob_type.damage_lower, B.overmind.blob_type.damage_upper))
+
+ else if(stat != DEAD && health < maxHealth)
adjustBruteLoss(-maxHealth*0.0125)
adjustFireLoss(-maxHealth*0.0125)
@@ -73,7 +77,7 @@
for(var/obj/item/I in items)
if(istype(I, /obj/item/weapon/blobcore_chunk))
var/obj/item/weapon/blobcore_chunk/BC = I
- if(!overmind || (BC.blob_type && overmind.blob_type.type == BC.blob_type.type))
+ if(!overmind || (BC.blob_type && overmind.blob_type.type == BC.blob_type.type) || BC.blob_type.faction == faction)
ally = TRUE
break
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm
index bf8387ffc28..af2d00404e5 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm
@@ -81,6 +81,13 @@
max_n2 = 0
has_eye_glow = TRUE
+/mob/living/simple_mob/otie/feral/chubby
+ name = "chubby mutated feral otie"
+ desc = "The classic bioengineered longdog. No pets. Only bite. This one has mutated from too much time out on the surface of Virgo-3B. What an absolute unit."
+ icon_state = "photiec"
+ icon_living = "photiec"
+ icon_rest = "photiec_rest"
+
/mob/living/simple_mob/otie/red
name = "feral red otie"
desc = "Seems this ominous looking longdog has been infused with wicked infernal forces."
@@ -109,6 +116,15 @@
faction = "neutral"
tamed = 1
+/mob/living/simple_mob/otie/red/chubby //gets the pet2tame feature and doesn't kill you right away
+ name = "chubby red otie"
+ desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. What an absolute unit."
+ icon_state = "hotiec"
+ icon_living = "hotiec"
+ icon_rest = "hotiec_rest"
+ faction = "neutral"
+ tamed = 1
+
/mob/living/simple_mob/otie/friendly //gets the pet2tame feature and doesn't kill you right away
name = "otie"
desc = "The classic bioengineered longdog. This one might even tolerate you!"
@@ -158,7 +174,7 @@
/mob/living/simple_mob/otie/security //tame by default unless you're a marked crimester. can be befriended to follow with pets tho.
name = "guard otie"
- desc = "The VARMAcorp bioengineering division flagship product on trained optimal snowflake guard dogs."
+ desc = "The VARMAcorp bioengineering division flagship product on big mean guard dogs."
icon_state = "sotie"
icon_living = "sotie"
icon_rest = "sotie_rest"
@@ -176,7 +192,7 @@
/mob/living/simple_mob/otie/security/chubby
name = "chubby guard otie"
- desc = "The VARMAcorp bioengineering division flagship product on trained optimal snowflake guard dogs. What an absolute unit."
+ desc = "The VARMAcorp bioengineering division flagship product on big mean guard dogs. What an absolute unit."
icon_state = "fsotie"
icon_living = "fsotie"
icon_rest = "fsotie_rest"
@@ -184,7 +200,7 @@
/mob/living/simple_mob/otie/security/phoron
name = "mutated guard otie"
- desc = "An extra rare phoron resistant version of the VARMAcorp trained snowflake guard dogs for infernal environments."
+ desc = "An extra rare phoron resistant version of the VARMAcorp trained guard dogs adapted for hostile environments."
tt_desc = "Otus phoronis"
icon_state = "secphotie"
icon_living = "secphotie"
@@ -201,7 +217,7 @@
/mob/living/simple_mob/otie/security/phoron/red
name = "red guard otie"
- desc = "An ominous looking version of the VARMAcorp trained snowflake guard dogs."
+ desc = "An ominous looking version of the big mean VARMAcorp guard dogs."
tt_desc = "Otus infernalis"
icon_state = "sechotie"
icon_living = "sechotie"
@@ -209,6 +225,13 @@
icon_dead = "sechotie-dead"
maxbodytemp = 1000
+/mob/living/simple_mob/otie/security/phoron/red/chubby
+ name = "chubby red guard otie"
+ desc = "An ominous looking version of the big mean VARMAcorp guard dogs. What an absolute unit."
+ icon_state = "hotiesc"
+ icon_living = "hotiesc"
+ icon_rest = "hotiesc_rest"
+
/mob/living/simple_mob/otie/attackby(var/obj/item/O, var/mob/user) // Trade donuts for bellybrig victims.
if(istype(O, /obj/item/weapon/reagent_containers/food))
qdel(O)
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/sect_queen.dm b/code/modules/mob/living/simple_mob/subtypes/vore/sect_queen.dm
new file mode 100644
index 00000000000..e5eaff69a45
--- /dev/null
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/sect_queen.dm
@@ -0,0 +1,75 @@
+// Beeg bug do beeg noms. It also glows in the dark for maximum spook power.
+
+/datum/category_item/catalogue/fauna/sect_queen //TODO: VIRGO_LORE_WRITING_WIP
+ name = "Creature - Sect Queen"
+ desc = "A massively-sized insect that is native, although rarely spotted outside of its colony, to Virgo 3B. \
+ It bears the combined physical traits of several of Earth's insects. Its forelegs have claws bearing serrated \
+ edges, which it uses in both self-defense and during its hunts. Covering its body is a layer of thick and \
+ protective chitin, resilient enough to absorb most physical damage. It is not uncommon for a queen to go out \
+ alone to search for potential new nesting grounds... or perhaps it does so to seek bigger prey that its much \
+ smaller drones might be unable to acquire. The lack of chitin on the underside of its abdomen is deliberate, \
+ as the flesh is very elastic and stretchable, allowing the queen to carry multiple large prey inside of its \
+ stomach with ease."
+ value = CATALOGUER_REWARD_MEDIUM
+
+/mob/living/simple_mob/vore/sect_queen
+ name = "sect queen"
+ desc = "A titanic, chitin-plated insectoid whose multiple crimson eyes cast a frightful red light. Its \
+ abdomen has an unusually soft and... flexible-looking underbelly..."
+
+ icon_dead = "sect_queen_dead"
+ icon_living = "sect_queen"
+ icon_state = "sect_queen"
+ icon = 'icons/mob/vore64x64.dmi'
+ vis_height = 64
+ has_eye_glow = TRUE
+
+ faction = "insects"
+ maxHealth = 200
+ health = 200
+ see_in_dark = 8
+
+
+ melee_damage_lower = 8
+ melee_damage_upper = 16
+ grab_resist = 100 // you can't even wrap your arms around this thing, how could you hope to grab it???
+
+ vore_active = 1
+ vore_capacity = 2
+ vore_pounce_chance = 70 // v hongry buggo
+ vore_icons = SA_ICON_LIVING
+
+ //Beeg bug don't give a fuck about atmos. Something something, phoron mutation.
+ min_oxy = 0
+ max_oxy = 0
+ min_tox = 0
+ max_tox = 0
+ min_co2 = 0
+ max_co2 = 0
+ min_n2 = 0
+ max_n2 = 0
+ minbodytemp = 0
+
+ response_help = "pats"
+ response_disarm = "tries to shove"
+ response_harm = "hits"
+ attacktext = list("slashed")
+ friendly = list("nuzzles", "caresses", "headbumps against", "leans against", "nibbles affectionately on", "antennae tickles") // D'awww
+
+ old_x = -16
+ old_y = 0
+ default_pixel_x = -16
+ pixel_x = -16
+ pixel_y = 0
+
+ max_buckled_mobs = 1 //Yeehaw
+ can_buckle = TRUE
+ buckle_movable = TRUE
+ buckle_lying = FALSE
+ mount_offset_y = 26
+
+ ai_holder_type = /datum/ai_holder/simple_mob/melee
+ say_list_type = /datum/say_list/sect_queen
+
+/datum/say_list/sect_queen
+ say_got_target = list("chitters angrily!")
\ No newline at end of file
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/softdog.dm b/code/modules/mob/living/simple_mob/subtypes/vore/softdog.dm
new file mode 100644
index 00000000000..b5804c22671
--- /dev/null
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/softdog.dm
@@ -0,0 +1,246 @@
+/datum/category_item/catalogue/fauna/woof
+ name = "Wildlife - Dog"
+ desc = "It's a relatively ordinary looking canine. \
+ It has an ominous aura..."
+ value = CATALOGUER_REWARD_TRIVIAL
+
+/mob/living/simple_mob/vore/woof
+ name = "dog"
+ desc = "It is a relatively ordinary looking canine mutt! It radiates mischief!"
+ tt_desc = "E Canis lupus softus"
+
+ icon_state = "woof"
+ icon_living = "woof"
+ icon_dead = "woof_dead"
+ icon_rest = "woof_rest"
+ icon = 'icons/mob/vore.dmi'
+
+ faction = "dog"
+ maxHealth = 600
+ health = 600
+ movement_cooldown = 1
+
+ response_help = "pets"
+ response_disarm = "rudely paps"
+ response_harm = "punches"
+
+ harm_intent_damage = 5
+ melee_damage_lower = 5
+ melee_damage_upper = 1
+
+ var/knockdown_chance = 20
+
+ min_oxy = 0
+ max_oxy = 0
+ min_tox = 0
+ max_tox = 0
+ min_co2 = 0
+ max_co2 = 0
+ min_n2 = 0
+ max_n2 = 0
+ minbodytemp = 0
+ maxbodytemp = 900
+
+ attacktext = list("nipped", "chomped", "bullied", "gnaws on")
+ attack_sound = 'sound/voice/bork.ogg'
+ friendly = list("snoofs", "nuzzles", "ruffs happily at", "smooshes on")
+
+ ai_holder_type = /datum/ai_holder/simple_mob/woof
+
+ mob_size = MOB_SMALL
+
+ has_langs = list("Dog", "Canilunzt", "Galactic Common")
+ say_list_type = /datum/say_list/softdog
+ swallowTime = 0.1 SECONDS
+
+/mob/living/simple_mob/vore/woof/New()
+ ..()
+
+ verbs += /mob/living/proc/ventcrawl
+ verbs += /mob/living/proc/hide
+
+/datum/say_list/softdog
+ speak = list("Woof~", "Woof!", "Yip!", "Yap!", "Yip~", "Yap~", "Awoooooo~", "Awoo!", "AwooooooooooOOOOOOoOooOoooOoOOoooo!")
+ emote_hear = list("barks", "woofs", "yaps", "yips","pants", "snoofs")
+ emote_see = list("wags its tail", "stretches", "yawns", "swivels its ears")
+ say_maybe_target = list("Whuff?")
+ say_got_target = list("Grrrr YIP YAP!!!")
+
+/datum/ai_holder/simple_mob/woof
+ hostile = FALSE
+ cooperative = TRUE
+ retaliate = TRUE
+ speak_chance = 1
+ wander = TRUE
+
+// Activate Noms!
+/mob/living/simple_mob/vore/woof
+ vore_active = 1
+ vore_capacity = 3
+ vore_bump_chance = 5
+ vore_bump_emote = "greedily homms at"
+ vore_digest_chance = 1
+ vore_absorb_chance = 5
+ vore_escape_chance = 10
+ vore_pounce_chance = 5
+ vore_ignores_undigestable = 0
+ vore_default_mode = DM_HOLD
+ vore_icons = SA_ICON_LIVING
+ vore_stomach_name = "Stomach"
+ vore_stomach_flavor = "You have found yourself pumping on down, down, down into this extremely soft dog. The slick touches of pulsing walls roll over you in greedy fashion as you're swallowed away, the flesh forms to your figure as in an instant the world is replaced by the hot squeeze of canine gullet. And in another moment a heavy GLLRMMPTCH seals you away, the dog tossing its head eagerly, the way forward stretching to accommodate your shape as you are greedily guzzled down. The wrinkled, doughy walls pulse against you in time to the creature's steady heartbeat. The sounds of the outside world muffled into obscure tones as the wet, grumbling rolls of this soft creature's gut hold you, churning you tightly such that no part of you is spared from these gastric affections."
+ vore_default_contamination_flavor = "Wet"
+ vore_default_contamination_color = "grey"
+ vore_default_item_mode = IM_DIGEST
+
+
+/mob/living/simple_mob/vore/woof/init_vore()
+ ..()
+ var/obj/belly/B = vore_selected
+ B.name = "stomach"
+ B.desc = "You have found yourself pumping on down, down, down into this extremely soft dog. The slick touches of pulsing walls roll over you in greedy fashion as you're swallowed away, the flesh forms to your figure as in an instant the world is replaced by the hot squeeze of canine gullet. And in another moment a heavy GLLRMMPTCH seals you away, the dog tossing its head eagerly, the way forward stretching to accommodate your shape as you are greedily guzzled down. The wrinkled, doughy walls pulse against you in time to the creature's steady heartbeat. The sounds of the outside world muffled into obscure tones as the wet, grumbling rolls of this soft creature's gut hold you, churning you tightly such that no part of you is spared from these gastric affections."
+
+ B.emote_lists[DM_HOLD] = list(
+ "You can feel yourself shift and sway as the dog moves around. Your figure held tightly there had little room to move in that organic gloom, but every wandering step is another jostling quake that shakes through the canine frame and rocks you once again.",
+ "It is hard to hear much of anything over the grumbling fleshy sounds of the stomach walls pressing to you. The wet sound of flesh gliding over you too was ever-present as the walls encroach upon your personal space. And beyond that, the steady booming of the dog's heart throbs in your ears, a relaxing drone of excited thumping. Any sounds from the outside world are muffled such that they are hard to hear, as the canine walls hold on to you greedily.",
+ "You can hear the vague dragging, creaking sounds of the flesh holding you stretching and compressing with the dog's movements. Any time you press out, the walls seem to groan and flex in to smother you heavily for a few moments. ",
+ "When you shift your weight to try to find a more comfortable position you can feel your weight stretch the chamber around you a little more, and it responds by collapsing in on you more tightly! Forming to you with heavily insistence, grinding against your curves. Holding you firmly for a few moments, before slowly relaxing...",
+ "The heat of the dog's body soaks into your form and relaxes your muscles. It's easy to let yourself go limp, to be squeezed and carried by this soft predator. The sway of its body, the swing of its gait, all enough to lull anyone who likes such things into a deeply relaxed state, as you're rocked and supported, squeezed deep within the gut of this woof. Possessively held, kept.",
+ "Thick slime soaks your form as the dog's insides churn over you. There is no part of you that is not totally soaked in it before too long as the steady gastric motions massage you from head to toe. Any pushes or squirms only get the affected flesh to cling more tightly, and to press back. It's very hard to get any personal space!",
+ "Beyond the grumbling gurgles and the ever-present drumming of the dog's heart, you can actually hear, more faintly, the whooshing of the canine's breath. The slow draw in coming with a vague tightening of your surroundings, while the dog's soft, whooshing exhales make your surroundings more relaxed, easy to sink in against.")
+
+ B.emote_lists[DM_ABSORB] = list(
+ "You can feel the weight of the dog shift as it moves around. Your figure held tightly there had absolutely no room to move in that organic gloom. Every moment those pumping walls seem to squeeze over you tighter, every wandering step the dog takes is another jostling quake that seems to sink you that much deeper into the dog's flesh, the dog's body steadily collapsing in to claim you.",
+ "It is hard to hear much of anything over the smothering press of stomach walls pressing to you, forming to your features. The tarry flesh you are slowly sinking into squelches here and there as it flows over your features. The sound of the dog's body absorbing you is oddly quiet. No bubbling or glooping. Just one body slowly blending into and becoming one with another. And beyond all that, the steady booming of the dog's heart throbs in your ears, moment by moment that sound seems to tug at you, coursing through you as much as the dog you are steadily becoming a part of. Any sounds from the outside world are muffled such that they are hard to hear, as you sink into the walls of this canine predator.",
+ "You can hear the vague dragging, creaking sounds of the flesh holding you stretching and compressing with the dog's movements. Any time you press out, the walls seem to simply flow over you, and allow whatever pushed out to sink in that much more. The swell on the dog's tummy shrinking that much faster... ",
+ "When you shift your weight to try to get some space. you can feel your weight simply sink into that flesh, the folds forming around you tightly, and the deeper you sink, the harder it gets to move. The pressure never seems to let up as the tide of flesh holding you slowly overcomes your form.",
+ "As the seemingly molten heat of this dog's flesh flows over you, it's easy to let yourself go limp, to just give in and become one with this creature that so obviously wanted you, and indeed, unless something happened to stop this, you soon would be... The dog tail swaying in a knowing arc as you are added to its figure. Squeezed, tucked away, kept.",
+ "The thick slimes that coat your form do nothing to keep the molten flesh of this dog's stomach from advancing across your figure and claiming you up. Soon there's not a single part of you that is not totally inundated in the deep press of a woof's gastric massage. Any pushes or squirms only get the affected flesh to cling more tightly, and to press back, flowing over your form, deeper, deeper.",
+ "Beyond the squelching, clinging tide of dog flesh working to make the two of you one, and the ever-present drumming of the dog's heart, you can actually hear, more faintly, the whooshing of the canine's breath. The slow draw in coming with a vague tightening of your surroundings, while the dog's soft, whooshing exhales make your surroundings more relaxed. And you realize suddenly that the dog's breathing seem to bring you relief even as you are totally smothered in the canine's insistent gastric affections!")
+
+ B.emote_lists[DM_DIGEST] = list(
+ "As the dog goes about its business, you can feel the shift your weight sway on its tummy. The gurgling glorping sounds that come with the squeezing, kneading, massaging motions let you know that you're held tight, churned. Dog food.",
+ "It is hard to hear much of anything over the roaring gurgles of stomach walls churning over you. The wet sound of flesh grinding heavily over you too was ever-present as the walls encroach upon your personal space, lathering you in tingly, syrupy thick slimes. And beyond that, the steady booming of the dog's heart throbs in your ears, a drone of excited thumping. Any sounds from the outside world are muffled such that they are hard to hear, as the canine walls churn on to you greedily.",
+ "You can hear the vague dragging, creaking sounds of the flesh holding you stretching and compressing with the dog's movements. The walls seem to constantly flex and squeeze across you, pressing in against you, massaging thick slime into your figure, steadily trying to soften up your outer layers...",
+ "When you try to shift your weight to try to find a more comfortable position, you find that those heavy walls pumping over you make it hard to move at all. You can feel the weight of the dog pressing in all around you even without those muscles flexing and throbbing across your form. It forms to you with heavily insistence, grinding against your curves, churning that bubbling gloop into you. Holding you firm and heavy as that stomach does its work...",
+ "The heat of the dog's body soaks into your form and relaxes your muscles. It's easy to let yourself go limp, to just completely give in to this soft predator. The sway of its body, the swing of its gait, all enough to lull anyone who likes such things into a deeply relaxed state. Churned and slathered, massaged by doughy wrinkled walls deep within the gut of this woof. Possessively held within that needy chamber.",
+ "Thick slime soaks your form as the dog's insides churn over you. There is no part of you that is not totally soaked in it before too long as the steady gastric motions massage you from head to toe. Any pushes or squirms only get the affected flesh to cling more tightly, and to press back. It's very hard to get any personal space!",
+ "Beyond the grumbling gurgles and the ever-present drumming of the dog's heart, you can actually hear, more faintly, the whooshing of the canine's breath. The slow draw in coming with a vague tightening of your surroundings, while the dog's soft, whooshing exhales make your surroundings more relaxed, easy to sink in against. Occasionally though everything would go all tight and cramped! And somewhere up above you can hear the dog let out a dainty little belch...")
+
+ B.digest_brute = 0.05
+ B.digest_burn = 0.05
+ B.mode_flags = 8
+ B.belly_fullscreen = "base"
+ B.struggle_messages_inside = list(
+ "Your struggling only causes %pred's doughy gut to smother you against those wrinkled walls...",
+ "As you squirm, %pred's %belly flexxes over you heavily, forming you back into a small ball...",
+ "You push out at those heavy wrinkled walls with all your might and they collapse back in on you! Clinging and churning over you heavily for a few minutes!!!",
+ "As you struggle against the gut of this dog, you can feel a squeeze roll over you from the bottom to the top! The walls cling to you a little tighter then as the dog emits a soft little burp...",
+ "You try to squirm, but you can't even move as those heavy walls throb and pulse and churn around you.",
+ "You paddle against the fleshy walls of %pred's %belly, making a little space for yourself for a moment, before the wrinkled surface bounces back against you.",
+ "The slick walls are doughy, smushy under your fingers, and very difficult to grip! The flesh pulses under your grip in time with %pred's heartbeat.",
+ "Your hands slip and slide over the slick slimes of %pred's %belly as you struggle to escape! The walls pulse and squeeze around you greedily.",
+ "%pred lets out a happy little awoo, rocking their hips to jostle you as you squirm, while the weight of those walls closes in on you, squeezing you tightly!",
+ "%pred's %belly glorgles around you as you push and struggle within! The squashy walls are always reluctant to give ground, and the moment your struggles lax, they redouble their efforts in smothering all the fight out of you!")
+ B.struggle_messages_outside = list(
+ "A vague shape briefly swells on %pred's %belly as something moves inside...",
+ "Something shifts within %pred's %belly.",
+ "%pred urps as something shifts in their %belly.")
+ B.examine_messages = list(
+ "Their %belly is distended.",
+ "Vague shapes swell their %belly.",
+ "It looks like they have something solid in their %belly")
+
+/obj/item/projectile/awoo_missile
+ name = "awoo missile"
+ icon_state = "force_missile"
+ fire_sound = 'sound/voice/long_awoo.ogg'
+ damage = 1
+ damage_type = BRUTE
+ check_armour = "melee"
+
+ impact_effect_type = /obj/effect/temp_visual/impact_effect/blue_laser
+ hitsound_wall = 'sound/voice/bork.ogg'
+
+/mob/living/simple_mob/vore/woof/cass
+ name = "Cass"
+ desc = "Well trained, comfy company. They have a pretty red bow tied into their fur. They look very soft."
+
+ icon_state = "cass"
+ icon_living = "cass"
+ icon_dead = "cass_dead"
+ icon_rest = "cass_rest"
+
+ faction = "theatre"
+ gender = PLURAL
+ ai_holder_type = /datum/ai_holder/simple_mob/woof/cass
+
+/mob/living/simple_mob/vore/woof/cass
+ vore_digest_chance = 0
+ vore_escape_chance = 25
+ digestable = 0
+
+/datum/ai_holder/simple_mob/woof/cass
+ retaliate = 0
+ violent_breakthrough = 0
+
+/datum/ai_holder/simple_mob/ranged/kiting/threatening/woof
+ hostile = 1
+ retaliate = 1
+ cooperative = TRUE
+ speak_chance = 1
+
+/datum/ai_holder/simple_mob/woof/hostile
+ hostile = 1
+ retaliate = 1
+
+/mob/living/simple_mob/vore/woof/apply_melee_effects(var/atom/A)
+ if(isliving(A))
+ var/mob/living/L = A
+ if(prob(knockdown_chance))
+ L.Weaken(3)
+ L.visible_message(span("danger", "\The [src] pounces on \the [L]!"))
+
+/mob/living/simple_mob/vore/woof/hostile/melee
+
+ movement_cooldown = 0
+
+ ai_holder_type = /datum/ai_holder/simple_mob/woof/hostile
+
+/mob/living/simple_mob/vore/woof/hostile/ranged
+
+ ai_holder_type = /datum/ai_holder/simple_mob/ranged/kiting/threatening/woof
+
+ projectiletype = /obj/item/projectile/awoo_missile
+ projectilesound = 'sound/voice/long_awoo.ogg'
+
+/mob/living/simple_mob/vore/woof/hostile/horrible
+
+ ai_holder_type = /datum/ai_holder/simple_mob/ranged/kiting/threatening/woof
+ armor = list(
+ "melee" = 75,
+ "bullet" = 75,
+ "laser" = 75,
+ "energy" = 75,
+ "bomb" = 75,
+ "bio" = 75,
+ "rad" = 75)
+
+ projectiletype = /obj/item/projectile/awoo_missile/heavy
+ projectilesound = 'sound/voice/long_awoo.ogg'
+
+/obj/item/projectile/awoo_missile/heavy
+ damage = 50
+
+/obj/item/projectile/forcebolt/harmless/awoobolt
+ icon_state = "force_missile"
+ fire_sound = 'sound/voice/long_awoo.ogg'
+ damage = 0
+ impact_effect_type = /obj/effect/temp_visual/impact_effect/blue_laser
+ hitsound_wall = 'sound/voice/bork.ogg'
+
+/mob/living/simple_mob/vore/woof/hostile/terrible
+
+ ai_holder_type = /datum/ai_holder/simple_mob/ranged/kiting/threatening/woof
+
+ projectiletype = /obj/item/projectile/forcebolt/harmless/awoobolt
+ projectilesound = 'sound/voice/long_awoo.ogg'
\ No newline at end of file
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm
index b4c656ddc38..1b4a2e9ad86 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm
@@ -66,7 +66,6 @@
name = "dire wolf"
desc = "The biggest and baddest wolf around."
tt_desc = "Canis maxdirus"
-
icon = 'icons/mob/vore64x32.dmi'
icon_dead = "direwolf-dead"
icon_living = "direwolf"
@@ -108,12 +107,27 @@
name = "large dog"
desc = "The biggest and goodest dog around."
tt_desc = "Canis maxdirus familiaris"
-
icon_dead = "diredog-dead"
icon_living = "diredog"
icon_state = "diredog"
icon_rest = "diredog_rest"
+/mob/living/simple_mob/animal/wolf/direwolf/dog/sec
+ name = "large guard dog"
+ desc = "The biggest and goodest guard dog around."
+ icon_dead = "diredogs-dead"
+ icon_living = "diredogs"
+ icon_state = "diredogs"
+ icon_rest = "diredogs_rest"
+
+/mob/living/simple_mob/animal/wolf/direwolf/sec
+ name = "dire guard wolf"
+ desc = "The biggest and baddest guard wolf around."
+ icon_dead = "direwolfs-dead"
+ icon_living = "direwolfs"
+ icon_state = "direwolfs"
+ icon_rest = "direwolfs_rest"
+
/mob/living/simple_mob/animal/wolf/direwolf/rykka
name = "Rykka"
desc = "This big canine looks like a GSD. It has a collar tagged, 'Bitch'"
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/xeno_vore.dm b/code/modules/mob/living/simple_mob/subtypes/vore/xeno_vore.dm
new file mode 100644
index 00000000000..b09c5c3ff8a
--- /dev/null
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/xeno_vore.dm
@@ -0,0 +1,68 @@
+// Basically xenos that have been more or less neutered to be balanced as maintenance preds.
+
+/datum/category_item/catalogue/fauna/xeno_defanged //TODO: VIRGO_LORE_WRITING_WIP
+ name = "Creature - \"Defanged\" Xenomorph"
+ desc = "Under normal circumstances, a xenomorph is more than capable of parasitic reproduction, discharging \
+ digestive acid at high velocities, and utilizing the blade at the blade at the end of its long tail as a \
+ far-reaching melee weapon. However, this particular instance of xenomorph is capable of none of these things. \
+ \"Defanged\" is not used literally in this case when referring to these types of xenomorphs since their fangs, \
+ ironically, are still intact. What it does mean is that the creature's other more lethal components have been \
+ surgically removed, usually for the purposes of keeping it in captivity in the same way that one may de-claw a \
+ lion in for keeping it in a zoo. This xenomorph has had its reproductive organs, as well as its acid-spitting \
+ glands, and the blade at the end of its tail removed. Its claws and fangs however are left intact. The ethicality \
+ of this practice on captive xenomorphs has been frequently challenged by animal activists."
+ value = CATALOGUER_REWARD_MEDIUM
+
+/mob/living/simple_mob/vore/xeno_defanged
+ name = "defanged xenomorph"
+ desc = "A chitin-covered bipedal creature who appears to have had its means of reproduction and acid-spitting \
+ removed. It still looks nasty all the same though!"
+
+ icon_dead = "xeno_dead"
+ icon_living = "xeno"
+ icon_state = "xeno"
+ icon = 'icons/mob/vore64x64.dmi'
+ vis_height = 64
+
+ faction = "xeno"
+ maxHealth = 150
+ health = 150
+ see_in_dark = 10
+
+ //Something something, phoron mutation.
+ min_oxy = 0
+ max_oxy = 0
+ min_tox = 0
+ max_tox = 0
+ min_co2 = 0
+ max_co2 = 0
+ min_n2 = 0
+ max_n2 = 0
+ minbodytemp = 0
+
+ melee_damage_lower = 8
+ melee_damage_upper = 16
+ grab_resist = 50 // they're still slippery buggers!
+
+ vore_active = 1
+ vore_capacity = 2
+ vore_pounce_chance = 50
+ vore_icons = SA_ICON_LIVING
+
+ response_help = "pats"
+ response_disarm = "tries to shove"
+ response_harm = "hits"
+ attacktext = list("slashed")
+ friendly = list("nuzzles", "caresses", "headbumps against", "leans against", "nibbles affectionately on")
+
+ old_x = -16
+ old_y = 0
+ default_pixel_x = -16
+ pixel_x = -16
+ pixel_y = 0
+
+ ai_holder_type = /datum/ai_holder/simple_mob/melee
+ say_list_type = /datum/say_list/xeno_defanged
+
+/datum/say_list/xeno_defanged
+ say_got_target = list("hisses angrily!")
\ No newline at end of file
diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm
index ce6a792afb8..d9394cf3b13 100644
--- a/code/modules/mob/mob.dm
+++ b/code/modules/mob/mob.dm
@@ -229,7 +229,8 @@
var/turf/our_tile = get_turf(src)
var/obj/visual = new /obj/effect/decal/point(our_tile)
visual.invisibility = invisibility
- visual.plane = plane
+ visual.plane = ABOVE_PLANE
+ visual.layer = FLY_LAYER
animate(visual,
pixel_x = (tile.x - our_tile.x) * world.icon_size + A.pixel_x,
@@ -237,9 +238,7 @@
time = 1.7,
easing = EASE_OUT)
- spawn(20)
- if(visual)
- qdel(visual) // qdel
+ QDEL_IN(visual, 2 SECONDS) //Better qdel
face_atom(A)
return 1
@@ -683,7 +682,7 @@
// facing verbs
/mob/proc/canface()
- if(!canmove) return 0
+// if(!canmove) return 0 //VOREStation Edit. Redundant check that only affects conscious proning, actual inability to turn and shift around handled by actual inabilities.
if(stat) return 0
if(anchored) return 0
if(transforming) return 0
@@ -1026,7 +1025,7 @@ mob/proc/yank_out_object()
set hidden = TRUE
if(!canface())
return FALSE
- if(pixel_y <= 16)
+ if(pixel_y <= (default_pixel_y + 16))
pixel_y++
is_shifted = TRUE
@@ -1034,7 +1033,7 @@ mob/proc/yank_out_object()
set hidden = TRUE
if(!canface())
return FALSE
- if(pixel_y >= -16)
+ if(pixel_y >= (default_pixel_y - 16))
pixel_y--
is_shifted = TRUE
@@ -1042,7 +1041,7 @@ mob/proc/yank_out_object()
set hidden = TRUE
if(!canface())
return FALSE
- if(pixel_x >= -16)
+ if(pixel_x >= (default_pixel_x - 16))
pixel_x--
is_shifted = TRUE
@@ -1050,7 +1049,7 @@ mob/verb/shifteast()
set hidden = TRUE
if(!canface())
return FALSE
- if(pixel_x <= 16)
+ if(pixel_x <= (default_pixel_x + 16))
pixel_x++
is_shifted = TRUE
// End VOREstation edit
diff --git a/code/modules/mob/mob_defines_vr.dm b/code/modules/mob/mob_defines_vr.dm
index 1c6e19ac789..41c27a41d0e 100644
--- a/code/modules/mob/mob_defines_vr.dm
+++ b/code/modules/mob/mob_defines_vr.dm
@@ -5,8 +5,7 @@
var/disconnect_time = null //Time of client loss, set by Logout(), for timekeeping
- var/obj/screen/shadekin/darkness/shadekin_dark_display = null
- var/obj/screen/shadekin/energy/shadekin_energy_display = null
+ var/obj/screen/shadekin/shadekin_display = null
var/obj/screen/xenochimera/danger_level/xenochimera_danger_display = null
/mob/drop_location()
diff --git a/code/modules/mob/mob_movement.dm b/code/modules/mob/mob_movement.dm
index 75b2ccd07f2..95732bad6aa 100644
--- a/code/modules/mob/mob_movement.dm
+++ b/code/modules/mob/mob_movement.dm
@@ -289,7 +289,7 @@
// If we have a grab
var/list/grablist = my_mob.ret_grab()
- if(grablist.len)
+ if(LAZYLEN(grablist))
grablist -= my_mob // Just in case we're in a circular grab chain
// It's just us and another person
diff --git a/code/modules/mob/new_player/sprite_accessories_vr.dm b/code/modules/mob/new_player/sprite_accessories_vr.dm
index eade17eb0d0..56868d9480b 100644
--- a/code/modules/mob/new_player/sprite_accessories_vr.dm
+++ b/code/modules/mob/new_player/sprite_accessories_vr.dm
@@ -83,6 +83,12 @@
icon_add = 'icons/mob/human_face_vr_add.dmi'
icon_state = "hair_twincurl"
+ crescent_moon
+ name = "Crescent-Moon"
+ icon = 'icons/mob/human_face_vr.dmi'
+ icon_add = 'icons/mob/human_face_vr_add.dmi'
+ icon_state = "crescent_moon"
+
bald
name = "Bald"
icon_state = "bald"
@@ -1190,4 +1196,147 @@
name = "Bug Paws (Vasilissan)"
icon_state = "vas_toes"
color_blend_mode = ICON_MULTIPLY
- body_parts = list(BP_L_FOOT,BP_R_FOOT)
\ No newline at end of file
+ body_parts = list(BP_L_FOOT,BP_R_FOOT)
+
+ //CitRP stuff
+ vox_alt
+ name = "Vox Alternate"
+ icon_state = "bay_vox"
+ body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD)
+ species_allowed = list(SPECIES_VOX)
+
+ vox_alt_eyes
+ name = "Alternate Vox Eyes"
+ icon_state = "bay_vox_eyes"
+ body_parts = list(BP_HEAD)
+ species_allowed = list(SPECIES_VOX)
+
+ c_beast_body
+ name = "Cyber Body"
+ icon_state = "c_beast_body"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_TORSO,BP_GROIN)
+
+ c_beast_plating
+ name = "Cyber Plating (Use w/ Cyber Body)"
+ icon_state = "c_beast_plating"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM)
+
+ c_beast_band
+ name = "Cyber Band (Use w/ Cybertech head)"
+ icon_state = "c_beast_band"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ c_beast_cheek_a
+ name = "Cyber Beast Cheeks A (Use A, B and C)"
+ icon_state = "c_beast_a"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ c_beast_cheek_b
+ name = "Cyber Beast Cheeks B (Use A, B and C)"
+ icon_state = "c_beast_b"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ c_beast_cheek_c
+ name = "Cyber Beast Cheeks C (Use A, B and C)"
+ icon_state = "c_beast_c"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ teshari_large_eyes
+ name = "Teshari large eyes"
+ icon_state = "teshlarge_eyes"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+ species_allowed = list(SPECIES_TESHARI)
+
+ teshari_coat
+ name = "Teshari coat"
+ icon_state = "tesh_coat"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_TORSO,BP_HEAD)
+ species_allowed = list(SPECIES_TESHARI)
+
+ teshari_pattern_male
+ name = "Teshari male pattern"
+ icon_state = "tesh-pattern-male"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD)
+ species_allowed = list(SPECIES_TESHARI)
+
+ teshari_pattern_female
+ name = "Teshari female pattern"
+ icon_state = "tesh-pattern-fem"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_L_LEG,BP_R_LEG,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD)
+ species_allowed = list(SPECIES_TESHARI)
+
+ voxscales
+ name = "Vox Scales"
+ icon_state = "Voxscales"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_HEAD)
+
+ voxclaws
+ name = "Vox Claws"
+ icon_state = "Voxclaws"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_HAND,BP_R_HAND)
+
+ voxbeak
+ name = "Vox Beak"
+ icon_state = "Voxscales"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ unathihood
+ name = "Cobra Hood"
+ icon_state = "unathihood"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ unathidoublehorns
+ name = "Double Unathi Horns"
+ icon_state = "unathidoublehorns"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ unathihorns
+ name = "Unathi Horns"
+ icon_state = "unathihorns"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ unathiramhorns
+ name = "Unathi Ram Horns"
+ icon_state = "unathiramhorns"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ unathishortspines
+ name = "Unathi Short Spines"
+ icon_state = "unathishortspines"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ unathilongspines
+ name = "Unathi Long Spines"
+ icon_state = "unathilongspines"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ unathishortfrills
+ name = "Unathi Short Frills"
+ icon_state = "unathishortfrills"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
+
+ unathilongfrills
+ name = "Unathi Long Frills"
+ icon_state = "unathilongfrills"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_HEAD)
diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm
index 4f48a4adf4c..64f65adfbb7 100644
--- a/code/modules/mob/say_vr.dm
+++ b/code/modules/mob/say_vr.dm
@@ -37,7 +37,7 @@
if(input)
log_subtle(message,src)
- message = "[src] [input] "
+ message = "[src] [input] "
else
return
diff --git a/code/modules/mob/typing_indicator.dm b/code/modules/mob/typing_indicator.dm
index 3012d6959a9..a260c878fc8 100644
--- a/code/modules/mob/typing_indicator.dm
+++ b/code/modules/mob/typing_indicator.dm
@@ -39,7 +39,7 @@
set hidden = 1
set_typing_indicator(TRUE)
- var/message = input("","me (text)") as text
+ var/message = input("","me (text)") as message //VOREStation Edit
set_typing_indicator(FALSE)
if(message)
diff --git a/code/modules/multiz/admin_upload.dm b/code/modules/multiz/admin_upload.dm
new file mode 100644
index 00000000000..5edd88d1f42
--- /dev/null
+++ b/code/modules/multiz/admin_upload.dm
@@ -0,0 +1,23 @@
+/obj/effect/landmark/map_data/admin_upload
+ name = "Unknown"
+ desc = "An unknown location."
+
+/obj/effect/landmark/map_data/admin_upload/two
+ desc = "An unknown location. It's two levels tall."
+ height = 2
+
+/obj/effect/landmark/map_data/admin_upload/three
+ desc = "An unknown location. It's three levels tall."
+ height = 3
+
+/obj/effect/landmark/map_data/admin_upload/four
+ desc = "An unknown location. It's four levels tall."
+ height = 4
+
+/obj/effect/landmark/map_data/admin_upload/five
+ desc = "An unknown location. It's five levels tall."
+ height = 5
+
+/obj/effect/landmark/map_data/admin_upload/six
+ desc = "An unknown location. It's six levels tall."
+ height = 6
\ No newline at end of file
diff --git a/code/modules/multiz/structures_vr.dm b/code/modules/multiz/structures_vr.dm
index e55b0eae5a0..8f96800a7ea 100644
--- a/code/modules/multiz/structures_vr.dm
+++ b/code/modules/multiz/structures_vr.dm
@@ -76,4 +76,47 @@
M << 'sound/effects/phasein.ogg'
playsound(src, 'sound/effects/phasein.ogg', 100, 1)
M.forceMove(dest.loc)
+ if(istype(M, /mob/living) && dest.abductor)
+ var/mob/living/L = M
+ //Situations to get the mob out of
+ if(L.buckled)
+ L.buckled.unbuckle_mob()
+ if(istype(L.loc,/obj/mecha))
+ var/obj/mecha/ME = L.loc
+ ME.go_out()
+ else if(istype(L.loc,/obj/machinery/sleeper))
+ var/obj/machinery/sleeper/SL = L.loc
+ SL.go_out()
+ else if(istype(L.loc,/obj/machinery/recharge_station))
+ var/obj/machinery/recharge_station/RS = L.loc
+ RS.go_out()
+ if(!issilicon(L)) //Don't drop borg modules...
+ var/list/mob_contents = list() //Things which are actually drained as a result of the above not being null.
+ mob_contents |= L // The recursive check below does not add the object being checked to its list.
+ mob_contents |= recursive_content_check(L, mob_contents, recursion_limit = 3, client_check = 0, sight_check = 0, include_mobs = 1, include_objects = 1, ignore_show_messages = 1)
+ for(var/obj/item/weapon/holder/I in mob_contents)
+ var/obj/item/weapon/holder/H = I
+ var/mob/living/MI = H.held_mob
+ MI.forceMove(get_turf(H))
+ if(!issilicon(MI)) //Don't drop borg modules...
+ for(var/obj/item/II in MI)
+ if(istype(II,/obj/item/weapon/implant) || istype(II,/obj/item/device/nif))
+ continue
+ MI.drop_from_inventory(II, dest.loc)
+ var/obj/effect/landmark/finaldest = pick(awayabductors)
+ MI.forceMove(finaldest.loc)
+ sleep(1)
+ MI.Paralyse(10)
+ MI << 'sound/effects/bamf.ogg'
+ to_chat(MI,"You're starting to come to. You feel like you've been out for a few minutes, at least... ")
+ for(var/obj/item/I in L)
+ if(istype(I,/obj/item/weapon/implant) || istype(I,/obj/item/device/nif))
+ continue
+ L.drop_from_inventory(I, dest.loc)
+ var/obj/effect/landmark/finaldest = pick(awayabductors)
+ L.forceMove(finaldest.loc)
+ sleep(1)
+ L.Paralyse(10)
+ L << 'sound/effects/bamf.ogg'
+ to_chat(L,"You're starting to come to. You feel like you've been out for a few minutes, at least... ")
return
diff --git a/code/modules/organs/internal/brain.dm b/code/modules/organs/internal/brain.dm
index 30c539bbde3..016e3fce3cc 100644
--- a/code/modules/organs/internal/brain.dm
+++ b/code/modules/organs/internal/brain.dm
@@ -33,7 +33,7 @@ GLOBAL_LIST_BOILERPLATE(all_brain_organs, /obj/item/organ/internal/brain)
if(!owner || owner.stat == DEAD)
defib_timer = max(--defib_timer, 0)
else
- defib_timer = min(++defib_timer, (config.defib_timer MINUTES) / 2)
+ defib_timer = min(++defib_timer, (config.defib_timer MINUTES) / 20) // Time vars measure things in ticks. Life tick happens every ~2 seconds, therefore dividing by 20
/obj/item/organ/internal/brain/proc/can_assist()
return can_assist
@@ -81,7 +81,7 @@ GLOBAL_LIST_BOILERPLATE(all_brain_organs, /obj/item/organ/internal/brain)
/obj/item/organ/internal/brain/New()
..()
health = config.default_brain_health
- defib_timer = (config.defib_timer MINUTES) / 2
+ defib_timer = (config.defib_timer MINUTES) / 20 // Time vars measure things in ticks. Life tick happens every ~2 seconds, therefore dividing by 20
spawn(5)
if(brainmob)
butcherable = FALSE
@@ -103,7 +103,7 @@ GLOBAL_LIST_BOILERPLATE(all_brain_organs, /obj/item/organ/internal/brain)
if(istype(H))
brainmob.dna = H.dna.Clone()
brainmob.timeofhostdeath = H.timeofdeath
- brainmob.ooc_notes = H.ooc_notes //VOREStation Edit
+ brainmob.ooc_notes = H.ooc_notes //VOREStation Edit
// Copy modifiers.
for(var/datum/modifier/M in H.modifiers)
diff --git a/code/modules/organs/organ.dm b/code/modules/organs/organ.dm
index c60420d359c..9047eb2665d 100644
--- a/code/modules/organs/organ.dm
+++ b/code/modules/organs/organ.dm
@@ -84,8 +84,8 @@ var/list/organ_cache = list()
if(!LAZYLEN(holder.organs_by_name))
holder.organs_by_name = list()
- holder.internal_organs |= src
- holder.internal_organs_by_name[organ_tag] = src
+ holder.organs |= src
+ holder.organs_by_name[organ_tag] = src
if(!max_damage)
max_damage = min_broken_damage * 2
diff --git a/code/modules/organs/organ_icon.dm b/code/modules/organs/organ_icon.dm
index 1fda536c935..86e71c4fc2e 100644
--- a/code/modules/organs/organ_icon.dm
+++ b/code/modules/organs/organ_icon.dm
@@ -61,6 +61,8 @@ var/global/list/limb_icon_cache = list()
if(!iscarbon(owner) || !owner.species)
return
+ var/icon/eyecon //VOREStation Edit -- holds eye icon to render over markings later.
+
//Eye color/icon
var/should_have_eyes = owner.should_have_organ(O_EYES)
var/has_eye_color = owner.species.appearance_flags & HAS_EYE_COLOR
@@ -79,8 +81,14 @@ var/global/list/limb_icon_cache = list()
//We have weird other-sorts of eyes (as we're not supposed to have eye organ, but we have HAS_EYE_COLOR species)
else
eyes_icon.Blend(rgb(owner.r_eyes, owner.g_eyes, owner.b_eyes), ICON_ADD)
- add_overlay(eyes_icon)
- mob_icon.Blend(eyes_icon, ICON_OVERLAY)
+
+ //VOREStation edit -- allow rendering of eyes over markings.
+ if(eyes_over_markings)
+ eyecon = eyes_icon
+ else
+ add_overlay(eyes_icon)
+ mob_icon.Blend(eyes_icon, ICON_OVERLAY)
+ icon_cache_key += "[eye_icon]"
//Lip color/icon
if(owner.lip_style && (species && (species.appearance_flags & HAS_LIPS)))
@@ -97,6 +105,11 @@ var/global/list/limb_icon_cache = list()
mob_icon.Blend(mark_s, ICON_OVERLAY) //So when it's on your body, it has icons
icon_cache_key += "[M][markings[M]["color"]]"
+ if(eyes_over_markings && eyecon) //VOREStation edit -- toggle to render eyes above markings.
+ add_overlay(eyecon)
+ mob_icon.Blend(eyecon, ICON_OVERLAY)
+ icon_cache_key += "[eye_icon]"
+
add_overlay(get_hair_icon())
return mob_icon
diff --git a/code/modules/organs/robolimbs_vr.dm b/code/modules/organs/robolimbs_vr.dm
index 5182c70e558..2ed4d60fcd2 100644
--- a/code/modules/organs/robolimbs_vr.dm
+++ b/code/modules/organs/robolimbs_vr.dm
@@ -3,6 +3,25 @@
var/includes_wing //Cyberlimbs dmi includes a wing sprite to wear.
var/list/whitelisted_to //List of ckeys that are allowed to pick this in charsetup.
+//CitRP Port
+var/const/cyberbeast_monitor_styles = "blank=cyber_blank;\
+ default=cyber_default;\
+ eyes=eyes;\
+ static=cyber_static;\
+ alert=cyber_alert;\
+ happy=cyber_happ;\
+ unhappy=cyber_unhapp;\
+ flat=cyber_flat;\
+ sad=cyber_sad;\
+ heart=cyber_heart;\
+ cross=cyber_cross;\
+ wave=cyber_wave;\
+ uwu=cyber_uwu;\
+ question=cyber_question;\
+ lowpower=cyber_lowpower;\
+ idle=cyber_idle;\
+ nwn=cyber_nwn"
+
//////////////// For-specific-character fluff ones /////////////////
// arokha : Aronai Sieyes
/datum/robolimb/kitsuhana
@@ -46,7 +65,6 @@
icon = 'icons/obj/items_vr.dmi'
icon_state = "verkdisk"
-
// tucker0666 : Frost
/datum/robolimb/zenghu_frost
company = "Zeng-Hu (Custom)"
@@ -209,3 +227,16 @@
/obj/item/weapon/disk/limb/dsi_teshari
company = "DSI - Teshari"
+
+//Ported from CitRP
+/datum/robolimb/cyber_beast
+ company = "Cyber Tech"
+ desc = "Adjusted for deep space, the material is durable and heavy."
+ icon = 'icons/mob/human_races/cyberlimbs/c-tech/c_beast.dmi'
+ unavailable_to_build = 1
+ parts = list(BP_HEAD)
+ monitor_icon = 'icons/mob/monitor_icons_vr.dmi'
+ monitor_styles = cyberbeast_monitor_styles
+
+/obj/item/weapon/disk/limb/cyber_beast
+ company = "Cyber Tech"
diff --git a/code/modules/organs/subtypes/standard.dm b/code/modules/organs/subtypes/standard.dm
index 1ebd92106c1..1c4fb5ee27e 100644
--- a/code/modules/organs/subtypes/standard.dm
+++ b/code/modules/organs/subtypes/standard.dm
@@ -269,6 +269,7 @@
var/eye_icon = "eyes_s"
force = 3
throwforce = 7
+ var/eyes_over_markings = FALSE //VOREStation edit
var/eye_icon_location = 'icons/mob/human_face.dmi'
diff --git a/code/modules/overmap/abductor_vr.dm b/code/modules/overmap/abductor_vr.dm
new file mode 100644
index 00000000000..db5283014b6
--- /dev/null
+++ b/code/modules/overmap/abductor_vr.dm
@@ -0,0 +1,17 @@
+// The alien ships should use fancy consoles and things
+/obj/machinery/computer/ship/helm/abductor
+ icon = 'icons/obj/abductor.dmi'
+ icon_state = "console"
+
+/obj/machinery/computer/ship/engines/abductor
+ icon = 'icons/obj/abductor.dmi'
+ icon_state = "camera_flipped"
+
+/obj/machinery/computer/ship/navigation/abductor
+ icon = 'icons/obj/abductor.dmi'
+ icon_state = "camera"
+
+/obj/machinery/computer/ship/sensors/abductor
+ icon = 'icons/obj/abductor.dmi'
+ icon_state = "console"
+ icon_screen = null
\ No newline at end of file
diff --git a/code/modules/overmap/ships/computers/ship_vr.dm b/code/modules/overmap/ships/computers/ship_vr.dm
new file mode 100644
index 00000000000..b317eb3c1e4
--- /dev/null
+++ b/code/modules/overmap/ships/computers/ship_vr.dm
@@ -0,0 +1,13 @@
+/*
+Ships can now be hijacked!
+*/
+/obj/machinery/computer/ship
+ var/hacked = 0 // Has been emagged, no access restrictions.
+
+/obj/machinery/computer/ship/emag_act(var/remaining_charges, var/mob/user)
+ if (!hacked)
+ req_access = list()
+ req_one_access = list()
+ hacked = 1
+ to_chat(user, "You short out the console's ID checking system. It's now available to everyone!")
+ return 1
diff --git a/code/modules/overmap/spacetravel.dm b/code/modules/overmap/spacetravel.dm
index 8bae95434ad..cf1787c4ab2 100644
--- a/code/modules/overmap/spacetravel.dm
+++ b/code/modules/overmap/spacetravel.dm
@@ -85,6 +85,10 @@ proc/overmap_spacetravel(var/turf/space/T, var/atom/movable/A)
if (!M)
return
+ // Is the landmark still on the map.
+ if(!isturf(M.loc))
+ return
+
// Don't let AI eyes yeet themselves off the map
if(istype(A, /mob/observer/eye))
return
diff --git a/code/modules/paperwork/pen.dm b/code/modules/paperwork/pen.dm
index 5aa1f6901ff..6876b5af369 100644
--- a/code/modules/paperwork/pen.dm
+++ b/code/modules/paperwork/pen.dm
@@ -202,7 +202,8 @@
/obj/item/weapon/pen/reagent/sleepy/New()
..()
- reagents.add_reagent("chloralhydrate", 22) //Used to be 100 sleep toxin//30 Chloral seems to be fatal, reducing it to 22./N
+ reagents.add_reagent("chloralhydrate", 1) //VOREStation Edit
+ reagents.add_reagent("stoxin", 14) //VOREStation Add
/*
diff --git a/code/modules/pda/app.dm b/code/modules/pda/app.dm
index eb64125ee9b..99c98220193 100644
--- a/code/modules/pda/app.dm
+++ b/code/modules/pda/app.dm
@@ -41,14 +41,14 @@
pda.play_ringtone()
if(blink && !(src in pda.notifying_programs))
- pda.overlays += image('icons/obj/pda.dmi', "pda-r")
+ pda.overlays += image(icon, "pda-r")
pda.notifying_programs |= src
/datum/data/pda/proc/unnotify()
if(src in pda.notifying_programs)
pda.notifying_programs -= src
if(!pda.notifying_programs.len)
- pda.overlays -= image('icons/obj/pda.dmi', "pda-r")
+ pda.overlays -= image(icon, "pda-r")
// An app has a button on the home screen and its own UI
/datum/data/pda/app
diff --git a/code/modules/pda/pda.dm b/code/modules/pda/pda.dm
index 2c3b3687304..f05a1056fde 100644
--- a/code/modules/pda/pda.dm
+++ b/code/modules/pda/pda.dm
@@ -300,7 +300,7 @@ var/global/list/obj/item/device/pda/PDAs = list()
if(can_use(usr))
start_program(find_program(/datum/data/pda/app/main_menu))
notifying_programs.Cut()
- overlays -= image('icons/obj/pda.dmi', "pda-r")
+ overlays -= image(icon, "pda-r")
to_chat(usr, "You press the reset button on \the [src]. ")
else
to_chat(usr, "You cannot do this while restrained. ")
diff --git a/code/modules/planet/virgo3b_vr.dm b/code/modules/planet/virgo3b_vr.dm
index 791841aca71..26d33631a1d 100644
--- a/code/modules/planet/virgo3b_vr.dm
+++ b/code/modules/planet/virgo3b_vr.dm
@@ -1,7 +1,7 @@
var/datum/planet/virgo3b/planet_virgo3b = null
/datum/time/virgo3b
- seconds_in_day = 3 HOURS
+ seconds_in_day = 6 HOURS
/datum/planet/virgo3b
name = "Virgo-3B"
diff --git a/code/modules/planet/virgo4_vr.dm b/code/modules/planet/virgo4_vr.dm
new file mode 100644
index 00000000000..50c0b8426ee
--- /dev/null
+++ b/code/modules/planet/virgo4_vr.dm
@@ -0,0 +1,522 @@
+var/datum/planet/virgo4/planet_virgo4 = null
+
+/datum/time/virgo4
+ seconds_in_day = 24 HOURS
+
+/datum/planet/virgo4
+ name = "Virgo-4"
+ desc = "Zorren homeworld. Mostly dry and desolate, but ocean and fresh water are present, with scattered vegitation." //rewrite me
+ current_time = new /datum/time/virgo4()
+// expected_z_levels = list(1) // This is defined elsewhere.
+ planetary_wall_type = /turf/unsimulated/wall/planetary/normal/virgo4
+
+/datum/planet/virgo4/New()
+ ..()
+ planet_virgo4 = src
+ weather_holder = new /datum/weather_holder/virgo4(src)
+
+/datum/planet/virgo4/update_sun()
+ ..()
+ var/datum/time/time = current_time
+ var/length_of_day = time.seconds_in_day / 10 / 60 / 60
+ var/noon = length_of_day / 2
+ var/distance_from_noon = abs(text2num(time.show_time("hh")) - noon)
+ sun_position = distance_from_noon / noon
+ sun_position = abs(sun_position - 1)
+
+ var/low_brightness = null
+ var/high_brightness = null
+
+ var/low_color = null
+ var/high_color = null
+ var/min = 0
+
+ switch(sun_position)
+ if(0 to 0.30) // Night
+ low_brightness = 0.1
+ low_color = "#000066"
+
+ high_brightness = 0.2
+ high_color = "#66004D"
+ min = 0
+
+ if(0.30 to 0.40) // Twilight
+ low_brightness = 0.4
+ low_color = "#66004D"
+
+ high_brightness = 0.6
+ high_color = "#CC3300"
+ min = 0.40
+
+ if(0.40 to 0.50) // Sunrise/set
+ low_brightness = 0.7
+ low_color = "#CC3300"
+
+ high_brightness = 0.9
+ high_color = "#FF9933"
+ min = 0.50
+
+ if(0.50 to 1.00) // Noon
+ low_brightness = 1
+ low_color = "#DDDDDD"
+
+ high_brightness = 2
+ high_color = "#FFFFFF"
+ min = 0.70
+
+ var/interpolate_weight = (abs(min - sun_position)) * 4
+ var/weather_light_modifier = 1
+ if(weather_holder && weather_holder.current_weather)
+ weather_light_modifier = weather_holder.current_weather.light_modifier
+
+ var/new_brightness = (LERP(low_brightness, high_brightness, interpolate_weight) ) * weather_light_modifier
+
+ var/new_color = null
+ if(weather_holder && weather_holder.current_weather && weather_holder.current_weather.light_color)
+ new_color = weather_holder.current_weather.light_color
+ else
+ var/list/low_color_list = hex2rgb(low_color)
+ var/low_r = low_color_list[1]
+ var/low_g = low_color_list[2]
+ var/low_b = low_color_list[3]
+
+ var/list/high_color_list = hex2rgb(high_color)
+ var/high_r = high_color_list[1]
+ var/high_g = high_color_list[2]
+ var/high_b = high_color_list[3]
+
+ var/new_r = LERP(low_r, high_r, interpolate_weight)
+ var/new_g = LERP(low_g, high_g, interpolate_weight)
+ var/new_b = LERP(low_b, high_b, interpolate_weight)
+
+ new_color = rgb(new_r, new_g, new_b)
+
+ spawn(1)
+ update_sun_deferred(2, new_brightness, new_color)
+
+
+/datum/weather_holder/virgo4
+ temperature = T0C
+ allowed_weather_types = list(
+ WEATHER_CLEAR = new /datum/weather/virgo4/clear(),
+ WEATHER_OVERCAST = new /datum/weather/virgo4/overcast(),
+ WEATHER_LIGHT_SNOW = new /datum/weather/virgo4/light_snow(),
+ WEATHER_SNOW = new /datum/weather/virgo4/snow(),
+ WEATHER_BLIZZARD = new /datum/weather/virgo4/blizzard(),
+ WEATHER_RAIN = new /datum/weather/virgo4/rain(),
+ WEATHER_STORM = new /datum/weather/virgo4/storm(),
+ WEATHER_HAIL = new /datum/weather/virgo4/hail(),
+ WEATHER_BLOOD_MOON = new /datum/weather/virgo4/blood_moon(),
+ WEATHER_EMBERFALL = new /datum/weather/virgo4/emberfall(),
+ WEATHER_ASH_STORM = new /datum/weather/virgo4/ash_storm(),
+ WEATHER_FALLOUT = new /datum/weather/virgo4/fallout()
+ )
+ roundstart_weather_chances = list(
+ WEATHER_CLEAR = 50,
+ WEATHER_OVERCAST = 10,
+ WEATHER_RAIN = 1
+ )
+
+/datum/weather/virgo4
+ name = "virgo4"
+ temp_high = 303.15 // 30c
+ temp_low = 298.15 // 25c
+
+/datum/weather/virgo4/clear
+ name = "clear"
+ transition_chances = list(
+ WEATHER_CLEAR = 60,
+ WEATHER_OVERCAST = 20)
+ transition_messages = list(
+ "The sky clears up.",
+ "The sky is visible.",
+ "The weather is calm."
+ )
+ sky_visible = TRUE
+ observed_message = "The sky is clear."
+
+/datum/weather/virgo4/overcast
+ name = "overcast"
+ temp_high = 293.15 // 20c
+ temp_low = 288.15 // 15c
+ light_modifier = 0.8
+ transition_chances = list(
+ WEATHER_CLEAR = 25,
+ WEATHER_OVERCAST = 50,
+ WEATHER_RAIN = 5
+ )
+ observed_message = "It is overcast, all you can see are clouds."
+ transition_messages = list(
+ "All you can see above are clouds.",
+ "Clouds cut off your view of the sky.",
+ "It's very cloudy."
+ )
+
+/datum/weather/virgo4/light_snow
+ name = "light snow"
+ icon_state = "snowfall_light"
+ temp_high = 268.15 // -5c
+ temp_low = 263.15 // -10c
+ light_modifier = 0.7
+ transition_chances = list(
+ WEATHER_LIGHT_SNOW = 100
+ )
+ observed_message = "It is snowing lightly."
+ transition_messages = list(
+ "Small snowflakes begin to fall from above.",
+ "It begins to snow lightly.",
+ )
+
+/datum/weather/virgo4/snow
+ name = "moderate snow"
+ icon_state = "snowfall_med"
+ temp_high = 268.15 // -5c
+ temp_low = 263.15 // -10c
+ wind_high = 2
+ wind_low = 0
+ light_modifier = 0.5
+ flight_failure_modifier = 5
+ transition_chances = list(
+ WEATHER_LIGHT_SNOW = 100
+ )
+ observed_message = "It is snowing."
+ transition_messages = list(
+ "It's starting to snow.",
+ "The air feels much colder as snowflakes fall from above."
+ )
+ outdoor_sounds_type = /datum/looping_sound/weather/outside_snow
+ indoor_sounds_type = /datum/looping_sound/weather/inside_snow
+
+/datum/weather/virgo4/snow/process_effects()
+ ..()
+ for(var/turf/simulated/floor/outdoors/snow/S in SSplanets.new_outdoor_turfs) //This didn't make any sense before SSplanets, either
+ if(S.z in holder.our_planet.expected_z_levels)
+ for(var/dir_checked in cardinal)
+ var/turf/simulated/floor/T = get_step(S, dir_checked)
+ if(istype(T))
+ if(istype(T, /turf/simulated/floor/outdoors) && prob(33))
+ T.chill()
+
+/datum/weather/virgo4/blizzard
+ name = "blizzard"
+ icon_state = "snowfall_heavy"
+ temp_high = 268.15 // -5c
+ temp_low = 263.15 // -10c
+ wind_high = 4
+ wind_low = 2
+ light_modifier = 0.3
+ flight_failure_modifier = 10
+ transition_chances = list(
+ WEATHER_BLIZZARD = 100
+ )
+ observed_message = "A blizzard blows snow everywhere."
+ transition_messages = list(
+ "Strong winds howl around you as a blizzard appears.",
+ "It starts snowing heavily, and it feels extremly cold now."
+ )
+ outdoor_sounds_type = /datum/looping_sound/weather/outside_blizzard
+ indoor_sounds_type = /datum/looping_sound/weather/inside_blizzard
+
+/datum/weather/virgo4/blizzard/process_effects()
+ ..()
+ for(var/turf/simulated/floor/outdoors/snow/S in SSplanets.new_outdoor_turfs) //This didn't make any sense before SSplanets, either
+ if(S.z in holder.our_planet.expected_z_levels)
+ for(var/dir_checked in cardinal)
+ var/turf/simulated/floor/T = get_step(S, dir_checked)
+ if(istype(T))
+ if(istype(T, /turf/simulated/floor/outdoors) && prob(50))
+ T.chill()
+
+/datum/weather/virgo4/rain
+ name = "rain"
+ icon_state = "rain"
+ temp_high = 288.15 // 15c
+ temp_low = 283.15 // 10c
+ wind_high = 2
+ wind_low = 1
+ light_modifier = 0.5
+ effect_message = "Rain falls on you. "
+
+ transition_chances = list(
+ WEATHER_OVERCAST = 25,
+ WEATHER_RAIN = 50
+ )
+ observed_message = "It is raining."
+ transition_messages = list(
+ "The sky is dark, and rain falls down upon you."
+ )
+
+/datum/weather/virgo4/rain/process_effects()
+ ..()
+ for(var/mob/living/L in living_mob_list)
+ if(L.z in holder.our_planet.expected_z_levels)
+ var/turf/T = get_turf(L)
+ if(!T.outdoors)
+ continue // They're indoors, so no need to rain on them.
+
+ // If they have an open umbrella, it'll guard from rain
+ if(istype(L.get_active_hand(), /obj/item/weapon/melee/umbrella))
+ var/obj/item/weapon/melee/umbrella/U = L.get_active_hand()
+ if(U.open)
+ if(show_message)
+ to_chat(L, "Rain patters softly onto your umbrella. ")
+ continue
+ else if(istype(L.get_inactive_hand(), /obj/item/weapon/melee/umbrella))
+ var/obj/item/weapon/melee/umbrella/U = L.get_inactive_hand()
+ if(U.open)
+ if(show_message)
+ to_chat(L, "Rain patters softly onto your umbrella. ")
+ continue
+
+ L.water_act(1)
+ if(show_message)
+ to_chat(L, effect_message)
+
+/datum/weather/virgo4/storm
+ name = "storm"
+ icon_state = "storm"
+ wind_high = 4
+ wind_low = 2
+ light_modifier = 0.3
+ flight_failure_modifier = 10
+ effect_message = "Rain falls on you, drenching you in water. "
+
+ var/next_lightning_strike = 0 // world.time when lightning will strike.
+ var/min_lightning_cooldown = 5 SECONDS
+ var/max_lightning_cooldown = 1 MINUTE
+ observed_message = "An intense storm pours down over the region."
+ transition_messages = list(
+ "You feel intense winds hit you as the weather takes a turn for the worst.",
+ "Loud thunder is heard in the distance.",
+ "A bright flash heralds the approach of a storm."
+ )
+
+
+ transition_chances = list(
+ WEATHER_STORM = 100
+ )
+
+/datum/weather/virgo4/storm/process_effects()
+ ..()
+ for(var/mob/living/L in living_mob_list)
+ if(L.z in holder.our_planet.expected_z_levels)
+ var/turf/T = get_turf(L)
+ if(!T.outdoors)
+ continue // They're indoors, so no need to rain on them.
+
+ // If they have an open umbrella, it'll guard from rain
+ if(istype(L.get_active_hand(), /obj/item/weapon/melee/umbrella))
+ var/obj/item/weapon/melee/umbrella/U = L.get_active_hand()
+ if(U.open)
+ if(show_message)
+ to_chat(L, "Rain showers loudly onto your umbrella! ")
+ continue
+ else if(istype(L.get_inactive_hand(), /obj/item/weapon/melee/umbrella))
+ var/obj/item/weapon/melee/umbrella/U = L.get_inactive_hand()
+ if(U.open)
+ if(show_message)
+ to_chat(L, "Rain showers loudly onto your umbrella! ")
+ continue
+
+
+ L.water_act(2)
+ if(show_message)
+ to_chat(L, effect_message)
+
+ handle_lightning()
+
+// This gets called to do lightning periodically.
+// There is a seperate function to do the actual lightning strike, so that badmins can play with it.
+/datum/weather/virgo4/storm/proc/handle_lightning()
+ if(world.time < next_lightning_strike)
+ return // It's too soon to strike again.
+ next_lightning_strike = world.time + rand(min_lightning_cooldown, max_lightning_cooldown)
+ var/turf/T = pick(holder.our_planet.planet_floors) // This has the chance to 'strike' the sky, but that might be a good thing, to scare reckless pilots.
+ lightning_strike(T)
+
+/datum/weather/virgo4/hail
+ name = "hail"
+ icon_state = "hail"
+ light_modifier = 0.3
+ flight_failure_modifier = 15
+ timer_low_bound = 2
+ timer_high_bound = 5
+ effect_message = "The hail smacks into you! "
+
+ transition_chances = list(
+ WEATHER_HAIL = 100
+ )
+ observed_message = "Ice is falling from the sky."
+ transition_messages = list(
+ "Ice begins to fall from the sky.",
+ "It begins to hail.",
+ "An intense chill is felt, and chunks of ice start to fall from the sky, towards you."
+ )
+
+/datum/weather/virgo4/hail/process_effects()
+ ..()
+ for(var/humie in human_mob_list)
+ var/mob/living/carbon/human/H = humie
+ if(H.z in holder.our_planet.expected_z_levels)
+ var/turf/T = get_turf(H)
+ if(!T.outdoors)
+ continue // They're indoors, so no need to pelt them with ice.
+
+ // If they have an open umbrella, it'll guard from hail
+ var/obj/item/weapon/melee/umbrella/U
+ if(istype(H.get_active_hand(), /obj/item/weapon/melee/umbrella))
+ U = H.get_active_hand()
+ else if(istype(H.get_inactive_hand(), /obj/item/weapon/melee/umbrella))
+ U = H.get_inactive_hand()
+ if(U && U.open)
+ if(show_message)
+ to_chat(H, "Hail patters onto your umbrella. ")
+ continue
+
+ var/target_zone = pick(BP_ALL)
+ var/amount_blocked = H.run_armor_check(target_zone, "melee")
+ var/amount_soaked = H.get_armor_soak(target_zone, "melee")
+
+ var/damage = rand(1,3)
+
+ if(amount_blocked >= 30)
+ continue // No need to apply damage. Hardhats are 30. They should probably protect you from hail on your head.
+ //Voidsuits are likewise 40, and riot, 80. Clothes are all less than 30.
+
+ if(amount_soaked >= damage)
+ continue // No need to apply damage.
+
+ H.apply_damage(damage, BRUTE, target_zone, amount_blocked, amount_soaked, used_weapon = "hail")
+ if(show_message)
+ to_chat(H, effect_message)
+
+/datum/weather/virgo4/blood_moon
+ name = "blood moon"
+ light_modifier = 0.5
+ light_color = "#FF0000"
+ temp_high = 293.15 // 20c
+ temp_low = 283.15 // 10c
+ flight_failure_modifier = 25
+ transition_chances = list(
+ WEATHER_BLOODMOON = 100
+ )
+ observed_message = "Everything is red. Something really ominous is going on."
+ transition_messages = list(
+ "The sky turns blood red!"
+ )
+ outdoor_sounds_type = /datum/looping_sound/weather/wind
+ indoor_sounds_type = /datum/looping_sound/weather/wind/indoors
+
+// Ash and embers fall forever, such as from a volcano or something.
+/datum/weather/virgo4/emberfall
+ name = "emberfall"
+ icon_state = "ashfall_light"
+ light_modifier = 0.7
+ light_color = "#880000"
+ temp_high = 293.15 // 20c
+ temp_low = 283.15 // 10c
+ flight_failure_modifier = 20
+ transition_chances = list(
+ WEATHER_EMBERFALL = 100
+ )
+ observed_message = "Soot, ash, and embers float down from above."
+ transition_messages = list(
+ "Gentle embers waft down around you like grotesque snow."
+ )
+ outdoor_sounds_type = /datum/looping_sound/weather/wind
+ indoor_sounds_type = /datum/looping_sound/weather/wind/indoors
+
+// Like the above but a lot more harmful.
+/datum/weather/virgo4/ash_storm
+ name = "ash storm"
+ icon_state = "ashfall_heavy"
+ light_modifier = 0.1
+ light_color = "#FF0000"
+ temp_high = 323.15 // 50c
+ temp_low = 313.15 // 40c
+ wind_high = 6
+ wind_low = 3
+ flight_failure_modifier = 50
+ transition_chances = list(
+ WEATHER_ASH_STORM = 100
+ )
+ observed_message = "All that can be seen is black smoldering ash."
+ transition_messages = list(
+ "Smoldering clouds of scorching ash billow down around you!"
+ )
+ // Lets recycle.
+ outdoor_sounds_type = /datum/looping_sound/weather/outside_blizzard
+ indoor_sounds_type = /datum/looping_sound/weather/inside_blizzard
+
+/datum/weather/virgo4/ash_storm/process_effects()
+ ..()
+ for(var/thing in living_mob_list)
+ var/mob/living/L = thing
+ if(L.z in holder.our_planet.expected_z_levels)
+ var/turf/T = get_turf(L)
+ if(!T.outdoors)
+ continue // They're indoors, so no need to burn them with ash.
+
+ L.inflict_heat_damage(rand(1, 3))
+
+
+// Totally radical.
+/datum/weather/virgo4/fallout
+ name = "fallout"
+ icon_state = "fallout"
+ light_modifier = 0.7
+ light_color = "#CCFFCC"
+ flight_failure_modifier = 30
+ transition_chances = list(
+ WEATHER_FALLOUT = 100
+ )
+ observed_message = "Radioactive soot and ash rains down from the heavens."
+ transition_messages = list(
+ "Radioactive soot and ash start to float down around you, contaminating whatever they touch."
+ )
+ outdoor_sounds_type = /datum/looping_sound/weather/wind
+ indoor_sounds_type = /datum/looping_sound/weather/wind/indoors
+
+ // How much radiation a mob gets while on an outside tile.
+ var/direct_rad_low = RAD_LEVEL_LOW
+ var/direct_rad_high = RAD_LEVEL_MODERATE
+
+ // How much radiation is bursted onto a random tile near a mob.
+ var/fallout_rad_low = RAD_LEVEL_HIGH
+ var/fallout_rad_high = RAD_LEVEL_VERY_HIGH
+
+/datum/weather/virgo4/fallout/process_effects()
+ ..()
+ for(var/thing in living_mob_list)
+ var/mob/living/L = thing
+ if(L.z in holder.our_planet.expected_z_levels)
+ irradiate_nearby_turf(L)
+ var/turf/T = get_turf(L)
+ if(!T.outdoors)
+ continue // They're indoors, so no need to irradiate them with fallout.
+
+ L.rad_act(rand(direct_rad_low, direct_rad_high))
+
+// This makes random tiles near people radioactive for awhile.
+// Tiles far away from people are left alone, for performance.
+/datum/weather/virgo4/fallout/proc/irradiate_nearby_turf(mob/living/L)
+ if(!istype(L))
+ return
+ var/list/turfs = RANGE_TURFS(world.view, L)
+ var/turf/T = pick(turfs) // We get one try per tick.
+ if(!istype(T))
+ return
+ if(T.outdoors)
+ SSradiation.radiate(T, rand(fallout_rad_low, fallout_rad_high))
+
+/turf/unsimulated/wall/planetary/normal/virgo4
+ name = "deep ocean"
+ alpha = 0
+
+/obj/machinery/power/smes/buildable/offmap_spawn/empty/New()
+ ..(1)
+ charge = 0
+ RCon = TRUE
+ input_level = input_level_max
+ output_level = output_level_max
+ input_attempt = TRUE
\ No newline at end of file
diff --git a/code/modules/power/batteryrack_vr.dm b/code/modules/power/batteryrack_vr.dm
index 69a2cb53308..8cc2b2c6367 100644
--- a/code/modules/power/batteryrack_vr.dm
+++ b/code/modules/power/batteryrack_vr.dm
@@ -1,3 +1,15 @@
+/obj/machinery/power/smes/batteryrack/mapped
+ var/cell_type = /obj/item/weapon/cell/apc
+ var/cell_number = 3
+
+/obj/machinery/power/smes/batteryrack/mapped/Initialize()
+ . = ..()
+ for(var/i = 1 to cell_number)
+ if(i > max_cells)
+ break
+ var/obj/item/weapon/cell/newcell = new cell_type(src.loc)
+ insert_cell(newcell)
+
/obj/item/weapon/module/power_control/attackby(var/obj/item/I, var/mob/user)
if(I.is_multitool())
to_chat(user, SPAN_NOTICE("You begin tweaking the power control circuits to support a power cell rack."))
diff --git a/code/modules/power/cells/esoteric_cells.dm b/code/modules/power/cells/esoteric_cells.dm
new file mode 100644
index 00000000000..b45c19a783a
--- /dev/null
+++ b/code/modules/power/cells/esoteric_cells.dm
@@ -0,0 +1,74 @@
+
+/obj/item/weapon/cell/spike
+ name = "modified power cell"
+ desc = "A modified power cell sitting in a highly conductive chassis."
+ origin_tech = list(TECH_POWER = 2)
+ icon_state = "spikecell"
+ maxcharge = 10000
+ matter = list(DEFAULT_WALL_MATERIAL = 1000, MAT_GLASS = 80, MAT_SILVER = 100)
+ self_recharge = TRUE
+ charge_amount = 150
+
+/obj/item/weapon/cell/spike/process()
+ ..()
+
+ var/turf/Center = get_turf(src)
+
+ var/shock_count = 0
+ for(var/turf/T in range(Center, 1))
+
+ if(prob(round(charge / 250)) && charge >= (maxcharge / 4))
+
+ if(locate(/obj/effect/temporary_effect/pulse/staticshock) in T)
+ continue
+
+ var/conductive = FALSE
+
+ if(istype(T, /turf/simulated/wall))
+ var/turf/simulated/wall/WT = T
+
+ if(WT.material.conductive)
+ conductive = TRUE
+ else if(WT.girder_material.conductive)
+ conductive = TRUE
+ else if(WT.reinf_material && WT.reinf_material.conductive)
+ conductive = TRUE
+
+ if(istype(T, /turf/simulated/floor))
+ var/turf/simulated/floor/F = T
+ if(istype(F.flooring, /decl/flooring/reinforced))
+ conductive = TRUE
+
+ if(conductive)
+ shock_count += 1
+ new /obj/effect/temporary_effect/pulse/staticshock(T)
+
+ if(shock_count)
+ while(shock_count)
+ use(200)
+ shock_count--
+
+/obj/effect/temporary_effect/pulse/staticshock
+ name = "electric field"
+ desc = "Caution: Do not touch."
+ pulses_remaining = 10
+ pulse_delay = 2 SECONDS
+ icon_state = "blue_static"
+
+/obj/effect/temporary_effect/pulse/staticshock/on_pulse()
+ ..()
+
+ for(var/mob/living/L in view(1, src))
+ if(!issilicon(L) && prob(L.mob_size))
+ var/obj/item/projectile/beam/shock/weak/P = new (get_turf(src))
+ P.launch_projectile_from_turf(L, BP_TORSO)
+
+ var/obj/item/weapon/plastique/C4 = locate() in get_turf(src)
+
+ if(C4)
+ C4.visible_message("The current fries \the [C4]! ")
+
+ if(prob(10))
+ C4.explode(get_turf(src))
+ else
+ qdel(C4)
diff --git a/code/modules/projectiles/guns/energy/cell_loaded_vr/ml3m_cells.dm b/code/modules/projectiles/guns/energy/cell_loaded_vr/ml3m_cells.dm
index 49f0a15e3f6..6663d6e3805 100644
--- a/code/modules/projectiles/guns/energy/cell_loaded_vr/ml3m_cells.dm
+++ b/code/modules/projectiles/guns/energy/cell_loaded_vr/ml3m_cells.dm
@@ -31,7 +31,8 @@
/obj/item/projectile/beam/medical_cell/brute/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustBruteLoss(-5)
+ if(target.stat != DEAD)
+ target.adjustBruteLoss(-10)
else
return 1
@@ -43,7 +44,8 @@
/obj/item/projectile/beam/medical_cell/burn/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustFireLoss(-5)
+ if(target.stat != DEAD)
+ target.adjustFireLoss(-10)
else
return 1
@@ -83,7 +85,8 @@
/obj/item/projectile/beam/medical_cell/toxin/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustToxLoss(-5)
+ if(target.stat != DEAD)
+ target.adjustToxLoss(-10)
else
return 1
@@ -95,10 +98,11 @@
/obj/item/projectile/beam/medical_cell/omni/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustBruteLoss(-2.5)
- target.adjustFireLoss(-2.5)
- target.adjustToxLoss(-2.5)
- target.adjustOxyLoss(-10)
+ if(target.stat != DEAD)
+ target.adjustBruteLoss(-5)
+ target.adjustFireLoss(-5)
+ target.adjustToxLoss(-5)
+ target.adjustOxyLoss(-20)
else
return 1
@@ -110,8 +114,9 @@
/obj/item/projectile/beam/medical_cell/antirad/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustToxLoss(-2.5)
- target.radiation = max(target.radiation - 150, 0) //same as 5 units of arithrazine, sans the brute damage
+ if(target.stat != DEAD)
+ target.adjustToxLoss(-5)
+ target.radiation = max(target.radiation - 350, 0) //same as 5 units of arithrazine, sans the brute damage
else
return 1
@@ -123,7 +128,8 @@
/obj/item/projectile/beam/medical_cell/brute2/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustBruteLoss(-10)
+ if(target.stat != DEAD)
+ target.adjustBruteLoss(-20)
else
return 1
@@ -135,7 +141,8 @@
/obj/item/projectile/beam/medical_cell/burn2/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustFireLoss(-10)
+ if(target.stat != DEAD)
+ target.adjustFireLoss(-20)
else
return 1
@@ -170,10 +177,11 @@
/obj/item/projectile/beam/medical_cell/omni2/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustBruteLoss(-5)
- target.adjustFireLoss(-5)
- target.adjustToxLoss(-5)
- target.adjustOxyLoss(-30)
+ if(target.stat != DEAD)
+ target.adjustBruteLoss(-10)
+ target.adjustFireLoss(-10)
+ target.adjustToxLoss(-10)
+ target.adjustOxyLoss(-60)
else
return 1
@@ -185,7 +193,8 @@
/obj/item/projectile/beam/medical_cell/toxin2/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustToxLoss(-20)
+ if(target.stat != DEAD)
+ target.adjustToxLoss(-20)
else
return 1
@@ -253,7 +262,8 @@
/obj/item/projectile/beam/medical_cell/brute3/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustBruteLoss(-20)
+ if(target.stat != DEAD)
+ target.adjustBruteLoss(-40)
else
return 1
@@ -265,7 +275,8 @@
/obj/item/projectile/beam/medical_cell/burn3/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustFireLoss(-20)
+ if(target.stat != DEAD)
+ target.adjustFireLoss(-40)
else
return 1
@@ -277,7 +288,8 @@
/obj/item/projectile/beam/medical_cell/toxin3/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustToxLoss(-20)
+ if(target.stat != DEAD)
+ target.adjustToxLoss(-40)
else
return 1
@@ -289,10 +301,11 @@
/obj/item/projectile/beam/medical_cell/omni3/on_hit(var/mob/living/carbon/human/target)
if(istype(target, /mob/living/carbon/human))
- target.adjustBruteLoss(-10)
- target.adjustFireLoss(-10)
- target.adjustToxLoss(-10)
- target.adjustOxyLoss(-60)
+ if(target.stat != DEAD)
+ target.adjustBruteLoss(-20)
+ target.adjustFireLoss(-20)
+ target.adjustToxLoss(-20)
+ target.adjustOxyLoss(-120)
else
return 1
@@ -337,4 +350,4 @@
target.show_message("The beam fires into your body, changing your size! ")
target.updateicon()
else
- return 1
\ No newline at end of file
+ return 1
diff --git a/code/modules/projectiles/guns/energy/laser.dm b/code/modules/projectiles/guns/energy/laser.dm
index 44b418ac80b..54428d570f2 100644
--- a/code/modules/projectiles/guns/energy/laser.dm
+++ b/code/modules/projectiles/guns/energy/laser.dm
@@ -29,9 +29,16 @@
one_handed_penalty = 0 // Not sure if two-handing gets checked for mounted weapons, but better safe than sorry.
/obj/item/weapon/gun/energy/laser/mounted/augment
+ name = "arm-laser"
+ desc = "A cruel malformation of a Hephaestus Industries G40E rifle, designed to kill with concentrated energy blasts, all while being stowable in the arm. This variant has the ability to \
+ switch between standard fire and a more efficent but weaker 'suppressive' fire."
use_external_power = FALSE
use_organic_power = TRUE
+ wielded_item_state = null
+ item_state = "augment_laser"
canremove = FALSE
+ one_handed_penalty = 5
+ battery_lock = 1
/obj/item/weapon/gun/energy/laser/practice
name = "practice laser carbine"
diff --git a/code/modules/projectiles/guns/energy/laser_vr.dm b/code/modules/projectiles/guns/energy/laser_vr.dm
index 86a32cb97fe..fe29c85f0ee 100644
--- a/code/modules/projectiles/guns/energy/laser_vr.dm
+++ b/code/modules/projectiles/guns/energy/laser_vr.dm
@@ -207,10 +207,10 @@
var/recharging = 0
var/phase_power = 75
- projectile_type = /obj/item/projectile/beam
+ projectile_type = /obj/item/projectile/beam/blue
firemodes = list(
- list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/beam, charge_cost = 300),
- list(mode_name="low-power", fire_delay=8, projectile_type=/obj/item/projectile/beam/weaklaser, charge_cost = 60),
+ list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/beam/blue, charge_cost = 300),
+ list(mode_name="low-power", fire_delay=8, projectile_type=/obj/item/projectile/beam/weaklaser/blue, charge_cost = 80),
)
/obj/item/weapon/gun/energy/locked/frontier/unload_ammo(var/mob/user)
@@ -260,8 +260,8 @@
modifystate = "carbinekill"
firemodes = list(
- list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/beam, modifystate="carbinekill", charge_cost = 300),
- list(mode_name="low-power", fire_delay=8, projectile_type=/obj/item/projectile/beam/weaklaser, modifystate="carbinestun", charge_cost = 60),
+ list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/beam/blue, modifystate="carbinekill", charge_cost = 300),
+ list(mode_name="low-power", fire_delay=8, projectile_type=/obj/item/projectile/beam/weaklaser/blue, modifystate="carbinestun", charge_cost = 80),
)
/obj/item/weapon/gun/energy/locked/frontier/carbine/update_icon()
@@ -290,8 +290,8 @@
charge_cost = 600
modifystate = "holdoutkill"
firemodes = list(
- list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/beam, modifystate="holdoutkill", charge_cost = 600),
- list(mode_name="low-power", fire_delay=8, projectile_type=/obj/item/projectile/beam/weaklaser, modifystate="holdoutstun", charge_cost = 120),
+ list(mode_name="lethal", fire_delay=12, projectile_type=/obj/item/projectile/beam/blue, modifystate="holdoutkill", charge_cost = 600),
+ list(mode_name="low-power", fire_delay=8, projectile_type=/obj/item/projectile/beam/weaklaser/blue, modifystate="holdoutstun", charge_cost = 160),
list(mode_name="stun", fire_delay=12, projectile_type=/obj/item/projectile/beam/stun/med, modifystate="holdoutshock", charge_cost = 300),
)
diff --git a/code/modules/projectiles/projectile/beams.dm b/code/modules/projectiles/projectile/beams.dm
index 41430bea38c..8c888fee3ef 100644
--- a/code/modules/projectiles/projectile/beams.dm
+++ b/code/modules/projectiles/projectile/beams.dm
@@ -261,3 +261,7 @@
agony = 15
eyeblur = 2
hitsound = 'sound/weapons/zapbang.ogg'
+
+/obj/item/projectile/beam/shock/weak
+ damage = 5
+ agony = 10
diff --git a/code/modules/projectiles/projectile/beams_vr.dm b/code/modules/projectiles/projectile/beams_vr.dm
index 8930260e9e7..f4aa2522de5 100644
--- a/code/modules/projectiles/projectile/beams_vr.dm
+++ b/code/modules/projectiles/projectile/beams_vr.dm
@@ -42,6 +42,11 @@
tracer_type = /obj/effect/projectile/tracer/laser_blue
impact_type = /obj/effect/projectile/impact/laser_blue
+/obj/item/projectile/beam/weaklaser/blue
+ muzzle_type = /obj/effect/projectile/muzzle/laser_blue
+ tracer_type = /obj/effect/projectile/tracer/laser_blue
+ impact_type = /obj/effect/projectile/impact/laser_blue
+
/obj/item/projectile/beam/medigun
name = "healing beam"
icon_state = "healbeam"
diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm
index 6b41160d7a3..6055ff244b3 100644
--- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm
+++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm
@@ -376,6 +376,22 @@
name = "Robust Harvest"
id = "robustharvest"
+/datum/reagent/toxin/fertilizer/tannin
+ name = "tannin"
+ id = "tannin"
+ description = "A chemical found in some plants as a natural pesticide. It may also aid in regulating growth."
+ taste_description = "puckering"
+ taste_mult = 1.2
+ reagent_state = LIQUID
+ strength = 1.5
+ color = "#e67819"
+
+/datum/reagent/toxin/fertilizer/tannin/touch_obj(var/obj/O, var/volume)
+ if(istype(O, /obj/item/stack/hairlesshide))
+ var/obj/item/stack/hairlesshide/HH = O
+ HH.rapidcure(round(volume))
+ ..()
+
/datum/reagent/toxin/plantbgone
name = "Plant-B-Gone"
id = "plantbgone"
diff --git a/code/modules/reagents/dispenser/dispenser_presets_vr.dm b/code/modules/reagents/dispenser/dispenser_presets_vr.dm
index ed63a60768a..f03f746d93d 100644
--- a/code/modules/reagents/dispenser/dispenser_presets_vr.dm
+++ b/code/modules/reagents/dispenser/dispenser_presets_vr.dm
@@ -65,3 +65,9 @@
/obj/item/weapon/reagent_containers/chem_disp_cartridge/nutriment,
/obj/item/weapon/reagent_containers/chem_disp_cartridge/protein
)
+
+/obj/machinery/chemical_dispenser/ert/specialops/abductor
+ name = "chemical dispenser"
+ icon = 'icons/obj/abductor_vr.dmi'
+ icon_state = "dispenser_2way"
+ desc = "A mysterious machine which can fabricate many chemicals."
\ No newline at end of file
diff --git a/code/modules/reagents/reagent_containers/glass_vr.dm b/code/modules/reagents/reagent_containers/glass_vr.dm
index 09e6ce559a1..79c19b82880 100644
--- a/code/modules/reagents/reagent_containers/glass_vr.dm
+++ b/code/modules/reagents/reagent_containers/glass_vr.dm
@@ -48,3 +48,10 @@
/obj/item/weapon/reagent_containers/glass/beaker/vial/hyronalin
name = "vial (hyronalin)"
prefill = list("hyronalin" = 30)
+
+/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup
+ name = "measuring cup"
+ desc = "A measuring cup."
+ icon = 'icons/obj/chemical_vr.dmi'
+ icon_state = "measure_cup"
+ item_state = "measure_cup"
\ No newline at end of file
diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm
index 91b04cf494f..37dd909a740 100644
--- a/code/modules/recycling/conveyor2.dm
+++ b/code/modules/recycling/conveyor2.dm
@@ -40,6 +40,18 @@
default_apply_parts()
+/obj/machinery/conveyor/proc/toggle_speed(var/forced)
+ if(forced)
+ speed_process = forced
+ else
+ speed_process = !speed_process // switching gears
+ if(speed_process) // high gear
+ STOP_MACHINE_PROCESSING(src)
+ START_PROCESSING(SSfastprocess, src)
+ else // low gear
+ STOP_PROCESSING(SSfastprocess, src)
+ START_MACHINE_PROCESSING(src)
+
/obj/machinery/conveyor/proc/setmove()
if(operating == FORWARDS)
movedir = forwards
@@ -186,6 +198,7 @@
var/list/conveyors // the list of converyors that are controlled by this switch
anchored = 1
+ var/speed_active = FALSE // are the linked conveyors on SSfastprocess?
@@ -200,6 +213,15 @@
if(C.id == id)
conveyors += C
+/obj/machinery/conveyor_switch/proc/toggle_speed(var/forced)
+ speed_active = !speed_active // switching gears
+ if(speed_active) // high gear
+ for(var/obj/machinery/conveyor/C in conveyors)
+ C.toggle_speed(TRUE)
+ else // low gear
+ for(var/obj/machinery/conveyor/C in conveyors)
+ C.toggle_speed(FALSE)
+
// update the icon depending on the position
/obj/machinery/conveyor_switch/proc/update()
diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm
index 1d46e16ce52..fd99a91d411 100644
--- a/code/modules/recycling/disposal.dm
+++ b/code/modules/recycling/disposal.dm
@@ -262,7 +262,7 @@
if(..())
return TRUE
- if(usr.loc == src)
+ if(usr.loc == src && !issilicon(usr))
to_chat(usr, "You cannot reach the controls from inside. ")
return TRUE
@@ -286,16 +286,15 @@
mode = 0
update()
- if(!issilicon(usr))
- if(action == "engageHandle")
- flush = 1
- update()
- if(action == "disengageHandle")
- flush = 0
- update()
+ if(action == "engageHandle")
+ flush = 1
+ update()
+ if(action == "disengageHandle")
+ flush = 0
+ update()
- if(action == "eject")
- eject()
+ if(action == "eject")
+ eject()
return TRUE
diff --git a/code/modules/research/destructive_analyzer.dm b/code/modules/research/destructive_analyzer.dm
index 78d8f9d3232..005c0f07d1f 100644
--- a/code/modules/research/destructive_analyzer.dm
+++ b/code/modules/research/destructive_analyzer.dm
@@ -15,6 +15,7 @@ Note: Must be placed within 3 tiles of the R&D Console
use_power = USE_POWER_IDLE
idle_power_usage = 30
active_power_usage = 2500
+ var/rped_recycler_ready = TRUE
/obj/machinery/r_n_d/destructive_analyzer/Initialize()
. = ..()
@@ -22,7 +23,7 @@ Note: Must be placed within 3 tiles of the R&D Console
/obj/machinery/r_n_d/destructive_analyzer/RefreshParts()
var/T = 0
- for(var/obj/item/weapon/stock_parts/S in src)
+ for(var/obj/item/weapon/stock_parts/S in component_parts)
T += S.rating
decon_mod = T * 0.1
@@ -76,3 +77,44 @@ Note: Must be placed within 3 tiles of the R&D Console
busy = 0
return 1
return
+
+/obj/machinery/r_n_d/destructive_analyzer/MouseDrop_T(atom/dropping, mob/living/user)
+ if(istype(dropping, /obj/item/weapon/storage/part_replacer))
+ var/obj/item/weapon/storage/part_replacer/replacer = dropping
+ replacer.hide_from(user)
+ if(!linked_console)
+ to_chat(user, "\The [src] must be linked to an R&D console first. ")
+ return 0
+ if(!linked_console.linked_lathe)
+ to_chat(user, "Link a protolathe to [src]'s R&D console first. ")
+ return 0
+ if(!rped_recycler_ready)
+ to_chat(user, "\The [src]'s stock parts recycler isn't ready yet. ")
+ return 0
+ var/obj/machinery/r_n_d/protolathe/lathe_to_fill = linked_console.linked_lathe
+ var/lowest_rating = INFINITY // We want the lowest-part tier rating in the RPED so we only recycle the lowest-tier parts.
+ for(var/obj/item/B in replacer.contents)
+ if(B.rped_rating() < lowest_rating)
+ lowest_rating = B.rped_rating()
+ if(lowest_rating == INFINITY)
+ to_chat(user, "Mass part deconstruction attempt canceled - no valid parts for recycling detected. ")
+ return 0
+ for(var/obj/item/B in replacer.contents)
+ if(B.rped_rating() > lowest_rating)
+ continue
+ if(lathe_to_fill && B.matter) // Sending salvaged materials to the lathe...
+ for(var/t in B.matter)
+ if(t in lathe_to_fill.materials)
+ lathe_to_fill.materials[t] += B.matter[t] * src.decon_mod
+ qdel(B)
+ playsound(get_turf(src), 'sound/machines/click.ogg', 50, 1)
+ rped_recycler_ready = FALSE
+ addtimer(CALLBACK(src, .proc/rped_ready), 5 SECONDS)
+ to_chat(user, "You deconstruct all the parts of rating [lowest_rating] in [replacer] with [src]. ")
+ return 1
+ else
+ ..()
+
+/obj/machinery/r_n_d/destructive_analyzer/proc/rped_ready()
+ rped_recycler_ready = TRUE
+ playsound(get_turf(src), 'sound/machines/chime.ogg', 50, 1)
\ No newline at end of file
diff --git a/code/modules/research/mechfab_designs.dm b/code/modules/research/mechfab_designs.dm
index 52b976e1877..7a041e8f428 100644
--- a/code/modules/research/mechfab_designs.dm
+++ b/code/modules/research/mechfab_designs.dm
@@ -679,6 +679,14 @@
materials = list(DEFAULT_WALL_MATERIAL = 5000, "osmium" = 3000, "silver" = 1000)
build_path = /obj/item/mecha_parts/mecha_equipment/tool/orescanner/advanced
+/datum/design/item/mecha/runningboard
+ name = "Powered Exosuit Running Board"
+ desc = "A running board with a power-lifter attachment, to quickly catapult exosuit pilots into the cockpit. Only fits to working exosuits."
+ id = "mech_runningboard"
+ req_tech = list(TECH_MATERIAL = 6)
+ materials = list(DEFAULT_WALL_MATERIAL = 10000)
+ build_path = /obj/item/mecha_parts/mecha_equipment/runningboard/limited
+
/datum/design/item/mecha/powerwrench
name = "hydraulic wrench"
desc = "A large, hydraulic wrench."
diff --git a/code/modules/research/mechfab_designs_vr.dm b/code/modules/research/mechfab_designs_vr.dm
index 1de0cc2dda1..099d2a23743 100644
--- a/code/modules/research/mechfab_designs_vr.dm
+++ b/code/modules/research/mechfab_designs_vr.dm
@@ -5,3 +5,11 @@
req_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 5, TECH_MAGNET = 5, TECH_BIO = 4)
materials = list(MAT_PLASTEEL = 3000, MAT_GRAPHITE = 2000, MAT_PLASTIC = 3500, MAT_SILVER = 1750, MAT_GOLD = 1250)
build_path = /obj/item/rig_module/rescue_pharm
+
+/datum/design/item/mechfab/rigsuit/mounted_sizegun
+ name = "hardsuit mounted size gun"
+ desc = "A suit mounted size gun. Features interface-based target size adjustment for hands-free size-altering shenanigans."
+ id = "rig_gun_sizegun"
+ req_tech = list(TECH_COMBAT = 3, TECH_MATERIAL = 3, TECH_POWER = 2)
+ materials = list(DEFAULT_WALL_MATERIAL = 3000, MAT_GLASS = 2000, MAT_URANIUM = 2000)
+ build_path = /obj/item/rig_module/mounted/sizegun
\ No newline at end of file
diff --git a/code/modules/research/prosfab_designs.dm b/code/modules/research/prosfab_designs.dm
index 889e17fef42..1bec508e506 100644
--- a/code/modules/research/prosfab_designs.dm
+++ b/code/modules/research/prosfab_designs.dm
@@ -102,7 +102,7 @@
build_path = /obj/item/organ/external/chest
gender = MALE
-/obj/item/organ/external/chest/f //To satisfy Travis. :|
+/obj/item/organ/external/chest/f //To satisfy CI. :|
/datum/design/item/prosfab/pros/torso/female
name = "FBP Torso (F)"
diff --git a/code/modules/research/prosfab_designs_vr.dm b/code/modules/research/prosfab_designs_vr.dm
index 094d036c91c..b425b3964a0 100644
--- a/code/modules/research/prosfab_designs_vr.dm
+++ b/code/modules/research/prosfab_designs_vr.dm
@@ -8,8 +8,8 @@
build_path = /obj/item/borg/upgrade/sizeshift
/datum/design/item/prosfab/robot_upgrade/bellysizeupgrade
- name = "Size Alteration Module"
+ name = "Robohound Capacity Expansion Module"
id = "borg_hound_capacity_module"
- req_tech = list(TECH_BLUESPACE = 3, TECH_MATERIAL = 3, TECH_POWER = 2)
+ req_tech = list(TECH_MATERIAL = 3, TECH_ENGINEERING = 2)
materials = list(DEFAULT_WALL_MATERIAL = 4000, "glass" = 4000)
build_path = /obj/item/borg/upgrade/bellysizeupgrade
\ No newline at end of file
diff --git a/code/modules/resleeving/machines_vr.dm b/code/modules/resleeving/machines_vr.dm
new file mode 100644
index 00000000000..b9f7c81aa6d
--- /dev/null
+++ b/code/modules/resleeving/machines_vr.dm
@@ -0,0 +1,12 @@
+/obj/machinery/transhuman/resleever/abductor
+ icon = 'icons/obj/abductor_vr.dmi'
+ icon_state = "implantchair"
+
+/obj/machinery/computer/transhuman/resleeving/abductor
+ icon = 'icons/obj/abductor.dmi'
+ icon_state = "console"
+
+/obj/machinery/clonepod/transhuman/full/abductor
+ icon = 'icons/obj/abductor_vr.dmi'
+ icon_state = "pod_0"
+ name = "clonepod"
\ No newline at end of file
diff --git a/code/modules/rogueminer_vr/zonemaster.dm b/code/modules/rogueminer_vr/zonemaster.dm
index 2c0839fc956..ffca74bb342 100644
--- a/code/modules/rogueminer_vr/zonemaster.dm
+++ b/code/modules/rogueminer_vr/zonemaster.dm
@@ -127,6 +127,8 @@
rm_controller.dbg("ZM(pa): The asteroid has [A.map.len] X-lists.")
+ var/list/changedturfs = list()
+
for(var/Ix=1, Ix <= A.map.len, Ix++)
var/list/curr_x = A.map[Ix]
rm_controller.dbg("ZM(pa): Now doing X:[Ix] which has [curr_x.len] Y-lists.")
@@ -153,15 +155,17 @@
rm_controller.dbg("ZM(pa): Replacing [P.type] with [T].")
var/turf/newturf = P.ChangeTurf(T)
+ changedturfs += newturf
switch(newturf.type)
if(/turf/simulated/mineral/vacuum)
place_resources(newturf)
- newturf.update_icon(1)
else //Anything not a turf
rm_controller.dbg("ZM(pa): Creating [T].")
new T(spot)
+ for(var/turf/T in changedturfs)
+ T.update_icon(1)
/datum/rogue/zonemaster/proc/place_resources(var/turf/simulated/mineral/M)
#define XENOARCH_SPAWN_CHANCE 0.3
diff --git a/code/modules/shieldgen/energy_shield.dm b/code/modules/shieldgen/energy_shield.dm
index d6218eac8fe..61707682524 100644
--- a/code/modules/shieldgen/energy_shield.dm
+++ b/code/modules/shieldgen/energy_shield.dm
@@ -4,7 +4,7 @@
/obj/effect/shield
name = "energy shield"
desc = "An impenetrable field of energy, capable of blocking anything as long as it's active."
- icon = 'icons/obj/machines/shielding.dmi'
+ icon = 'icons/obj/machines/shielding_vr.dmi'
icon_state = "shield"
anchored = 1
plane = MOB_PLANE
@@ -110,7 +110,7 @@
diffused_for = max(duration, 0)
gen?.damaged_segments |= src
-
+
set_density(0)
update_visuals()
update_nearby_tiles() //Force ZAS update
@@ -299,7 +299,7 @@
//
/obj/effect/temp_visual/shield_impact_effect
name = "shield impact"
- icon = 'icons/obj/machines/shielding.dmi'
+ icon = 'icons/obj/machines/shielding_vr.dmi'
icon_state = "shield_impact"
plane = MOB_PLANE
layer = ABOVE_MOB_LAYER
diff --git a/code/modules/shieldgen/shield_gen.dm b/code/modules/shieldgen/shield_gen.dm
index b87f66432fe..08d0b8ce860 100644
--- a/code/modules/shieldgen/shield_gen.dm
+++ b/code/modules/shieldgen/shield_gen.dm
@@ -123,7 +123,7 @@
"max_charge" = C.max_charge,
"failing" = (C.time_since_fail <= 2),
)))
-
+
data["lockedData"]["active"] = active
data["lockedData"]["failing"] = (time_since_fail <= 2)
data["lockedData"]["radius"] = field_radius
@@ -201,7 +201,7 @@
/obj/machinery/shield_gen/tgui_act(action, params)
if(..())
return TRUE
-
+
switch(action)
if("toggle")
if (!active && !anchored)
diff --git a/code/modules/shieldgen/shield_generator.dm b/code/modules/shieldgen/shield_generator.dm
index cc3d2f1b25b..abe6c6efbf3 100644
--- a/code/modules/shieldgen/shield_generator.dm
+++ b/code/modules/shieldgen/shield_generator.dm
@@ -4,7 +4,7 @@
/obj/machinery/power/shield_generator
name = "advanced shield generator"
desc = "A heavy-duty shield generator and capacitor, capable of generating energy shields at large distances."
- icon = 'icons/obj/machines/shielding.dmi'
+ icon = 'icons/obj/machines/shielding_vr.dmi'
icon_state = "generator0"
circuit = /obj/item/weapon/circuitboard/shield_generator
density = 1
@@ -105,7 +105,7 @@
// Generates the field objects. Deletes existing field, if applicable.
/obj/machinery/power/shield_generator/proc/regenerate_field()
for(var/obj/effect/shield/S in field_segments)
- qdel(S)
+ qdel(S)
var/list/shielded_turfs
if(check_flag(MODEFLAG_HULL))
diff --git a/code/modules/surgery/surgery.dm b/code/modules/surgery/surgery.dm
index e6e4554090f..24806225c88 100644
--- a/code/modules/surgery/surgery.dm
+++ b/code/modules/surgery/surgery.dm
@@ -121,8 +121,8 @@
/obj/item/proc/can_do_surgery(mob/living/carbon/M, mob/living/user)
- if(M == user)
- return 0
+// if(M == user)
+// return 0
if(!ishuman(M))
return 1
@@ -139,11 +139,19 @@
if(zone in M.op_stage.in_progress) //Can't operate on someone repeatedly.
to_chat(user, "You can't operate on this area while surgery is already in progress. ")
return 1
+
for(var/datum/surgery_step/S in surgery_steps)
//check if tool is right or close enough and if this step is possible
if(S.tool_quality(src))
var/step_is_valid = S.can_use(user, M, zone, src)
if(step_is_valid && S.is_valid_target(M))
+
+ if(M == user) // Once we determine if we can actually do a step at all, give a slight delay to self-surgery to confirm attempts.
+ to_chat(user, "You focus on attempting to perform surgery upon yourself. ")
+
+ if(!do_after(user, 3 SECONDS, M))
+ return 0
+
if(step_is_valid == SURGERY_FAILURE) // This is a failure that already has a message for failing.
return 1
M.op_stage.in_progress += zone
@@ -155,7 +163,7 @@
success = FALSE
// Bad or no surface may mean failure as well.
- var/obj/surface = M.get_surgery_surface()
+ var/obj/surface = M.get_surgery_surface(user)
if(!surface || !prob(surface.surgery_odds))
success = FALSE
diff --git a/code/modules/tgui/modules/appearance_changer.dm b/code/modules/tgui/modules/appearance_changer.dm
index 667fe7e0a0d..ab75e1d67c0 100644
--- a/code/modules/tgui/modules/appearance_changer.dm
+++ b/code/modules/tgui/modules/appearance_changer.dm
@@ -1,3 +1,4 @@
+
/datum/tgui_module/appearance_changer
name = "Appearance Editor"
tgui_id = "AppearanceChanger"
@@ -24,6 +25,10 @@
var/camera_diff_y = -1
var/camera_diff_z = -1
+ var/list/valid_earstyles = list()
+ var/list/valid_tailstyles = list()
+ var/list/valid_wingstyles = list()
+
/datum/tgui_module/appearance_changer/New(
var/host,
mob/living/carbon/human/H,
@@ -68,6 +73,7 @@
qdel(cam_screen)
QDEL_LIST(cam_plane_masters)
qdel(cam_background)
+ cut_data()
return ..()
/datum/tgui_module/appearance_changer/tgui_act(action, list/params, datum/tgui/ui, datum/tgui_state/state)
@@ -84,22 +90,28 @@
if("race")
if(can_change(APPEARANCE_RACE) && (params["race"] in valid_species))
if(target.change_species(params["race"]))
- cut_and_generate_data()
+ cut_data()
+ generate_data(usr)
+ changed_hook(APPEARANCECHANGER_CHANGED_RACE)
return 1
if("gender")
if(can_change(APPEARANCE_GENDER) && (params["gender"] in get_genders()))
if(target.change_gender(params["gender"]))
- cut_and_generate_data()
+ cut_data()
+ generate_data(usr)
+ changed_hook(APPEARANCECHANGER_CHANGED_GENDER)
return 1
if("gender_id")
if(can_change(APPEARANCE_GENDER) && (params["gender_id"] in all_genders_define_list))
target.identifying_gender = params["gender_id"]
+ changed_hook(APPEARANCECHANGER_CHANGED_GENDER_ID)
return 1
if("skin_tone")
if(can_change_skin_tone())
var/new_s_tone = input(usr, "Choose your character's skin-tone:\n(Light 1 - 220 Dark)", "Skin Tone", -target.s_tone + 35) as num|null
if(isnum(new_s_tone) && can_still_topic(usr, state))
new_s_tone = 35 - max(min( round(new_s_tone), 220),1)
+ changed_hook(APPEARANCECHANGER_CHANGED_SKINTONE)
return target.change_skin_tone(new_s_tone)
if("skin_color")
if(can_change_skin_color())
@@ -110,11 +122,13 @@
var/b_skin = hex2num(copytext(new_skin, 6, 8))
if(target.change_skin_color(r_skin, g_skin, b_skin))
update_dna()
+ changed_hook(APPEARANCECHANGER_CHANGED_SKINCOLOR)
return 1
if("hair")
if(can_change(APPEARANCE_HAIR) && (params["hair"] in valid_hairstyles))
if(target.change_hair(params["hair"]))
update_dna()
+ changed_hook(APPEARANCECHANGER_CHANGED_HAIRSTYLE)
return 1
if("hair_color")
if(can_change(APPEARANCE_HAIR_COLOR))
@@ -125,11 +139,13 @@
var/b_hair = hex2num(copytext(new_hair, 6, 8))
if(target.change_hair_color(r_hair, g_hair, b_hair))
update_dna()
+ changed_hook(APPEARANCECHANGER_CHANGED_HAIRCOLOR)
return 1
if("facial_hair")
if(can_change(APPEARANCE_FACIAL_HAIR) && (params["facial_hair"] in valid_facial_hairstyles))
if(target.change_facial_hair(params["facial_hair"]))
update_dna()
+ changed_hook(APPEARANCECHANGER_CHANGED_F_HAIRSTYLE)
return 1
if("facial_hair_color")
if(can_change(APPEARANCE_FACIAL_HAIR_COLOR))
@@ -140,6 +156,7 @@
var/b_facial = hex2num(copytext(new_facial, 6, 8))
if(target.change_facial_hair_color(r_facial, g_facial, b_facial))
update_dna()
+ changed_hook(APPEARANCECHANGER_CHANGED_F_HAIRCOLOR)
return 1
if("eye_color")
if(can_change(APPEARANCE_EYE_COLOR))
@@ -150,10 +167,115 @@
var/b_eyes = hex2num(copytext(new_eyes, 6, 8))
if(target.change_eye_color(r_eyes, g_eyes, b_eyes))
update_dna()
+ changed_hook(APPEARANCECHANGER_CHANGED_EYES)
return 1
+ // VOREStation Add - Ears/Tails/Wings
+ if("ear")
+ if(can_change(APPEARANCE_ALL_HAIR))
+ var/datum/sprite_accessory/ears/instance = locate(params["ref"])
+ if(params["clear"])
+ instance = null
+ if(!istype(instance) && !params["clear"])
+ return FALSE
+ owner.ear_style = instance
+ owner.update_hair()
+ update_dna()
+ changed_hook(APPEARANCECHANGER_CHANGED_HAIRSTYLE)
+ return TRUE
+ if("ears_color")
+ if(can_change(APPEARANCE_HAIR_COLOR))
+ var/new_hair = input("Please select ear color.", "Ear Color", rgb(target.r_ears, target.g_ears, target.b_ears)) as color|null
+ if(new_hair && can_still_topic(usr, state))
+ target.r_ears = hex2num(copytext(new_hair, 2, 4))
+ target.g_ears = hex2num(copytext(new_hair, 4, 6))
+ target.b_ears = hex2num(copytext(new_hair, 6, 8))
+ update_dna()
+ owner.update_hair()
+ changed_hook(APPEARANCECHANGER_CHANGED_HAIRCOLOR)
+ return 1
+ if("ears2_color")
+ if(can_change(APPEARANCE_HAIR_COLOR))
+ var/new_hair = input("Please select secondary ear color.", "2nd Ear Color", rgb(target.r_ears2, target.g_ears2, target.b_ears2)) as color|null
+ if(new_hair && can_still_topic(usr, state))
+ target.r_ears2 = hex2num(copytext(new_hair, 2, 4))
+ target.g_ears2 = hex2num(copytext(new_hair, 4, 6))
+ target.b_ears2 = hex2num(copytext(new_hair, 6, 8))
+ update_dna()
+ owner.update_hair()
+ changed_hook(APPEARANCECHANGER_CHANGED_HAIRCOLOR)
+ return 1
+ if("tail")
+ if(can_change(APPEARANCE_ALL_HAIR))
+ var/datum/sprite_accessory/tail/instance = locate(params["ref"])
+ if(params["clear"])
+ instance = null
+ if(!istype(instance) && !params["clear"])
+ return FALSE
+ owner.tail_style = instance
+ owner.update_tail_showing()
+ update_dna()
+ changed_hook(APPEARANCECHANGER_CHANGED_HAIRSTYLE)
+ return TRUE
+ if("tail_color")
+ if(can_change(APPEARANCE_HAIR_COLOR))
+ var/new_hair = input("Please select tail color.", "Tail Color", rgb(target.r_tail, target.g_tail, target.b_tail)) as color|null
+ if(new_hair && can_still_topic(usr, state))
+ target.r_tail = hex2num(copytext(new_hair, 2, 4))
+ target.g_tail = hex2num(copytext(new_hair, 4, 6))
+ target.b_tail = hex2num(copytext(new_hair, 6, 8))
+ update_dna()
+ owner.update_tail_showing()
+ changed_hook(APPEARANCECHANGER_CHANGED_HAIRCOLOR)
+ return 1
+ if("tail2_color")
+ if(can_change(APPEARANCE_HAIR_COLOR))
+ var/new_hair = input("Please select secondary tail color.", "2nd Tail Color", rgb(target.r_tail2, target.g_tail2, target.b_tail2)) as color|null
+ if(new_hair && can_still_topic(usr, state))
+ target.r_tail2 = hex2num(copytext(new_hair, 2, 4))
+ target.g_tail2 = hex2num(copytext(new_hair, 4, 6))
+ target.b_tail2 = hex2num(copytext(new_hair, 6, 8))
+ update_dna()
+ owner.update_tail_showing()
+ changed_hook(APPEARANCECHANGER_CHANGED_HAIRCOLOR)
+ return 1
+ if("wing")
+ if(can_change(APPEARANCE_ALL_HAIR))
+ var/datum/sprite_accessory/wing/instance = locate(params["ref"])
+ if(params["clear"])
+ instance = null
+ if(!istype(instance) && !params["clear"])
+ return FALSE
+ owner.wing_style = instance
+ owner.update_wing_showing()
+ update_dna()
+ changed_hook(APPEARANCECHANGER_CHANGED_HAIRSTYLE)
+ return TRUE
+ if("wing_color")
+ if(can_change(APPEARANCE_HAIR_COLOR))
+ var/new_hair = input("Please select wing color.", "Wing Color", rgb(target.r_wing, target.g_wing, target.b_wing)) as color|null
+ if(new_hair && can_still_topic(usr, state))
+ target.r_wing = hex2num(copytext(new_hair, 2, 4))
+ target.g_wing = hex2num(copytext(new_hair, 4, 6))
+ target.b_wing = hex2num(copytext(new_hair, 6, 8))
+ update_dna()
+ owner.update_wing_showing()
+ changed_hook(APPEARANCECHANGER_CHANGED_HAIRCOLOR)
+ return 1
+ if("wing2_color")
+ if(can_change(APPEARANCE_HAIR_COLOR))
+ var/new_hair = input("Please select secondary wing color.", "2nd Wing Color", rgb(target.r_wing2, target.g_wing2, target.b_wing2)) as color|null
+ if(new_hair && can_still_topic(usr, state))
+ target.r_wing2 = hex2num(copytext(new_hair, 2, 4))
+ target.g_wing2 = hex2num(copytext(new_hair, 4, 6))
+ target.b_wing2 = hex2num(copytext(new_hair, 6, 8))
+ update_dna()
+ owner.update_wing_showing()
+ changed_hook(APPEARANCECHANGER_CHANGED_HAIRCOLOR)
+ return 1
+ // VOREStation Add End
return FALSE
-/datum/tgui_module/appearance_changer/tgui_interact(mob/user, datum/tgui/ui = null, datum/tgui/parent_ui = null, datum/tgui_state/custom_state = GLOB.tgui_default_state)
+/datum/tgui_module/appearance_changer/tgui_interact(mob/user, datum/tgui/ui = null, datum/tgui/parent_ui = null, datum/tgui_state/custom_state)
var/mob/living/carbon/human/target = owner
if(customize_usr)
if(!ishuman(user))
@@ -177,10 +299,39 @@
if(custom_state)
ui.set_state(custom_state)
+/datum/tgui_module/appearance_changer/tgui_static_data(mob/user)
+ var/list/data = ..()
+
+ generate_data(usr)
+
+ if(can_change(APPEARANCE_RACE))
+ var/species[0]
+ for(var/specimen in valid_species)
+ species[++species.len] = list("specimen" = specimen)
+ data["species"] = species
+
+ if(can_change(APPEARANCE_HAIR))
+ var/hair_styles[0]
+ for(var/hair_style in valid_hairstyles)
+ hair_styles[++hair_styles.len] = list("hairstyle" = hair_style)
+ data["hair_styles"] = hair_styles
+ // VOREStation Add - Ears/Tails/Wings
+ data["ear_styles"] = valid_earstyles
+ data["tail_styles"] = valid_tailstyles
+ data["wing_styles"] = valid_wingstyles
+ // VOREStation Add End
+
+ if(can_change(APPEARANCE_FACIAL_HAIR))
+ var/facial_hair_styles[0]
+ for(var/facial_hair_style in valid_facial_hairstyles)
+ facial_hair_styles[++facial_hair_styles.len] = list("facialhairstyle" = facial_hair_style)
+ data["facial_hair_styles"] = facial_hair_styles
+
+ return data
+
/datum/tgui_module/appearance_changer/tgui_data(mob/user, datum/tgui/ui, datum/tgui_state/state)
var/list/data = ..()
- generate_data(check_whitelist, whitelist, blacklist)
differential_check()
var/mob/living/carbon/human/target = owner
@@ -194,11 +345,6 @@
data["gender"] = target.gender
data["gender_id"] = target.identifying_gender
data["change_race"] = can_change(APPEARANCE_RACE)
- if(data["change_race"])
- var/species[0]
- for(var/specimen in valid_species)
- species[++species.len] = list("specimen" = specimen)
- data["species"] = species
data["change_gender"] = can_change(APPEARANCE_GENDER)
if(data["change_gender"])
@@ -213,30 +359,39 @@
data["change_hair"] = can_change(APPEARANCE_HAIR)
if(data["change_hair"])
- var/hair_styles[0]
- for(var/hair_style in valid_hairstyles)
- hair_styles[++hair_styles.len] = list("hairstyle" = hair_style)
- data["hair_styles"] = hair_styles
data["hair_style"] = target.h_style
+ // VOREStation Add - Ears/Tails/Wings
+ data["ear_style"] = target.ear_style
+ data["tail_style"] = target.tail_style
+ data["wing_style"] = target.wing_style
+ // VOREStation Add End
+
data["change_facial_hair"] = can_change(APPEARANCE_FACIAL_HAIR)
if(data["change_facial_hair"])
- var/facial_hair_styles[0]
- for(var/facial_hair_style in valid_facial_hairstyles)
- facial_hair_styles[++facial_hair_styles.len] = list("facialhairstyle" = facial_hair_style)
- data["facial_hair_styles"] = facial_hair_styles
data["facial_hair_style"] = target.f_style
data["change_skin_tone"] = can_change_skin_tone()
data["change_skin_color"] = can_change_skin_color()
if(data["change_skin_color"])
data["skin_color"] = rgb(target.r_skin, target.g_skin, target.b_skin)
+
data["change_eye_color"] = can_change(APPEARANCE_EYE_COLOR)
if(data["change_eye_color"])
data["eye_color"] = rgb(target.r_eyes, target.g_eyes, target.b_eyes)
+
data["change_hair_color"] = can_change(APPEARANCE_HAIR_COLOR)
if(data["change_hair_color"])
data["hair_color"] = rgb(target.r_hair, target.g_hair, target.b_hair)
+ // VOREStation Add - Ears/Tails/Wings
+ data["ears_color"] = rgb(target.r_ears, target.g_ears, target.b_ears)
+ data["ears2_color"] = rgb(target.r_ears2, target.g_ears2, target.b_ears2)
+ data["tail_color"] = rgb(target.r_tail, target.g_tail, target.b_tail)
+ data["tail2_color"] = rgb(target.r_tail2, target.g_tail2, target.b_tail2)
+ data["wing_color"] = rgb(target.r_wing, target.g_wing, target.b_wing)
+ data["wing2_color"] = rgb(target.r_wing2, target.g_wing2, target.b_wing2)
+ // VOREStation Add End
+
data["change_facial_hair_color"] = can_change(APPEARANCE_FACIAL_HAIR_COLOR)
if(data["change_facial_hair_color"])
data["facial_hair_color"] = rgb(target.r_facial, target.g_facial, target.b_facial)
@@ -315,26 +470,67 @@
return target && (flags & APPEARANCE_SKIN) && target.species.appearance_flags & HAS_SKIN_COLOR
-/datum/tgui_module/appearance_changer/proc/cut_and_generate_data()
+/datum/tgui_module/appearance_changer/proc/cut_data()
// Making the assumption that the available species remain constant
+ valid_hairstyles.Cut()
valid_facial_hairstyles.Cut()
- valid_facial_hairstyles.Cut()
- generate_data()
+ // VOREStation Add - Ears/Tails/Wings
+ valid_earstyles.Cut()
+ valid_tailstyles.Cut()
+ valid_wingstyles.Cut()
+ // VOREStation Add End
-/datum/tgui_module/appearance_changer/proc/generate_data()
+/datum/tgui_module/appearance_changer/proc/generate_data(mob/user)
var/mob/living/carbon/human/target = owner
if(customize_usr)
- if(!ishuman(usr))
+ if(!ishuman(user))
return TRUE
- target = usr
+ target = user
if(!target)
return
- if(!valid_species.len)
+
+ if(!LAZYLEN(valid_species))
valid_species = target.generate_valid_species(check_whitelist, whitelist, blacklist)
- if(!valid_hairstyles.len || !valid_facial_hairstyles.len)
+
+ if(!LAZYLEN(valid_hairstyles) || !LAZYLEN(valid_facial_hairstyles))
valid_hairstyles = target.generate_valid_hairstyles(check_gender = 0)
valid_facial_hairstyles = target.generate_valid_facial_hairstyles()
+ // VOREStation Add - Ears/Tails/Wings
+ if(!LAZYLEN(valid_earstyles))
+ for(var/path in ear_styles_list)
+ var/datum/sprite_accessory/ears/instance = ear_styles_list[path]
+ if(can_use_sprite(instance, target, user))
+ valid_earstyles.Add(list(list(
+ "name" = instance.name,
+ "instance" = REF(instance),
+ "color" = !!instance.do_colouration,
+ "second_color" = !!instance.extra_overlay,
+ )))
+
+ if(!LAZYLEN(valid_tailstyles))
+ for(var/path in tail_styles_list)
+ var/datum/sprite_accessory/tail/instance = tail_styles_list[path]
+ if(can_use_sprite(instance, target, user))
+ valid_tailstyles.Add(list(list(
+ "name" = instance.name,
+ "instance" = REF(instance),
+ "color" = !!instance.do_colouration,
+ "second_color" = !!instance.extra_overlay,
+ )))
+
+ if(!LAZYLEN(valid_wingstyles))
+ for(var/path in wing_styles_list)
+ var/datum/sprite_accessory/wing/instance = wing_styles_list[path]
+ if(can_use_sprite(instance, target, user))
+ valid_wingstyles.Add(list(list(
+ "name" = instance.name,
+ "instance" = REF(instance),
+ "color" = !!instance.do_colouration,
+ "second_color" = !!instance.extra_overlay,
+ )))
+ // VOREStation Add End
+
/datum/tgui_module/appearance_changer/proc/get_genders()
var/mob/living/carbon/human/target = owner
if(customize_usr)
@@ -349,10 +545,25 @@
possible_genders |= NEUTER
return possible_genders
+// Used for subtypes to handle messaging or whatever.
+/datum/tgui_module/appearance_changer/proc/changed_hook(flag)
+ return
+
+// VOREStation Add - Ears/Tails/Wings
+/datum/tgui_module/appearance_changer/proc/can_use_sprite(datum/sprite_accessory/X, mob/living/carbon/human/target, mob/user)
+ if(X.apply_restrictions && !(target.species.name in X.species_allowed))
+ return FALSE
+
+ if(LAZYLEN(X.ckeys_allowed) && !(user?.ckey in X.ckeys_allowed) && !(target.ckey in X.ckeys_allowed))
+ return FALSE
+
+ return TRUE
+// VOREStation Add End
+
/datum/tgui_module/appearance_changer/mirror
name = "SalonPro Nano-Mirror™"
flags = APPEARANCE_ALL_HAIR
customize_usr = TRUE
/datum/tgui_module/appearance_changer/mirror/coskit
- name = "SalonPro Porta-Makeover Deluxe™"
\ No newline at end of file
+ name = "SalonPro Porta-Makeover Deluxe™"
diff --git a/code/modules/tgui/modules/appearance_changer_vr.dm b/code/modules/tgui/modules/appearance_changer_vr.dm
new file mode 100644
index 00000000000..93ee4cfdf29
--- /dev/null
+++ b/code/modules/tgui/modules/appearance_changer_vr.dm
@@ -0,0 +1,45 @@
+/datum/tgui_module/appearance_changer/vore
+ name = "Appearance Editor (Vore)"
+ flags = APPEARANCE_ALL
+
+/datum/tgui_module/appearance_changer/vore/tgui_state(mob/user)
+ return GLOB.tgui_conscious_state
+
+/datum/tgui_module/appearance_changer/vore/tgui_status(mob/user, datum/tgui_state/state)
+ if(!isbelly(owner.loc))
+ return STATUS_CLOSE
+ return ..()
+
+/datum/tgui_module/appearance_changer/vore/reload_cameraview()
+ cam_screen.vis_contents = list(owner)
+ cam_background.icon_state = "clear"
+ cam_background.fill_rect(1, 1, 1, 1)
+ local_skybox.cut_overlays()
+
+/datum/tgui_module/appearance_changer/vore/tgui_close(mob/user)
+ . = ..()
+ QDEL_IN(src, 1)
+
+/datum/tgui_module/appearance_changer/vore/changed_hook(flag)
+ var/mob/living/carbon/human/M = owner
+ var/mob/living/O = usr
+
+ switch(flag)
+ if(APPEARANCECHANGER_CHANGED_RACE)
+ to_chat(M, "You lose sensation of your body, feeling only the warmth of everything around you... ")
+ to_chat(O, "Your body shifts as you make dramatic changes to your captive's body. ")
+ if(APPEARANCECHANGER_CHANGED_GENDER)
+ to_chat(M, "Your body feels very strange... ")
+ to_chat(O, "You feel strange as you alter your captive's gender. ")
+ if(APPEARANCECHANGER_CHANGED_GENDER_ID)
+ to_chat(M, "You start to feel... [capitalize(M.gender)]? ")
+ to_chat(O, "You feel strange as you alter your captive's gender identity. ")
+ if(APPEARANCECHANGER_CHANGED_SKINTONE, APPEARANCECHANGER_CHANGED_SKINCOLOR)
+ to_chat(M, "Your body tingles all over... ")
+ to_chat(O, "You tingle as you make noticeable changes to your captive's body. ")
+ if(APPEARANCECHANGER_CHANGED_HAIRSTYLE, APPEARANCECHANGER_CHANGED_HAIRCOLOR, APPEARANCECHANGER_CHANGED_F_HAIRSTYLE, APPEARANCECHANGER_CHANGED_F_HAIRCOLOR)
+ to_chat(M, "Your body tingles all over... ")
+ to_chat(O, "You tingle as you make noticeable changes to your captive's body. ")
+ if(APPEARANCECHANGER_CHANGED_EYES)
+ to_chat(M, "You feel lightheaded and drowsy... ")
+ to_chat(O, "You feel warm as you make subtle changes to your captive's body. ")
\ No newline at end of file
diff --git a/code/modules/vchat/css/ss13styles.css b/code/modules/vchat/css/ss13styles.css
index 98dcbc18e82..abf9ebec444 100644
--- a/code/modules/vchat/css/ss13styles.css
+++ b/code/modules/vchat/css/ss13styles.css
@@ -172,6 +172,8 @@ h1.alert, h2.alert {color: #000000;}
.say_quote {font-family: Georgia, Verdana, sans-serif;}
.terminus {font-family: "Times New Roman", Times, serif, sans-serif}
.interface {color: #330033;}
+.spacer {color: #9c660b;} /* VOREStation Add */
+.blob {color: #ff950d; font-weight: bold; font-style: italic;}
.black {color: #000000;}
.darkgray {color: #808080;}
diff --git a/code/modules/vchat/js/vchat.js b/code/modules/vchat/js/vchat.js
index 028d5b52bb8..cb185101459 100644
--- a/code/modules/vchat/js/vchat.js
+++ b/code/modules/vchat/js/vchat.js
@@ -137,7 +137,7 @@ function start_vue() {
//The table to map game css classes to our vchat categories
type_table: [
{
- matches: ".filter_say, .say, .emote",
+ matches: ".filter_say, .say, .emote, .emote_subtle", //VOREStation Edit
becomes: "vc_localchat",
pretty: "Local Chat",
tooltip: "In-character local messages (say, emote, etc)",
diff --git a/code/modules/ventcrawl/ventcrawl.dm b/code/modules/ventcrawl/ventcrawl.dm
index 44bb57e18c0..2e7710e8391 100644
--- a/code/modules/ventcrawl/ventcrawl.dm
+++ b/code/modules/ventcrawl/ventcrawl.dm
@@ -12,7 +12,7 @@ var/list/ventcrawl_machinery = list(
/obj/belly,
/obj/screen
)
- //VOREStation Edit : added /obj/belly, to this list, travis is complaining about this in his indentation check
+ //VOREStation Edit : added /obj/belly, to this list, CI is complaining about this in his indentation check
//mob/living/simple_mob/borer, //VORESTATION AI TEMPORARY REMOVAL REPLACE BACK IN LIST WHEN RESOLVED //VOREStation Edit
/mob/living/var/list/icon/pipes_shown = list()
@@ -64,8 +64,8 @@ var/list/ventcrawl_machinery = list(
listed = TRUE
break
- //Only allow it if it's "IN" the mob, not equipped on/being held
- if(listed && !get_inventory_slot(carried_item))
+ //Only allow it if it's "IN" the mob, not equipped on/being held. //Disabled, as it's very annoying that, for example, Pun Pun has no way to ventcrawl with his suit if given the verb, since the list of allowed items is ignored for worn items.
+ if(listed/* && !get_inventory_slot(carried_item)*/)
return 1
/mob/living/carbon/is_allowed_vent_crawl_item(var/obj/item/carried_item)
diff --git a/code/modules/vore/appearance/preferences_vr.dm b/code/modules/vore/appearance/preferences_vr.dm
index 3c86146e118..5897cb2a484 100644
--- a/code/modules/vore/appearance/preferences_vr.dm
+++ b/code/modules/vore/appearance/preferences_vr.dm
@@ -10,6 +10,16 @@
/mob/living/carbon/human
// Horray Furries!
+ var/datum/sprite_accessory/hair_accessory/hair_accessory_style = null
+ var/r_acc = 30
+ var/g_acc = 30
+ var/b_acc = 30
+ var/r_acc2 = 30
+ var/g_acc2 = 30
+ var/b_acc2 = 30
+ var/r_acc3 = 30
+ var/g_acc3 = 30
+ var/b_acc3 = 30
var/datum/sprite_accessory/ears/ear_style = null
var/r_ears = 30
var/g_ears = 30
@@ -17,6 +27,9 @@
var/r_ears2 = 30
var/g_ears2 = 30
var/b_ears2 = 30
+ var/r_ears3 = 30 //Trust me, we could always use more colour. No japes.
+ var/g_ears3 = 30
+ var/b_ears3 = 30
var/datum/sprite_accessory/tail/tail_style = null
var/r_tail = 30
var/g_tail = 30
@@ -24,6 +37,9 @@
var/r_tail2 = 30
var/g_tail2 = 30
var/b_tail2 = 30
+ var/r_tail3 = 30
+ var/g_tail3 = 30
+ var/b_tail3 = 30
var/datum/sprite_accessory/wing/wing_style = null
var/r_wing = 30
var/g_wing = 30
@@ -31,6 +47,9 @@
var/r_wing2 = 30
var/g_wing2 = 30
var/b_wing2 = 30
+ var/r_wing3 = 30
+ var/g_wing3 = 30
+ var/b_wing3 = 30
// Custom Species Name
var/custom_species
diff --git a/code/modules/vore/appearance/sprite_accessories_taur_vr.dm b/code/modules/vore/appearance/sprite_accessories_taur_vr.dm
index e2c3a86b9d5..adcb66c1802 100644
--- a/code/modules/vore/appearance/sprite_accessories_taur_vr.dm
+++ b/code/modules/vore/appearance/sprite_accessories_taur_vr.dm
@@ -183,28 +183,32 @@
icon_sprite_tag = "wolf" //This could be modified later.
/datum/sprite_accessory/tail/taur/wolf/wolf_2c
- name = "Wolf dual-color (Taur)"
+ name = "Wolf 3-color (Taur)"
icon_state = "wolf_s"
extra_overlay = "wolf_markings"
+ extra_overlay2 = "wolf_markings_2"
//icon_sprite_tag = "wolf2c"
//TFF 22/11/19 - CHOMPStation port of fat taur sprites
/datum/sprite_accessory/tail/taur/wolf/fatwolf_2c
- name = "Fat Wolf dual-color (Taur)"
+ name = "Fat Wolf 3-color (Taur)"
icon_state = "fatwolf_s"
extra_overlay = "fatwolf_markings"
+ extra_overlay2 = "wolf_markings_2"
//icon_sprite_tag = "fatwolf2c"
/datum/sprite_accessory/tail/taur/wolf/synthwolf
name = "SynthWolf dual-color (Taur)"
icon_state = "synthwolf_s"
extra_overlay = "synthwolf_markings"
+ extra_overlay2 = "synthwolf_glow"
//icon_sprite_tag = "synthwolf"
/datum/sprite_accessory/tail/taur/skunk
name = "Skunk (Taur)"
icon_state = "skunk_s"
extra_overlay = "skunk_markings"
+ extra_overlay2 = "skunk_markings_2"
icon_sprite_tag = "skunk"
/datum/sprite_accessory/tail/taur/naga
@@ -272,6 +276,7 @@
name = "SynthHorse dual-color (Taur)"
icon_state = "synthhorse_s"
extra_overlay = "synthhorse_markings"
+ extra_overlay2 = "synthhorse_glow"
//icon_sprite_tag = "synthhorse"
/datum/sprite_accessory/tail/taur/cow
@@ -333,6 +338,7 @@
name = "SynthLizard dual-color (Taur)"
icon_state = "synthlizard_s"
extra_overlay = "synthlizard_markings"
+ extra_overlay2 = "synthlizard_glow"
//icon_sprite_tag = "synthlizard"
/datum/sprite_accessory/tail/taur/spider
@@ -401,22 +407,25 @@
ani_state = "fatfeline_w"
/datum/sprite_accessory/tail/taur/feline/feline_2c
- name = "Feline dual-color (Taur)"
+ name = "Feline 3-color (Taur)"
icon_state = "feline_s"
extra_overlay = "feline_markings"
+ extra_overlay2 = "feline_markings_2"
//icon_sprite_tag = "feline2c"
//TFF 22/11/19 - CHOMPStation port of fat taur sprites
/datum/sprite_accessory/tail/taur/feline/fatfeline_2c
- name = "Fat Feline dual-color (Taur)"
+ name = "Fat Feline 3-color (Taur)"
icon_state = "fatfeline_s"
extra_overlay = "fatfeline_markings"
+ extra_overlay2 = "feline_markings_2"
//icon_sprite_tag = "fatfeline2c"
/datum/sprite_accessory/tail/taur/feline/synthfeline
name = "SynthFeline dual-color (Taur)"
icon_state = "synthfeline_s"
extra_overlay = "synthfeline_markings"
+ extra_overlay2 = "synthfeline_glow"
//icon_sprite_tag = "synthfeline"
/datum/sprite_accessory/tail/taur/slug
@@ -495,6 +504,7 @@
name = "Otie (Taur)"
icon_state = "otie_s"
extra_overlay = "otie_markings"
+ extra_overlay2 = "otie_markings_2"
suit_sprites = 'icons/mob/taursuits_otie_vr.dmi'
icon_sprite_tag = "otie"
diff --git a/code/modules/vore/appearance/sprite_accessories_vr.dm b/code/modules/vore/appearance/sprite_accessories_vr.dm
index 777b5fe390d..ba0e1d1e3e4 100644
--- a/code/modules/vore/appearance/sprite_accessories_vr.dm
+++ b/code/modules/vore/appearance/sprite_accessories_vr.dm
@@ -28,6 +28,7 @@
var/color_blend_mode = ICON_ADD // Only appliciable if do_coloration = 1
var/extra_overlay // Icon state of an additional overlay to blend in.
+ var/extra_overlay2
var/desc = "You should not see this..."
// Species-unique ears
@@ -43,6 +44,13 @@
// Ears avaliable to anyone
+/datum/sprite_accessory/ears/alt_ram_horns
+ name = "Solid ram horns"
+ desc = ""
+ icon_state = "ram_horns_s"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
/datum/sprite_accessory/ears/hyena
name = "hyena ears, dual-color"
desc = ""
@@ -421,7 +429,7 @@
color_blend_mode = ICON_MULTIPLY
/datum/sprite_accessory/ears/teshari
- name = "Teshari (colorable fluff)"
+ name = "Teshari (colorable)"
desc = ""
icon_state = "teshari"
do_colouration = 1
@@ -429,7 +437,7 @@
extra_overlay = "teshariinner"
/datum/sprite_accessory/ears/tesharihigh
- name = "Teshari upper ears (colorable fluff)"
+ name = "Teshari upper ears (colorable)"
desc = ""
icon_state = "tesharihigh"
do_colouration = 1
@@ -437,13 +445,29 @@
extra_overlay = "tesharihighinner"
/datum/sprite_accessory/ears/tesharilow
- name = "Teshari lower ears (colorable fluff)"
+ name = "Teshari lower ears (colorable)"
desc = ""
icon_state = "tesharilow"
do_colouration = 1
color_blend_mode = ICON_MULTIPLY
extra_overlay = "tesharilowinner"
+/datum/sprite_accessory/ears/tesh_pattern_ear_male
+ name = "Teshari male ear pattern (colorable)"
+ desc = ""
+ icon_state = "teshari"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "teshari_male_pattern"
+
+/datum/sprite_accessory/ears/tesh_pattern_ear_female
+ name = "Teshari female ear pattern (colorable)"
+ desc = ""
+ icon_state = "teshari"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "teshari_female_pattern"
+
/datum/sprite_accessory/ears/inkling
name = "colorable mature inkling hair"
desc = ""
@@ -592,6 +616,48 @@
do_colouration = 1
color_blend_mode = ICON_MULTIPLY
extra_overlay = "dragon-horns"
+
+/datum/sprite_accessory/ears/synthhorns_plain
+ name = "Synth horns, plain"
+ desc = ""
+ icon_state = "synthhorns_plain"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "synthhorns_plain_light"
+
+/datum/sprite_accessory/ears/synthhorns_thick
+ name = "Synth horns, thick"
+ desc = ""
+ icon_state = "synthhorns_thick"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "synthhorns_thick_light"
+
+/datum/sprite_accessory/ears/synthhorns_curly
+ name = "Synth horns, curly"
+ desc = ""
+ icon_state = "synthhorns_curled"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+
+/datum/sprite_accessory/ears/forward_curled_demon_horns_bony
+ name = "Succubus horns, colourable"
+ desc = ""
+ icon_state = "succu-horns_b"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/datum/sprite_accessory/ears/forward_curled_demon_horns_bony_with_colorable_ears
+ name = "Succubus horns with pointy ears, colourable"
+ desc = ""
+ icon_state = "elfs"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "succu-horns_b"
+
+
+
/*
////////////////////////////
/ =--------------------= /
@@ -606,11 +672,13 @@
var/color_blend_mode = ICON_ADD // Only appliciable if do_coloration = 1
var/extra_overlay // Icon state of an additional overlay to blend in.
+ var/extra_overlay2 //Tertiary.
var/clothing_can_hide = 1 // If true, clothing with HIDETAIL hides it. If the clothing is bulky enough to hide a tail, it should also hide wings.
// var/show_species_tail = 1 // Just so // TODO - Seems not needed ~Leshana
var/desc = "You should not see this..."
var/ani_state // State when flapping/animated
var/extra_overlay_w // Flapping state for extra overlay
+ var/extra_overlay2_w
/datum/sprite_accessory/wing/shock //Unable to split the tail from the wings in the sprite, so let's just classify it as wings.
name = "pharoah hound tail (Shock Diamond)"
@@ -693,6 +761,47 @@
do_colouration = 1
color_blend_mode = ICON_MULTIPLY
+/datum/sprite_accessory/wing/harpywings_alt
+ name = "harpy wings alt, archeopteryx"
+ desc = ""
+ icon_state = "harpywings_alt"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "harpywings_altmarkings"
+
+/datum/sprite_accessory/wing/harpywings_alt_neckfur
+ name = "harpy wings alt, archeopteryx & neckfur"
+ desc = ""
+ icon_state = "harpywings_alt"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "harpywings_altmarkings"
+ extra_overlay2 = "neckfur"
+
+/datum/sprite_accessory/wing/harpywings_bat
+ name = "harpy wings, bat"
+ desc = ""
+ icon_state = "harpywings_bat"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "harpywings_batmarkings"
+
+/datum/sprite_accessory/wing/harpywings_bat_neckfur
+ name = "harpy wings, bat & neckfur"
+ desc = ""
+ icon_state = "harpywings_bat"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "harpywings_batmarkings"
+ extra_overlay2 = "neckfur"
+
+/datum/sprite_accessory/wing/neckfur
+ name = "neck fur"
+ desc = ""
+ icon_state = "neckfur"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
/datum/sprite_accessory/wing/feathered
name = "feathered wings, colorable"
desc = ""
@@ -777,6 +886,14 @@
icon_state = "cyberdoe_s"
do_colouration = 0
+/datum/sprite_accessory/wing/drago_wing
+ name = "Cybernetic Dragon wings"
+ desc = ""
+ icon_state = "drago_wing"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "drago_wing_2"
+
/*
////////////////////////////
/ =--------------------= /
@@ -791,11 +908,13 @@
var/color_blend_mode = ICON_ADD // Only appliciable if do_coloration = 1
var/extra_overlay // Icon state of an additional overlay to blend in.
+ var/extra_overlay2 //Tertiary.
var/show_species_tail = 0 // If false, do not render species' tail.
var/clothing_can_hide = 1 // If true, clothing with HIDETAIL hides it
var/desc = "You should not see this..."
var/ani_state // State when wagging/animated
var/extra_overlay_w // Wagging state for extra overlay
+ var/extra_overlay2_w // Tertiary wagging.
var/list/hide_body_parts = list() //Uses organ tag defines. Bodyparts in this list do not have their icons rendered, allowing for more spriter freedom when doing taur/digitigrade stuff.
var/icon/clip_mask_icon = null //Icon file used for clip mask.
var/clip_mask_state = null //Icon state to generate clip mask. Clip mask is used to 'clip' off the lower part of clothing such as jumpsuits & full suits.
@@ -1265,13 +1384,53 @@
color_blend_mode = ICON_MULTIPLY
extra_overlay = "deertail_mark"
+/datum/sprite_accessory/tail/tesh_feathered
+ name = "Teshari tail"
+ desc = ""
+ icon_state = "teshtail_s"
+ do_colouration = 1
+ extra_overlay = "teshtail_feathers_s"
+ color_blend_mode = ICON_MULTIPLY
+
/datum/sprite_accessory/tail/teshari_fluffytail
name = "Teshari alternative, colorable"
desc = ""
icon_state = "teshari_fluffytail"
- extra_overlay = "teshari_fluffytail_mark"
do_colouration = 1
color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "teshari_fluffytail_mark"
+
+/datum/sprite_accessory/tail/tesh_pattern_male
+ name = "Teshari male tail pattern"
+ desc = ""
+ icon_state = "teshtail_s"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "teshpattern_male_tail"
+
+/datum/sprite_accessory/tail/tesh_pattern_male_alt
+ name = "Teshari male tail alt. pattern"
+ desc = ""
+ icon_state = "teshtail_s"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "teshpattern_male_alt"
+
+/datum/sprite_accessory/tail/tesh_pattern_fem
+ name = "Teshari female tail pattern"
+ desc = ""
+ icon_state = "teshtail_s"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "teshpattern_fem_tail"
+
+/datum/sprite_accessory/tail/tesh_pattern_fem_alt
+ name = "Teshari male tail alt. pattern"
+ desc = ""
+ icon_state = "teshtail_s"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "teshpattern_fem_alt"
/datum/sprite_accessory/tail/nightstalker
name = "Nightstalker, colorable"
@@ -1350,21 +1509,6 @@
desc = ""
icon_state = "chimptail_s"
-/datum/sprite_accessory/tail/special/seromitail
- name = "seromi tail"
- desc = ""
- icon_state = "seromitail_s"
- do_colouration = 1
- color_blend_mode = ICON_MULTIPLY
-
-/datum/sprite_accessory/tail/special/seromitailfeathered
- name = "seromi tail w/ feathers"
- desc = ""
- icon_state = "seromitail_s"
- extra_overlay = "seromitail_feathers_s"
- do_colouration = 1
- color_blend_mode = ICON_MULTIPLY
-
/datum/sprite_accessory/tail/special/unathihc
name = "unathi tail, colorable"
desc = ""
@@ -1450,20 +1594,6 @@
icon_state = "chimptail_hc_s"
do_colouration = 1
-/datum/sprite_accessory/tail/special/seromitailhc
- name = "seromi tail, colorable"
- desc = ""
- icon_state = "seromitail_hc_s"
- do_colouration = 1
- color_blend_mode = ICON_MULTIPLY
-
-/datum/sprite_accessory/tail/special/seromitailfeatheredhc
- name = "seromi tail w/ feathers, colorable"
- desc = ""
- icon_state = "seromitail_feathers_hc_s"
- do_colouration = 1
- color_blend_mode = ICON_MULTIPLY
-
/datum/sprite_accessory/tail/special/vulpan
name = "vulpkanin, colorable"
desc = ""
@@ -1783,3 +1913,146 @@
color_blend_mode = ICON_MULTIPLY
extra_overlay = "wardtakahashi_vulp_dc_mark"
+/datum/sprite_accessory/tail/Easterntail
+ name = "Eastern Dragon (Animated)"
+ desc = ""
+ icon_state = "Easterntail"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "EasterntailColorTip"
+ ani_state = "Easterntail_w"
+ extra_overlay_w = "EasterntailColorTip_w"
+
+/datum/sprite_accessory/tail/synthtail_static
+ name = "Synthetic lizard tail"
+ desc = ""
+ icon_state = "synthtail"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/datum/sprite_accessory/tail/synthtail_vwag
+ name = "Synthetic lizard tail (vwag)"
+ desc = ""
+ icon_state = "synthtail"
+ ani_state = "synthtail_w"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/datum/sprite_accessory/tail/Plugtail
+ name = "Synthetic plug tail"
+ desc = ""
+ icon_state = "Plugtail"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "PlugtailMarking"
+ extra_overlay2 = "PlugtailMarking2"
+
+/datum/sprite_accessory/tail/Segmentedtail
+ name = "Segmented tail, animated"
+ desc = ""
+ icon_state = "Segmentedtail"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "Segmentedtailmarking"
+ ani_state = "Segmentedtail_w"
+ extra_overlay_w = "Segmentedtailmarking_w"
+
+/datum/sprite_accessory/tail/Segmentedlights
+ name = "Segmented tail, animated synth"
+ desc = ""
+ icon_state = "Segmentedtail"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+ extra_overlay = "Segmentedlights"
+ ani_state = "Segmentedtail_w"
+ extra_overlay_w = "Segmentedlights_w"
+
+/datum/sprite_accessory/tail/fox_tail
+ name = "Fox tail"
+ desc = ""
+ icon_state = "fox_tail_s"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/datum/sprite_accessory/tail/fox_tail_plain
+ name = "Fox tail"
+ desc = ""
+ icon_state = "fox_tail_plain_s"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/datum/sprite_accessory/tail/fennec_tail
+ name = "Fennec tail"
+ desc = ""
+ icon_state = "fennec_tail_s"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/datum/sprite_accessory/tail/lizard_tail_smooth
+ name = "Lizard Tail (Smooth)"
+ desc = ""
+ icon_state = "lizard_tail_smooth"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/datum/sprite_accessory/tail/lizard_tail_dark_tiger
+ name = "Lizard Tail (Dark Tiger)"
+ desc = ""
+ icon_state = "lizard_tail_dark_tiger"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/datum/sprite_accessory/tail/lizard_tail_light_tiger
+ name = "Lizard Tail (Light Tiger)"
+ desc = ""
+ icon_state = "lizard_tail_light_tiger"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/datum/sprite_accessory/tail/lizard_tail_spiked
+ name = "Lizard Tail (Spiked)"
+ desc = ""
+ icon_state = "lizard_tail_spiked"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/datum/sprite_accessory/tail/xenotail_fullcolour
+ name = "xenomorph tail (fully colourable)"
+ desc = ""
+ icon_state = "xenotail_fullcolour"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/datum/sprite_accessory/tail/xenotailalt_fullcolour
+ name = "xenomorph tail alt. (fully colourable)"
+ desc = ""
+ icon_state = "xenotailalt_fullcolour"
+ do_colouration = 1
+ color_blend_mode = ICON_MULTIPLY
+
+/*
+////////////////////////////
+/ =--------------------= /
+/ == Misc Definitions == /
+/ =--------------------= /
+////////////////////////////
+*/
+
+// Yes, I have to add all of this just to make some glowy hair.
+// No, this isn't a character creation option, but... I guess in the future it could be, if anyone wants that?
+
+/datum/sprite_accessory/hair_accessory
+ name = "You should not see this..."
+ icon = 'icons/mob/vore/hair_accessories_vr.dmi'
+ do_colouration = 0 // Set to 1 to blend (ICON_ADD) hair color
+
+ var/ignores_lighting = 0 // Whether or not this hair accessory will ignore lighting and glow in the dark.
+ var/color_blend_mode = ICON_ADD // Only appliciable if do_coloration = 1
+ var/desc = "You should not see this..."
+
+/datum/sprite_accessory/hair_accessory/verie_hair_glow
+ name = "verie's hair glow"
+ desc = ""
+ icon_state = "verie_hair_glow"
+ ignores_lighting = 1
+ //ckeys_allowed = list("vitoras") // This probably won't come into play EVER but better safe than sorry
diff --git a/code/modules/vore/appearance/update_icons_vr.dm b/code/modules/vore/appearance/update_icons_vr.dm
index ee39d02d2d3..9185db35f38 100644
--- a/code/modules/vore/appearance/update_icons_vr.dm
+++ b/code/modules/vore/appearance/update_icons_vr.dm
@@ -5,14 +5,29 @@ var/global/list/wing_icon_cache = list()
var/icon/ears_s = new/icon("icon" = ear_style.icon, "icon_state" = ear_style.icon_state)
if(ear_style.do_colouration)
ears_s.Blend(rgb(src.r_ears, src.g_ears, src.b_ears), ear_style.color_blend_mode)
+
if(ear_style.extra_overlay)
var/icon/overlay = new/icon("icon" = ear_style.icon, "icon_state" = ear_style.extra_overlay)
overlay.Blend(rgb(src.r_ears2, src.g_ears2, src.b_ears2), ear_style.color_blend_mode)
ears_s.Blend(overlay, ICON_OVERLAY)
qdel(overlay)
+
+ if(ear_style.extra_overlay2) //MORE COLOURS IS BETTERER
+ var/icon/overlay = new/icon("icon" = ear_style.icon, "icon_state" = ear_style.extra_overlay2)
+ overlay.Blend(rgb(src.r_ears3, src.g_ears3, src.b_ears3), ear_style.color_blend_mode)
+ ears_s.Blend(overlay, ICON_OVERLAY)
+ qdel(overlay)
return ears_s
return null
+/mob/living/carbon/human/proc/get_hair_accessory_overlay()
+ if(hair_accessory_style && !(head && (head.flags_inv & BLOCKHEADHAIR)))
+ var/icon/hair_acc_s = icon(hair_accessory_style.icon, hair_accessory_style.icon_state)
+ if(hair_accessory_style.do_colouration)
+ hair_acc_s.Blend(rgb(src.r_ears, src.g_ears, src.b_ears), hair_accessory_style.color_blend_mode)
+ return hair_acc_s
+ return null
+
/mob/living/carbon/human/proc/get_tail_image()
//If you are FBP with tail style and didn't set a custom one
@@ -39,6 +54,18 @@ var/global/list/wing_icon_cache = list()
tail_s.Blend(overlay, ICON_OVERLAY)
qdel(overlay)
+ if(tail_style.extra_overlay2)
+ var/icon/overlay = new/icon("icon" = tail_style.icon, "icon_state" = tail_style.extra_overlay2)
+ if(wagging && tail_style.ani_state)
+ overlay = new/icon("icon" = tail_style.icon, "icon_state" = tail_style.extra_overlay2_w)
+ overlay.Blend(rgb(src.r_tail3, src.g_tail3, src.b_tail3), tail_style.color_blend_mode)
+ tail_s.Blend(overlay, ICON_OVERLAY)
+ qdel(overlay)
+ else
+ overlay.Blend(rgb(src.r_tail3, src.g_tail3, src.b_tail3), tail_style.color_blend_mode)
+ tail_s.Blend(overlay, ICON_OVERLAY)
+ qdel(overlay)
+
if(isTaurTail(tail_style))
var/datum/sprite_accessory/tail/taur/taurtype = tail_style
if(taurtype.can_ride && !riding_datum)
@@ -49,3 +76,50 @@ var/global/list/wing_icon_cache = list()
else
return image(tail_s)
return null
+
+/mob/living/carbon/human/proc/get_wing_image()
+ if(QDESTROYING(src))
+ return
+
+ //If you are FBP with wing style and didn't set a custom one
+ if((synthetic && synthetic.includes_wing && !wing_style) && !wings_hidden)
+ var/icon/wing_s = new/icon("icon" = synthetic.icon, "icon_state" = "wing") //I dunno. If synths have some custom wing?
+ wing_s.Blend(rgb(src.r_skin, src.g_skin, src.b_skin), species.color_mult ? ICON_MULTIPLY : ICON_ADD)
+ return image(wing_s)
+
+ //If you have custom wings selected
+ if((wing_style && !(wear_suit && wear_suit.flags_inv & HIDETAIL)) && !wings_hidden)
+ var/icon/wing_s = new/icon("icon" = wing_style.icon, "icon_state" = flapping && wing_style.ani_state ? wing_style.ani_state : wing_style.icon_state)
+ if(wing_style.do_colouration)
+ wing_s.Blend(rgb(src.r_wing, src.g_wing, src.b_wing), wing_style.color_blend_mode)
+ if(wing_style.extra_overlay)
+ var/icon/overlay = new/icon("icon" = wing_style.icon, "icon_state" = wing_style.extra_overlay)
+ overlay.Blend(rgb(src.r_wing2, src.g_wing2, src.b_wing2), wing_style.color_blend_mode)
+ wing_s.Blend(overlay, ICON_OVERLAY)
+ qdel(overlay)
+
+ if(wing_style.extra_overlay2)
+ var/icon/overlay = new/icon("icon" = wing_style.icon, "icon_state" = wing_style.extra_overlay2)
+ if(wing_style.ani_state)
+ overlay = new/icon("icon" = wing_style.icon, "icon_state" = wing_style.extra_overlay2_w)
+ overlay.Blend(rgb(src.r_wing3, src.g_wing3, src.b_wing3), wing_style.color_blend_mode)
+ wing_s.Blend(overlay, ICON_OVERLAY)
+ qdel(overlay)
+ else
+ overlay.Blend(rgb(src.r_wing3, src.g_wing3, src.b_wing3), wing_style.color_blend_mode)
+ wing_s.Blend(overlay, ICON_OVERLAY)
+ qdel(overlay)
+
+ return image(wing_s)
+
+
+// TODO - Move this to where it should go ~Leshana
+/mob/proc/stop_flying()
+ if(QDESTROYING(src))
+ return
+ flying = FALSE
+ return 1
+
+/mob/living/carbon/human/stop_flying()
+ if((. = ..()))
+ update_wing_showing()
\ No newline at end of file
diff --git a/code/modules/vore/eating/belly_dat_vr.dm b/code/modules/vore/eating/belly_dat_vr.dm
index 01bda553894..2beec27ad65 100644
--- a/code/modules/vore/eating/belly_dat_vr.dm
+++ b/code/modules/vore/eating/belly_dat_vr.dm
@@ -31,8 +31,7 @@
var/datum/belly/transferlocation = null // Location that the prey is released if they struggle and get dropped off.
var/tmp/digest_mode = DM_HOLD // Whether or not to digest. Default to not digest.
- var/tmp/list/digest_modes = list(DM_HOLD,DM_DIGEST,DM_HEAL,DM_ABSORB,DM_DRAIN,DM_UNABSORB,DM_SHRINK,DM_GROW,DM_SIZE_STEAL) // Possible digest modes
- var/tmp/list/transform_modes = list(DM_TRANSFORM_MALE,DM_TRANSFORM_FEMALE,DM_TRANSFORM_KEEP_GENDER,DM_TRANSFORM_CHANGE_SPECIES_AND_TAUR,DM_TRANSFORM_CHANGE_SPECIES_AND_TAUR_EGG,DM_TRANSFORM_REPLICA,DM_TRANSFORM_REPLICA_EGG,DM_TRANSFORM_KEEP_GENDER_EGG,DM_TRANSFORM_MALE_EGG,DM_TRANSFORM_FEMALE_EGG, DM_EGG)
+ var/tmp/list/digest_modes = list(DM_HOLD,DM_DIGEST,DM_HEAL,DM_ABSORB,DM_DRAIN,DM_UNABSORB,DM_SHRINK,DM_GROW,DM_SIZE_STEAL,DM_EGG) // Possible digest modes
var/tmp/mob/living/owner // The mob whose belly this is.
var/tmp/list/internal_contents = list() // People/Things you've eaten into this belly!
var/tmp/emotePend = FALSE // If there's already a spawned thing counting for the next emote
diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm
index 247995a7e30..0889c29933b 100644
--- a/code/modules/vore/eating/belly_obj_vr.dm
+++ b/code/modules/vore/eating/belly_obj_vr.dm
@@ -38,14 +38,15 @@
var/fancy_vore = FALSE // Using the new sounds?
var/is_wet = TRUE // Is this belly's insides made of slimy parts?
var/wet_loop = TRUE // Does the belly have a fleshy loop playing?
+ var/obj/item/weapon/storage/vore_egg/ownegg // Is this belly creating an egg?
+ var/egg_type = "egg" // Default egg type and path.
+ var/egg_path = /obj/item/weapon/storage/vore_egg
//I don't think we've ever altered these lists. making them static until someone actually overrides them somewhere.
//Actual full digest modes
- var/tmp/static/list/digest_modes = list(DM_HOLD,DM_DIGEST,DM_ABSORB,DM_DRAIN,DM_UNABSORB,DM_HEAL,DM_SHRINK,DM_GROW,DM_SIZE_STEAL)
+ var/tmp/static/list/digest_modes = list(DM_HOLD,DM_DIGEST,DM_ABSORB,DM_DRAIN,DM_UNABSORB,DM_HEAL,DM_SHRINK,DM_GROW,DM_SIZE_STEAL,DM_EGG)
//Digest mode addon flags
- var/tmp/static/list/mode_flag_list = list("Numbing" = DM_FLAG_NUMBING, "Stripping" = DM_FLAG_STRIPPING, "Leave Remains" = DM_FLAG_LEAVEREMAINS, "Muffles" = DM_FLAG_THICKBELLY)
- //Transformation modes
- var/tmp/static/list/transform_modes = list(DM_TRANSFORM_MALE,DM_TRANSFORM_FEMALE,DM_TRANSFORM_KEEP_GENDER,DM_TRANSFORM_CHANGE_SPECIES_AND_TAUR,DM_TRANSFORM_CHANGE_SPECIES_AND_TAUR_EGG,DM_TRANSFORM_REPLICA,DM_TRANSFORM_REPLICA_EGG,DM_TRANSFORM_KEEP_GENDER_EGG,DM_TRANSFORM_MALE_EGG,DM_TRANSFORM_FEMALE_EGG, DM_EGG)
+ var/tmp/static/list/mode_flag_list = list("Numbing" = DM_FLAG_NUMBING, "Stripping" = DM_FLAG_STRIPPING, "Leave Remains" = DM_FLAG_LEAVEREMAINS, "Muffles" = DM_FLAG_THICKBELLY, "Affect Worn Items" = DM_FLAG_AFFECTWORN)
//Item related modes
var/tmp/static/list/item_digest_modes = list(IM_HOLD,IM_DIGEST_FOOD,IM_DIGEST)
@@ -286,6 +287,11 @@
if (!(M in contents))
return 0 // They weren't in this belly anyway
+ for(var/mob/living/L in M.contents)
+ L.muffled = 0
+ for(var/obj/item/weapon/holder/H in M.contents)
+ H.held_mob.muffled = 0
+
//Place them into our drop_location
M.forceMove(drop_location())
@@ -370,7 +376,7 @@
// in message boxes, this looks nice and is easily delimited.
/obj/belly/proc/get_messages(type, delim = "\n\n")
ASSERT(type == "smo" || type == "smi" || type == "dmo" || type == "dmp" || type == "em")
-
+
var/list/raw_messages
switch(type)
if("smo")
@@ -522,7 +528,7 @@
owner.adjust_nutrition((nutrition_percent / 100) * 5 * digested)
if(isrobot(owner))
var/mob/living/silicon/robot/R = owner
- R.cell.charge += (50 * digested)
+ R.cell.charge += ((nutrition_percent / 100) * 50 * digested)
return digested
//Determine where items should fall out of us into.
@@ -546,9 +552,10 @@
//Handle a mob struggling
// Called from /mob/living/carbon/relaymove()
-/obj/belly/proc/relay_resist(mob/living/R)
+/obj/belly/proc/relay_resist(mob/living/R, obj/item/C)
if (!(R in contents))
- return // User is not in this belly
+ if(!C)
+ return // User is not in this belly
R.setClickCooldown(50)
@@ -557,9 +564,13 @@
to_chat(owner, "Someone is attempting to climb out of your [lowertext(name)]! ")
if(do_after(R, escapetime, owner, incapacitation_flags = INCAPACITATION_DEFAULT & ~INCAPACITATION_RESTRAINED))
- if((owner.stat || escapable) && (R.loc == src)) //Can still escape?
- release_specific_contents(R)
- return
+ if((owner.stat || escapable)) //Can still escape?
+ if(C)
+ release_specific_contents(C)
+ return
+ if(R.loc == src)
+ release_specific_contents(R)
+ return
else if(R.loc != src) //Aren't even in the belly. Quietly fail.
return
else //Belly became inescapable or mob revived
@@ -602,6 +613,13 @@
to_chat(R, "You start to climb out of \the [lowertext(name)]. ")
to_chat(owner, "Someone is attempting to climb out of your [lowertext(name)]! ")
if(do_after(R, escapetime))
+ if(escapable && C)
+ release_specific_contents(C)
+ to_chat(R,"Your struggles successfully cause [owner] to squeeze your container out of their \the [lowertext(name)]. ")
+ to_chat(owner,"[C] suddenly slips out of your [lowertext(name)]! ")
+ for(var/mob/M in hearers(4, owner))
+ M.show_message("[C] suddenly slips out of [owner]'s [lowertext(name)]! ", 2)
+ return
if((escapable) && (R.loc == src) && !R.absorbed) //Does the owner still have escapable enabled?
release_specific_contents(R)
to_chat(R,"You climb out of \the [lowertext(name)]. ")
@@ -632,6 +650,9 @@
to_chat(R, "Your attempt to escape [lowertext(name)] has failed and your struggles only results in you sliding into [owner]'s [transferlocation]! ")
to_chat(owner, "Someone slid into your [transferlocation] due to their struggling inside your [lowertext(name)]! ")
+ if(C)
+ transfer_contents(C, dest_belly)
+ return
transfer_contents(R, dest_belly)
return
diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm
index 04f96becd40..e00860cadaa 100644
--- a/code/modules/vore/eating/bellymodes_datum_vr.dm
+++ b/code/modules/vore/eating/bellymodes_datum_vr.dm
@@ -14,6 +14,9 @@ GLOBAL_LIST_INIT(digest_modes, list())
/datum/digest_mode/proc/process_mob(obj/belly/B, mob/living/L)
return null
+/datum/digest_mode/proc/handle_atoms(obj/belly/B, list/touchable_atoms)
+ return FALSE
+
/datum/digest_mode/digest
id = DM_DIGEST
noise_chance = 50
@@ -42,7 +45,7 @@ GLOBAL_LIST_INIT(digest_modes, list())
L.adjustFireLoss(B.digest_burn)
var/actual_brute = L.getBruteLoss() - old_brute
var/actual_burn = L.getFireLoss() - old_burn
- var/damage_gain = actual_brute + actual_burn
+ var/damage_gain = (actual_brute + actual_burn)*(B.nutrition_percent / 100)
var/offset = (1 + ((L.weight - 137) / 137)) // 130 pounds = .95 140 pounds = 1.02
var/difference = B.owner.size_multiplier / L.size_multiplier
@@ -50,9 +53,9 @@ GLOBAL_LIST_INIT(digest_modes, list())
var/mob/living/silicon/robot/R = B.owner
R.cell.charge += 25 * damage_gain
if(offset) // If any different than default weight, multiply the % of offset.
- B.owner.adjust_nutrition(offset*((B.nutrition_percent / 100) * 4.5 * (damage_gain) / difference)) //4.5 nutrition points per health point. Normal same size 100+100 health prey with average weight would give 900 points if the digestion was instant. With all the size/weight offset taxes plus over time oxyloss+hunger taxes deducted with non-instant digestion, this should be enough to not leave the pred starved.
+ B.owner.adjust_nutrition(offset*(4.5 * (damage_gain) / difference)) //4.5 nutrition points per health point. Normal same size 100+100 health prey with average weight would give 900 points if the digestion was instant. With all the size/weight offset taxes plus over time oxyloss+hunger taxes deducted with non-instant digestion, this should be enough to not leave the pred starved.
else
- B.owner.adjust_nutrition((B.nutrition_percent / 100) * 4.5 * (damage_gain) / difference)
+ B.owner.adjust_nutrition(4.5 * (damage_gain) / difference)
/datum/digest_mode/absorb
id = DM_ABSORB
@@ -129,130 +132,72 @@ GLOBAL_LIST_INIT(digest_modes, list())
B.owner.adjust_nutrition(-1)
L.adjust_nutrition(1)
-// TRANSFORM MODES
-/datum/digest_mode/transform
- var/stabilize_nutrition = FALSE
- var/changes_eyes = FALSE
- var/changes_hair_solo = FALSE
- var/changes_hairandskin = FALSE
- var/changes_gender = FALSE
- var/changes_gender_to = null
- var/changes_species = FALSE
- var/changes_ears_tail_wing_nocolor = FALSE
- var/changes_ears_tail_wing_color = FALSE
- var/eggs = FALSE
-
-/datum/digest_mode/transform/process_mob(obj/belly/B, mob/living/carbon/human/H)
- if(!istype(H) || H.stat == DEAD)
- return null
- if(stabilize_nutrition)
- if(B.owner.nutrition > 400 && H.nutrition < 400)
- B.owner.adjust_nutrition(-2)
- H.adjust_nutrition(1.5)
- if(changes_eyes && B.check_eyes(H))
- B.change_eyes(H, 1)
- return null
- if(changes_hair_solo && B.check_hair(H))
- B.change_hair(H)
- return null
- if(changes_hairandskin && (B.check_hair(H) || B.check_skin(H)))
- B.change_hair(H)
- B.change_skin(H, 1)
- return null
- if(changes_species)
- if(changes_ears_tail_wing_nocolor && (B.check_ears(H) || B.check_tail_nocolor(H) || B.check_wing_nocolor(H) || B.check_species(H)))
- B.change_ears(H)
- B.change_tail_nocolor(H)
- B.change_wing_nocolor(H)
- B.change_species(H, 1, 1) // ,1) preserves coloring
- H.species.create_organs(H)
- H.sync_organ_dna()
- return null
- if(changes_ears_tail_wing_color && (B.check_ears(H) || B.check_tail(H) || B.check_wing(H) || B.check_species(H)))
- B.change_ears(H)
- B.change_tail(H)
- B.change_wing(H)
- B.change_species(H, 1, 2) // ,2) does not preserve coloring.
- H.species.create_organs(H)
- H.sync_organ_dna()
- return null
- if(changes_gender && B.check_gender(H, changes_gender_to))
- B.change_gender(H, changes_gender_to, 1)
- return null
- if(eggs && (!H.absorbed))
- B.put_in_egg(H, 1)
- return null
-
-// Regular TF Modes
-/datum/digest_mode/transform/hairandeyes
- id = DM_TRANSFORM_HAIR_AND_EYES
- stabilize_nutrition = TRUE
- changes_eyes = TRUE
- changes_hair_solo = TRUE
-
-/datum/digest_mode/transform/gender
- id = DM_TRANSFORM_FEMALE
- changes_eyes = TRUE
- changes_hairandskin = TRUE
- changes_gender = TRUE
- changes_gender_to = FEMALE
- stabilize_nutrition = TRUE
-
-/datum/digest_mode/transform/gender/male
- id = DM_TRANSFORM_FEMALE
- changes_gender_to = MALE
-
-/datum/digest_mode/transform/keepgender
- id = DM_TRANSFORM_KEEP_GENDER
- changes_eyes = TRUE
- changes_hairandskin = TRUE
- stabilize_nutrition = TRUE
-
-/datum/digest_mode/transform/speciesandtaur
- id = DM_TRANSFORM_CHANGE_SPECIES_AND_TAUR
- changes_species = TRUE
- changes_ears_tail_wing_nocolor = TRUE
- stabilize_nutrition = TRUE
-
-/datum/digest_mode/transform/replica
- id = DM_TRANSFORM_REPLICA
- changes_eyes = TRUE
- changes_hairandskin = TRUE
- changes_species = TRUE
- changes_ears_tail_wing_color = TRUE
-
// E G G
-/datum/digest_mode/transform/egg
+/datum/digest_mode/egg
id = DM_EGG
- eggs = TRUE
+/*
+/datum/digest_mode/egg/process_mob(obj/belly/B, mob/living/carbon/human/H)
+ if(!istype(H) || H.stat == DEAD || H.absorbed)
+ return null
+ B.put_in_egg(H, 1)*/
-/datum/digest_mode/transform/egg/gender
- id = DM_TRANSFORM_FEMALE_EGG
- changes_eyes = TRUE
- changes_hairandskin = TRUE
- changes_gender = TRUE
- changes_gender_to = FEMALE
- stabilize_nutrition = TRUE
-
-/datum/digest_mode/transform/egg/gender/male
- id = DM_TRANSFORM_MALE_EGG
- changes_gender_to = MALE
-
-/datum/digest_mode/transform/egg/nogender
- id = DM_TRANSFORM_KEEP_GENDER_EGG
- changes_eyes = TRUE
- changes_hairandskin = TRUE
- stabilize_nutrition = TRUE
-
-/datum/digest_mode/transform/egg/speciesandtaur
- id = DM_TRANSFORM_CHANGE_SPECIES_AND_TAUR_EGG
- changes_species = TRUE
- changes_ears_tail_wing_nocolor = TRUE
- stabilize_nutrition = TRUE
-
-/datum/digest_mode/transform/egg/replica
- id = DM_TRANSFORM_REPLICA_EGG
- changes_eyes = TRUE
- changes_hairandskin = TRUE
- changes_species = TRUE
- changes_ears_tail_wing_color = TRUE
\ No newline at end of file
+/datum/digest_mode/egg/handle_atoms(obj/belly/B, list/touchable_atoms)
+ var/list/egg_contents = list()
+ for(var/E in touchable_atoms)
+ if(istype(E, /obj/item/weapon/storage/vore_egg)) // Don't egg other eggs.
+ continue
+ if(isliving(E))
+ var/mob/living/L = E
+ if(L.absorbed)
+ continue
+ egg_contents += L
+ if(isitem(E))
+ egg_contents += E
+ if(egg_contents.len)
+ if(!B.ownegg)
+ if(B.owner.vore_egg_type in tf_vore_egg_types)
+ B.egg_type = B.owner.vore_egg_type
+ B.egg_path = tf_vore_egg_types[B.egg_type]
+ B.ownegg = new B.egg_path(B)
+ for(var/atom/movable/C in egg_contents)
+ if(isitem(C) && egg_contents.len == 1) //Only egging one item
+ var/obj/item/I = C
+ B.ownegg.w_class = I.w_class
+ B.ownegg.max_storage_space = B.ownegg.w_class
+ I.forceMove(B.ownegg)
+ B.ownegg.icon_scale_x = 0.2 * B.ownegg.w_class
+ B.ownegg.icon_scale_y = 0.2 * B.ownegg.w_class
+ B.ownegg.update_transform()
+ egg_contents -= I
+ B.ownegg = null
+ return
+ if(isliving(C))
+ var/mob/living/M = C
+ B.ownegg.w_class = M.size_multiplier * 4 //Egg size and weight scaled to match occupant.
+ var/obj/item/weapon/holder/H = new M.holder_type(B.ownegg)
+ H.held_mob = M
+ M.forceMove(H)
+ H.sync(M)
+ B.ownegg.max_storage_space = H.w_class
+ B.ownegg.icon_scale_x = 0.25 * B.ownegg.w_class
+ B.ownegg.icon_scale_y = 0.25 * B.ownegg.w_class
+ B.ownegg.update_transform()
+ egg_contents -= M
+ if(B.ownegg.w_class > 4)
+ B.ownegg.slowdown = B.ownegg.w_class - 4
+ B.ownegg = null
+ return
+ C.forceMove(B.ownegg)
+ if(isitem(C))
+ var/obj/item/I = C
+ B.ownegg.w_class += I.w_class //Let's assume a regular outfit can reach total w_class of 16.
+ B.ownegg.calibrate_size()
+ B.ownegg.orient2hud()
+ B.ownegg.w_class = clamp(B.ownegg.w_class * 0.25, 1, 8) //A total w_class of 16 will result in a backpack sized egg.
+ B.ownegg.icon_scale_x = 0.25 * B.ownegg.w_class
+ B.ownegg.icon_scale_y = 0.25 * B.ownegg.w_class
+ B.ownegg.update_transform()
+ if(B.ownegg.w_class > 4)
+ B.ownegg.slowdown = B.ownegg.w_class - 4
+ B.ownegg = null
+ return
\ No newline at end of file
diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm
index d5eaeb4d257..23ef02e9ac9 100644
--- a/code/modules/vore/eating/bellymodes_vr.dm
+++ b/code/modules/vore/eating/bellymodes_vr.dm
@@ -31,6 +31,14 @@
if(!length(touchable_atoms))
return
+ var/datum/digest_mode/DM = GLOB.digest_modes["[digest_mode]"]
+ if(!DM)
+ log_debug("Digest mode [digest_mode] didn't exist in the digest_modes list!!")
+ return FALSE
+ if(DM.handle_atoms(src, touchable_atoms))
+ updateVRPanels()
+ return
+
var/list/touchable_mobs = null
var/list/hta_returns = handle_touchable_atoms(touchable_atoms)
@@ -54,11 +62,6 @@
continue // don't give digesty messages to indigestible people
to_chat(M, "[pick(EL)] ")
- var/datum/digest_mode/DM = GLOB.digest_modes["[digest_mode]"]
- if(!DM)
- log_debug("Digest mode [digest_mode] didn't exist in the digest_modes list!!")
- return FALSE
-
if(!digestion_noise_chance)
digestion_noise_chance = DM.noise_chance
@@ -89,7 +92,7 @@
else
M.playsound_local(owner.loc, play_sound, vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF)
//these are all external sound triggers now, so it's ok.
-
+
if(to_update)
updateVRPanels()
@@ -137,6 +140,16 @@
if((mode_flags & DM_FLAG_THICKBELLY) && !H.muffled)
H.muffled = TRUE
+ //Worn items flag
+ if(mode_flags & DM_FLAG_AFFECTWORN)
+ for(var/slot in slots)
+ var/obj/item/I = H.get_equipped_item(slot = slot)
+ if(I && I.canremove)
+ if(handle_digesting_item(I))
+ digestion_noise_chance = 25
+ to_update = TRUE
+ break
+
//Stripping flag
if(mode_flags & DM_FLAG_STRIPPING)
for(var/slot in slots)
@@ -146,7 +159,7 @@
digestion_noise_chance = 25
to_update = TRUE
break // Digest off one by one, not all at once
-
+
//get rid of things like blood drops and gibs that end up in there
else if(istype(A, /obj/effect/decal/cleanable))
qdel(A)
@@ -215,7 +228,7 @@
if(compensation > 0)
if(isrobot(owner))
var/mob/living/silicon/robot/R = owner
- R.cell.charge += 25*compensation
+ R.cell.charge += 25*compensation*(nutrition_percent / 100)
else
owner.adjust_nutrition((nutrition_percent / 100)*4.5*compensation)
diff --git a/code/modules/vore/eating/contaminate_vr.dm b/code/modules/vore/eating/contaminate_vr.dm
index 5bbbe902c76..998c7b53c53 100644
--- a/code/modules/vore/eating/contaminate_vr.dm
+++ b/code/modules/vore/eating/contaminate_vr.dm
@@ -105,6 +105,9 @@ var/list/gurgled_overlays = list(
/obj/item/weapon/reagent_containers/food/gurgle_contaminate(var/atom/movable/item_storage = null)
return FALSE
+/obj/item/weapon/storage/vore_egg/gurgle_contaminate(var/atom/movable/item_storage = null)
+ return FALSE
+
/obj/item/weapon/holder/gurgle_contaminate(var/atom/movable/item_storage = null)
if(isbelly(loc))
digest_act(item_storage)
@@ -150,4 +153,4 @@ var/list/gurgled_overlays = list(
if(pockets.contents)
for(var/obj/item/O in pockets.contents)
O.gurgle_contaminate(item_storage, contamination_flavor, contamination_color)
- ..()
\ No newline at end of file
+ ..()
diff --git a/code/modules/vore/eating/digest_act_vr.dm b/code/modules/vore/eating/digest_act_vr.dm
index d5ec12ee855..ab589d96715 100644
--- a/code/modules/vore/eating/digest_act_vr.dm
+++ b/code/modules/vore/eating/digest_act_vr.dm
@@ -5,6 +5,10 @@
// Ye default implementation.
/obj/item/proc/digest_act(atom/movable/item_storage = null)
if(istype(item_storage, /obj/item/device/dogborg/sleeper))
+ if(istype(src, /obj/item/device/pda))
+ var/obj/item/device/pda/P = src
+ if(P.id)
+ P.id = null
for(var/obj/item/O in contents)
if(istype(O, /obj/item/weapon/storage/internal)) //Dump contents from dummy pockets.
for(var/obj/item/SO in O)
@@ -29,6 +33,10 @@
g_damage = digest_stage
digest_stage -= g_damage
if(digest_stage <= 0)
+ if(istype(src, /obj/item/device/pda))
+ var/obj/item/device/pda/P = src
+ if(P.id)
+ P.id = null
for(var/obj/item/O in contents)
if(istype(O,/obj/item/weapon/storage/internal)) //Dump contents from dummy pockets.
for(var/obj/item/SO in O)
@@ -69,12 +77,6 @@
/////////////
// Some special treatment
/////////////
-//PDAs need to lose their ID to not take it with them, so we can get a digested ID
-/obj/item/device/pda/digest_act(atom/movable/item_storage = null)
- if(id)
- if(istype(item_storage, /obj/item/device/dogborg/sleeper) || (!isnull(digest_stage) && digest_stage <= 0))
- id = null
- . = ..()
/obj/item/weapon/card/id
var/lost_access = list()
diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm
index a35fa5bf1b7..6404df13cdb 100644
--- a/code/modules/vore/eating/living_vr.dm
+++ b/code/modules/vore/eating/living_vr.dm
@@ -411,7 +411,7 @@
if(isbelly(loc))
var/obj/belly/B = loc
var/confirm = alert(src, "You're in a mob. Don't use this as a trick to get out of hostile animals. This is for escaping from preference-breaking and if you're otherwise unable to escape from endo (pred AFK for a long time).", "Confirmation", "Okay", "Cancel")
- if(!confirm == "Okay" || loc != B)
+ if(confirm != "Okay" || loc != B)
return
//Actual escaping
absorbed = 0 //Make sure we're not absorbed
@@ -430,7 +430,7 @@
var/obj/item/device/dogborg/sleeper/belly = loc //The belly!
var/confirm = alert(src, "You're in a dogborg sleeper. This is for escaping from preference-breaking or if your predator disconnects/AFKs. If your preferences were being broken, please admin-help as well.", "Confirmation", "Okay", "Cancel")
- if(!confirm == "Okay" || loc != belly)
+ if(confirm != "Okay" || loc != belly)
return
//Actual escaping
log_and_message_admins("[key_name(src)] used the OOC escape button to get out of [key_name(pred)] (BORG) ([pred ? "JMP " : "null"])")
@@ -519,10 +519,6 @@
if(!ishuman(user))
user.update_icons()
- // Flavor handling
- if(belly.can_taste && prey.get_taste_message(FALSE))
- to_chat(belly.owner, "[prey] tastes of [prey.get_taste_message(FALSE)]. ")
-
// Inform Admins
if(pred == user)
add_attack_logs(pred, prey, "Eaten via [belly.name]")
diff --git a/code/modules/vore/eating/transforming_vr.dm b/code/modules/vore/eating/transforming_vr.dm
index 8f9eea2371c..e8de8d466ba 100644
--- a/code/modules/vore/eating/transforming_vr.dm
+++ b/code/modules/vore/eating/transforming_vr.dm
@@ -1,250 +1,3 @@
-/obj/belly/proc/check_eyes(var/mob/living/carbon/human/M)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return 0
- return (M.r_eyes != O.r_eyes || M.g_eyes != O.g_eyes || M.b_eyes != O.b_eyes)
-
-/obj/belly/proc/change_eyes(var/mob/living/carbon/human/M, message=0)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return
-
- M.r_eyes = O.r_eyes
- M.g_eyes = O.g_eyes
- M.b_eyes = O.b_eyes
- M.update_eyes()
- M.update_icons_body()
- if(message)
- to_chat(M, "You feel lightheaded and drowsy... ")
- to_chat(O, "You feel warm as you make subtle changes to your captive's body. ")
-
-/obj/belly/proc/check_hair(var/mob/living/carbon/human/M)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return 0
-
- if(M.r_hair != O.r_hair || M.g_hair != O.g_hair || M.b_hair != O.b_hair)
- return 1
- if(M.r_facial != O.r_facial || M.g_facial != O.g_facial || M.b_facial != O.b_facial)
- return 1
- if(M.h_style != O.h_style || M.f_style != O.f_style)
- return 1
- return 0
-
-/obj/belly/proc/change_hair(var/mob/living/carbon/human/M, message=0)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return
-
- M.r_hair = O.r_hair
- M.g_hair = O.g_hair
- M.b_hair = O.b_hair
- M.r_facial = O.r_facial
- M.g_facial = O.g_facial
- M.b_facial = O.b_facial
- M.h_style = O.h_style
- M.f_style = O.f_style
- M.update_hair()
- if(message)
- to_chat(M, "Your body tingles all over... ")
- to_chat(O, "You tingle as you make noticeable changes to your captive's body. ")
-
-/obj/belly/proc/check_skin(var/mob/living/carbon/human/M)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return 0
-
- return (M.r_skin != O.r_skin || M.g_skin != O.g_skin || M.b_skin != O.b_skin)
-
-/obj/belly/proc/change_skin(var/mob/living/carbon/human/M, message=0)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return
-
- M.r_skin = O.r_skin
- M.g_skin = O.g_skin
- M.b_skin = O.b_skin
- for(var/obj/item/organ/external/Z in M.organs)
- Z.sync_colour_to_human(M)
- M.update_icons_body()
- if(message)
- to_chat(M, "Your body tingles all over... ")
- to_chat(O, "You tingle as you make noticeable changes to your captive's body. ")
-
-/obj/belly/proc/check_gender(var/mob/living/carbon/human/M, target_gender)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return 0
-
- if(!target_gender)
- target_gender = O.gender
-
- return (M.gender != target_gender || M.identifying_gender != target_gender)
-
-/obj/belly/proc/change_gender(var/mob/living/carbon/human/M, target_gender, message=0)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return
-
- if(!target_gender)
- target_gender = O.gender
-
- M.gender = target_gender
- M.identifying_gender = target_gender
- if(target_gender == FEMALE)
- M.f_style = "Shaved"
- M.dna.SetUIState(DNA_UI_GENDER,M.gender!=MALE,1)
- M.sync_organ_dna()
- M.update_icons_body()
- if(message)
- to_chat(M, "Your body feels very strange... ")
- to_chat(O, "You feel strange as you alter your captive's gender. ")
-
-/obj/belly/proc/check_tail(var/mob/living/carbon/human/M)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return 0
-
- if(M.tail_style != O.tail_style)
- return 1
- if(M.r_tail != O.r_tail || M.g_tail != O.g_tail || M.b_tail != O.b_tail)
- return 1
- return 0
-
-/obj/belly/proc/change_tail(var/mob/living/carbon/human/M, message=0)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return
-
- M.r_tail = O.r_tail
- M.g_tail = O.g_tail
- M.b_tail = O.b_tail
- M.tail_style = O.tail_style
- M.update_tail_showing()
- if(message)
- to_chat(M, "Your body tingles all over... ")
- to_chat(O, "You tingle as you make noticeable changes to your captive's body. ")
-
-/obj/belly/proc/check_tail_nocolor(var/mob/living/carbon/human/M)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return 0
-
- return (M.tail_style != O.tail_style)
-
-/obj/belly/proc/change_tail_nocolor(var/mob/living/carbon/human/M, message=0)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return
-
- M.tail_style = O.tail_style
- M.update_tail_showing()
- if(message)
- to_chat(M, "Your body tingles all over... ")
- to_chat(O, "You tingle as you make noticeable changes to your captive's body. ")
-
-/obj/belly/proc/check_wing(var/mob/living/carbon/human/M)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return 0
-
- if(M.wing_style != O.wing_style)
- return 1
- if(M.r_wing != O.r_wing || M.g_wing != O.g_wing || M.b_wing != O.b_wing)
- return 1
- return 0
-
-/obj/belly/proc/change_wing(var/mob/living/carbon/human/M, message=0)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return
-
- M.r_wing = O.r_wing
- M.g_wing = O.g_wing
- M.b_wing = O.b_wing
- M.wing_style = O.wing_style
- M.update_wing_showing()
- if(message)
- to_chat(M, "Your body tingles all over... ")
- to_chat(O, "You tingle as you make noticeable changes to your captive's body. ")
-
-/obj/belly/proc/check_wing_nocolor(var/mob/living/carbon/human/M)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return 0
-
- return (M.wing_style != O.wing_style)
-
-/obj/belly/proc/change_wing_nocolor(var/mob/living/carbon/human/M, message=0)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return
-
- M.wing_style = O.wing_style
- M.update_wing_showing()
- if(message)
- to_chat(M, "Your body tingles all over... ")
- to_chat(O, "You tingle as you make noticeable changes to your captive's body. ")
-
-/obj/belly/proc/check_ears(var/mob/living/carbon/human/M)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return 0
-
- return (M.ear_style != O.ear_style)
-
-/obj/belly/proc/change_ears(var/mob/living/carbon/human/M, message=0)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return
-
- M.ear_style = O.ear_style
- M.update_hair()
-
-/obj/belly/proc/check_species(var/mob/living/carbon/human/M)
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return 0
-
- if(M.species.name != O.species.name || M.custom_species != O.custom_species)
- return 1
- return 0
-
-/obj/belly/proc/change_species(var/mob/living/carbon/human/M, message=0, color_action = 0) //color_action: 0 for default species, 1 to preserve, 2 to transfer from pred
- var/mob/living/carbon/human/O = owner
- if(!istype(M) || !istype(O))
- return
-
- M.verbs -= M.species.inherent_verbs //Take away their unique stuff
-
- var/list/backup_implants = list()
- for(var/obj/item/organ/I in M.organs)
- for(var/obj/item/weapon/implant/backup/BI in I.contents)
- backup_implants += BI
- if(backup_implants.len)
- for(var/obj/item/weapon/implant/backup/BI in backup_implants)
- BI.forceMove(src)
- if(color_action == 1)
- M.set_species(O.species.name,0,1,M)
- else if(color_action == 2)
- M.species = O.species
- else
- M.set_species(O.species.name)
- M.custom_species = O.custom_species
-
- M.update_icons_body()
- M.update_tail_showing()
-
- if(backup_implants.len)
- var/obj/item/organ/external/torso = M.get_organ(BP_TORSO)
- for(var/obj/item/weapon/implant/backup/BI in backup_implants)
- BI.forceMove(torso)
- torso.implants += BI
-
- if(message)
- to_chat(M, "You lose sensation of your body, feeling only the warmth of everything around you... ")
- to_chat(O, "Your body shifts as you make dramatic changes to your captive's body. ")
-
/obj/belly/proc/put_in_egg(var/atom/movable/M, message=0)
var/mob/living/carbon/human/O = owner
var/egg_path = /obj/structure/closet/secure_closet/egg
diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm
index 00b4ac3c872..086c5270f7c 100644
--- a/code/modules/vore/eating/vorepanel_vr.dm
+++ b/code/modules/vore/eating/vorepanel_vr.dm
@@ -236,7 +236,7 @@
// Host is inside someone else, and is trying to interact with something else inside that person.
if("pick_from_inside")
return pick_from_inside(usr, params)
-
+
// Host is trying to interact with something in host's belly.
if("pick_from_outside")
return pick_from_outside(usr, params)
@@ -267,7 +267,7 @@
host.vore_selected = NB
unsaved_changes = TRUE
return TRUE
-
+
if("bellypick")
host.vore_selected = locate(params["bellypick"])
return TRUE
@@ -403,11 +403,11 @@
if(!(target in OB))
return TRUE // Aren't here anymore, need to update menu
-
+
var/intent = "Examine"
if(isliving(target))
intent = alert("What do you want to do to them?","Query","Examine","Help Out","Devour")
-
+
else if(istype(target, /obj/item))
intent = alert("What do you want to do to that?","Query","Examine","Use Hand")
@@ -505,12 +505,14 @@
host.vore_selected.transfer_contents(target, choice, 1)
return TRUE
return
-
+
var/atom/movable/target = locate(params["pick"])
if(!(target in host.vore_selected))
return TRUE // Not in our X anymore, update UI
- intent = "Examine"
- intent = alert("Examine, Eject, Move? Examine if you want to leave this box.","Query","Examine","Eject","Move")
+ var/list/available_options = list("Examine", "Eject", "Move")
+ if(ishuman(target))
+ available_options += "Transform"
+ intent = input(user, "What would you like to do with [target]?", "Vore Pick", "Examine") as null|anything in available_options
switch(intent)
if("Examine")
var/list/results = target.examine(host)
@@ -525,6 +527,7 @@
return TRUE
host.vore_selected.release_specific_contents(target)
+ return TRUE
if("Move")
if(host.stat)
@@ -537,6 +540,20 @@
to_chat(target,"You're squished from [host]'s [lowertext(host.vore_selected.name)] to their [lowertext(choice.name)]! ")
host.vore_selected.transfer_contents(target, choice)
+ return TRUE
+
+ if("Transform")
+ if(host.stat)
+ to_chat(user,"You can't do that in your state! ")
+ return TRUE
+
+ var/mob/living/carbon/human/H = target
+ if(!istype(H))
+ return
+
+ var/datum/tgui_module/appearance_changer/vore/V = new(host, H)
+ V.tgui_interact(user)
+ return TRUE
/datum/vore_look/proc/set_attr(mob/user, params)
if(!host.vore_selected)
@@ -573,21 +590,10 @@
. = TRUE
if("b_mode")
var/list/menu_list = host.vore_selected.digest_modes.Copy()
- if(istype(usr,/mob/living/carbon/human))
- menu_list += DM_TRANSFORM
-
var/new_mode = input("Choose Mode (currently [host.vore_selected.digest_mode])") as null|anything in menu_list
if(!new_mode)
return FALSE
- if(new_mode == DM_TRANSFORM) //Snowflek submenu
- var/list/tf_list = host.vore_selected.transform_modes
- var/new_tf_mode = input("Choose TF Mode (currently [host.vore_selected.digest_mode])") as null|anything in tf_list
- if(!new_tf_mode)
- return FALSE
- host.vore_selected.digest_mode = new_tf_mode
- return
-
host.vore_selected.digest_mode = new_mode
. = TRUE
if("b_addons")
@@ -596,7 +602,7 @@
if(!toggle_addon)
return FALSE
host.vore_selected.mode_flags ^= host.vore_selected.mode_flag_list[toggle_addon]
- host.vore_selected.items_preserved.Cut() //Re-evaltuate all items in belly on
+ host.vore_selected.items_preserved.Cut() //Re-evaltuate all items in belly on
. = TRUE
if("b_item_mode")
var/list/menu_list = host.vore_selected.item_digest_modes.Copy()
@@ -626,7 +632,7 @@
host.vore_selected.contamination_color = new_color
host.vore_selected.items_preserved.Cut() //To re-contaminate for new color
. = TRUE
- if("b_desc")
+ if("b_desc")
var/new_desc = html_encode(input(usr,"Belly Description ([BELLIES_DESC_MAX] char limit):","New Description",host.vore_selected.desc) as message|null)
if(new_desc)
@@ -859,6 +865,6 @@
qdel(host.vore_selected)
host.vore_selected = host.vore_organs[1]
. = TRUE
-
+
if(.)
unsaved_changes = TRUE
\ No newline at end of file
diff --git a/code/modules/vore/fluffstuff/custom_boxes_vr.dm b/code/modules/vore/fluffstuff/custom_boxes_vr.dm
index 4b16e1d66fc..b718453f2ef 100644
--- a/code/modules/vore/fluffstuff/custom_boxes_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_boxes_vr.dm
@@ -217,6 +217,16 @@
/obj/item/weapon/melee/fluffstuff/wolfgirlsword,
/obj/item/weapon/shield/fluff/wolfgirlshield)
+// Ryumi: Nikki Yumeno
+/obj/item/weapon/storage/box/fluff
+ name = "Nikki's Outfit Box"
+ desc = "Warning: Contains dangerous amounts of dork."
+ has_items = list(
+ /obj/item/weapon/rig/nikki,
+ /obj/item/clothing/head/fluff/nikki,
+ /obj/item/clothing/under/skirt/outfit/fluff/nikki,
+ /obj/item/clothing/shoes/fluff/nikki)
+
/*
Swimsuits, for general use, to avoid arriving to work with your swimsuit.
*/
diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
index daf0da14db8..78af3b90441 100644
--- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
@@ -110,8 +110,8 @@
//ketrai:Ketrai
/obj/item/clothing/head/fluff/ketrai
- name = "Pink Bear Hat"
- desc = "A pink space bear hat, the origins are unknown"
+ name = "Bear Pelt"
+ desc = "A luxury space bear pelt, its origins unknown."
icon = 'icons/vore/custom_clothes_vr.dmi'
icon_state = "bearpelt"
@@ -935,6 +935,22 @@
worn_state = "khi_uniform_sci"
armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 10, bio = 0, rad = 0)
+/obj/item/clothing/under/rank/khi/crg //Cargo version
+ name = "KHI cargo suit"
+ desc = "Kitsuhana Heavy Industries uniform. Looks like it's in supply and cargo division colors. Even post-scarcity societies need things moved and mined sometimes."
+ icon_state = "khi_uniform_crg_i"
+ item_state = "khi_uniform_crg"
+ worn_state = "khi_uniform_crg"
+ armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0)
+
+/obj/item/clothing/under/rank/khi/civ //Science version
+ name = "KHI civilian suit"
+ desc = "Kitsuhana Heavy Industries uniform. Snazzy silver trim marks this is as the general civilian branch. Smells like paperwork and bureaucracy."
+ icon_state = "khi_uniform_civ_i"
+ item_state = "khi_uniform_civ"
+ worn_state = "khi_uniform_civ"
+ armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0)
+
/obj/item/clothing/under/rank/khi/fluff/aronai //Aro fluff version
name = "KHI meditech suit"
desc = "Kitsuhana Heavy Industries uniform. This one has the colors of a resleeving or mnemonics engineer. It has 'Aronai' written inside the top."
@@ -2005,4 +2021,270 @@ Departamental Swimsuits, for general use
//BobOfBoblandia: Charles Gettler
/obj/item/clothing/head/that/fluff/gettler
name = "Charles' Top-Hat"
- desc = "A special hat, removed from its owner."
\ No newline at end of file
+ desc = "A special hat, removed from its owner."
+
+//Ryumi: Nikki Yumeno
+/obj/item/clothing/under/skirt/outfit/fluff/nikki
+ name = "dorky outfit"
+ desc = "A little witch costume that looks like it's been worn as ordinary clothes. Who in their right mind would...??"
+ icon = 'icons/vore/custom_clothes_vr.dmi'
+ icon_override = 'icons/vore/custom_onmob_vr.dmi'
+ icon_state = "nikki_outfit"
+ item_state = "nikki_outfit"
+ item_icons = list()
+ sensor_mode = 3 // I'm a dumbass and forget these all the time please understand :(
+
+/obj/item/clothing/under/skirt/outfit/fluff/nikki/mob_can_equip(var/mob/living/carbon/human/M, slot, disable_warning = 0)
+ if(..())
+ if (M.ckey == "ryumi")
+ return 1
+ else if (M.get_active_hand() == src)
+ to_chat(M, "What the heck? \The [src] doesn't fit! ")
+ return 0
+
+/obj/item/clothing/shoes/fluff/nikki
+ name = "non-magical boots"
+ desc = "Boots optimally built for a dork. They don't sparkle or anything, but you can imagine them doing that when you click the heels together."
+ icon = 'icons/vore/custom_clothes_vr.dmi'
+ icon_override = 'icons/vore/custom_onmob_vr.dmi'
+ icon_state = "nikki_boots"
+ item_state = "nikki_boots"
+
+/obj/item/clothing/shoes/fluff/nikki/mob_can_equip(var/mob/living/carbon/human/M, slot, disable_warning = 0)
+ if(..())
+ if (M.ckey == "ryumi")
+ return 1
+ else if (M.get_active_hand() == src)
+ to_chat(M, "What the heck? \The [src] doesn't fit! ")
+ return 0
+
+/obj/item/clothing/suit/fluff/nikki //see /obj/item/weapon/rig/nikki
+ name = "cape"
+ desc = "Snazzy!"
+ flags = null
+ armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) // It's not armor, it's a dorky frickin cape
+ body_parts_covered = null // Cape ain't gonna cover a THING
+ cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS // It will keep you toasty tho, it's more than big enough to help with that! Just wrap the thing around you when on the surface, idk
+ icon = 'icons/vore/custom_clothes_vr.dmi'
+ icon_override = 'icons/vore/custom_onmob_vr.dmi'
+ icon_state = "nikki"
+
+/obj/item/clothing/head/fluff/nikki
+ // I have never tryharded so much just to accomplish something so stupid as "Vore By Hat" in my entire life, and I apologize to each and every one of you.
+ name = "oversized witch hat"
+ desc = "A dork-shaped hat. Its long, pointed tip reaches far more than most hats had ought to, its wide brim complementing \
+ this with its tendency to droop at the ends under its own weight."
+ description_fluff = "Despite what Nikki Yumeno may believe, her hat is not in fact a magical artifact of teleportation magicks. \
+ It is however the result of clever utilization of bluespace technology combined with style. Like a classic magician's trick, \
+ the power of this hat lies in the hidden compartment hidden on the inside, into which a personal translocation device can be \
+ snapped inside. Once installed, bluespace electronics inside the hat sync with the translocator and utilize its teleportation \
+ technology to create a localized bluespace portal within the hole of the hat. This tiny portal will warp anything or anyone \
+ who makes physical contact with it to whatever beacon the translocator within is locked onto."
+ icon = 'icons/vore/custom_clothes_vr.dmi'
+ icon_state = "nikki-hat"
+ item_state = "nikki-hat"
+ item_icons = list(
+ slot_l_hand_str = 'icons/vore/custom_clothes_left_hand_vr.dmi',
+ slot_r_hand_str = 'icons/vore/custom_clothes_right_hand_vr.dmi',
+ slot_head_str = 'icons/vore/custom_onmob_32x48_vr.dmi'
+ )
+ flags_inv = HIDEEARS
+ w_class = ITEMSIZE_LARGE // THIS HAT IS FUCKIN HUGE YO
+ var/owner = "ryumi"
+ var/obj/item/device/perfect_tele/translocator = null // The translocator installed inside, if there is one. Gotta go out and get it first!
+
+/obj/item/clothing/head/fluff/nikki/verb/verb_translocator_unequip()
+ set category = "Object"
+ set name = "Nikki's Hat - Unequip Translocator"
+ set src in usr
+ translocator_unequip(translocator, usr)
+
+/obj/item/clothing/head/fluff/nikki/proc/translocator_equip(var/obj/item/device/perfect_tele/T, var/mob/living/carbon/human/user)
+ if (do_after(user, 2 SECONDS, T))
+ user.unEquip(T)
+ translocator_unequip(translocator, user)
+ T.forceMove(src)
+ translocator = T
+ user.show_message("[bicon(src)]*click!*")
+ playsound(src, 'sound/machines/click.ogg', 30, 1)
+
+/obj/item/clothing/head/fluff/nikki/proc/translocator_unequip(var/obj/item/device/perfect_tele/T, var/mob/living/carbon/human/user)
+ if (translocator)
+ if (user)
+ user.put_in_hands(T)
+ user.show_message("[bicon(src)]*click!*")
+ else
+ translocator.forceMove(get_turf(src))
+ translocator = null
+ playsound(src, 'sound/machines/click.ogg', 30, 1)
+
+/obj/item/clothing/head/fluff/nikki/proc/teleport_fail(mob/user, mob/target)
+ if (target != user)
+ user.visible_message("[user] harmlessly bops [target] with \the [src]. ", \
+ "\The [src] harmlessly bops [target]. The hat seems... unwilling? ")
+ else
+ user.visible_message("\The [src] flops over [user]'s' head for a moment, but they seem alright. ", \
+ "\The [src] flops over your head for a moment, but you correct it without issue. There we go! ")
+
+/obj/item/clothing/head/fluff/nikki/proc/hat_warp_checks(var/mob/living/target, mob/user, proximity_flag)
+ if (!proximity_flag)
+ return 0
+
+ if (!translocator)
+ to_chat(user, "\The [src] doesn't have a translocator inside it yet, you goof! ")
+ return 0
+
+ if (target.ckey == owner && target != user) // ur not getting me that easy sonny jim......
+ to_chat(user, "You think to turn \the [src] on its creator?! FOOOOOOOOL. ")
+ to_chat(user, "From seemingly nowhere you hear echoing, derisive laughter, accompanied by a stock laugh track and... Are those bike horns? ")
+ return 0
+
+ if (!istype(target))
+ to_chat(user, "\The [src] isn't a valid target! ")
+ return 0
+
+ // Because other mobs (i.e. monkeys) apparently have dropnom prey set to 0, we check SPECIFICALLY for humans' dropnom setting.
+ if (target.type == /mob/living/carbon/human && !target.can_be_drop_prey)
+ teleport_fail(user, target)
+ return 0
+
+ if (!translocator.teleport_checks(target, user))
+ return 0
+
+ else return 1
+
+/obj/item/clothing/head/fluff/nikki/attackby(obj/item/weapon/I as obj, mob/user as mob)
+ if (istype(I, /obj/item/device/perfect_tele) && user.get_inactive_hand() == src)
+ if (translocator)
+ visible_message("[user] starts to pull \a [translocator] out of \the [src] to swap it out with \the [I]... ", \
+ "You start pulling \the [translocator] pops out of its compartment with a soft 'click' as you replace it with \the [I].... ")
+ else
+ visible_message("[user] begins slipping \the [I] into \the [src]... ", \
+ "You begin to snap \the [I] into a small, hidden compartment inside \the [src]... ")
+ // This works for both adding and replacing a translocator
+ translocator_equip(I, user)
+ return
+ else if (translocator)
+ translocator.attackby(I, user)
+ return
+ ..()
+
+/obj/item/clothing/head/fluff/nikki/get_description_interaction()
+ . = ..()
+ if (translocator)
+ . += "It has \a [translocator] inside of it. Alt-click while holding it on your inactive hand to remove it."
+ . += "Otherwise, this hat functions exactly as the translocator it has inside while still being a sweet head accessory."
+ else
+ . += "A translocator can be placed inside of it! While holding the hat in your inactive hand, use a translocator on it to slip it inside."
+ . += "After doing this, it will function as both a head accessory and teleportation device."
+
+
+/obj/item/clothing/head/fluff/nikki/attack_hand(mob/user)
+ if (translocator && (user.get_inactive_hand() == src))
+ translocator.unload_ammo(user, ignore_inactive_hand_check = 1)
+ return
+ ..()
+
+/obj/item/clothing/head/fluff/nikki/AltClick(mob/user)
+ if (translocator && (user.get_inactive_hand() == src))
+ translocator_unequip(translocator, user)
+
+/obj/item/clothing/head/fluff/nikki/attack_self(mob/user)
+ ..()
+ if (translocator)
+ translocator.attack_self(user, user)
+ return
+ else
+ to_chat(user, "\The [src] doesn't have a translocator inside it right now.")
+ return
+
+/obj/item/clothing/head/fluff/nikki/examine(mob/user) // If it has a translocator installed, make it very obvious to viewers that something WEIRD is going on with this hat.
+ . = ..()
+ if (translocator)
+ . += "Weird... You can't see the bottom of the hole inside the hat... "
+
+/obj/item/clothing/head/fluff/nikki/equipped(mob/living/carbon/human/user, slot)
+ . = ..()
+ if (slot == slot_head && translocator && user.ckey != owner) // This way we don't unnecessarily spam the chat with hat/translocator errors
+ // hey, are we actually able to teleport this poor person?
+ if (hat_warp_checks(user, user, proximity_flag = 1))
+ // YOU FOOL! YOU HAVE ACTIVATED MY STAND, 「VORE BY HAT」!
+ src.visible_message("\The [src] falls over [user]'s head... and somehow falls over the rest of their body, causing them to vanish inside. Where did they go?! ", \
+ "The hat falls over your head as you put it on, enveloping you in a bright green light! Uh oh. ")
+ var/uh_oh = pick(translocator.beacons)
+ user.remove_from_mob(src, get_turf(user))
+ translocator.destination = translocator.beacons[uh_oh]
+ translocator.afterattack(user, user, proximity = 1, ignore_fail_chance = 1)
+ add_attack_logs(user, user, "Tried to put on \the [src] and was involuntarily teleported by it (via \the [translocator] within)!")
+ return
+
+/obj/item/clothing/head/fluff/nikki/afterattack(var/mob/living/target, mob/user, proximity_flag, click_parameters)
+ // If the hat is willing to cooperate with the holder...
+ if (hat_warp_checks(target, user, proximity_flag))
+ // Silly fluffed up styles of teleporting people based on user intent.
+ switch (user.a_intent)
+ if (I_HELP)
+ user.visible_message("[user] guides \the [target] to the bottomless hole within \the [src]. They begin to climb inside... ")
+ if (do_after(user, 5 SECONDS, target))
+ translocator.afterattack(target, user, proximity_flag)
+ if (I_DISARM)
+ user.visible_message("[user] plops \the [src] onto \the [target]'s head! ")
+ translocator.afterattack(target, user, proximity_flag)
+ if (I_GRAB)
+ user.visible_message("[user] begins stuffing [target] into \the [src]! ")
+ if (do_after(user, 5 SECONDS, target))
+ translocator.afterattack(target, user, proximity_flag)
+ if (I_HURT)
+ user.visible_message("[user] swipes \the [src] over \the [target]! ")
+ translocator.afterattack(target, user, proximity_flag)
+
+ add_attack_logs(user, target, "Teleported [target] with via \the [src]'s [translocator]!")
+ else ..()
+
+//Vitoras: Verie
+/obj/item/clothing/suit/storage/hooded/fluff/verie
+ name = "distressingly cyan hoodie"
+ desc = "A cute, brightly colored hoodie perfect for occasional concealment of a verie silly nerd. A little tag inside \
+ the collar bears only the letters \"VW.\""
+ icon = 'icons/vore/custom_clothes_vr.dmi'
+ icon_state = "verie_hoodie"
+
+ icon_override = 'icons/vore/custom_onmob_vr.dmi'
+ item_state = "verie_hoodie"
+
+ hoodtype = /obj/item/clothing/head/hood/winter/fluff/verie
+
+ var/owner = "vitoras"
+
+/obj/item/clothing/suit/storage/hooded/fluff/verie/ToggleHood()
+ // If you ain't the robutt, you probably don't have the hair style that the hooded icon states are made for. sorry!
+ var/mob/living/carbon/human/H = src.loc
+ if (H.ckey != owner)
+ to_chat(H, "Strange... the hood doesn't go over your head no matter how you try to put it up.")
+ return
+ ..()
+
+/obj/item/clothing/head/hood/winter/fluff/verie
+ body_parts_covered = null // This way, Verie's hair can show through the hood!
+ name = "not-so-cyan hood"
+ icon = 'icons/vore/custom_clothes_vr.dmi'
+ icon_state = "verie_hood"
+
+ icon_override = 'icons/vore/custom_onmob_vr.dmi'
+ item_state = "verie_hood"
+
+/obj/item/clothing/under/fluff/verie
+ name = "salaciously stylised suit"
+ desc = "It's kind of difficult to identify the type of material that makes up this form-fitting suit. It is stretchy and flexible, but \
+ is firm in its toughness, and clings tightly to the skin. Come to think of it, it glistens quite a bit in the light and- \
+ oh god it's latex.\
+ \n... A Verie appropriate material choice indeed." //the wordplay never ends
+ icon = 'icons/vore/custom_clothes_vr.dmi'
+ icon_state = "veriesuit"
+
+ icon_override = 'icons/vore/custom_onmob_vr.dmi'
+ item_state = "veriesuit"
+
+ body_parts_covered = UPPER_TORSO|LOWER_TORSO|FEET|ARMS|HANDS
+
+
diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm
index 31f47afe06e..bcb1ad38503 100644
--- a/code/modules/vore/fluffstuff/custom_items_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_items_vr.dm
@@ -828,6 +828,45 @@
accessset = 1
..()
+//verysoft:Harmony - Custom ID (pilot)
+/obj/item/weapon/card/id/fluff/harmony
+ registered_name = "CONFIGURE ME"
+ assignment = "CONFIGURE ME"
+ var/configured = 0
+ var/accessset = 0
+ icon = 'icons/obj/card_vr.dmi'
+ icon_state = "itg"
+ desc = "A small card designating affiliation with the Ironcrest Transport Group. It has a NanoTrasen insignia and a lot of very small print on the back to do with practices and regulations for contractors to use."
+ var/title_strings = list("Harmony's ITG-ID card")
+
+/obj/item/weapon/card/id/fluff/harmony/attack_self(mob/user as mob)
+ if(configured == 1)
+ return ..()
+
+ var/title
+ if(user.client.prefs.player_alt_titles[user.job])
+ title = user.client.prefs.player_alt_titles[user.job]
+ else
+ title = user.job
+ assignment = title
+ user.set_id_info(src)
+ if(user.mind && user.mind.initial_account)
+ associated_account_number = user.mind.initial_account.account_number
+ var/tempname = pick(title_strings)
+ name = tempname + " ([title])"
+ configured = 1
+ to_chat(user, "Card settings set. ")
+
+/obj/item/weapon/card/id/fluff/harmony/attackby(obj/item/I as obj, mob/user as mob)
+ if(istype(I, /obj/item/weapon/card/id) && !accessset)
+ var/obj/item/weapon/card/id/O = I
+ access |= O.access
+ to_chat(user, "You copy the access from \the [I] to \the [src]. ")
+ user.drop_from_inventory(I)
+ qdel(I)
+ accessset = 1
+ ..()
+
//General use, Verk felt like sharing.
/obj/item/clothing/glasses/fluff/science_proper
name = "Aesthetic Science Goggles"
@@ -1254,6 +1293,52 @@
else
return 1
+//Ryumi - Nikki Yumeno
+/obj/item/weapon/rig/nikki
+ name = "weird necklace"
+ desc = "A necklace with a brilliantly blue crystal encased in protective glass."
+ icon = 'icons/vore/custom_clothes_vr.dmi'
+ icon_override = 'icons/vore/custom_onmob_vr.dmi'
+ suit_type = "probably not magical"
+ icon_state = "nikki"
+ w_class = ITEMSIZE_SMALL // It is after all only a necklace
+ armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0) // this isn't armor, it's a dorky frickin cape
+ siemens_coefficient = 0.9
+ slowdown = 0
+ offline_slowdown = 0
+ offline_vision_restriction = 0
+ siemens_coefficient = 0.9
+ chest_type = /obj/item/clothing/suit/fluff/nikki
+
+ req_access = list()
+ req_one_access = list()
+
+ helm_type = null
+ glove_type = null
+ boot_type = null
+
+ allowed = list(
+ /obj/item/device/flashlight,
+ /obj/item/weapon/tank,
+ /obj/item/device/suit_cooling_unit,
+ /obj/item/weapon/storage,
+ )
+
+/obj/item/weapon/rig/nikki/attackby(obj/item/W, mob/living/user)
+ //This thing accepts ONLY mounted sizeguns. That's IT. Nothing else!
+ if(open && istype(W,/obj/item/rig_module) && !istype(W,/obj/item/rig_module/mounted/sizegun))
+ to_chat(user, "\The [src] only accepts mounted size gun modules. ")
+ return
+ ..()
+
+/obj/item/weapon/rig/nikki/mob_can_equip(var/mob/living/carbon/human/M, slot, disable_warning = 0) // Feel free to (try to) put Nikki's hat on! The necklace though is a flat-out no-go.
+ if(..())
+ if (M.ckey == "ryumi")
+ return 1
+ else if (M.get_active_hand() == src)
+ to_chat(M, "For some reason, the necklace seems to never quite get past your head when you try to put it on... Weird, it looked like it would fit. ")
+ return 0
+
//Nickcrazy - Damon Bones Xrim
/obj/item/clothing/suit/storage/toggle/bomber/bombersec
name = "Security Bomber Jacket"
@@ -1308,4 +1393,55 @@
/obj/item/weapon/reagent_containers/food/drinks/glass2/fluff/claraflask/update_icon()
..()
name = initial(name)
- desc = initial(desc)
\ No newline at end of file
+ desc = initial(desc)
+
+//Vitoras: Verie
+/obj/item/weapon/fluff/verie
+ name = "glowy hairbrush"
+ desc = "A pulse of light periodically zips across the top of this blue brush. This... is not an ordinary hair care tool. \
+ A small inscription can be seen in one side of the brush: \"THIS DEVICE IS ONLY COMPATIBLE WITH MODEL RI \
+ POSITRONICS IN A MODEL E CHASSIS.\""
+ icon = 'icons/vore/custom_items_vr.dmi'
+ icon_state = "verie_brush"
+ w_class = ITEMSIZE_TINY
+
+ var/owner = "vitoras"
+
+/obj/item/weapon/fluff/verie/attack_self(mob/living/carbon/human/user)
+ if (istype(user))
+ // It's only made for Verie's chassis silly!
+ if (user.ckey != owner)
+ to_chat(user, "The brush's teeth are far too rough to even comb your hair. Apparently, \
+ this device was not made for people like you. ")
+ return
+
+ if (!user.hair_accessory_style)
+ var/datum/sprite_accessory/hair_accessory/verie_hair_glow/V = new(user)
+ user.hair_accessory_style = V
+ user.update_hair()
+ user.visible_message("[user] combs her hair. \The [src] leaves behind glowing cyan highlights as it passes through \
+ her black strands.", \
+ "You brush your hair. \The [src]'s teeth begin to vibrate and glow as they react to your nanites. \
+ The teeth stimulate the nanites in your hair strands until your hair give off a brilliant, faintly pulsing \
+ cyan glow! ")
+
+ else
+ user.visible_message("[user] combs her hair. \The [src] brushes away her glowing cyan highlights. Neat!", \
+ "You brush your hair. \The [src]'s teeth wipe away the glowing streaks in your hair \
+ like a sponge scrubbing away a stain. ")
+ user.hair_accessory_style = null
+ for(var/datum/sprite_accessory/hair_accessory/verie_hair_glow/V in user)
+ to_chat(user, "found a V to delete! ")
+ qdel(V)
+ user.update_hair()
+
+
+ else
+ to_chat(user, "\The [src] isn't compatible with your body as it is now. ")
+
+// Astra - // Astra
+/obj/item/weapon/material/knife/ritual/fluff/astra
+ name = "Polished Ritual Knife"
+ desc = "A well kept strange ritual knife, There is a small tag with the name 'Astra Ether' on it. They are probably looking for this."
+ icon = 'icons/obj/wizard.dmi'
+ icon_state = "render"
diff --git a/code/modules/vore/resizing/holder_micro_vr.dm b/code/modules/vore/resizing/holder_micro_vr.dm
index 4e7b63e0b98..b0bfbcc5b42 100644
--- a/code/modules/vore/resizing/holder_micro_vr.dm
+++ b/code/modules/vore/resizing/holder_micro_vr.dm
@@ -48,3 +48,23 @@
..()
for(var/mob/living/carbon/human/I in contents)
item_state = lowertext(I.species.name)
+
+//Egg features.
+/obj/item/weapon/holder/attack_hand(mob/living/user as mob)
+ if(istype(src.loc, /obj/item/weapon/storage/vore_egg)) //Don't scoop up the egged mob
+ src.pickup(user)
+ user.drop_from_inventory(src)
+ return
+ ..()
+
+/obj/item/weapon/holder/container_resist(mob/living/held)
+ if(!istype(src.loc, /obj/item/weapon/storage/vore_egg))
+ ..()
+ else
+ var/obj/item/weapon/storage/vore_egg/E = src.loc
+ if(isbelly(E.loc))
+ var/obj/belly/B = E.loc
+ B.relay_resist(held, E)
+ return
+ E.hatch(held)
+ return
diff --git a/code/modules/vore/resizing/sizegun_vr.dm b/code/modules/vore/resizing/sizegun_vr.dm
index 7fdd357d7f3..863fad54fcd 100644
--- a/code/modules/vore/resizing/sizegun_vr.dm
+++ b/code/modules/vore/resizing/sizegun_vr.dm
@@ -82,3 +82,8 @@
/obj/item/projectile/beam/sizelaser/grow
set_size = 2.0 //200% of current size
+
+/obj/item/weapon/gun/energy/sizegun/mounted
+ name = "mounted size gun"
+ self_recharge = 1
+ use_external_power = 1
\ No newline at end of file
diff --git a/code/modules/xenoarcheaology/finds/find_spawning.dm b/code/modules/xenoarcheaology/finds/find_spawning.dm
index b121724219b..c6be35df69d 100644
--- a/code/modules/xenoarcheaology/finds/find_spawning.dm
+++ b/code/modules/xenoarcheaology/finds/find_spawning.dm
@@ -295,7 +295,7 @@
if(spawn_type)
var/obj/item/weapon/gun/energy/new_gun = new spawn_type(src.loc)
new_item = new_gun
- new_item.icon_state = "egun[rand(1,12)]"
+ new_item.icon_state = "egun[rand(1,6)]" //VOREStation Edit: max value is 6 since xenoarcheoloy_vr only has 6 egun variants
new_gun.desc = "This is an antique energy weapon, you're not sure if it will fire or not."
//5% chance to explode when first fired
diff --git a/code/stylesheet.dm b/code/stylesheet.dm
index 4ca8fb9436b..3d22733d95e 100644
--- a/code/stylesheet.dm
+++ b/code/stylesheet.dm
@@ -67,7 +67,11 @@ em {font-style: normal;font-weight: bold;}
h1.alert, h2.alert {color: #000000;}
.ghostalert {color: #5c00e6; font-style: italic; font-weight: bold;}
-.emote {font-style: italic;}
+
+// VOREStation Edit Start
+.emote {}
+.emote_subtle {font-style: italic;}
+// VOREStation Edit End
/* Game Messages */
@@ -111,7 +115,8 @@ h1.alert, h2.alert {color: #000000;}
.say_quote {font-family: Georgia, Verdana, sans-serif;}
.terminus {font-family: "Times New Roman", Times, serif, sans-serif}
.interface {color: #330033;}
-.spacer {color: #9c660b;}
+.spacer {color: #9c660b;} /* VOREStation Add */
+.blob {color: #ff950d; font-weight: bold; font-style: italic;}
BIG IMG.icon {width: 32px; height: 32px;}
diff --git a/config/alienwhitelist.txt b/config/alienwhitelist.txt
index 3c32be398c9..dc88467f4b0 100644
--- a/config/alienwhitelist.txt
+++ b/config/alienwhitelist.txt
@@ -1,14 +1,16 @@
some~user - Species
-
admiraldragon - Vox
aetherelemental - Daemon
alphaprime1 - Protean
amarewolf - Xenochimera
+amshaegaar - Vox
arandomalien - Xenochimera
arokha - Protean
aruis - Diona
+aruis - Protean
aruis - Xenochimera
azmodan412 - Xenochimera
+beyondmylife - Protean
bothnevarbackwards - Diona
bricker98 - Protean
cgr - Protean
@@ -20,14 +22,19 @@ draycu - Vox
flaktual - Vox
flurriee - Protean
funnyman2003 - Xenochimera
+greennyy - Protean
hawkerthegreat - Vox
hollifex - Diona
+h0lysquirr3l - Protean
inuzari - Diona
+jademanique - Black-Eyed Shadekin
jademanique - Xenochimera
khanivore - Protean
killjaden - Protean
ktccd - Diona
+liache - Black-Eyed Shadekin
magpiemayhem - Vox
+marco_barko - Protean
mewchild - Diona
mewchild - Vox
mrsebbi - Xenochimera
@@ -35,13 +42,14 @@ natje - Xenochimera
nerdass - Protean
ontejbjoav - Diona
oreganovulgaris - Xenochimera
+owwy - Black-Eyed Shadekin
+oxenfree - Protean
paradoxspace - Xenochimera
pearlprophet - Protean
+pemdesos - Protean
phoenixx0 - Vox
+qrocakes - Black-Eyed Shadekin
radiantaurora - Protean
-rapidvalj - Vox
-rapidvalj - Common Skrellian
-rapidvalj - High Skrellian
rikaru19xjenkins - Xenochimera
rixunie - Diona
rubyflamewing - Protean
@@ -60,9 +68,14 @@ storesund97 - Protean
tastypred - Black-Eyed Shadekin
tastypred - Xenochimera
tastypred - Protean
+terrestris - Vox
+terrestris - Common Skrellian
+terrestris - High Skrellian
timidvi - Diona
+trikonei - Protean
varonis - Xenochimera
verkister - Xenochimera
+verysoft - Black-Eyed Shadekin
vitoras - Protean
voidalynx - Protean
wickedtemp - Shadekin Empathy
diff --git a/config/jobwhitelist.txt b/config/jobwhitelist.txt
index 6cb52a63919..96e11549607 100644
--- a/config/jobwhitelist.txt
+++ b/config/jobwhitelist.txt
@@ -1,5 +1,6 @@
# Job whitelist in format ckey - jobname
# Like arokha - clown
+Akram - clown
seiga - mime
silvertalismen - clown
suicidalpickles - mime
@@ -9,4 +10,5 @@ chargae - mime
verkister - clown
H0lySquirr3l - clown
sgtryder - mime
-tygertac - clown
\ No newline at end of file
+tygertac - clown
+radishfriend - clown
diff --git a/guides/Guide to Map Folders.md b/guides/Guide to Map Folders.md
index 3131cb530ca..95ad2391780 100644
--- a/guides/Guide to Map Folders.md
+++ b/guides/Guide to Map Folders.md
@@ -34,7 +34,7 @@ RandomZLevels: Polaris, do not touch
southern_cross: Polaris, do not touch
submaps: All our submaps. non _vr files are Polaris, do not touch them.
tether: VORE, Our map, self-explanatory
-virgo_minitest: VORE, Testing map used for Travis, do not touch
+virgo_minitest: VORE, Testing map used for CI, do not touch
## What _submaps.dm (map-folder-specific, Tether uses _tether_submaps.dm) should look like:
diff --git a/html/changelogs/Cerebulon - machinesounds.yml b/html/changelogs/Cerebulon - machinesounds.yml
index c6bfbfeaa30..fee9629a4f8 100644
--- a/html/changelogs/Cerebulon - machinesounds.yml
+++ b/html/changelogs/Cerebulon - machinesounds.yml
@@ -1,36 +1,4 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
author: Cerebulon
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- soundadd: "Added button sounds to various machines."
diff --git a/html/changelogs/KasparoVy - PR - 7760.yml b/html/changelogs/KasparoVy - PR - 7760.yml
new file mode 100644
index 00000000000..44df74a4a55
--- /dev/null
+++ b/html/changelogs/KasparoVy - PR - 7760.yml
@@ -0,0 +1,13 @@
+author: KasparoVy
+delete-after: True
+changes:
+ - imageadd: Adds orange Teshari goggles, selectable in the loadout.
+ - imageadd: Adds blindfold & new white (recolorable) blindfold to loadout.
+ - imageadd: Adds species-fitted Teshari ring sprites.
+ - imageadd: Adds species-fitted Teshari hudpatches & white blindfold.
+ - imageadd: Adds full selection of Teshari belted cloaks.
+ - imageadd: Adds full selection of non-job Teshari hooded cloaks.
+ - rscadd: Adds a bunch of Teshari worksuits (sprites already existed).
+ - imageadd: Adds some species-fitted Teshari jacket accessories (tan, charcoal, navy, burgundy, checkered).
+ - tweak: Updates all Teshari undercoats and cloaks with new sprites from downstreams.
+ - bugfix: Fixes Teshari captain glove sprites.
diff --git a/html/changelogs/Mechoid - Encumbrance.yml b/html/changelogs/Mechoid - Encumbrance.yml
index f013a3bcad9..4c735bd9deb 100644
--- a/html/changelogs/Mechoid - Encumbrance.yml
+++ b/html/changelogs/Mechoid - Encumbrance.yml
@@ -1,36 +1,4 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
author: Mechoid
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- rscadd: "Added system for exosuit over-encumbrance. Combat mechs and Ripleys have higher than default."
diff --git a/html/changelogs/Meghan Rossi - the_teslagen.yml b/html/changelogs/Meghan Rossi - the_teslagen.yml
index ee59d5663e1..efa9d81ba46 100644
--- a/html/changelogs/Meghan Rossi - the_teslagen.yml
+++ b/html/changelogs/Meghan Rossi - the_teslagen.yml
@@ -1,4 +1,4 @@
author: Meghan-Rossi
delete-after: True
changes:
- - rscadd: "The Tesla Generator is now available from cargo. Coils and grounding rods for it may be printed on the protolathe and autolathe, respectively."
\ No newline at end of file
+ - rscadd: "The Tesla Generator is now available from cargo. Coils and grounding rods for it may be printed on the protolathe and autolathe, respectively."
\ No newline at end of file
diff --git a/html/changelogs/Runa Dacino - Exosuit gripper tweak.yml b/html/changelogs/Runa Dacino - Exosuit gripper tweak.yml
index fc17d241d0c..7a8539afcee 100644
--- a/html/changelogs/Runa Dacino - Exosuit gripper tweak.yml
+++ b/html/changelogs/Runa Dacino - Exosuit gripper tweak.yml
@@ -1,37 +1,5 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
-author: N3X15
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
+author: RunaDacino
delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- rscadd: "Enabled research borgs equipped with 'exosuit gripper' to be able to replace internal exosuit parts like actuators, to upgrade or to repair"
diff --git a/html/changelogs/SubberTheFabulous-PR-7642.yml b/html/changelogs/SubberTheFabulous-PR-7642.yml
index 23864c64b07..a816794d443 100644
--- a/html/changelogs/SubberTheFabulous-PR-7642.yml
+++ b/html/changelogs/SubberTheFabulous-PR-7642.yml
@@ -1,36 +1,4 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
author: Subber
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- rscadd: "Added two new antag augments to traitor uplink: armblade and handblade."
diff --git a/html/changelogs/Woodrat - Vote.yml b/html/changelogs/Woodrat - Vote.yml
index 78317ec750c..872c80edfa8 100644
--- a/html/changelogs/Woodrat - Vote.yml
+++ b/html/changelogs/Woodrat - Vote.yml
@@ -1,36 +1,4 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
author: Woodrat
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- tweak: "Changes vote notification sound to that of World Server in order to help people realize there is a vote occurring."
diff --git a/html/changelogs/mechoid - butchery.yml b/html/changelogs/mechoid - butchery.yml
index 433bf787e76..598b5743567 100644
--- a/html/changelogs/mechoid - butchery.yml
+++ b/html/changelogs/mechoid - butchery.yml
@@ -34,4 +34,4 @@ delete-after: True
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- rscadd: "Animals can be butchered for organs and hide. Requires scraping (sharp), washing (water or washing machine), and then drying (bonfire or drying rack)."
- - rscadd: "Organs can be butchered for meat, named "[organ] meat". Heart meat, liver meat, etc. Brains from player mobs cannot be butchered."
+ - rscadd: "Organs can be butchered for meat, named \"[organ] meat\". Heart meat, liver meat, etc. Brains from player mobs cannot be butchered."
diff --git a/html/changelogs/mechoid - hydroupkeep.yml b/html/changelogs/mechoid - hydroupkeep.yml
index 66b4cea2144..023ba1495e9 100644
--- a/html/changelogs/mechoid - hydroupkeep.yml
+++ b/html/changelogs/mechoid - hydroupkeep.yml
@@ -1,37 +1,5 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
author: Mechoid
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- rscadd: "Adds Wurmwoad, a suspiciously worm-like plant that produces pods of spice."
- rscadd: "Adds Wurmwoad to the service borg synthesizer."
diff --git a/icons/_nanomaps/tether_nanomap_z1.png b/icons/_nanomaps/tether_nanomap_z1.png
index 03aad88117b..a7bb05e7bc4 100644
Binary files a/icons/_nanomaps/tether_nanomap_z1.png and b/icons/_nanomaps/tether_nanomap_z1.png differ
diff --git a/icons/_nanomaps/tether_nanomap_z13.png b/icons/_nanomaps/tether_nanomap_z13.png
index 83792e9db47..f8ce22ea74e 100644
Binary files a/icons/_nanomaps/tether_nanomap_z13.png and b/icons/_nanomaps/tether_nanomap_z13.png differ
diff --git a/icons/_nanomaps/tether_nanomap_z2.png b/icons/_nanomaps/tether_nanomap_z2.png
index 8b521135235..bbd381ae474 100644
Binary files a/icons/_nanomaps/tether_nanomap_z2.png and b/icons/_nanomaps/tether_nanomap_z2.png differ
diff --git a/icons/_nanomaps/tether_nanomap_z3.png b/icons/_nanomaps/tether_nanomap_z3.png
index e3838796e0c..72c7582c2af 100644
Binary files a/icons/_nanomaps/tether_nanomap_z3.png and b/icons/_nanomaps/tether_nanomap_z3.png differ
diff --git a/icons/_nanomaps/tether_nanomap_z6.png b/icons/_nanomaps/tether_nanomap_z6.png
index 6d67bae632c..283c20c90c9 100644
Binary files a/icons/_nanomaps/tether_nanomap_z6.png and b/icons/_nanomaps/tether_nanomap_z6.png differ
diff --git a/icons/_nanomaps/tether_nanomap_z7.png b/icons/_nanomaps/tether_nanomap_z7.png
index 8e03cc03fc1..c404e1da35b 100644
Binary files a/icons/_nanomaps/tether_nanomap_z7.png and b/icons/_nanomaps/tether_nanomap_z7.png differ
diff --git a/icons/effects/effects.dmi b/icons/effects/effects.dmi
index e8905467f61..f578e1f9acf 100644
Binary files a/icons/effects/effects.dmi and b/icons/effects/effects.dmi differ
diff --git a/icons/effects/effects_vr.dmi b/icons/effects/effects_vr.dmi
index 276a33bae6e..02569f6157d 100644
Binary files a/icons/effects/effects_vr.dmi and b/icons/effects/effects_vr.dmi differ
diff --git a/icons/effects/species_tails_vr.dmi b/icons/effects/species_tails_vr.dmi
index 20e9f210bdc..9cf5ba59cf2 100644
Binary files a/icons/effects/species_tails_vr.dmi and b/icons/effects/species_tails_vr.dmi differ
diff --git a/icons/mecha/fighters64x64.dmi b/icons/mecha/fighters64x64.dmi
index 7240417552a..6025a94c864 100644
Binary files a/icons/mecha/fighters64x64.dmi and b/icons/mecha/fighters64x64.dmi differ
diff --git a/icons/mecha/mecha.dmi b/icons/mecha/mecha.dmi
index 65dfa982373..44f6047eeb2 100644
Binary files a/icons/mecha/mecha.dmi and b/icons/mecha/mecha.dmi differ
diff --git a/icons/mecha/mecha_equipment.dmi b/icons/mecha/mecha_equipment.dmi
index 1fcdff0f723..eb5944366a4 100644
Binary files a/icons/mecha/mecha_equipment.dmi and b/icons/mecha/mecha_equipment.dmi differ
diff --git a/icons/misc/event/stage.dmi b/icons/misc/event/stage.dmi
new file mode 100644
index 00000000000..e635beecb6e
Binary files /dev/null and b/icons/misc/event/stage.dmi differ
diff --git a/icons/mob/drakeborg/Drakeborg-Licensing.txt b/icons/mob/drakeborg/Drakeborg-Licensing.txt
new file mode 100644
index 00000000000..f2d3ca925ca
--- /dev/null
+++ b/icons/mob/drakeborg/Drakeborg-Licensing.txt
@@ -0,0 +1,69 @@
+Drakeborg & drakeplushies are created by deviantart.com/mizartz
+
+https://creativecommons.org/licenses/by-nc-sa/3.0/
+Attribution-NonCommercial-ShareAlike 3.0 Unported
+
+CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.
+License
+THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
+
+BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
+
+1. Definitions
+
+"Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License.
+"Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(g) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License.
+"Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership.
+"License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, Noncommercial, ShareAlike.
+"Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License.
+"Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast.
+"Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work.
+"You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.
+"Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.
+"Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium.
+2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws.
+
+3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:
+
+to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections;
+to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified.";
+to Distribute and Publicly Perform the Work including as incorporated in Collections; and,
+to Distribute and Publicly Perform Adaptations.
+The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved, including but not limited to the rights described in Section 4(e).
+
+4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:
+
+You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(d), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(d), as requested.
+You may Distribute or Publicly Perform an Adaptation only under: (i) the terms of this License; (ii) a later version of this License with the same License Elements as this License; (iii) a Creative Commons jurisdiction license (either this or a later license version) that contains the same License Elements as this License (e.g., Attribution-NonCommercial-ShareAlike 3.0 US) ("Applicable License"). You must include a copy of, or the URI, for Applicable License with every copy of each Adaptation You Distribute or Publicly Perform. You may not offer or impose any terms on the Adaptation that restrict the terms of the Applicable License or the ability of the recipient of the Adaptation to exercise the rights granted to that recipient under the terms of the Applicable License. You must keep intact all notices that refer to the Applicable License and to the disclaimer of warranties with every copy of the Work as included in the Adaptation You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Adaptation, You may not impose any effective technological measures on the Adaptation that restrict the ability of a recipient of the Adaptation from You to exercise the rights granted to that recipient under the terms of the Applicable License. This Section 4(b) applies to the Adaptation as incorporated in a Collection, but this does not require the Collection apart from the Adaptation itself to be made subject to the terms of the Applicable License.
+You may not exercise any of the rights granted to You in Section 3 above in any manner that is primarily intended for or directed toward commercial advantage or private monetary compensation. The exchange of the Work for other copyrighted works by means of digital file-sharing or otherwise shall not be considered to be intended for or directed toward commercial advantage or private monetary compensation, provided there is no payment of any monetary compensation in con-nection with the exchange of copyrighted works.
+If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and, (iv) consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(d) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.
+For the avoidance of doubt:
+
+Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;
+Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License if Your exercise of such rights is for a purpose or use which is otherwise than noncommercial as permitted under Section 4(c) and otherwise waives the right to collect royalties through any statutory or compulsory licensing scheme; and,
+Voluntary License Schemes. The Licensor reserves the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License that is for a purpose or use which is otherwise than noncommercial as permitted under Section 4(c).
+Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise.
+5. Representations, Warranties and Disclaimer
+
+UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING AND TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO THIS EXCLUSION MAY NOT APPLY TO YOU.
+
+6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+7. Termination
+
+This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
+Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.
+8. Miscellaneous
+
+Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
+Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.
+If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
+No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.
+This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.
+The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
+Creative Commons Notice
+Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.
+
+Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License.
+
+Creative Commons may be contacted at https://creativecommons.org/.
\ No newline at end of file
diff --git a/icons/mob/drakeborg/drakeborg_vr.dmi b/icons/mob/drakeborg/drakeborg_vr.dmi
new file mode 100644
index 00000000000..c1ec3f92b03
Binary files /dev/null and b/icons/mob/drakeborg/drakeborg_vr.dmi differ
diff --git a/icons/mob/eyes.dmi b/icons/mob/eyes.dmi
index 6320593c1a1..0be51e7c5c7 100644
Binary files a/icons/mob/eyes.dmi and b/icons/mob/eyes.dmi differ
diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi
index 2d26351b98f..585b658f995 100644
Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ
diff --git a/icons/mob/head_vr.dmi b/icons/mob/head_vr.dmi
index 8823243859d..7de7448cc35 100644
Binary files a/icons/mob/head_vr.dmi and b/icons/mob/head_vr.dmi differ
diff --git a/icons/mob/human_face_vr.dmi b/icons/mob/human_face_vr.dmi
index fa90d462e35..15b9d3eaf93 100644
Binary files a/icons/mob/human_face_vr.dmi and b/icons/mob/human_face_vr.dmi differ
diff --git a/icons/mob/human_face_vr_add.dmi b/icons/mob/human_face_vr_add.dmi
index 029d1789c4e..bdbfe16ff7e 100644
Binary files a/icons/mob/human_face_vr_add.dmi and b/icons/mob/human_face_vr_add.dmi differ
diff --git a/icons/mob/human_races/cyberlimbs/c-tech/c_beast.dmi b/icons/mob/human_races/cyberlimbs/c-tech/c_beast.dmi
new file mode 100644
index 00000000000..60bf6df98f0
Binary files /dev/null and b/icons/mob/human_races/cyberlimbs/c-tech/c_beast.dmi differ
diff --git a/icons/mob/human_races/markings_vr.dmi b/icons/mob/human_races/markings_vr.dmi
index 673ba8deb63..175e5387c69 100644
Binary files a/icons/mob/human_races/markings_vr.dmi and b/icons/mob/human_races/markings_vr.dmi differ
diff --git a/icons/mob/human_races/r_human_vr.dmi b/icons/mob/human_races/r_human_vr.dmi
index 7a91929aad3..987d47e0642 100644
Binary files a/icons/mob/human_races/r_human_vr.dmi and b/icons/mob/human_races/r_human_vr.dmi differ
diff --git a/icons/mob/items/lefthand_guns.dmi b/icons/mob/items/lefthand_guns.dmi
index e6f70780328..d165d0fee4f 100644
Binary files a/icons/mob/items/lefthand_guns.dmi and b/icons/mob/items/lefthand_guns.dmi differ
diff --git a/icons/mob/items/righthand_guns.dmi b/icons/mob/items/righthand_guns.dmi
index 54dba4f49e9..c7fad146acf 100644
Binary files a/icons/mob/items/righthand_guns.dmi and b/icons/mob/items/righthand_guns.dmi differ
diff --git a/icons/mob/monitor_icons_vr.dmi b/icons/mob/monitor_icons_vr.dmi
new file mode 100644
index 00000000000..7b291cbcffd
Binary files /dev/null and b/icons/mob/monitor_icons_vr.dmi differ
diff --git a/icons/mob/screen_gen.dmi b/icons/mob/screen_gen.dmi
index 2071c634d13..75ba00f026d 100644
Binary files a/icons/mob/screen_gen.dmi and b/icons/mob/screen_gen.dmi differ
diff --git a/icons/mob/shadekin_hud.dmi b/icons/mob/shadekin_hud.dmi
index 707feea2a92..a1340290e19 100644
Binary files a/icons/mob/shadekin_hud.dmi and b/icons/mob/shadekin_hud.dmi differ
diff --git a/icons/mob/species/akula/helmet_vr.dmi b/icons/mob/species/akula/helmet_vr.dmi
index 9fed5a5604a..5d9d848ff26 100644
Binary files a/icons/mob/species/akula/helmet_vr.dmi and b/icons/mob/species/akula/helmet_vr.dmi differ
diff --git a/icons/mob/species/akula/suit_vr.dmi b/icons/mob/species/akula/suit_vr.dmi
index 0540f010731..9fb0807138b 100644
Binary files a/icons/mob/species/akula/suit_vr.dmi and b/icons/mob/species/akula/suit_vr.dmi differ
diff --git a/icons/mob/species/sergal/helmet_vr.dmi b/icons/mob/species/sergal/helmet_vr.dmi
index 34d529591d9..900f1adfd9c 100644
Binary files a/icons/mob/species/sergal/helmet_vr.dmi and b/icons/mob/species/sergal/helmet_vr.dmi differ
diff --git a/icons/mob/species/sergal/suit_vr.dmi b/icons/mob/species/sergal/suit_vr.dmi
index f60c8c54800..dc770a2fef9 100644
Binary files a/icons/mob/species/sergal/suit_vr.dmi and b/icons/mob/species/sergal/suit_vr.dmi differ
diff --git a/icons/mob/species/seromi/deptcloak.dmi b/icons/mob/species/seromi/deptcloak.dmi
index 532c208187e..7a9a4128537 100644
Binary files a/icons/mob/species/seromi/deptcloak.dmi and b/icons/mob/species/seromi/deptcloak.dmi differ
diff --git a/icons/mob/species/seromi/deptjacket.dmi b/icons/mob/species/seromi/deptjacket.dmi
index 84cd444186e..020415a61e4 100644
Binary files a/icons/mob/species/seromi/deptjacket.dmi and b/icons/mob/species/seromi/deptjacket.dmi differ
diff --git a/icons/mob/species/seromi/eyes.dmi b/icons/mob/species/seromi/eyes.dmi
index c1709e7a582..250a56d4f97 100644
Binary files a/icons/mob/species/seromi/eyes.dmi and b/icons/mob/species/seromi/eyes.dmi differ
diff --git a/icons/mob/species/seromi/gloves.dmi b/icons/mob/species/seromi/gloves.dmi
index ee6354f8d5f..3bd28112cbf 100644
Binary files a/icons/mob/species/seromi/gloves.dmi and b/icons/mob/species/seromi/gloves.dmi differ
diff --git a/icons/mob/species/seromi/helmet_vr.dmi b/icons/mob/species/seromi/helmet_vr.dmi
index bbc12adc655..72074b04734 100644
Binary files a/icons/mob/species/seromi/helmet_vr.dmi and b/icons/mob/species/seromi/helmet_vr.dmi differ
diff --git a/icons/mob/species/seromi/suit_vr.dmi b/icons/mob/species/seromi/suit_vr.dmi
index 21b6ff521ec..04ea0d2e7ca 100644
Binary files a/icons/mob/species/seromi/suit_vr.dmi and b/icons/mob/species/seromi/suit_vr.dmi differ
diff --git a/icons/mob/species/seromi/teshari_cloak.dmi b/icons/mob/species/seromi/teshari_cloak.dmi
index 2d7e5c1d499..a222ede26b1 100644
Binary files a/icons/mob/species/seromi/teshari_cloak.dmi and b/icons/mob/species/seromi/teshari_cloak.dmi differ
diff --git a/icons/mob/species/seromi/teshari_hood.dmi b/icons/mob/species/seromi/teshari_hood.dmi
new file mode 100644
index 00000000000..64ae2eced37
Binary files /dev/null and b/icons/mob/species/seromi/teshari_hood.dmi differ
diff --git a/icons/mob/species/seromi/teshari_uniform.dmi b/icons/mob/species/seromi/teshari_uniform.dmi
index 627a03f2010..092f78a0e18 100644
Binary files a/icons/mob/species/seromi/teshari_uniform.dmi and b/icons/mob/species/seromi/teshari_uniform.dmi differ
diff --git a/icons/mob/species/seromi/ties.dmi b/icons/mob/species/seromi/ties.dmi
index 9969e78109c..fb49fe444fd 100644
Binary files a/icons/mob/species/seromi/ties.dmi and b/icons/mob/species/seromi/ties.dmi differ
diff --git a/icons/mob/species/seromi/ties_vr.dmi b/icons/mob/species/seromi/ties_vr.dmi
new file mode 100644
index 00000000000..fce61f2bb89
Binary files /dev/null and b/icons/mob/species/seromi/ties_vr.dmi differ
diff --git a/icons/mob/species/werebeast/back.dmi b/icons/mob/species/werebeast/back.dmi
index f35e6d8ea46..f04103f7a7b 100644
Binary files a/icons/mob/species/werebeast/back.dmi and b/icons/mob/species/werebeast/back.dmi differ
diff --git a/icons/mob/species/werebeast/uniform.dmi b/icons/mob/species/werebeast/uniform.dmi
index e441c4af6d8..267847085fa 100644
Binary files a/icons/mob/species/werebeast/uniform.dmi and b/icons/mob/species/werebeast/uniform.dmi differ
diff --git a/icons/mob/suit_vr.dmi b/icons/mob/suit_vr.dmi
index 017c99b4acb..79a9d12b761 100644
Binary files a/icons/mob/suit_vr.dmi and b/icons/mob/suit_vr.dmi differ
diff --git a/icons/mob/vore.dmi b/icons/mob/vore.dmi
index 9fad9d332de..b272992a6ac 100644
Binary files a/icons/mob/vore.dmi and b/icons/mob/vore.dmi differ
diff --git a/icons/mob/vore/ears_vr.dmi b/icons/mob/vore/ears_vr.dmi
index 19ca05582ff..6c259ad5580 100644
Binary files a/icons/mob/vore/ears_vr.dmi and b/icons/mob/vore/ears_vr.dmi differ
diff --git a/icons/mob/vore/hair_accessories_vr.dmi b/icons/mob/vore/hair_accessories_vr.dmi
new file mode 100644
index 00000000000..4411f5c00c5
Binary files /dev/null and b/icons/mob/vore/hair_accessories_vr.dmi differ
diff --git a/icons/mob/vore/tails_vr.dmi b/icons/mob/vore/tails_vr.dmi
index 976b6c5a587..eab6611c9cf 100644
Binary files a/icons/mob/vore/tails_vr.dmi and b/icons/mob/vore/tails_vr.dmi differ
diff --git a/icons/mob/vore/taurs_vr.dmi b/icons/mob/vore/taurs_vr.dmi
index 7d283e65303..a724ddd57dd 100644
Binary files a/icons/mob/vore/taurs_vr.dmi and b/icons/mob/vore/taurs_vr.dmi differ
diff --git a/icons/mob/vore/wings_vr.dmi b/icons/mob/vore/wings_vr.dmi
index 41b6dcf607b..40f5f02d921 100644
Binary files a/icons/mob/vore/wings_vr.dmi and b/icons/mob/vore/wings_vr.dmi differ
diff --git a/icons/mob/vore64x32.dmi b/icons/mob/vore64x32.dmi
index 2dde6000ff1..62fe5339173 100644
Binary files a/icons/mob/vore64x32.dmi and b/icons/mob/vore64x32.dmi differ
diff --git a/icons/mob/vore64x64.dmi b/icons/mob/vore64x64.dmi
index a1042a6fd9d..d0fb9615948 100644
Binary files a/icons/mob/vore64x64.dmi and b/icons/mob/vore64x64.dmi differ
diff --git a/icons/mob/widerobot_car_vr.dmi b/icons/mob/widerobot_car_vr.dmi
new file mode 100644
index 00000000000..01e6ea41b52
Binary files /dev/null and b/icons/mob/widerobot_car_vr.dmi differ
diff --git a/icons/mob/widerobot_eng_vr.dmi b/icons/mob/widerobot_eng_vr.dmi
new file mode 100644
index 00000000000..b5c55b53c8c
Binary files /dev/null and b/icons/mob/widerobot_eng_vr.dmi differ
diff --git a/icons/mob/widerobot_jan_vr.dmi b/icons/mob/widerobot_jan_vr.dmi
new file mode 100644
index 00000000000..23ec7272b2b
Binary files /dev/null and b/icons/mob/widerobot_jan_vr.dmi differ
diff --git a/icons/mob/widerobot_med_vr.dmi b/icons/mob/widerobot_med_vr.dmi
new file mode 100644
index 00000000000..809bed1be06
Binary files /dev/null and b/icons/mob/widerobot_med_vr.dmi differ
diff --git a/icons/mob/widerobot_sci_vr.dmi b/icons/mob/widerobot_sci_vr.dmi
new file mode 100644
index 00000000000..9b2592fcc00
Binary files /dev/null and b/icons/mob/widerobot_sci_vr.dmi differ
diff --git a/icons/mob/widerobot_sec_vr.dmi b/icons/mob/widerobot_sec_vr.dmi
new file mode 100644
index 00000000000..5cf98503002
Binary files /dev/null and b/icons/mob/widerobot_sec_vr.dmi differ
diff --git a/icons/mob/widerobot_ser_vr.dmi b/icons/mob/widerobot_ser_vr.dmi
new file mode 100644
index 00000000000..14c8d354690
Binary files /dev/null and b/icons/mob/widerobot_ser_vr.dmi differ
diff --git a/icons/mob/widerobot_vr.dmi b/icons/mob/widerobot_vr.dmi
index 620a1502542..39d27a1dba5 100644
Binary files a/icons/mob/widerobot_vr.dmi and b/icons/mob/widerobot_vr.dmi differ
diff --git a/icons/mob/wolfpelt_vr.dmi b/icons/mob/wolfpelt_vr.dmi
new file mode 100644
index 00000000000..263c7ec018b
Binary files /dev/null and b/icons/mob/wolfpelt_vr.dmi differ
diff --git a/icons/obj/abductor_vr.dmi b/icons/obj/abductor_vr.dmi
index 96975067069..3fb5c6896bb 100644
Binary files a/icons/obj/abductor_vr.dmi and b/icons/obj/abductor_vr.dmi differ
diff --git a/icons/obj/card_vr.dmi b/icons/obj/card_vr.dmi
index f4ffe2273f2..5f76cab0350 100644
Binary files a/icons/obj/card_vr.dmi and b/icons/obj/card_vr.dmi differ
diff --git a/icons/obj/chemical_vr.dmi b/icons/obj/chemical_vr.dmi
index 973be492af5..ce49f9d4e87 100644
Binary files a/icons/obj/chemical_vr.dmi and b/icons/obj/chemical_vr.dmi differ
diff --git a/icons/obj/clothing/glasses.dmi b/icons/obj/clothing/glasses.dmi
index e797e4d0943..93d368d42c4 100644
Binary files a/icons/obj/clothing/glasses.dmi and b/icons/obj/clothing/glasses.dmi differ
diff --git a/icons/obj/clothing/hats_vr.dmi b/icons/obj/clothing/hats_vr.dmi
index 5f8969553e3..0ba51d18e73 100644
Binary files a/icons/obj/clothing/hats_vr.dmi and b/icons/obj/clothing/hats_vr.dmi differ
diff --git a/icons/obj/clothing/masks_vr.dmi b/icons/obj/clothing/masks_vr.dmi
index 7508f018e7d..78230b3e597 100644
Binary files a/icons/obj/clothing/masks_vr.dmi and b/icons/obj/clothing/masks_vr.dmi differ
diff --git a/icons/obj/clothing/species/akula/hats.dmi b/icons/obj/clothing/species/akula/hats.dmi
index b74f641dab7..53ef19b53f5 100644
Binary files a/icons/obj/clothing/species/akula/hats.dmi and b/icons/obj/clothing/species/akula/hats.dmi differ
diff --git a/icons/obj/clothing/species/akula/suits.dmi b/icons/obj/clothing/species/akula/suits.dmi
index d204ff70f74..193650e5ab9 100644
Binary files a/icons/obj/clothing/species/akula/suits.dmi and b/icons/obj/clothing/species/akula/suits.dmi differ
diff --git a/icons/obj/clothing/species/sergal/hats.dmi b/icons/obj/clothing/species/sergal/hats.dmi
index d05b40a680d..0af7d29863f 100644
Binary files a/icons/obj/clothing/species/sergal/hats.dmi and b/icons/obj/clothing/species/sergal/hats.dmi differ
diff --git a/icons/obj/clothing/species/sergal/suits.dmi b/icons/obj/clothing/species/sergal/suits.dmi
index 0d0a5792e8b..1c44cd7002c 100644
Binary files a/icons/obj/clothing/species/sergal/suits.dmi and b/icons/obj/clothing/species/sergal/suits.dmi differ
diff --git a/icons/obj/clothing/suits_vr.dmi b/icons/obj/clothing/suits_vr.dmi
index a02c4756df5..97a2d4e58ab 100644
Binary files a/icons/obj/clothing/suits_vr.dmi and b/icons/obj/clothing/suits_vr.dmi differ
diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi
index 473b6614e66..3c252b8d352 100644
Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ
diff --git a/icons/obj/clothing/uniforms_1.dmi b/icons/obj/clothing/uniforms_1.dmi
index eba7fa299fc..9478ef888d2 100644
Binary files a/icons/obj/clothing/uniforms_1.dmi and b/icons/obj/clothing/uniforms_1.dmi differ
diff --git a/icons/obj/contraband_vr.dmi b/icons/obj/contraband_vr.dmi
index 81383272007..0ec79ed21a9 100644
Binary files a/icons/obj/contraband_vr.dmi and b/icons/obj/contraband_vr.dmi differ
diff --git a/icons/obj/decals.dmi b/icons/obj/decals.dmi
index c7b1fe5787d..3f1fd1b7920 100644
Binary files a/icons/obj/decals.dmi and b/icons/obj/decals.dmi differ
diff --git a/icons/obj/decals_directions.dmi b/icons/obj/decals_directions.dmi
new file mode 100644
index 00000000000..6b6ddf52835
Binary files /dev/null and b/icons/obj/decals_directions.dmi differ
diff --git a/icons/obj/decals_vr.dmi b/icons/obj/decals_vr.dmi
index 41586b5f88c..babe5fe0d2a 100644
Binary files a/icons/obj/decals_vr.dmi and b/icons/obj/decals_vr.dmi differ
diff --git a/icons/obj/doors/Door2x1tinted_vr.dmi b/icons/obj/doors/Door2x1tinted_vr.dmi
new file mode 100644
index 00000000000..4fa9d8d9e2b
Binary files /dev/null and b/icons/obj/doors/Door2x1tinted_vr.dmi differ
diff --git a/icons/obj/doors/Doorcomtinted_vr.dmi b/icons/obj/doors/Doorcomtinted_vr.dmi
new file mode 100644
index 00000000000..8e87a9ab3e1
Binary files /dev/null and b/icons/obj/doors/Doorcomtinted_vr.dmi differ
diff --git a/icons/obj/doors/Doorsectinted_vr.dmi b/icons/obj/doors/Doorsectinted_vr.dmi
new file mode 100644
index 00000000000..d03c8bf66d2
Binary files /dev/null and b/icons/obj/doors/Doorsectinted_vr.dmi differ
diff --git a/icons/obj/doors/doormedtinted_vr.dmi b/icons/obj/doors/doormedtinted_vr.dmi
new file mode 100644
index 00000000000..dfa0a36500f
Binary files /dev/null and b/icons/obj/doors/doormedtinted_vr.dmi differ
diff --git a/icons/obj/drakietoy_vr.dmi b/icons/obj/drakietoy_vr.dmi
new file mode 100644
index 00000000000..34a49325138
Binary files /dev/null and b/icons/obj/drakietoy_vr.dmi differ
diff --git a/icons/obj/egg_new_vr.dmi b/icons/obj/egg_new_vr.dmi
new file mode 100644
index 00000000000..b9804d69baf
Binary files /dev/null and b/icons/obj/egg_new_vr.dmi differ
diff --git a/icons/obj/egg_open_vr.dmi b/icons/obj/egg_open_vr.dmi
new file mode 100644
index 00000000000..e3faabb4dc2
Binary files /dev/null and b/icons/obj/egg_open_vr.dmi differ
diff --git a/icons/obj/egg_vr.dmi b/icons/obj/egg_vr.dmi
index c54ac62b10b..14c17920f81 100644
Binary files a/icons/obj/egg_vr.dmi and b/icons/obj/egg_vr.dmi differ
diff --git a/icons/obj/food.dmi b/icons/obj/food.dmi
index 3062f76155f..af15334c113 100644
Binary files a/icons/obj/food.dmi and b/icons/obj/food.dmi differ
diff --git a/icons/obj/food_custom.dmi b/icons/obj/food_custom.dmi
index ee26eb7777e..e8be40f76d5 100644
Binary files a/icons/obj/food_custom.dmi and b/icons/obj/food_custom.dmi differ
diff --git a/icons/obj/hydroponics_products.dmi b/icons/obj/hydroponics_products.dmi
index af1beb56799..cb0e5036928 100644
Binary files a/icons/obj/hydroponics_products.dmi and b/icons/obj/hydroponics_products.dmi differ
diff --git a/icons/obj/machines/shielding.dmi b/icons/obj/machines/shielding.dmi
index 195192b1c87..42087073d3b 100644
Binary files a/icons/obj/machines/shielding.dmi and b/icons/obj/machines/shielding.dmi differ
diff --git a/icons/obj/machines/shielding_vr.dmi b/icons/obj/machines/shielding_vr.dmi
new file mode 100644
index 00000000000..195192b1c87
Binary files /dev/null and b/icons/obj/machines/shielding_vr.dmi differ
diff --git a/icons/obj/power.dmi b/icons/obj/power.dmi
index 732bb44e002..c806ec99be3 100644
Binary files a/icons/obj/power.dmi and b/icons/obj/power.dmi differ
diff --git a/icons/obj/reagentfillings.dmi b/icons/obj/reagentfillings.dmi
index 232203b46eb..ebf7292781d 100644
Binary files a/icons/obj/reagentfillings.dmi and b/icons/obj/reagentfillings.dmi differ
diff --git a/icons/obj/rig_modules_vr.dmi b/icons/obj/rig_modules_vr.dmi
new file mode 100644
index 00000000000..1ee2c008aa4
Binary files /dev/null and b/icons/obj/rig_modules_vr.dmi differ
diff --git a/icons/obj/sandbags.dmi b/icons/obj/sandbags.dmi
new file mode 100644
index 00000000000..0a5c24598aa
Binary files /dev/null and b/icons/obj/sandbags.dmi differ
diff --git a/icons/obj/toy_vr.dmi b/icons/obj/toy_vr.dmi
index 9333c6b938f..2e6c3af857c 100644
Binary files a/icons/obj/toy_vr.dmi and b/icons/obj/toy_vr.dmi differ
diff --git a/icons/obj/trap.dmi b/icons/obj/trap.dmi
new file mode 100644
index 00000000000..108bc467263
Binary files /dev/null and b/icons/obj/trap.dmi differ
diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi
index b83b49c93a3..0e0894a345e 100644
Binary files a/icons/turf/areas.dmi and b/icons/turf/areas.dmi differ
diff --git a/icons/turf/areas_vr.dmi b/icons/turf/areas_vr.dmi
index 6b6f7e8a223..dc58966d83e 100644
Binary files a/icons/turf/areas_vr.dmi and b/icons/turf/areas_vr.dmi differ
diff --git a/icons/turf/flooring/decals.dmi b/icons/turf/flooring/decals.dmi
index 66e365251a7..acd81e57f18 100644
Binary files a/icons/turf/flooring/decals.dmi and b/icons/turf/flooring/decals.dmi differ
diff --git a/icons/turf/flooring/decals_vr.dmi b/icons/turf/flooring/decals_vr.dmi
index 6f6a210ea75..6e99661d1f4 100644
Binary files a/icons/turf/flooring/decals_vr.dmi and b/icons/turf/flooring/decals_vr.dmi differ
diff --git a/icons/vore/custom_clothes_left_hand_vr.dmi b/icons/vore/custom_clothes_left_hand_vr.dmi
new file mode 100644
index 00000000000..ec5dd4b55ae
Binary files /dev/null and b/icons/vore/custom_clothes_left_hand_vr.dmi differ
diff --git a/icons/vore/custom_clothes_right_hand_vr.dmi b/icons/vore/custom_clothes_right_hand_vr.dmi
new file mode 100644
index 00000000000..2fc3bdb14fb
Binary files /dev/null and b/icons/vore/custom_clothes_right_hand_vr.dmi differ
diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi
index 52ef983f10a..d9b172cd5ad 100644
Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ
diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi
index 4856d6c311f..10580ec71f0 100644
Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ
diff --git a/icons/vore/custom_onmob_32x48_vr.dmi b/icons/vore/custom_onmob_32x48_vr.dmi
new file mode 100644
index 00000000000..2889db5cc02
Binary files /dev/null and b/icons/vore/custom_onmob_32x48_vr.dmi differ
diff --git a/icons/vore/custom_onmob_vr.dmi b/icons/vore/custom_onmob_vr.dmi
index 1dbfb6d011b..aaf141e83f7 100644
Binary files a/icons/vore/custom_onmob_vr.dmi and b/icons/vore/custom_onmob_vr.dmi differ
diff --git a/librust_g.so b/librust_g.so
index 3247fb19af9..9d46da045ff 100644
Binary files a/librust_g.so and b/librust_g.so differ
diff --git a/maps/_map_system_readme.dm b/maps/_map_system_readme.dm
index 95e996907ba..e97445241df 100644
--- a/maps/_map_system_readme.dm
+++ b/maps/_map_system_readme.dm
@@ -10,7 +10,7 @@ things, such as areas, elevators, or shuttles. Generally, the layout is that yo
(optional) [map_name]_areas/structures/whatever.dm - Files for unique things to that map.
[map_name]-1.dmm - Your actual map files. Z-levels should be ordered correctly if you seperate your z-levels across map files.
--HOW TO LOAD A SPECIFIC MAP-
+- HOW TO LOAD A SPECIFIC MAP -
Say you want to load southern_cross,
First, uncheck your current loaded map, presumably northern_star. Uncheck northern_star.dm inside northern_star folder.
Then go open southern_cross folder, and check southern_cross.dm, don't check any other folders below, and compile.
diff --git a/maps/expedition_vr/alienship/_alienship.dm b/maps/expedition_vr/alienship/_alienship.dm
index 7dad899974b..9646dd12de0 100644
--- a/maps/expedition_vr/alienship/_alienship.dm
+++ b/maps/expedition_vr/alienship/_alienship.dm
@@ -178,9 +178,3 @@
requires_power = FALSE
/area/tether_away/alienship/equip_dump
-
-// -- Turfs -- //
-/turf/simulated/shuttle/floor/alienplating/vacuum
- oxygen = 0
- nitrogen = 0
- temperature = TCMB
diff --git a/maps/expedition_vr/beach/_beach.dm b/maps/expedition_vr/beach/_beach.dm
index c82f8d2c298..fdd52402d9f 100644
--- a/maps/expedition_vr/beach/_beach.dm
+++ b/maps/expedition_vr/beach/_beach.dm
@@ -139,16 +139,14 @@
/area/tether_away/beach
name = "\improper Away Mission - Virgo 4 Beach"
icon_state = "away"
- base_turf = /turf/simulated/floor/beach/sand //This is what the ground turns into if destroyed/bombed/etc
- //Not going to do sunlight simulations here like virgo3b
- //So we just make the whole beach fullbright all the time
- dynamic_lighting = 0
- requires_power = 0
+ base_turf = /turf/simulated/floor/beach/sand/outdoors //This is what the ground turns into if destroyed/bombed/etc
+ dynamic_lighting = 1
+ requires_power = 1
/area/tether_away/beach/powershed
name = "\improper Away Mission - Virgo 4 Coast PS"
icon_state = "blue2"
- base_turf = /turf/simulated/floor/beach/sand
+ base_turf = /turf/simulated/floor/beach/sand/outdoors
/area/tether_away/beach/coast
name = "\improper Away Mission - Virgo 4 Coast"
@@ -163,7 +161,47 @@
/area/tether_away/beach/jungle
name = "\improper Away Mission - Virgo 4 Desert"
icon_state = "green"
- base_turf = /turf/simulated/floor/beach/sand/desert
+ base_turf = /turf/simulated/floor/beach/sand/desert/outdoors
+
+/area/tether_away/beach/resort
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "yellow"
+ base_turf = /turf/simulated/floor/beach/sand/outdoors
+
+/area/tether_away/beach/resort/kitchen
+ name = "\improper Away Mission - Virgo 4 Kitchen"
+ icon_state = "grewhicir"
+
+/area/tether_away/beach/resort/lockermed
+ name = "\improper Away Mission - Virgo 4 Utility Pavilion"
+ icon_state = "cyawhicir"
+
+/area/tether_away/beach/resort/janibar
+ name = "\improper Away Mission - Virgo 4 Bar"
+ icon_state = "purwhicir"
+
+/area/tether_away/beach/resort/dorm1
+ name = "\improper Away Mission - Virgo 4 Private Room 1"
+ icon_state = "bluwhicir"
+ flags = RAD_SHIELDED
+/area/tether_away/beach/resort/dorm2
+ name = "\improper Away Mission - Virgo 4 Private Room 2"
+ icon_state = "bluwhicir"
+ flags = RAD_SHIELDED
+/area/tether_away/beach/resort/dorm3
+ name = "\improper Away Mission - Virgo 4 Private Room 3"
+ icon_state = "bluwhicir"
+ flags = RAD_SHIELDED
+/area/tether_away/beach/resort/dorm4
+ name = "\improper Away Mission - Virgo 4 Private Room 4"
+ icon_state = "bluwhicir"
+ flags = RAD_SHIELDED
+
+/area/tether_away/beach/cavebase
+ name = "\improper Away Mission - Virgo 4 Mysterious Cave"
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "orawhicir"
+ flags = RAD_SHIELDED
//Some areas for the cave, which are referenced by our init object to seed submaps and ores
/area/tether_away/cave
diff --git a/maps/expedition_vr/beach/beach.dmm b/maps/expedition_vr/beach/beach.dmm
index 3d3f03a4762..3efcfc0c104 100644
--- a/maps/expedition_vr/beach/beach.dmm
+++ b/maps/expedition_vr/beach/beach.dmm
@@ -1,39 +1,44 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
-/turf/simulated/floor/beach/sand/desert,
+/turf/simulated/floor/beach/sand/desert/outdoors,
/area/tether_away/beach/jungle)
"ab" = (
/obj/effect/overlay/palmtree_r,
-/turf/simulated/floor/beach/sand/desert,
+/turf/simulated/floor/beach/sand/desert/outdoors,
/area/tether_away/beach/jungle)
"ac" = (
/obj/effect/overlay/palmtree_l,
-/turf/simulated/floor/beach/sand/desert,
+/turf/simulated/floor/beach/sand/desert/outdoors,
/area/tether_away/beach/jungle)
"ad" = (
-/turf/simulated/floor/beach/sand,
-/area/tether_away/beach)
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/kitchen)
"ae" = (
-/obj/structure/frame,
-/turf/simulated/floor/tiled/asteroid_steel,
-/area/tether_away/beach)
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/jungle)
"af" = (
-/obj/item/frame/apc,
-/turf/simulated/floor/tiled/asteroid_steel,
-/area/tether_away/beach)
+/obj/structure/grille,
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/tether_away/beach/powershed)
"ag" = (
/obj/structure/table/woodentable,
/obj/item/weapon/cell/apc,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"ah" = (
-/obj/item/stack/cable_coil,
-/turf/simulated/floor/beach/sand,
-/area/tether_away/beach)
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/tether_away/beach/resort/kitchen)
"ai" = (
-/obj/machinery/power/port_gen/pacman/mrs,
-/turf/simulated/floor/beach/sand,
-/area/tether_away/beach)
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/jungle)
"aj" = (
/turf/simulated/floor/water/beach,
/area/tether_away/beach)
@@ -42,281 +47,250 @@
/area/tether_away/beach/coast)
"al" = (
/turf/simulated/floor/tiled/asteroid_steel,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/lockermed)
"am" = (
/turf/simulated/floor/water/deep/ocean,
/area/tether_away/beach/water)
"an" = (
-/obj/effect/overlay/palmtree_r,
-/turf/simulated/floor/beach/sand,
-/area/tether_away/beach)
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/jungle)
"ao" = (
-/obj/effect/overlay/coconut,
-/turf/simulated/floor/beach/sand,
-/area/tether_away/beach)
+/obj/structure/simple_door/wood,
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/janibar)
"ap" = (
/obj/effect/overlay/palmtree_r,
/turf/simulated/floor/water/beach/corner{
- icon_state = "beachcorner";
- dir = 8
+ dir = 8;
+ icon_state = "beachcorner"
},
/area/tether_away/beach/jungle)
"aq" = (
/turf/simulated/wall/wood,
/area/tether_away/beach)
"ar" = (
-/turf/simulated/wall/sandstone,
-/area/tether_away/beach)
+/turf/simulated/floor/wood{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
"as" = (
-/obj/structure/undies_wardrobe{
- density = 0;
- pixel_x = 0;
- pixel_y = 18
- },
+/obj/structure/table/bench/sifwooden/padded,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/kitchen)
"at" = (
-/obj/structure/closet/cabinet{
- density = 0;
- pixel_y = 20;
- wall_mounted = 1
+/obj/machinery/light/small{
+ dir = 8
},
-/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
"au" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
-/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/jungle)
"av" = (
-/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,
-/obj/structure/table/woodentable,
-/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/turf/simulated/floor/outdoors/grass{
+ outdoors = 0
+ },
+/area/tether_away/beach/jungle)
"aw" = (
/turf/simulated/floor/wood,
/area/tether_away/beach)
"ax" = (
-/obj/machinery/button/remote/airlock{
- id = "BaristoLoveShack";
- name = "Door Bolt Control";
- pixel_x = 25;
- pixel_y = 0;
- specialfunctions = 4
+/turf/simulated/mineral/floor/cave{
+ name = "dirt";
+ outdoors = 1
},
-/obj/item/weapon/bedsheet/rainbow,
-/obj/structure/bed,
-/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/jungle)
"ay" = (
-/obj/structure/toilet{
- pixel_y = 8
- },
-/turf/simulated/floor/wood,
-/area/tether_away/beach)
-"az" = (
-/obj/structure/mirror{
- pixel_y = 28
- },
-/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
"aA" = (
-/obj/machinery/door/airlock/sandstone{
- id_tag = "BaristoLoveShack";
- name = "Baristo's Love Shack"
- },
-/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/under/swimsuit/earth,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
"aB" = (
/obj/structure/simple_door/wood,
/turf/simulated/floor/wood,
/area/tether_away/beach)
"aC" = (
-/obj/machinery/button/remote/airlock{
- id = "Changing1";
- name = "Door Bolt Control";
- pixel_x = 25;
- pixel_y = 0;
- specialfunctions = 4
- },
-/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/jungle)
"aD" = (
-/obj/machinery/button/remote/airlock{
- id = "Changing2";
- name = "Door Bolt Control";
- pixel_x = 25;
- pixel_y = 0;
- specialfunctions = 4
- },
-/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
"aE" = (
-/obj/machinery/door/airlock/sandstone{
- id_tag = "Changing1";
- name = "Changing Room 1"
- },
+/obj/machinery/media/jukebox,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/kitchen)
"aF" = (
-/obj/machinery/door/airlock/sandstone{
- id_tag = "Changing2";
- name = "Changing Room 2"
- },
-/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
"aG" = (
/obj/structure/bedsheetbin{
pixel_y = -6
},
-/turf/simulated/floor/tiled/asteroid_steel,
-/area/tether_away/beach)
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
"aH" = (
/obj/item/clothing/shoes/sandal,
/obj/item/clothing/shoes/sandal,
/obj/item/clothing/shoes/sandal,
/obj/structure/closet/crate,
-/turf/simulated/floor/tiled/asteroid_steel,
-/area/tether_away/beach)
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
"aI" = (
/obj/structure/closet/athletic_mixed,
-/turf/simulated/floor/tiled/asteroid_steel,
-/area/tether_away/beach)
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
"aJ" = (
/obj/structure/sign/double/barsign,
/turf/simulated/wall/sandstone,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aK" = (
/obj/structure/closet/gmcloset{
name = "formal wardrobe"
},
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aL" = (
/obj/structure/closet/secure_closet/bar,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aM" = (
/obj/structure/table/woodentable,
/obj/item/weapon/book/manual/barman_recipes,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aN" = (
/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/obj/machinery/chemical_dispenser/bar_soft/full,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aO" = (
/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/obj/machinery/chemical_dispenser/bar_coffee/full,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aP" = (
/obj/structure/table/woodentable,
-/obj/item/clothing/glasses/sunglasses,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/obj/machinery/chemical_dispenser/bar_alc/full,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aQ" = (
/obj/machinery/vending/boozeomat{
emagged = 1;
req_access = newlist()
},
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aR" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aS" = (
/obj/machinery/vending/cola,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aT" = (
/obj/machinery/vending/snack,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aU" = (
/obj/structure/table/woodentable,
/obj/item/weapon/reagent_containers/food/drinks/bottle/small/ale,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aV" = (
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aW" = (
/obj/structure/table/woodentable,
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/turf/simulated/floor/wood,
-/area/tether_away/beach)
+/area/tether_away/beach/resort/janibar)
"aX" = (
/obj/item/weapon/stool/padded,
-/turf/simulated/floor/tiled/asteroid_steel,
-/area/tether_away/beach)
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
"aY" = (
/obj/structure/bed/double/padded,
/obj/item/weapon/bedsheet/greendouble,
/turf/simulated/floor/wood,
/area/tether_away/beach)
-"aZ" = (
-/obj/effect/overlay/palmtree_l,
-/turf/simulated/floor/beach/sand,
-/area/tether_away/beach)
"ba" = (
-/turf/unsimulated/wall/planetary/normal,
+/turf/simulated/mineral/ignore_mapgen,
/area/tether_away/beach)
"bb" = (
/obj/structure/bed/chair,
-/turf/simulated/floor/beach/sand/desert,
+/turf/simulated/floor/beach/sand/desert/outdoors,
/area/tether_away/beach)
"bc" = (
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
-/turf/simulated/floor/beach/sand/desert,
+/turf/simulated/floor/beach/sand/desert/outdoors,
/area/tether_away/beach)
"bd" = (
/obj/item/weapon/beach_ball,
-/turf/simulated/floor/beach/sand/desert,
+/turf/simulated/floor/beach/sand/desert/outdoors,
/area/tether_away/beach)
"be" = (
/obj/item/clothing/head/collectable/paper,
-/turf/simulated/floor/beach/sand/desert,
+/turf/simulated/floor/beach/sand/desert/outdoors,
/area/tether_away/beach)
"bf" = (
/turf/simulated/floor/water/ocean,
/area/tether_away/beach/water)
"bg" = (
-/turf/unsimulated/wall/planetary/normal,
+/turf/simulated/mineral/ignore_mapgen,
/area/tether_away/beach/coast)
"bh" = (
/obj/effect/overlay/coconut,
-/turf/simulated/floor/beach/sand/desert,
+/turf/simulated/floor/beach/sand/desert/outdoors,
/area/tether_away/beach/jungle)
"bi" = (
-/turf/unsimulated/wall/planetary/normal,
+/turf/unsimulated/wall/planetary/normal/virgo4,
/area/tether_away/beach/water)
"bj" = (
/turf/simulated/floor/water/ocean,
/area/tether_away/beach/jungle)
"bk" = (
/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 1
+ dir = 1;
+ icon_state = "beach"
},
/area/tether_away/beach/water)
"bl" = (
-/turf/unsimulated/wall/planetary/normal,
+/obj/tether_away_spawner/beach_outside,
+/turf/simulated/floor/outdoors/grass,
/area/tether_away/beach/jungle)
"bm" = (
/obj/effect/shuttle_landmark{
base_area = /area/tether_away/beach/jungle;
- base_turf = /turf/simulated/floor/beach/sand/desert;
+ base_turf = /turf/simulated/floor/beach/sand/desert/outdoors;
landmark_tag = "beach_c";
name = "Virgo 4 Beach (Center)"
},
-/turf/simulated/floor/beach/sand/desert,
+/turf/simulated/floor/beach/sand/desert/outdoors,
/area/tether_away/beach/jungle)
"bn" = (
/mob/living/simple_mob/animal/passive/fish/measelshark,
@@ -327,319 +301,2064 @@
name = "V4_Cave_Entrance";
portal_id = "V4_cave_step"
},
-/turf/simulated/floor/beach/sand,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
/area/tether_away/beach/jungle)
"bp" = (
-/turf/simulated/floor/beach/sand,
+/turf/simulated/floor/beach/sand/outdoors,
/area/tether_away/beach/jungle)
"bq" = (
/turf/simulated/mineral/ignore_mapgen,
/area/tether_away/beach/jungle)
"br" = (
/obj/effect/map_effect/portal/line/side_a,
-/turf/simulated/floor/beach/sand,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
/area/tether_away/beach/jungle)
"bs" = (
-/obj/effect/step_trigger/zlevel_fall/beach,
-/turf/simulated/floor/beach/sand/desert,
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/outdoors/grass,
/area/tether_away/beach/jungle)
+"bT" = (
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"cf" = (
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/janibar)
+"cy" = (
+/obj/structure/bed/chair/bay/chair/padded/red/bignest,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
"cA" = (
/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 10
+ dir = 10;
+ icon_state = "beach"
},
/area/tether_away/beach/water)
+"cN" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/janibar)
"cS" = (
/turf/simulated/floor/water/beach/corner,
/area/tether_away/beach/water)
+"dd" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/water/deep/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"dm" = (
+/obj/machinery/vending/loadout/accessory,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"dt" = (
+/obj/item/weapon/bedsheet/pirate,
+/obj/machinery/button/remote/airlock{
+ id = "LoveShack4";
+ name = "Door Bolt Control";
+ pixel_x = -25;
+ specialfunctions = 4
+ },
+/obj/structure/bed/padded,
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm4)
+"dP" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
"dY" = (
/turf/simulated/floor/water/beach/corner{
- icon_state = "beachcorner";
- dir = 8
+ dir = 8;
+ icon_state = "beachcorner"
},
/area/tether_away/beach)
+"et" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -2
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/structure/curtain/open/shower,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "techmaint"
+ },
+/area/tether_away/beach/resort/janibar)
+"ez" = (
+/obj/machinery/vending/fishing,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/janibar)
+"eF" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/under/swimsuit/black,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"eV" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"eW" = (
+/obj/structure/table/glass,
+/obj/item/weapon/backup_implanter{
+ pixel_y = 9
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 2
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -5
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -12
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
+"fl" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"fJ" = (
+/obj/item/weapon/bedsheet/ian,
+/obj/machinery/button/remote/airlock{
+ id = "LoveShack3";
+ name = "Door Bolt Control";
+ pixel_x = -25;
+ specialfunctions = 4
+ },
+/obj/structure/bed/padded,
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm3)
"fQ" = (
/turf/simulated/floor/water/beach,
/area/tether_away/beach/water)
+"gd" = (
+/obj/structure/simple_door/sandstone,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/janibar)
+"gw" = (
+/obj/structure/bonfire,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
"gA" = (
/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 6
+ dir = 6;
+ icon_state = "beach"
},
/area/tether_away/beach/water)
+"gU" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/janibar)
+"hg" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
+"hj" = (
+/turf/simulated/wall/sandstone,
+/area/tether_away/beach/resort/lockermed)
+"hl" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/water/deep/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"hq" = (
+/obj/item/weapon/stool/padded,
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"hr" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/under/swimsuit/red,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
"hx" = (
/obj/effect/overmap/visitable/sector/virgo4,
/turf/simulated/floor/water/deep/ocean,
/area/tether_away/beach/water)
+"hL" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/reagentgrinder,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
"hN" = (
/turf/simulated/floor/holofloor/beach/sand,
/area/tether_away/beach/jungle)
-"le" = (
-/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 5
+"hQ" = (
+/obj/structure/flora/sif/subterranean,
+/turf/simulated/floor/outdoors/grass{
+ outdoors = 0
},
-/area/tether_away/beach/jungle)
-"mC" = (
-/turf/simulated/floor/beach/sand/desert,
-/area/tether_away/beach/water)
-"oC" = (
-/turf/simulated/floor/water/beach{
- icon_state = "beach";
+/area/tether_away/beach/cavebase)
+"hR" = (
+/obj/machinery/power/terminal{
+ dir = 8;
+ icon_state = "term"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/powershed)
+"hS" = (
+/obj/structure/table/woodentable,
+/obj/random/drinkbottle,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm2)
+"hV" = (
+/obj/structure/undies_wardrobe{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 18
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm3)
+"il" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/under/swimsuit/white,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"io" = (
+/turf/simulated/floor/lino,
+/area/tether_away/beach/resort/kitchen)
+"iO" = (
+/obj/structure/mopbucket,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/janibar)
+"jc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"jH" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/water/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"jN" = (
+/obj/tether_away_spawner/beach_outside,
+/turf/simulated/floor/beach/sand/outdoors,
+/area/tether_away/beach/resort)
+"jQ" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"kd" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/resort/kitchen)
+"kg" = (
+/obj/machinery/vending/loadout/clothing,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"kk" = (
+/obj/machinery/power/apc/alarms_hidden{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
+"ku" = (
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable/offmap_spawn/empty,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/powershed)
+"kK" = (
+/obj/effect/floor_decal/spline/plain{
dir = 4
},
+/turf/simulated/floor/water/deep/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"kO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/powershed)
+"kP" = (
+/obj/structure/table/woodentable,
+/obj/random/drinkbottle,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm3)
+"kR" = (
+/obj/structure/undies_wardrobe{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 18
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm2)
+"kT" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"kW" = (
+/obj/structure/closet/cabinet{
+ density = 0;
+ pixel_y = 20;
+ wall_mounted = 1
+ },
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/alarms_hidden{
+ dir = 8;
+ pixel_x = -27
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm2)
+"la" = (
+/obj/structure/table/rack,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/item/stack/cable_coil/pink,
+/obj/item/stack/cable_coil/pink,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/janibar)
+"le" = (
+/turf/simulated/floor/water/beach{
+ dir = 5;
+ icon_state = "beach"
+ },
/area/tether_away/beach/jungle)
+"lh" = (
+/obj/structure/closet/cabinet{
+ density = 0;
+ pixel_y = 20;
+ wall_mounted = 1
+ },
+/obj/machinery/power/apc/alarms_hidden{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm1)
+"li" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/beach/sand,
+/area/tether_away/beach/resort)
+"lI" = (
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
+"mb" = (
+/obj/machinery/power/apc/alarms_hidden{
+ dir = 1;
+ pixel_y = 26
+ },
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/kitchen)
+"me" = (
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/janibar)
+"mi" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/powershed)
+"mu" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/tether_away/beach/resort/kitchen)
+"mC" = (
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/water)
+"mF" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"mM" = (
+/obj/machinery/power/solar_control,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/powershed)
+"mS" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"mW" = (
+/obj/structure/mirror{
+ pixel_x = 27
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm4)
+"nm" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/obj/machinery/power/tracker,
+/turf/simulated/floor{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"nD" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/tether_away/beach/water)
+"of" = (
+/obj/structure/table/woodentable,
+/obj/random/drinkbottle,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm1)
+"oq" = (
+/obj/item/weapon/bedsheet/rainbow,
+/obj/machinery/button/remote/airlock{
+ id = "LoveShack1";
+ name = "Door Bolt Control";
+ pixel_x = 25;
+ specialfunctions = 4
+ },
+/obj/structure/bed/padded,
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm1)
+"oC" = (
+/turf/simulated/floor/water/beach{
+ dir = 4;
+ icon_state = "beach"
+ },
+/area/tether_away/beach/jungle)
+"oF" = (
+/obj/item/weapon/stool/padded,
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"pd" = (
+/obj/structure/table/rack,
+/obj/item/weapon/material/fishing_rod/modern/cheap,
+/obj/item/weapon/material/fishing_rod/modern/cheap,
+/obj/item/weapon/material/fishing_rod/modern/cheap,
+/obj/item/weapon/material/fishing_rod/modern/cheap,
+/obj/item/stack/cable_coil/pink,
+/obj/item/stack/cable_coil/pink,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/janibar)
"pq" = (
/turf/simulated/floor/water/beach/corner,
/area/tether_away/beach/jungle)
+"pw" = (
+/turf/simulated/floor/water/ocean,
+/area/tether_away/beach/cavebase)
+"py" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/powershed)
+"pA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/water/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"pC" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ on = 0;
+ pixel_x = -29;
+ pixel_y = 28
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm4)
+"pF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"pP" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
"pS" = (
/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 1
+ dir = 1;
+ icon_state = "beach"
},
/area/tether_away/beach/jungle)
-"tj" = (
-/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 5
+"qi" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/tether_away/beach/water)
-"tr" = (
-/turf/simulated/floor/beach/sand/desert,
-/area/tether_away/beach)
-"xW" = (
-/obj/tether_away_spawner/beach_outside_friendly,
-/turf/simulated/floor/beach/sand/desert,
-/area/tether_away/beach/jungle)
-"Ar" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/tether_away/beach/jungle;
- base_turf = /turf/simulated/floor/beach/sand/desert;
- landmark_tag = "beach_nw";
- name = "Virgo 4 Beach (NW)"
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/beach/sand/desert,
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"qI" = (
+/obj/machinery/power/port_gen/pacman/mrs,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/powershed)
+"rm" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'DANGER: MONSTERS'.";
+ name = "\improper DANGER: MONSTERS"
+ },
+/turf/simulated/wall,
/area/tether_away/beach/jungle)
-"BG" = (
-/turf/simulated/floor/water/beach/corner{
- icon_state = "beachcorner";
+"rp" = (
+/obj/structure/table/woodentable,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
+"rJ" = (
+/obj/structure/undies_wardrobe{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 18
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm1)
+"rQ" = (
+/obj/machinery/light/small{
dir = 8
},
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort/kitchen)
+"ss" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/beach/sand/outdoors,
+/area/tether_away/beach/resort/lockermed)
+"sD" = (
+/turf/simulated/wall/wood,
+/area/tether_away/beach/resort/janibar)
+"sT" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/beach/sand/outdoors,
+/area/tether_away/beach/resort)
+"tj" = (
+/turf/simulated/floor/water/beach{
+ dir = 5;
+ icon_state = "beach"
+ },
+/area/tether_away/beach/water)
+"tl" = (
+/obj/machinery/shower{
+ dir = 4;
+ icon_state = "shower";
+ pixel_x = 2;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled{
+ icon_state = "techmaint"
+ },
+/area/tether_away/beach/resort/janibar)
+"to" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -28;
+ pixel_y = -29
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm1)
+"tr" = (
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach)
+"ts" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"tG" = (
+/obj/machinery/appliance/cooker/fryer,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"uh" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/water/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"uk" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"ul" = (
+/turf/simulated/wall/wood,
+/area/tether_away/beach/water)
+"us" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
+"uL" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ on = 0;
+ pixel_x = -29;
+ pixel_y = 28
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm3)
+"uO" = (
+/turf/simulated/floor/water/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"uQ" = (
+/obj/machinery/chem_master/condimaster,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"uT" = (
+/obj/structure/mirror{
+ pixel_x = -27
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm1)
+"vg" = (
+/obj/structure/flora/sif/subterranean,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
+"vU" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green,
+/turf/simulated/floor/wood,
+/area/tether_away/beach)
+"wv" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/mineral/ignore_mapgen,
/area/tether_away/beach/jungle)
+"wM" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort/lockermed)
+"wT" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort/kitchen)
+"xb" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/water/ocean,
+/area/tether_away/beach/cavebase)
+"xi" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/beach/sand/outdoors,
+/area/tether_away/beach/resort/janibar)
+"xy" = (
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
+"xT" = (
+/obj/tether_away_spawner/beach_outside_friendly,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
+"xW" = (
+/obj/tether_away_spawner/beach_outside_friendly,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/jungle)
+"yf" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/kitchen)
+"yg" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/resort/janibar)
+"yF" = (
+/obj/structure/barricade,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
+"zb" = (
+/obj/structure/table/woodentable,
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/janibar)
+"zs" = (
+/turf/simulated/wall/sandstone,
+/area/tether_away/beach/resort/dorm2)
+"zw" = (
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"zD" = (
+/obj/structure/grille,
+/turf/simulated/floor,
+/area/tether_away/beach/powershed)
+"zP" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet/crate,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/powershed)
+"zV" = (
+/obj/structure/table/bench/sifwooden/padded,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/kitchen)
+"zZ" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/powershed)
+"Ar" = (
+/obj/structure/flora/tree/jungle_small,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/jungle)
+"Aw" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
+"AE" = (
+/obj/machinery/cryopod,
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
+"AS" = (
+/obj/machinery/door/airlock/sandstone,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/kitchen)
+"Bk" = (
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/material/knife/butch,
+/obj/item/weapon/material/minihoe,
+/obj/item/weapon/material/knife/machete/hatchet,
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/obj/structure/closet,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/device/analyzer/plant_analyzer,
+/obj/item/device/analyzer/plant_analyzer,
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"By" = (
+/obj/item/weapon/stool/baystool/padded,
+/turf/simulated/floor/lino,
+/area/tether_away/beach/resort/kitchen)
+"BF" = (
+/turf/simulated/wall/sandstone,
+/area/tether_away/beach/resort/dorm3)
+"BG" = (
+/turf/simulated/floor/water/beach/corner{
+ dir = 8;
+ icon_state = "beachcorner"
+ },
+/area/tether_away/beach/jungle)
+"BP" = (
+/obj/structure/closet/crate/medical,
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
+"BR" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/kitchen)
+"Ce" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/beach/sand/outdoors,
+/area/tether_away/beach/resort)
+"Cr" = (
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"CC" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/water/deep/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"CM" = (
+/obj/structure/table/rack/shelf/steel,
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/kitchen)
"CP" = (
/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 10
+ dir = 10;
+ icon_state = "beach"
},
/area/tether_away/beach/jungle)
+"Dq" = (
+/obj/tether_away_spawner/beach_outside_friendly,
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/jungle)
"Dr" = (
/obj/effect/shuttle_landmark{
base_area = /area/tether_away/beach/jungle;
- base_turf = /turf/simulated/floor/beach/sand/desert;
+ base_turf = /turf/simulated/floor/beach/sand/desert/outdoors;
landmark_tag = "beach_e";
name = "Virgo 4 Beach (E)"
},
-/turf/simulated/floor/beach/sand/desert,
+/turf/simulated/floor/beach/sand/desert/outdoors,
/area/tether_away/beach/jungle)
+"DA" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/obj/item/solar_assembly,
+/turf/simulated/floor{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"DB" = (
+/turf/simulated/floor/water/deep/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"DK" = (
+/obj/machinery/door/airlock/sandstone{
+ id_tag = "LoveShack2";
+ name = "Love Shack 2"
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/dorm2)
"DL" = (
/turf/simulated/floor/water/beach/corner{
- icon_state = "beachcorner";
- dir = 8
+ dir = 8;
+ icon_state = "beachcorner"
},
/area/tether_away/beach/water)
+"Ed" = (
+/obj/structure/bed,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
"Ee" = (
/turf/simulated/floor/water/beach/corner{
- icon_state = "beachcorner";
- dir = 4
+ dir = 4;
+ icon_state = "beachcorner"
},
/area/tether_away/beach/jungle)
+"Eh" = (
+/turf/simulated/wall/sandstone,
+/area/tether_away/beach/resort/dorm1)
+"Ew" = (
+/obj/structure/closet/cabinet{
+ density = 0;
+ pixel_y = 20;
+ wall_mounted = 1
+ },
+/obj/machinery/power/apc/alarms_hidden{
+ dir = 4;
+ pixel_x = 22
+ },
+/obj/structure/cable/cyan{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm4)
"Ey" = (
/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 6
+ dir = 6;
+ icon_state = "beach"
},
/area/tether_away/beach/jungle)
+"EG" = (
+/obj/machinery/vending/loadout/costume,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"Fm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"Gi" = (
+/obj/machinery/door/airlock/sandstone{
+ id_tag = "LoveShack3";
+ name = "Love Shack 3"
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/dorm3)
+"Gr" = (
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
+"GS" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/beach/sand/outdoors,
+/area/tether_away/beach/jungle)
+"Hv" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/material/kitchen/rollingpin,
+/obj/item/weapon/book/manual/chef_recipes,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"HO" = (
+/obj/structure/mirror{
+ pixel_x = 27
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm3)
"Ij" = (
/turf/simulated/floor/water/beach/corner{
- icon_state = "beachcorner";
+ dir = 4;
+ icon_state = "beachcorner"
+ },
+/area/tether_away/beach/water)
+"IA" = (
+/obj/structure/flora/tree/jungle,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/jungle)
+"IB" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/under/swimsuit/striped,
+/obj/machinery/light/small{
dir = 4
},
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"IY" = (
+/obj/machinery/door/airlock/sandstone{
+ id_tag = "LoveShack1";
+ name = "Love Shack 1"
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/dorm1)
+"IZ" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/beach/sand/outdoors,
+/area/tether_away/beach/resort)
+"Ja" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/kitchen)
+"Je" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
+"Jm" = (
+/obj/machinery/biogenerator,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"Jn" = (
+/obj/machinery/door/airlock/sandstone,
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/kitchen)
+"JG" = (
+/obj/effect/step_trigger/zlevel_fall/beach,
+/turf/simulated/floor/beach/sand/desert/outdoors,
/area/tether_away/beach/water)
+"JU" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"JX" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"Kq" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/lino,
+/area/tether_away/beach/resort/kitchen)
"Kw" = (
/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 8
+ dir = 8;
+ icon_state = "beach"
},
/area/tether_away/beach/jungle)
+"KN" = (
+/turf/simulated/wall/wood,
+/area/tether_away/beach/coast)
+"KU" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/tether_away/beach/resort)
+"Le" = (
+/obj/structure/bookcase,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
+"Lp" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/under/swimsuit/purple,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"Lw" = (
+/obj/machinery/door/airlock/sandstone{
+ id_tag = "LoveShack4";
+ name = "Love Shack 4"
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/dorm4)
+"LB" = (
+/turf/simulated/wall/sandstone,
+/area/tether_away/beach/resort/kitchen)
+"LJ" = (
+/turf/simulated/floor/water/ocean,
+/area/tether_away/beach/resort)
+"LO" = (
+/obj/machinery/shower{
+ dir = 4;
+ icon_state = "shower";
+ pixel_x = 2;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "techmaint"
+ },
+/area/tether_away/beach/resort/janibar)
+"LQ" = (
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/cavebase)
+"LT" = (
+/obj/machinery/seed_extractor,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"LZ" = (
+/turf/simulated/floor/wood{
+ outdoors = 1
+ },
+/area/tether_away/beach/water)
+"Mp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"ME" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"MZ" = (
+/obj/item/weapon/bedsheet/brown,
+/obj/machinery/button/remote/airlock{
+ id = "LoveShack2";
+ name = "Door Bolt Control";
+ pixel_x = 25;
+ specialfunctions = 4
+ },
+/obj/structure/bed/padded,
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm2)
+"Nt" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"Nv" = (
+/turf/simulated/floor/beach/sand/outdoors,
+/area/tether_away/beach/resort)
+"ND" = (
+/obj/structure/table/glass,
+/obj/machinery/vending/wallmed1/public{
+ pixel_x = -28
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
+"Of" = (
+/obj/machinery/vending/dinnerware{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/tether_away/beach/resort/kitchen)
+"OK" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/beach/sand/outdoors,
+/area/tether_away/beach/resort)
+"PG" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -2
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled{
+ icon_state = "techmaint"
+ },
+/area/tether_away/beach/resort/janibar)
+"PK" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"PV" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/water/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"Qm" = (
+/obj/structure/table,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
+"Qr" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/under/swimsuit/blue,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"QL" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/mop,
+/obj/random/soap,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/janibar)
+"QY" = (
+/obj/structure/mirror{
+ pixel_x = -27
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm2)
+"Rh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"Rm" = (
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/alarms_hidden{
+ dir = 1;
+ pixel_y = 26
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/weapon/reagent_containers/glass/rag,
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/janibar)
+"Rv" = (
+/obj/structure/table/woodentable,
+/obj/random/drinkbottle,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm4)
+"Rx" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"RA" = (
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
+"RD" = (
+/obj/tether_away_spawner/beach_outside_friendly,
+/turf/simulated/floor/beach/sand/outdoors,
+/area/tether_away/beach/resort)
+"RH" = (
+/obj/structure/closet/cabinet{
+ density = 0;
+ pixel_y = 20;
+ wall_mounted = 1
+ },
+/obj/machinery/power/apc/alarms_hidden{
+ dir = 4;
+ pixel_x = 22
+ },
+/obj/structure/cable/cyan{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm3)
"RQ" = (
/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 8
+ dir = 8;
+ icon_state = "beach"
},
/area/tether_away/beach/water)
+"RX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
"Sv" = (
/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 9
+ dir = 9;
+ icon_state = "beach"
},
/area/tether_away/beach/jungle)
+"Sz" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/janibar)
+"SG" = (
+/obj/machinery/appliance/cooker/oven,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"SK" = (
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/janibar)
+"SQ" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/cavebase)
+"ST" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "First Aid Staton";
+ req_one_access = list()
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"Tg" = (
+/mob/living/simple_mob/animal/passive/fish/solarfish,
+/turf/simulated/floor/water/ocean,
+/area/tether_away/beach/cavebase)
+"Tp" = (
+/obj/machinery/power/apc/alarms_hidden{
+ dir = 4;
+ pixel_x = 22
+ },
+/obj/structure/cable,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/powershed)
+"TH" = (
+/obj/structure/table/glass,
+/obj/machinery/vending/wallmed1/public{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
"TU" = (
/obj/tether_away_spawner/beach_outside,
-/turf/simulated/floor/beach/sand/desert,
-/area/tether_away/beach/jungle)
-"UZ" = (
-/obj/tether_away_spawner/beach_outside_friendly,
-/turf/simulated/floor/beach/sand,
-/area/tether_away/beach)
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
+"Ue" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/water/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"Uk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/powershed)
+"Um" = (
+/turf/simulated/wall/sandstone,
+/area/tether_away/beach/powershed)
+"Uo" = (
+/obj/structure/cable,
+/obj/item/solar_assembly,
+/turf/simulated/floor{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"UN" = (
+/turf/simulated/wall/sandstone,
+/area/tether_away/beach/resort/janibar)
+"UQ" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort/lockermed)
"Va" = (
/turf/simulated/floor/water/beach/corner{
- icon_state = "beachcorner";
- dir = 1
+ dir = 1;
+ icon_state = "beachcorner"
},
/area/tether_away/beach/water)
+"Vo" = (
+/obj/structure/table/rack/steel,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
+"VJ" = (
+/obj/structure/sink/puddle,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/jungle)
"VS" = (
/turf/simulated/floor/water/beach/corner{
- icon_state = "beachcorner";
- dir = 1
+ dir = 1;
+ icon_state = "beachcorner"
},
/area/tether_away/beach/jungle)
+"Wc" = (
+/turf/simulated/floor/wood{
+ outdoors = 1
+ },
+/area/tether_away/beach/coast)
+"Wd" = (
+/obj/machinery/appliance/cooker/grill,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"Wf" = (
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/resort)
+"Wj" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"Wu" = (
+/turf/simulated/floor/wood{
+ outdoors = 1
+ },
+/area/tether_away/beach)
+"WH" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/kafel_full/white,
+/area/tether_away/beach/resort/lockermed)
+"WS" = (
+/obj/structure/undies_wardrobe{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 18
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm4)
+"WU" = (
+/obj/machinery/vending/loadout,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
"WX" = (
/turf/simulated/floor/water/beach{
- icon_state = "beach";
- dir = 9
+ dir = 9;
+ icon_state = "beach"
},
/area/tether_away/beach/water)
+"Xd" = (
+/turf/simulated/floor/outdoors/grass{
+ outdoors = 0
+ },
+/area/tether_away/beach/cavebase)
+"XB" = (
+/obj/machinery/seed_storage/garden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/tether_away/beach/resort/kitchen)
+"XZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"Ya" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/under/swimsuit/stripper/mankini,
+/turf/simulated/floor/tiled/asteroid_steel,
+/area/tether_away/beach/resort/lockermed)
+"Yi" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/turf/simulated/floor/water/deep/pool{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"Yq" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
"Yv" = (
/turf/simulated/floor/water/beach,
/area/tether_away/beach/jungle)
+"YE" = (
+/turf/simulated/wall/sandstone,
+/area/tether_away/beach/resort/dorm4)
+"YO" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/tether_away/beach/jungle;
+ base_turf = /turf/simulated/floor/beach/sand/desert/outdoors;
+ landmark_tag = "beach_nw";
+ name = "Virgo 4 Beach (NW)"
+ },
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/jungle)
+"YR" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -28;
+ pixel_y = -29
+ },
+/turf/simulated/floor/wood,
+/area/tether_away/beach/resort/dorm2)
+"YY" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/cavebase)
+"ZA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
+"ZC" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/tether_away/beach/cavebase)
+"ZX" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/asteroid_steel{
+ outdoors = 1
+ },
+/area/tether_away/beach/resort)
(1,1,1) = {"
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
ba
ba
bg
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
bi
bi
bi
@@ -656,133 +2375,133 @@ bi
bi
"}
(2,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -798,132 +2517,132 @@ hx
bi
"}
(3,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -940,128 +2659,128 @@ am
bi
"}
(4,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-am
-am
-am
-am
-am
-am
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -1082,128 +2801,128 @@ am
bi
"}
(5,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-am
-am
-am
-am
-am
-am
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -1224,127 +2943,127 @@ am
bi
"}
(6,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-am
-am
-am
-am
-am
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -1366,127 +3085,127 @@ am
bi
"}
(7,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-am
-am
-am
-am
-am
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -1508,126 +3227,126 @@ am
bi
"}
(8,1,1) = {"
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+au
+ae
+ae
bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-am
-am
-am
-am
-am
-am
-am
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -1650,125 +3369,125 @@ am
bi
"}
(9,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-am
-am
-am
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+au
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+au
+au
+au
+au
+ae
+ae
+ae
+Dq
+ae
+ae
+bq
+bq
+bq
+bq
+ZC
+ZC
+ZC
+ZC
+yF
+yF
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -1792,124 +3511,124 @@ am
bi
"}
(10,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-am
-am
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+au
+Ar
+au
+ae
+ae
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+ZC
+ZC
+xy
+xy
+xy
+xy
+xy
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+bq
+bq
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -1934,122 +3653,122 @@ am
bi
"}
(11,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+au
+au
+au
+ae
+au
+au
+au
+au
+au
+IA
+au
+au
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+ZC
+Le
+xy
+xy
+xy
+Aw
+xy
+xy
+Xd
+xy
+xy
+xy
+xy
+ZC
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ai
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
am
am
am
@@ -2076,120 +3795,120 @@ am
bi
"}
(12,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+ZC
+Vo
+xy
+xy
+Aw
+gw
+Aw
+Xd
+Xd
+Xd
+Xd
+Xd
+Xd
+xy
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
am
am
am
@@ -2218,119 +3937,119 @@ am
bi
"}
(13,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+au
+au
+au
+ae
+ae
+au
+au
+au
+au
+VJ
+au
+au
+au
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+ZC
+ZC
+xy
+vg
+xy
+Aw
+xy
+Xd
+Xd
+Xd
+Xd
+hQ
+Xd
+xy
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+au
+ae
+au
+ae
+ae
+au
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
am
am
am
@@ -2350,7 +4069,7 @@ aq
aq
aq
aq
-aw
+Wu
tr
aa
Yv
@@ -2360,117 +4079,117 @@ am
bi
"}
(14,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-bh
-aa
-aa
-aa
-tr
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+au
+Ar
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+au
+au
+au
+au
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+ZC
+rp
+xy
+xy
+xy
+xy
+Xd
+Xd
+SQ
+LQ
+LQ
+Xd
+Xd
+xy
+xy
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+Dq
+ae
+au
+ae
+ae
+ae
+ae
+ae
+au
+au
+au
+Dq
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+wv
+bq
+bq
+bq
+ba
aj
ak
am
@@ -2492,7 +4211,7 @@ aq
aY
aw
aB
-aw
+Wu
tr
aa
Yv
@@ -2502,116 +4221,116 @@ am
bi
"}
(15,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+au
+au
+au
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+ZC
+rp
+xy
+xy
+Xd
+Xd
+LQ
+LQ
+LQ
+pw
+LQ
+LQ
+Xd
+Xd
+xy
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+au
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
tr
aj
ak
@@ -2631,10 +4350,10 @@ pS
aa
tr
aq
-aw
+vU
aw
aq
-aw
+Wu
tr
aa
Yv
@@ -2644,116 +4363,116 @@ am
bi
"}
(16,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+au
+au
+Ar
+au
+au
+au
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+ZC
+rp
+xy
+Xd
+Xd
+LQ
+LQ
+xb
+pw
+pw
+pw
+LQ
+LQ
+Xd
+xy
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+au
+ae
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
tr
aj
ak
@@ -2776,7 +4495,7 @@ aq
aq
aq
aq
-aw
+Wu
tr
aa
Yv
@@ -2786,115 +4505,115 @@ am
bi
"}
(17,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+au
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ZC
+ZC
+Xd
+Xd
+LQ
+LQ
+pw
+pw
+pw
+pw
+pw
+LQ
+LQ
+Xd
+Xd
+Xd
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
tr
aj
@@ -2928,114 +4647,114 @@ am
bi
"}
(18,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+bp
+bp
+ae
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ZC
+ZC
+Xd
+xy
+SQ
+LQ
+pw
+pw
+Tg
+pw
+pw
+pw
+LQ
+Xd
+Xd
+xy
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aC
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
tr
@@ -3070,87 +4789,87 @@ am
bi
"}
(19,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+bp
+bp
+bp
+bp
+bp
+ae
+ae
+ae
+ae
+ae
+ae
+au
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ZC
+ZC
+Xd
+Xd
+LQ
+pw
+pw
+pw
+pw
+pw
+pw
+LQ
+LQ
+Xd
+Xd
+xy
+xy
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -3173,11 +4892,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
aa
aa
tr
@@ -3212,88 +4931,85 @@ am
bi
"}
(20,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+bp
+ae
+ae
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+ZC
+ZC
+ZC
+ZC
+ZC
+Xd
+xy
+xy
+LQ
+pw
+pw
+pw
+pw
+pw
+SQ
+LQ
+Xd
+xy
+xy
+xy
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
aa
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -3320,6 +5036,9 @@ aa
aa
aa
aa
+bq
+bq
+bq
aa
aa
tr
@@ -3354,84 +5073,84 @@ am
bi
"}
(21,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+bq
+bq
+bq
+ae
+ae
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+bp
+bp
+bp
+bp
+bp
+bp
+bp
aa
ac
aa
+bp
+bp
+bp
+ae
+ae
+ae
+bp
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+ZC
+ZC
+ZC
+ZC
+Xd
+Xd
+xy
+Xd
+LQ
+LQ
+pw
+xb
+LQ
+LQ
+LQ
+Xd
+ZC
+ZC
+Ed
+Ed
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bh
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+ae
aa
aa
aa
@@ -3496,82 +5215,82 @@ am
bi
"}
(22,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ai
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
+bp
+bp
+bp
aa
aa
ac
aa
+bp
+aa
+aa
+aa
+aa
+bp
+bp
+bp
+bp
+ae
+ae
+bp
+bp
+ae
+ae
+ae
+bq
+bq
+bq
+ZC
+ZC
+Xd
+Xd
+Xd
+Xd
+Xd
+Xd
+xy
+LQ
+LQ
+LQ
+LQ
+Xd
+Xd
+xy
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+bq
+bq
+bq
+bq
aa
aa
aa
aa
aa
-aa
-aa
-aa
+bq
aa
aa
aa
@@ -3638,55 +5357,17 @@ am
bi
"}
(23,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -3708,6 +5389,44 @@ aa
aa
aa
aa
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+ae
+ae
+ae
+bq
+bq
+ZC
+Xd
+xy
+Xd
+xy
+xy
+Xd
+Xd
+Xd
+Xd
+Xd
+LQ
+Xd
+Xd
+xy
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -3780,7 +5499,16 @@ am
bi
"}
(24,1,1) = {"
-bl
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -3804,52 +5532,43 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-TU
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+ae
+ae
+bq
+av
+Xd
+Xd
+Xd
+Xd
+ZC
+xy
+xy
+xy
+Xd
+Xd
+Xd
+xy
+Xd
+xy
+xy
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -3922,52 +5641,16 @@ am
bi
"}
(25,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -3991,8 +5674,44 @@ aa
aa
aa
aa
+bp
+bp
+bp
aa
aa
+bp
+bp
+bp
+ae
+ae
+ax
+xy
+Xd
+ZC
+ZC
+ZC
+ZC
+xy
+xy
+xy
+xy
+xy
+vg
+xy
+xy
+xy
+xy
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -4064,48 +5783,15 @@ am
bi
"}
(26,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -4135,6 +5821,39 @@ aa
aa
aa
aa
+bp
+bp
+bp
+bp
+ae
+ax
+Xd
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+xy
+xy
+xy
+xy
+xy
+xy
+xy
+xy
+cy
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -4206,47 +5925,14 @@ am
bi
"}
(27,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -4257,6 +5943,7 @@ aa
aa
aa
aa
+ab
aa
aa
aa
@@ -4271,11 +5958,43 @@ aa
aa
aa
aa
+ab
aa
aa
aa
aa
aa
+bp
+bp
+bp
+ae
+ae
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+xy
+xy
+xy
+xy
+xy
+xy
+xy
+xy
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
xW
aa
aa
@@ -4348,7 +6067,14 @@ am
bi
"}
(28,1,1) = {"
-bl
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -4370,51 +6096,44 @@ aa
aa
aa
aa
+ab
+bh
aa
aa
aa
aa
+xW
aa
aa
aa
aa
+bp
+bp
+bp
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+ZC
+ZC
+xy
+vg
+xy
+xy
+xy
+xy
+ZC
+bq
+bq
+bq
+bq
+bq
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
aa
aa
aa
@@ -4490,53 +6209,29 @@ am
bi
"}
(29,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
aa
aa
aa
@@ -4554,6 +6249,30 @@ aa
aa
aa
aa
+bp
+bp
+bp
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+ZC
+ZC
+xy
+xy
+xy
+Aw
+xy
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -4632,40 +6351,14 @@ am
bi
"}
(30,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Ar
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -4698,6 +6391,31 @@ aa
aa
aa
aa
+bp
+bp
+bp
+bp
+bq
+bq
+bq
+bq
+bq
+bq
+ZC
+ZC
+ZC
+Qm
+Qm
+YY
+rp
+ZC
+ZC
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -4719,6 +6437,7 @@ aa
aa
aa
aa
+xW
aa
aa
aa
@@ -4774,36 +6493,14 @@ am
bi
"}
(31,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -4836,7 +6533,29 @@ aa
aa
aa
aa
+bp
aa
+GS
+bp
+bq
+bq
+bq
+bq
+bq
+bq
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+ZC
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -4916,26 +6635,14 @@ am
bi
"}
(32,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -4967,18 +6674,30 @@ aa
aa
aa
aa
+bp
+bp
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+bp
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -5058,37 +6777,14 @@ am
bi
"}
(33,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -5100,6 +6796,8 @@ aa
aa
aa
aa
+ab
+bh
aa
aa
aa
@@ -5118,10 +6816,30 @@ aa
aa
aa
aa
+bp
aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -5134,6 +6852,7 @@ aa
aa
aa
aa
+ab
aa
aa
aa
@@ -5200,30 +6919,13 @@ am
bi
"}
(34,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+ae
aa
aa
aa
@@ -5249,6 +6951,7 @@ aa
aa
aa
aa
+ab
aa
aa
aa
@@ -5260,6 +6963,22 @@ aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -5342,42 +7061,19 @@ am
bi
"}
(35,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
aa
aa
+ab
aa
aa
aa
@@ -5409,6 +7105,22 @@ aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -5418,6 +7130,7 @@ aa
aa
aa
aa
+bh
aa
aa
aa
@@ -5452,6 +7165,12 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -5484,25 +7203,12 @@ am
bi
"}
(36,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -5542,7 +7248,20 @@ aa
aa
aa
aa
+bq
+bq
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -5574,14 +7293,6 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
ab
aa
aa
@@ -5590,10 +7301,18 @@ aa
aa
aa
aa
+ab
aa
aa
aa
-aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
bb
aj
ak
@@ -5626,11 +7345,17 @@ am
bi
"}
(37,1,1) = {"
-bl
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
aa
+ab
aa
aa
aa
@@ -5665,34 +7390,20 @@ aa
aa
aa
aa
+bq
+bq
aa
aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -5736,6 +7447,14 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
bc
aj
ak
@@ -5768,7 +7487,12 @@ am
bi
"}
(38,1,1) = {"
-bl
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -5809,24 +7533,19 @@ aa
aa
aa
aa
-TU
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -5868,16 +7587,16 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -5910,30 +7629,12 @@ am
bi
"}
(39,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -5980,6 +7681,13 @@ aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -6020,6 +7728,17 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -6052,26 +7771,19 @@ am
bi
"}
(40,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+bh
aa
aa
aa
@@ -6111,6 +7823,13 @@ aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -6150,18 +7869,18 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -6194,7 +7913,14 @@ am
bi
"}
(41,1,1) = {"
-bl
+bq
+bq
+ae
+ae
+ae
+ai
+ae
+aa
aa
aa
aa
@@ -6233,11 +7959,19 @@ aa
aa
aa
aa
+ab
aa
aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -6276,34 +8010,19 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -6336,37 +8055,13 @@ am
bi
"}
(42,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -6401,6 +8096,7 @@ aa
aa
aa
aa
+ab
aa
aa
aa
@@ -6411,6 +8107,13 @@ aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -6421,6 +8124,7 @@ aa
aa
aa
aa
+xW
aa
aa
aa
@@ -6446,6 +8150,21 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+xT
+lI
+lI
+lI
tr
aj
ak
@@ -6478,34 +8197,12 @@ am
bi
"}
(43,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -6552,6 +8249,12 @@ aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -6588,6 +8291,22 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -6620,7 +8339,12 @@ am
bi
"}
(44,1,1) = {"
-bl
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -6667,6 +8391,12 @@ aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -6702,34 +8432,23 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+pP
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+pP
+lI
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -6762,36 +8481,12 @@ am
bi
"}
(45,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -6831,6 +8526,7 @@ aa
aa
aa
aa
+xW
aa
aa
aa
@@ -6838,6 +8534,9 @@ aa
aa
aa
aa
+bq
+bq
+bq
aa
aa
aa
@@ -6862,9 +8561,11 @@ aa
aa
aa
aa
+xW
aa
aa
aa
+ab
aa
aa
aa
@@ -6872,6 +8573,24 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
bb
aj
ak
@@ -6904,11 +8623,11 @@ am
bi
"}
(46,1,1) = {"
-bl
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -6994,26 +8713,26 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
bc
aj
ak
@@ -7046,32 +8765,11 @@ am
bi
"}
(47,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -7156,6 +8854,27 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
bb
aj
ak
@@ -7188,11 +8907,11 @@ am
bi
"}
(48,1,1) = {"
-bl
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+ae
aa
aa
aa
@@ -7274,30 +8993,30 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+hg
+lI
+lI
+lI
+lI
+lI
+lI
bc
aj
ak
@@ -7330,12 +9049,12 @@ am
bi
"}
(49,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -7414,32 +9133,32 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
bd
aj
ak
@@ -7472,13 +9191,13 @@ am
bi
"}
(50,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -7555,44 +9274,44 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+lI
+lI
+lI
+lI
+Nv
tr
aj
ak
bf
bf
bf
+bf
am
am
am
-am
-am
+bf
am
am
am
@@ -7614,7 +9333,13 @@ am
bi
"}
(51,1,1) = {"
-bl
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -7690,52 +9415,46 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+hg
+lI
+lI
+hg
+lI
+lI
+lI
+lI
+hg
+Nv
+Nv
+sD
+sD
+xi
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
tr
aj
-ak
+KN
bf
bf
bf
+ul
+bf
am
-am
-am
-am
-am
-am
+bf
+ul
+bf
am
am
am
@@ -7756,7 +9475,13 @@ am
bi
"}
(52,1,1) = {"
-bl
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -7782,6 +9507,7 @@ aa
aa
aa
aa
+YO
aa
aa
aa
@@ -7830,55 +9556,48 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-an
-ad
-ad
-ad
-tr
-aj
-ak
-bf
-bf
-bf
-am
-am
-am
-am
-am
-am
-am
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+sD
+pd
+zw
+Nv
+Nv
+li
+Nv
+Nv
+ar
+Wu
+Wu
+Wc
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
am
am
am
@@ -7898,7 +9617,12 @@ am
bi
"}
(53,1,1) = {"
-bl
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -7973,54 +9697,49 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ao
-ad
-ad
-ad
-tr
-aj
-ak
-bf
-bf
-bf
-am
-am
-am
-am
-am
-am
-am
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+hg
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+sD
+ez
+zw
+Nv
+Nv
+sT
+Nv
+Nv
+ar
+Wu
+Wu
+Wc
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
am
am
am
@@ -8040,7 +9759,12 @@ am
bi
"}
(54,1,1) = {"
-bl
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -8114,54 +9838,49 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+hg
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+li
+Nv
+sD
+la
+zw
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
tr
aj
-ak
+KN
bf
bf
bf
+ul
+bf
am
-am
-am
-am
-am
-am
+bf
+ul
+bf
am
am
am
@@ -8182,12 +9901,12 @@ am
bi
"}
(55,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -8260,49 +9979,49 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+sD
+sD
+xi
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
tr
aj
ak
bf
bf
bf
+bf
am
am
am
-am
-am
+bf
am
am
am
@@ -8324,12 +10043,12 @@ am
bi
"}
(56,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -8401,39 +10120,39 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-UZ
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+li
+Nv
tr
aj
ak
@@ -8466,7 +10185,12 @@ am
bi
"}
(57,1,1) = {"
-bl
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -8537,45 +10261,40 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-an
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-al
-al
-al
-al
-al
-al
-al
-al
-al
-ad
-ad
-ad
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+Nv
+Nv
+Nv
+Nv
tr
aj
ak
@@ -8608,13 +10327,13 @@ am
bi
"}
(58,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -8684,40 +10403,40 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ao
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-al
+lI
+lI
+lI
+lI
+lI
+Nv
+OK
+Nv
+Wf
+zw
+LB
+LB
+ah
+ah
+ah
+ah
+ah
+LB
+AS
+LB
+LB
+zw
aG
-ar
-ar
-ar
-aB
-ar
-al
-al
-ad
-ad
-ad
-ad
+UN
+UN
+UN
+ao
+UN
+zw
+zw
+Nv
+Nv
+Nv
+Nv
tr
aj
ak
@@ -8750,19 +10469,14 @@ am
bi
"}
(59,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -8831,35 +10545,40 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Wf
+Wf
+kd
+LB
+zV
+yf
+as
ad
+as
+yf
+as
ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ar
-ar
-ar
-ar
-ad
-al
+CM
+LB
+wT
aH
-ar
+UN
aK
-aw
-aw
+me
+me
aU
aX
-al
-ad
-ad
-ad
-ad
+zw
+Nv
+Nv
+Nv
+Nv
bb
aj
ak
@@ -8892,15 +10611,15 @@ am
bi
"}
(60,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -8968,40 +10687,40 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ar
+lI
+lI
+lI
+Nv
+Nv
+Wf
+Wf
+Wf
+Wf
+Wf
+ah
+as
+yf
as
-aw
-ar
ad
-al
+as
+yf
+as
+ad
+BR
+LB
+zw
aI
-ar
+UN
aL
-aw
-aw
+me
+me
aU
aX
-al
-ad
-ad
-ad
-ad
+zw
+Nv
+Nv
+Nv
+Nv
bc
aj
ak
@@ -9034,15 +10753,15 @@ am
bi
"}
(61,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -9110,11 +10829,17 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+Nv
+Nv
+Nv
+Wf
+Wf
+LJ
+Wf
+Wf
+ah
ad
ad
ad
@@ -9123,27 +10848,21 @@ ad
ad
ad
ad
-ad
-ad
-ad
-ar
-az
-aC
aE
-al
-al
+LB
+zw
aH
-ar
+UN
aM
-aw
-aw
+me
+me
aV
aX
-al
-ad
-ad
-ad
-ad
+zw
+Nv
+Nv
+Nv
+Nv
bb
aj
ak
@@ -9176,15 +10895,15 @@ am
bi
"}
(62,1,1) = {"
-bl
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
aa
aa
aa
@@ -9252,11 +10971,17 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+Nv
+OK
+Wf
+Wf
+LJ
+LJ
+LJ
+Wf
+ah
ad
ad
ad
@@ -9266,26 +10991,20 @@ ad
ad
ad
ad
-ad
-ad
-ar
-ar
-ar
-ar
-ad
-al
+AS
+zw
aI
aJ
aN
-aw
-aw
+me
+me
aW
aX
-al
-ad
-ad
-ad
-ad
+zw
+Nv
+Nv
+Nv
+Nv
bc
aj
ak
@@ -9318,16 +11037,16 @@ am
bi
"}
(63,1,1) = {"
-bl
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -9393,41 +11112,41 @@ aa
aa
aa
aa
-bs
-aa
-aa
-aa
-aa
aa
+lI
+lI
+Nv
+Nv
+Wf
+Wf
+LJ
+LJ
+LJ
+Wf
+ah
ad
ad
-ad
-ad
-ad
-ad
-al
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-al
+By
+By
+By
+By
+By
+io
+Of
+LB
+zw
aH
-ar
+UN
aO
-aw
-aw
+me
+me
aW
aX
-al
-ad
-ad
-ad
-ad
+zw
+Nv
+Nv
+Nv
+Nv
bb
aj
ak
@@ -9460,17 +11179,17 @@ am
bi
"}
(64,1,1) = {"
-bl
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -9536,40 +11255,40 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+Nv
+Nv
+Nv
+Wf
+Wf
+LJ
+Wf
+Wf
+ah
ad
ad
-ad
-ad
-ad
-ad
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
+Kq
+Kq
+Kq
+Kq
+Kq
+io
+Kq
+LB
+zw
aI
-ar
+UN
aP
-aw
-aw
+me
+me
aV
aX
-al
-ad
-ad
-ad
-ad
+zw
+Nv
+Nv
+Nv
+Nv
bc
aj
ak
@@ -9602,18 +11321,18 @@ am
bi
"}
(65,1,1) = {"
-bl
bq
bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+ae
+ae
aa
aa
aa
@@ -9678,40 +11397,40 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-al
-ad
-ad
-al
-ad
-ad
-ad
-ad
-ad
-ad
-al
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Wf
+Wf
+Wf
+Wf
+LB
+mb
+Ja
+mu
+aD
+aD
+aD
+aD
+aD
+Bk
+LB
+zw
aH
-ar
-aw
-aw
-aw
-aV
-aX
-al
-ad
-ad
-ad
-ad
+UN
+Rm
+gU
+gU
+zb
+hq
+zw
+Nv
+Nv
+Nv
+Nv
bb
aj
ak
@@ -9744,7 +11463,6 @@ am
bi
"}
(66,1,1) = {"
-bl
bq
bq
bq
@@ -9752,6 +11470,17 @@ bq
bq
bq
bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -9810,50 +11539,40 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-al
-ad
-ar
-ar
-ar
-ar
-ad
-al
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Wf
+Wf
+zw
+LB
+LB
+Jn
+LB
+fl
+aD
+uk
+uk
+aD
+XB
+LB
+zw
aI
-ar
+UN
aQ
-aw
-aw
+me
+me
ag
-aX
-al
-ad
-ad
-ad
-ad
+oF
+zw
+Nv
+Nv
+Nv
+Nv
bc
aj
ak
@@ -9893,6 +11612,18 @@ bq
bq
bq
bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -9950,52 +11681,40 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-al
-ad
-ar
-as
-aw
-ar
-ad
-al
+lI
+lI
+lI
+lI
+lI
+OK
+Nv
+Nv
+Wf
+zw
+zw
+rQ
+jQ
+LB
+Wd
+aD
+uQ
+Jm
+aD
+LT
+LB
+zw
aH
-ar
+UN
aR
-aw
-aw
+me
+me
aV
-aX
-al
-ad
-ad
-UZ
-ad
+oF
+zw
+Nv
+Nv
+Nv
+Nv
bb
aj
ak
@@ -10041,12 +11760,12 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -10104,40 +11823,40 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ar
-ar
-ar
-ad
-ad
-al
-ad
-ar
-az
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+zw
+zw
+zw
+zw
+jQ
+ah
+tG
+aD
+aD
+aD
aD
aF
-al
-al
+ah
+zw
aI
-ar
+UN
aS
-aw
-aw
+me
+me
aV
-aX
-al
-ad
-ad
-ad
-ad
+oF
+zw
+Nv
+Nv
+Nv
+Nv
bc
aj
ak
@@ -10185,10 +11904,10 @@ bq
bq
bq
bq
-aa
+ae
bq
-aa
-aa
+ae
+ae
aa
aa
aa
@@ -10246,40 +11965,40 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ar
-ae
-al
-ad
-ad
-al
-ad
-ar
-ar
-ar
-ar
-ad
-al
+lI
+lI
+lI
+lI
+lI
+Nv
+Um
+Um
+zD
+Um
+Um
+zw
+jQ
+LB
+SG
+aD
+hL
+Hv
+mF
+aF
+LB
+zw
aH
-ar
+UN
aT
-aw
-aw
+me
+me
aV
-aX
-al
-ad
-ad
-ad
-ad
+oF
+zw
+Nv
+Nv
+Nv
+Nv
bb
aj
ak
@@ -10329,8 +12048,8 @@ bq
bq
bq
bq
-aa
-aa
+ae
+ae
aa
aa
aa
@@ -10387,41 +12106,41 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ar
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+zD
+ku
+zZ
+zP
af
-al
-al
-al
-al
-ad
+Yq
+jQ
+LB
+LB
+LB
ah
-ad
-ad
-ad
-ad
-al
+ah
+LB
+LB
+LB
+zw
aI
-ar
-ar
-ar
-ar
-ar
-al
-al
-ad
-ad
-ad
-ad
+UN
+UN
+UN
+ao
+UN
+jQ
+zw
+Nv
+Nv
+Nv
+Nv
bc
aj
ak
@@ -10470,6 +12189,9 @@ bq
bq
bq
bq
+ae
+ae
+ae
aa
aa
aa
@@ -10526,44 +12248,41 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ar
-al
-al
-ad
-ad
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-ad
-ad
-ad
-ad
+lI
+lI
+lI
+hg
+lI
+lI
+Nv
+zD
+hR
+Uk
+qI
+zD
+bT
+eV
+kT
+kT
+kT
+kT
+kT
+kT
+kT
+kT
+Rx
+kT
+kT
+kT
+kT
+kT
+kT
+JU
+zw
+Nv
+Nv
+Nv
+Nv
tr
aj
ak
@@ -10612,6 +12331,10 @@ bq
bq
bq
bq
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -10667,45 +12390,41 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ar
-ar
-ar
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-al
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+zD
+mM
+py
+Tp
+zD
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+jQ
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+Nv
+Nv
+Nv
+Nv
+Nv
tr
aj
ak
@@ -10753,6 +12472,11 @@ bq
bq
bq
bq
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -10807,47 +12531,42 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bp
-bp
-bp
-bp
-bp
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ar
-ar
-ar
-ar
-ad
-al
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Um
+Um
+kO
+Um
+Um
+zw
+zw
+Nv
+Wf
+Wf
+Wf
+Wf
+Wf
+Nv
+Nv
+jQ
+zw
+UN
+UN
+UN
+UN
+zw
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
tr
aj
ak
@@ -10897,6 +12616,33 @@ bq
bq
bq
bq
+ae
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
aa
aa
aa
@@ -10927,69 +12673,42 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ar
-as
-av
-ar
-ad
-al
-ad
-ad
-ad
-ad
-ad
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ai
+lI
+lI
+lI
+lI
+Nv
+lI
+lI
+Nv
+zw
+zw
+Fm
+mi
+zw
+zw
+zw
+hj
+hj
+hj
+hj
+hj
+hj
+hj
+hj
+wM
+zw
+UN
+SK
+QL
+UN
+zw
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
tr
aj
ak
@@ -11041,8 +12760,8 @@ bq
bq
bq
bq
-aa
-aa
+ae
+ae
aa
aa
aa
@@ -11096,42 +12815,42 @@ aa
aa
aa
aa
-aa
-aa
-bp
-bp
-bp
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ar
+lI
+lI
+Nv
+Nv
+lI
+Nv
+lI
+lI
+Nv
+Nv
+Fm
+Nv
+Nv
+Nv
+Nv
+hj
+kg
at
-aw
+Ya
aA
-al
-al
-ad
-ad
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-aZ
+Qr
+il
+hj
+jQ
+zw
+UN
+cN
+cf
+gd
+zw
+Nv
+Nv
+Nv
+Nv
+Nv
+OK
tr
aj
ak
@@ -11182,14 +12901,11 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -11241,39 +12957,42 @@ aa
aa
aa
bp
-bp
-bp
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-UZ
-ad
-ad
-ar
-au
-ax
-ar
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+pP
+lI
+Nv
+hj
+WU
al
-ad
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
+al
+al
+al
+al
+al
+jQ
+zw
+UN
+iO
+Sz
+UN
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
tr
aj
ak
@@ -11324,11 +13043,15 @@ bq
bq
bq
bq
+ae
+ae
+ae
+aC
+bs
+ae
aa
aa
aa
-ac
-bh
aa
aa
aa
@@ -11375,47 +13098,43 @@ aa
aa
bp
bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ar
-ar
-ar
-ar
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+lI
+lI
+Nv
+hj
+dm
al
-ad
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
+al
+al
+al
+al
+al
+jQ
+zw
+UN
+UN
+UN
+UN
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
tr
aj
ak
@@ -11465,15 +13184,15 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -11515,49 +13234,49 @@ ac
aa
bp
bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
+aa
+aa
bp
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-al
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
+lI
+lI
+lI
+lI
+lI
+hg
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+lI
+lI
+Nv
+hj
+EG
+PK
+Lp
+hr
+IB
+eF
+hj
+jQ
+zw
+UN
+LO
+tl
+UN
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
tr
aj
ak
@@ -11607,16 +13326,16 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+au
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -11663,43 +13382,43 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ar
-ar
-ar
-ad
-al
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+lI
+lI
+Nv
+hj
+hj
+hj
+hj
+hj
+hj
+hj
+hj
+jQ
+zw
+cf
+cf
+cf
+cf
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
tr
aj
ak
@@ -11750,6 +13469,15 @@ bq
bq
bq
bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -11795,53 +13523,44 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ar
+ab
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Fm
+Nv
+lI
+lI
+Nv
+hj
+BP
+eW
ay
-aB
-al
-al
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
+TH
+ND
+kk
+hj
+jQ
+zw
+UN
+et
+PG
+UN
+Nv
+Nv
+Nv
+lI
+Nv
+Nv
+Nv
bb
aj
ak
@@ -11890,18 +13609,18 @@ bq
bq
bq
bq
-aa
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+ae
+ae
+ae
+au
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -11946,44 +13665,44 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ar
-ar
-ar
-ad
-ad
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
+lI
+lI
+lI
+lI
+Nv
+Nt
+RX
+RX
+RX
+RX
+RX
+RX
+Rh
+Nv
+lI
+pP
+Nv
+hj
+WH
+RA
+RA
+RA
+RA
+Gr
+ST
+ZX
+zw
+UN
+UN
+UN
+UN
+Nv
+Nv
+lI
+lI
+Nv
+Nv
+Nv
bc
aj
ak
@@ -12032,17 +13751,17 @@ bq
bq
bq
bq
-aa
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+ae
+ae
+ae
+au
+au
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -12088,44 +13807,44 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+lI
+pP
+lI
+Nv
+hj
+AE
+AE
+dP
+dP
+dP
+Je
+hj
+jQ
+zw
+yg
+Wf
+Wf
+Nv
+Nv
+Nv
+lI
+lI
+hg
+Nv
+Nv
bb
aj
ak
@@ -12177,14 +13896,14 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+au
+au
+ae
+ae
+ae
aa
aa
aa
@@ -12230,44 +13949,44 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+hj
+hj
+hj
+hj
+hj
+hj
+hj
+hj
+jQ
+zw
+Wf
+Wf
+Nv
+Nv
+Nv
+lI
+lI
+lI
+lI
+Nv
+Nv
bc
aj
ak
@@ -12319,6 +14038,14 @@ bq
bq
bq
bq
+ae
+ae
+au
+au
+au
+ae
+ae
+ae
aa
aa
aa
@@ -12347,15 +14074,7 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
aa
aa
aa
@@ -12371,45 +14090,45 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ad
+lI
+lI
+lI
+pP
+lI
+Nv
+Fm
+Nv
+pP
+lI
+lI
+lI
+pP
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+jQ
+zw
+Nv
+Nv
+Nv
+Nv
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
tr
aj
ak
@@ -12461,14 +14180,14 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+au
+ae
+ae
+ae
aa
aa
aa
@@ -12512,46 +14231,46 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-bh
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+lI
+pP
+us
+lI
+lI
+Nv
+Eh
+Eh
+Eh
+Eh
+Nv
+Cr
+kT
+kT
+kT
+kT
+kT
+kT
+JU
+zw
+zw
+zw
+zw
+zw
+Nv
+hg
+us
+lI
+lI
+lI
+Nv
tr
aj
ak
@@ -12603,15 +14322,15 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+aC
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -12652,48 +14371,48 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+lI
+lI
+lI
+lI
+lI
+Nv
+Eh
+lh
+uT
+Eh
+Nv
+jQ
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+Nv
+lI
+lI
+lI
+lI
+lI
+Nv
tr
aj
ak
@@ -12744,16 +14463,16 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -12788,54 +14507,54 @@ aa
aa
aa
aa
+ac
aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
+lI
+lI
+lI
+lI
+lI
+pP
+lI
+lI
+lI
+Nv
+Fm
+Nv
+lI
+lI
+lI
+lI
+lI
+Nv
+Eh
+rJ
+to
+IY
+kT
+qi
+zw
+Yi
+CC
+CC
+CC
+PV
+PV
+PV
+PV
+Ue
+zw
+zw
+Nv
+lI
+lI
+lI
+lI
+lI
+Nv
tr
aj
ak
@@ -12888,14 +14607,14 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -12933,51 +14652,51 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+lI
+lI
+lI
+lI
+lI
+Nv
+Eh
+of
+oq
+Eh
+Nv
+jQ
+zw
+hl
+DB
+DB
+DB
+uO
+uO
+uO
+uO
+jH
+zw
+zw
+Nv
+lI
+lI
+hg
+lI
+lI
+Nv
tr
aj
ak
@@ -13030,14 +14749,14 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+au
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -13069,57 +14788,57 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
ac
aa
+lI
+lI
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+lI
+lI
+lI
+pP
+lI
+Nv
+Eh
+Eh
+Eh
+Eh
+ss
+jQ
+zw
+hl
+DB
+DB
+DB
+uO
+uO
+uO
+uO
+jH
+zw
+zw
+Nv
+lI
+lI
+lI
+lI
+lI
+Nv
tr
aj
ak
@@ -13171,97 +14890,97 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-xW
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+au
+au
+au
+au
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+pP
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+lI
+lI
+lI
+lI
+lI
+Nv
+zs
+kW
+QY
+zs
+Nv
+jQ
+zw
+hl
+DB
+DB
+DB
+uO
+uO
+uO
+uO
+jH
+zw
+zw
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -13314,96 +15033,96 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bp
-xW
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+au
+au
+au
+ae
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+RD
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Fm
+Nv
+lI
+lI
+lI
+lI
+lI
+Nv
+zs
+kR
+YR
+DK
+kT
+qi
+zw
+dd
+kK
+kK
+kK
+pA
+pA
+pA
+pA
+uh
+zw
+zw
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
be
aj
ak
@@ -13456,96 +15175,96 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+au
+ae
+ae
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nt
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+RX
+Rh
+Nv
+lI
+lI
+lI
+lI
+lI
+Nv
+zs
+hS
+MZ
+zs
+Nv
+jQ
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+zw
+Nv
+lI
+hg
+lI
+lI
+hg
+lI
tr
aj
ak
@@ -13597,97 +15316,97 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+au
+ae
+ae
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+Nv
+lI
+Nv
+Nv
+Nv
+Fm
+Nv
+Nv
+sT
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+lI
+pP
+lI
+lI
+lI
+lI
+Nv
+zs
+zs
+zs
+zs
+Nv
+bT
+Rx
+kT
+kT
+kT
+UQ
+kT
+kT
+kT
+Yq
+zw
+zw
+zw
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
bb
aj
ak
@@ -13739,97 +15458,97 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bp
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+lI
+pP
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+pP
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+pP
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+jQ
+Nv
+BF
+Wj
+hj
+Wj
+YE
+Nv
+jQ
+Nv
+Ce
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
bc
aj
ak
@@ -13881,12 +15600,12 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -13898,80 +15617,80 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
+bp
+bp
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Fm
+Nv
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+pP
+lI
+lI
+lI
+pP
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+BF
+BF
+Gi
+BF
+BF
+JX
+hj
+JX
+YE
+YE
+Lw
+YE
+YE
+Nv
+lI
+lI
+lI
+pP
+lI
+lI
+lI
bb
aj
ak
@@ -14022,12 +15741,12 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -14046,74 +15765,74 @@ aa
aa
ac
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+Nv
+Nt
+RX
+ts
+RX
+jc
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+pP
+lI
+lI
+lI
+lI
+lI
+lI
+hg
+us
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+BF
+hV
+uL
+fJ
+BF
+BF
+BF
+YE
+YE
+WS
+pC
+dt
+YE
+Nv
+lI
+lI
+lI
+us
+lI
+lI
+lI
bc
aj
ak
@@ -14155,107 +15874,107 @@ bq
bq
bq
bq
-bp
+an
bq
bq
-bp
+an
bq
bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+Nv
+DA
+pF
+Uo
+Nv
+DA
+pF
+Uo
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+KU
+KU
+Nv
+Nv
+Nv
+BF
+RH
+HO
+kP
+BF
+Nv
+Nv
+Nv
+YE
+Ew
+mW
+Rv
+YE
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
bb
aj
ak
@@ -14297,21 +16016,21 @@ bq
bq
bq
bq
-bp
+an
bq
-bp
-bp
+an
+an
bq
bq
bq
bq
bq
bq
-aa
-aa
-aa
-aa
-ab
+ae
+ae
+ae
+ae
+ai
aa
aa
aa
@@ -14329,75 +16048,75 @@ aa
aa
aa
aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+pP
+Nv
+DA
+pF
+Uo
+Nv
+DA
+pF
+Uo
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+BF
+BF
+BF
+BF
+BF
+Nv
+lI
+Nv
+YE
+YE
+YE
+YE
+YE
+Nv
+hg
+lI
+lI
+lI
+lI
+lI
+lI
bc
aj
ak
@@ -14438,23 +16157,23 @@ bq
bq
bq
bq
-bp
-bp
-bp
-bp
-bp
+an
+an
+an
+an
+an
bq
bq
bq
bq
bq
-bq
-aa
-aa
-aa
-aa
-bh
-aa
+ae
+ae
+ae
+ae
+ae
+bs
+ae
aa
aa
bp
@@ -14471,75 +16190,75 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+Nv
+DA
+pF
+Uo
+Nv
+DA
+pF
+Uo
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -14580,23 +16299,23 @@ bq
bq
bq
bq
-bp
-bp
-bp
-bp
-bp
+an
+an
+an
+an
+an
bq
bq
bq
bq
bq
-bq
-bp
-aa
-bp
-bp
-aa
-aa
+ae
+ax
+ae
+ax
+ax
+ae
+ae
aa
bp
aa
@@ -14613,75 +16332,75 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+Nv
+nm
+mS
+XZ
+XZ
+XZ
+Mp
+Uo
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+hg
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+Nv
+Nv
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+hg
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -14717,113 +16436,113 @@ bi
bq
bq
bq
-bp
+an
bq
bq
-bp
+an
bq
-bp
-bp
-bp
-bp
-bp
+an
+an
+an
+an
+av
bq
bq
bq
bq
-bq
-bq
-bp
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ax
+ae
+ae
+ae
+ae
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+Nv
+DA
+ZA
+Uo
+Nv
+DA
+ZA
+Uo
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+KU
+KU
+Nv
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -14858,27 +16577,27 @@ bi
(102,1,1) = {"
bq
bq
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bq
-bq
-bq
-aa
-aa
-aa
-aa
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+av
+av
+rm
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
bp
bp
aa
@@ -14897,75 +16616,75 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+Nv
+DA
+ZA
+Uo
+Nv
+DA
+ZA
+Uo
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
TU
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+jN
+Nv
+Nv
+Nv
+KU
+KU
+KU
+Nv
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
tr
aj
ak
@@ -14999,114 +16718,114 @@ bi
"}
(103,1,1) = {"
bo
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-aa
-bp
-bp
-bp
-bp
-bp
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+ae
+ae
+ae
+ax
+ax
+ax
+ax
+ax
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+Nv
+DA
+ME
+Uo
+Nv
+DA
+ME
+Uo
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+KU
+Nv
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+hg
+lI
+lI
+lI
aa
tr
aj
@@ -15141,111 +16860,111 @@ bi
"}
(104,1,1) = {"
br
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-aa
-bp
-bp
-aa
-bp
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+av
+ae
+ax
+ae
+ae
+ax
+ax
+ae
+ax
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+lI
+lI
+lI
+lI
+hg
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+aa
+aa
+aa
+aa
+aa
+lI
+lI
+lI
+pP
+lI
+lI
+Nv
+Nv
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+IZ
+Nv
+Nv
+KU
+KU
+KU
+Nv
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -15283,84 +17002,29 @@ bi
"}
(105,1,1) = {"
br
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bq
-bp
-bp
-bp
-bp
-bp
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+av
+av
+rm
+ae
+ae
+ae
+ae
+ax
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -15379,6 +17043,28 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -15387,6 +17073,39 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+Nv
+Nv
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+KU
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -15425,81 +17144,29 @@ bi
"}
(106,1,1) = {"
br
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+av
+av
bq
-bp
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -15519,6 +17186,27 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
+pP
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -15527,6 +17215,37 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+KU
+KU
+Nv
+jN
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+KU
+Nv
+lI
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -15567,29 +17286,29 @@ bi
"}
(107,1,1) = {"
br
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+av
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -15610,6 +17329,25 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -15619,31 +17357,36 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+Nv
+Nv
+KU
+Nv
+Nv
+KU
+Nv
+Nv
+Nv
+IZ
+sT
+Nv
+Nv
+Nv
+Nv
+Nv
+jN
+Nv
+Nv
+KU
+KU
+KU
+Nv
+xT
+lI
+lI
+lI
aa
aa
aa
@@ -15652,30 +17395,6 @@ aa
aa
ab
bh
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-xW
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
tr
aj
ak
@@ -15709,29 +17428,29 @@ bi
"}
(108,1,1) = {"
br
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
+an
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -15753,6 +17472,22 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -15765,51 +17500,35 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+Nv
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+KU
+Nv
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -15852,20 +17571,29 @@ bi
(109,1,1) = {"
bq
bq
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
+an
+an
+an
+an
+an
+an
+an
+an
+an
bq
bq
bq
bq
bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -15887,6 +17615,21 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -15896,61 +17639,37 @@ aa
aa
aa
aa
+ab
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+Nv
+KU
+KU
+KU
+Nv
+Nv
+Nv
+KU
+KU
+KU
+KU
+KU
+Nv
+jN
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+Nv
+Nv
+lI
+lI
+lI
aa
aa
aa
@@ -15994,19 +17713,33 @@ bi
(110,1,1) = {"
bq
bq
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
-bp
+an
+an
+an
+an
+an
+an
+an
+an
+an
bq
bq
bq
bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+aa
+ae
+ae
aa
aa
aa
@@ -16026,32 +17759,18 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -16060,39 +17779,39 @@ aa
aa
aa
ab
+bh
aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
+lI
+lI
+Nv
+Nv
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+Nv
+OK
+lI
+lI
+lI
aa
aa
aa
@@ -16137,18 +17856,33 @@ bi
bq
bq
bq
-bp
-bp
-bp
+an
+an
+an
bq
bq
bq
bq
-bp
+an
bq
bq
bq
bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -16172,6 +17906,12 @@ aa
aa
aa
aa
+lI
+lI
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -16187,54 +17927,33 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+Nv
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+Nv
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -16280,7 +17999,7 @@ bq
bq
bq
bq
-bp
+an
bq
bq
bq
@@ -16290,48 +18009,22 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+au
+ae
+ae
+Dq
+ae
+ae
+aC
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -16376,6 +18069,32 @@ aa
aa
aa
aa
+hg
+us
+Nv
+KU
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+lI
+lI
+lI
aa
aa
aa
@@ -16434,21 +18153,21 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -16493,38 +18212,38 @@ aa
aa
aa
aa
+lI
+Nv
+Nv
+KU
+KU
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+lI
+lI
+lI
+lI
aa
aa
aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
aa
aa
aa
@@ -16576,20 +18295,20 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+au
+au
+au
+au
+ae
+ae
+ae
+au
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -16636,29 +18355,29 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+Nv
+Nv
+KU
+KU
+KU
+KU
+KU
+Nv
+Nv
+Nv
+Nv
+Nv
+KU
+KU
+KU
+KU
+KU
+KU
+Nv
+Nv
+lI
+lI
aa
aa
aa
@@ -16718,9 +18437,24 @@ bq
bq
bq
bq
+ae
+ae
+ae
+au
+au
+au
+ae
+ae
+ae
+au
+au
+ae
+ae
+ae
aa
aa
aa
+xW
aa
aa
aa
@@ -16763,43 +18497,28 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+lI
+Nv
+Nv
+Nv
+KU
+KU
+KU
+KU
+Nv
+Nv
+Nv
+lI
aa
aa
aa
@@ -16860,6 +18579,19 @@ bq
bq
bq
bq
+ae
+ae
+ae
+au
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -16875,19 +18607,6 @@ aa
aa
aa
aa
-TU
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
aa
aa
aa
@@ -16921,26 +18640,26 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+Nv
+lI
aa
aa
aa
@@ -16968,7 +18687,7 @@ bf
bk
mC
mC
-mC
+JG
mC
fQ
bf
@@ -17002,19 +18721,19 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+au
+au
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -17063,26 +18782,26 @@ xW
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Nv
+Nv
+Nv
+Nv
+lI
+lI
aa
aa
aa
@@ -17144,18 +18863,18 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+au
+au
+au
+au
+au
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -17207,23 +18926,23 @@ aa
aa
aa
aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+pP
+lI
aa
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
aa
aa
aa
@@ -17284,6 +19003,21 @@ bq
bq
bq
bq
+ae
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -17339,27 +19073,12 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+lI
+lI
+lI
+hg
+lI
+lI
aa
aa
aa
@@ -17427,20 +19146,20 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+au
+au
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -17569,21 +19288,21 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -17711,35 +19430,22 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+ae
+au
+au
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -17793,6 +19499,19 @@ aa
aa
ab
aa
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+bh
aa
aa
aa
@@ -17852,27 +19571,27 @@ bq
bq
bq
bq
+ae
+ae
+ae
+aC
+ae
+ae
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
-aa
-aa
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
aa
aa
aa
@@ -17994,28 +19713,28 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+au
+ae
+ae
+au
+au
+ae
+ae
+ae
+ae
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -18136,6 +19855,29 @@ bq
bq
bq
bq
+ae
+ae
+ae
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -18191,30 +19933,7 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
aa
aa
aa
@@ -18278,29 +19997,29 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+ae
+ae
+ae
+Dq
+ae
+ae
+ae
+ae
+ae
+ae
+au
+ae
+ae
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -18420,6 +20139,31 @@ bq
bq
bq
bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+au
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -18461,6 +20205,7 @@ aa
aa
aa
aa
+ab
aa
aa
aa
@@ -18470,36 +20215,10 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -18564,6 +20283,31 @@ bq
bq
bq
bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -18611,42 +20355,17 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -18709,6 +20428,29 @@ bq
bq
bq
bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -18755,41 +20497,18 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -18851,31 +20570,31 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
aa
aa
aa
@@ -18910,6 +20629,7 @@ aa
aa
aa
aa
+ab
aa
aa
aa
@@ -18918,6 +20638,20 @@ aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
@@ -18926,23 +20660,8 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
+bq
+ba
aj
ak
bf
@@ -18993,6 +20712,32 @@ bq
bq
bq
bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -19033,58 +20778,32 @@ aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
+bq
+bq
+ba
aj
ak
bf
@@ -19136,6 +20855,33 @@ bq
bq
bq
bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -19173,61 +20919,34 @@ aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
+bq
+bq
+ba
+ba
ak
bf
bf
@@ -19278,6 +20997,34 @@ bq
bq
bq
bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -19310,66 +21057,38 @@ aa
aa
aa
aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
+bq
+bq
+bq
+ba
+ba
ak
bf
bf
@@ -19421,6 +21140,37 @@ bq
bq
bq
bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+au
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -19447,72 +21197,41 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
bf
bf
am
@@ -19563,6 +21282,38 @@ bq
bq
bq
bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+au
+au
+au
+au
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
@@ -19587,75 +21338,43 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-bf
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
bf
am
am
@@ -19706,101 +21425,101 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-bf
-bf
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+au
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
am
am
am
@@ -19848,110 +21567,110 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-bf
-bf
-am
-am
-am
-am
-am
-am
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ae
+ae
+ae
+ae
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
+nD
am
am
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -19990,112 +21709,112 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-bf
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+aa
+aa
+aa
+aa
+aa
+bq
+bq
+bq
+bq
+bq
+aa
+aa
+aa
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -20131,114 +21850,114 @@ bq
bq
bq
bq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-tr
-aj
-ak
-bf
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+ba
+ba
+bg
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
am
am
am
@@ -20272,114 +21991,114 @@ bq
bq
bq
bq
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
+bq
ba
ba
bg
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
-bi
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
+nD
bi
bi
bi
diff --git a/maps/expedition_vr/space/_debrisfield.dm b/maps/expedition_vr/space/_debrisfield.dm
index 7b06a3bfcc0..e8ffd87a0bc 100644
--- a/maps/expedition_vr/space/_debrisfield.dm
+++ b/maps/expedition_vr/space/_debrisfield.dm
@@ -50,28 +50,167 @@
icon = 'icons/turf/areas_vr.dmi'
icon_state = "dark"
-/area/tether_away/debrisfield/explored
+/area/tether_away/debrisfield/shuttle_buffer //For space around shuttle landmarks to keep submaps from generating to block them
icon_state = "debrisexplored"
+ name = "\improper Space"
+ requires_power = 1
+ always_unpowered = 1
+ dynamic_lighting = 0
+ has_gravity = 0
+ power_light = 0
+ power_equip = 0
+ power_environ = 0
+ ambience = AMBIENCE_SPACE
+ flags = AREA_FLAG_IS_NOT_PERSISTENT
-/area/tether_away/debrisfield/unexplored
+/area/submap/debrisfield
+ icon = 'icons/turf/areas_vr.dmi'
icon_state = "debrisunexplored"
-/area/tether_away/debrisfield/derelict
+/area/submap/debrisfield/derelict
icon_state = "debrisexplored"
forced_ambience = list('sound/ambience/tension/tension.ogg', 'sound/ambience/tension/horror.ogg')
//TFF 26/12/19 - Sub-areas for the APCs.
-/area/tether_away/debrisfield/derelict/ai_access_port
+
+/area/submap/debrisfield/derelict/ai_access_port
name = "POI - Abandoned Derelict AI Acess Port"
-/area/tether_away/debrisfield/derelict/ai_access_starboard
+/area/submap/debrisfield/derelict/ai_access_starboard
name = "POI - Abandoned Derelict AI Access Starboard"
-/area/tether_away/debrisfield/derelict/ai_chamber
+/area/submap/debrisfield/derelict/ai_chamber
name = "POI - Abandoned Derelict AI Chamber"
-/area/tether_away/debrisfield/derelict/bridge
+/area/submap/debrisfield/derelict/bridge
name = "POI - Abandoned Derelict Bridge"
-/area/tether_away/debrisfield/derelict/interior
- name = "POI - Abandoned Derelict Interior"
\ No newline at end of file
+/area/submap/debrisfield/derelict/interior
+ name = "POI - Abandoned Derelict Interior"
+
+/area/submap/debrisfield/foodstand
+ name = "POI - Foodstand"
+
+/area/submap/debrisfield/sci_overrun
+ name = "POI - Overrun Science Ship"
+ requires_power = 0
+
+/area/submap/debrisfield/old_sat
+ name = "POI - Old Satellite"
+
+/area/submap/debrisfield/old_tele
+ name = "POI - Old Teleporter"
+
+/area/submap/debrisfield/mining_drone_ship
+ name = "POI - Disabled Mining Drone"
+ requires_power = 0
+
+/area/submap/debrisfield/mining_outpost
+ name = "POI - Destroyed Mining Outpost"
+
+/area/submap/debrisfield/tinyshuttle
+ secret_name = 0
+
+/area/submap/debrisfield/tinyshuttle/crew
+ name = "Crew Bay"
+
+/area/submap/debrisfield/tinyshuttle/bridge
+ name = "Bridge"
+
+/area/submap/debrisfield/tinyshuttle/hangar
+ name = "Hangar"
+ has_gravity = 0
+
+/area/submap/debrisfield/tinyshuttle/engine
+ name = "Systems Bay"
+
+/datum/shuttle/autodock/overmap/tinycarrier
+ name = "Debris Carrier"
+ warmup_time = 0
+ current_location = "debris_field_carrier_start"
+ docking_controller_tag = "debris_carrier_docker"
+ shuttle_area = list(/area/submap/debrisfield/tinyshuttle/crew, /area/submap/debrisfield/tinyshuttle/bridge, /area/submap/debrisfield/tinyshuttle/hangar, /area/submap/debrisfield/tinyshuttle/engine)
+ fuel_consumption = 3
+ defer_initialisation = TRUE
+ move_direction = WEST
+
+/obj/effect/shuttle_landmark/shuttle_initializer/tinycarrier
+ name = "Debris Field"
+ base_area = /area/space
+ base_turf = /turf/space
+ landmark_tag = "debris_field_carrier_start"
+ shuttle_type = /datum/shuttle/autodock/overmap/tinycarrier
+
+/obj/effect/shuttle_landmark/shuttle_initializer/tinycarrier/Initialize()
+ var/obj/effect/overmap/visitable/O = get_overmap_sector(get_z(src)) //make this into general system some other time
+ LAZYINITLIST(O.initial_restricted_waypoints)
+ O.initial_restricted_waypoints["Debris Carrier"] = list(landmark_tag)
+ . = ..()
+
+/obj/effect/overmap/visitable/ship/landable/tinycarrier
+ scanner_name = "TBD"
+ scanner_desc = "TBD"
+ vessel_mass = 12000
+ vessel_size = SHIP_SIZE_SMALL
+ shuttle = "Debris Carrier"
+
+/obj/effect/overmap/visitable/ship/landable/tinycarrier/Initialize()
+ . = ..()
+ var/datum/lore/organization/O = loremaster.organizations[/datum/lore/organization/other/sysdef]
+ var/newname = "SDV [pick(O.ship_names)]"
+ scanner_name = newname
+ scanner_desc = {"\[i\]Registration\[/i\]: [newname]
+\[i\]Class\[/i\]: Light Escort Carrier
+\[i\]Transponder\[/i\]: Transmitting (MIL), Weak Signal
+\[b\]Notice\[/b\]: Registration Expired"}
+ rename_areas(newname)
+
+/obj/effect/overmap/visitable/ship/landable/tinycarrier/proc/rename_areas(newname)
+ if(!SSshuttles.subsystem_initialized)
+ spawn(300)
+ rename_areas(newname)
+ return
+ var/datum/shuttle/S = SSshuttles.shuttles[shuttle]
+ for(var/area/A in S.shuttle_area)
+ A.name = "[newname] [initial(A.name)]"
+ if(A.apc)
+ A.apc.name = "[A.name] APC"
+ A.air_vent_names = list()
+ A.air_scrub_names = list()
+ A.air_vent_info = list()
+ A.air_scrub_info = list()
+ for(var/obj/machinery/alarm/AA in A)
+ AA.name = "[A.name] Air Alarm"
+
+/obj/machinery/computer/shuttle_control/explore/tinycarrier
+ shuttle_tag = "Debris Carrier"
+ req_one_access = list()
+
+/obj/mecha/combat/fighter/baron/loaded/busted
+ starting_components = list(/obj/item/mecha_parts/component/hull/lightweight,/obj/item/mecha_parts/component/actuator/hispeed,/obj/item/mecha_parts/component/armor,/obj/item/mecha_parts/component/gas,/obj/item/mecha_parts/component/electrical/high_current)
+
+/obj/mecha/combat/fighter/baron/loaded/busted/Initialize()
+ . = ..()
+ health = round(rand(50,120))
+ cell?.charge = 0
+ for(var/slot in internal_components)
+ var/obj/item/mecha_parts/component/comp = internal_components[slot]
+ if(!istype(comp))
+ continue
+ comp.adjust_integrity(-(round(rand(comp.max_integrity - 10, 0))))
+
+ setInternalDamage(MECHA_INT_SHORT_CIRCUIT)
+
+/obj/structure/fuel_port/empty_tank/Initialize()
+ . = ..()
+ var/obj/item/weapon/tank/phoron/T = locate() in src
+ if(T)
+ T.air_contents.remove(T.air_contents.total_moles)
+
+/area/submap/debrisfield/misc_debris //for random bits of debris that should use dynamic lights
+ requires_power = 1
+ always_unpowered = 1
+ has_gravity = 0
+ power_light = 0
+ power_equip = 0
+ power_environ = 0
diff --git a/maps/expedition_vr/space/_fueldepot.dm b/maps/expedition_vr/space/_fueldepot.dm
index 1f3241aee7a..1b31997bbc9 100644
--- a/maps/expedition_vr/space/_fueldepot.dm
+++ b/maps/expedition_vr/space/_fueldepot.dm
@@ -36,9 +36,3 @@
oxygen = 0
nitrogen = 0
temperature = TCMB
-
-/obj/machinery/atmospherics/pipe/tank/phoron/full
- start_pressure = 15000
-
-/obj/machinery/atmospherics/pipe/tank/air/full
- start_pressure = 15000
diff --git a/maps/expedition_vr/space/debrisfield.dmm b/maps/expedition_vr/space/debrisfield.dmm
index fd72f30720d..55d00b93ec6 100644
--- a/maps/expedition_vr/space/debrisfield.dmm
+++ b/maps/expedition_vr/space/debrisfield.dmm
@@ -1,35 +1,32 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/space,
-/area/tether_away/debrisfield/unexplored)
-"b" = (
-/turf/space,
-/area/tether_away/debrisfield/explored)
-"c" = (
/obj/effect/overmap/visitable/sector/debrisfield,
/turf/space,
-/area/tether_away/debrisfield/explored)
-"h" = (
-/turf/space,
/area/space)
-"N" = (
+"b" = (
/obj/effect/shuttle_landmark{
- base_area = /area/tether_away/debrisfield/explored;
+ base_area = /area/tether_away/debrisfield/shuttle_buffer;
base_turf = /turf/space;
landmark_tag = "debrisfield_nw";
name = "North West"
},
/turf/space,
-/area/tether_away/debrisfield/explored)
-"Z" = (
+/area/tether_away/debrisfield/shuttle_buffer)
+"c" = (
/obj/effect/shuttle_landmark{
- base_area = /area/tether_away/debrisfield/explored;
+ base_area = /area/tether_away/debrisfield/shuttle_buffer;
base_turf = /turf/space;
landmark_tag = "debrisfield_se";
name = "South East"
},
/turf/space,
-/area/tether_away/debrisfield/explored)
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
+"h" = (
+/turf/space,
+/area/space)
(1,1,1) = {"
h
@@ -175,19598 +172,19598 @@ h
"}
(2,1,1) = {"
h
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+a
h
"}
(3,1,1) = {"
h
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(4,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(5,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(6,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(7,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(8,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(9,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(10,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(11,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(12,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(13,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(14,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(15,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(16,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(17,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(18,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(19,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(20,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(21,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(22,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(23,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(24,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(25,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(26,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(27,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(28,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(29,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(30,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(31,1,1) = {"
h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-N
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(32,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(33,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(34,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(35,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(36,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(37,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(38,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(39,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(40,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(41,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(42,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(43,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(44,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(45,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(46,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(47,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(48,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(49,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(50,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(51,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(52,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(53,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(54,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(55,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(56,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(57,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(58,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(59,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(60,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(61,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(62,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(63,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(64,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(65,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(66,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(67,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(68,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(69,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(70,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(71,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(72,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(73,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(74,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(75,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(76,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(77,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(78,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(79,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(80,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(81,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(82,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(83,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(84,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(85,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(86,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(87,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(88,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(89,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(90,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(91,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(92,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(93,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(94,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(95,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(96,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(97,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(98,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(99,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(100,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(101,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(102,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(103,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(104,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(105,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(106,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(107,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(108,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(109,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(110,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(111,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(112,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(113,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(114,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(115,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(116,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(117,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(118,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(119,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(120,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(121,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(122,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(123,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(124,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(125,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-Z
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+c
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(126,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(127,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(128,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(129,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(130,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+h
+h
+h
+h
+h
+h
h
"}
(131,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(132,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(133,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(134,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(135,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(136,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(137,1,1) = {"
h
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(138,1,1) = {"
h
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(139,1,1) = {"
h
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
+h
h
"}
(140,1,1) = {"
diff --git a/maps/expedition_vr/space/guttersite.dmm b/maps/expedition_vr/space/guttersite.dmm
index 363458388a4..e1de319a18f 100644
--- a/maps/expedition_vr/space/guttersite.dmm
+++ b/maps/expedition_vr/space/guttersite.dmm
@@ -3083,9 +3083,6 @@
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/mob/living/simple_mob/humanoid/merc/ranged/laser{
- faction = "wolfgirl"
- },
/turf/simulated/floor/tiled/eris/dark/gray_perforated,
/area/tether_away/guttersite/security)
"hj" = (
@@ -3260,19 +3257,6 @@
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/mob/living/simple_mob/humanoid/merc/ranged/smg/poi{
- faction = "wolfgirl"
- },
-/mob/living/simple_mob/vore/wolfgirl,
-/turf/simulated/floor/tiled/eris/dark/gray_perforated,
-/area/tether_away/guttersite/security)
-"hE" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/mob/living/simple_mob/humanoid/merc/melee/poi{
- faction = "wolfgirl"
- },
/mob/living/simple_mob/vore/wolfgirl,
/turf/simulated/floor/tiled/eris/dark/gray_perforated,
/area/tether_away/guttersite/security)
@@ -3736,10 +3720,6 @@
},
/turf/simulated/floor/tiled/eris/dark/gray_perforated,
/area/tether_away/guttersite/vault)
-"iN" = (
-/obj/structure/table/rack/steel,
-/turf/simulated/floor/tiled/eris/dark/gray_perforated,
-/area/tether_away/guttersite/security)
"iO" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
@@ -3820,7 +3800,7 @@
/area/tether_away/guttersite/bridge)
"jd" = (
/obj/structure/table/rack/steel,
-/obj/random/firstaid,
+/obj/random/tetheraid,
/turf/simulated/floor/tiled/eris/dark/gray_perforated,
/area/tether_away/guttersite/security)
"jg" = (
@@ -12102,7 +12082,7 @@ fw
fw
fw
fw
-iN
+jd
fu
ag
ag
@@ -12244,7 +12224,7 @@ fw
fw
hg
fw
-iN
+jd
fu
ag
ag
@@ -12372,7 +12352,7 @@ fw
fw
fw
kE
-hE
+hD
fw
gX
fu
diff --git a/maps/offmap_vr/om_ships/abductor.dm b/maps/offmap_vr/om_ships/abductor.dm
new file mode 100644
index 00000000000..0b10f1c7568
--- /dev/null
+++ b/maps/offmap_vr/om_ships/abductor.dm
@@ -0,0 +1,88 @@
+// Compile in the map for CI testing if we're testing compileability of all the maps
+#if MAP_TEST
+#include "abductor.dmm"
+#endif
+
+// Map template for spawning the shuttle
+/datum/map_template/om_ships/abductor
+ name = "OM Ship - Abductor Ship (New Z)"
+ desc = "A ship for spooky aliens to kidnap farmers and unfortunate spacemen."
+ mappath = 'abductor.dmm'
+
+/area/abductor
+ requires_power = 0
+ icon_state = "purple"
+
+/area/abductor/
+ name = "Abductor Ship"
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+
+/area/abductor/interior
+ name = "Abductor Ship Interior"
+
+/area/abductor/exterior
+ name = "Abductor Ship Exterior"
+ has_gravity = 0
+
+// The 'Abductor Ship'
+/obj/effect/overmap/visitable/ship/abductor
+ name = "spacecraft"
+ desc = "Spacefaring vessel."
+ icon_state = "shuttle"
+ moving_state = "shuttle"
+ scanner_name = "unknown vessel"
+ scanner_desc = @{"[i]Registration[/i]: Unknown
+[i]Class[/i]: Corvette
+[i]Transponder[/i]: No transponder detected."
+[b]Notice[/b]: Deep scans detect unknown power signatures, and onboard transporter technology."}
+ color = "#11414c" //STEALTH
+ vessel_mass = 8000
+ vessel_size = SHIP_SIZE_SMALL
+ initial_generic_waypoints = list("abductor_port", "abductor_starboard")
+ fore_dir = NORTH
+
+/obj/item/weapon/paper/alien/abductor
+ name = "Read Me"
+ info = {"((Just to state the obvious here, but make sure you're reading OOC notes and all that. This role does not give you any special protections from the rules. Only abduct people who seem like they'd be cool with it.))
+
+Your mission is to travel out into space to retrieve individuals to experiment upon.
+
+Just what experiments you do are up to you, thought it should be noted, we can't do experiments on corpses, so you should be careful not to kill anyone in the process of acquiring your subject. Needless killing is grounds for termination from the organization.
+
+The experimentation process however can be fatal if necessary, so long as we get good data. ((And the person's cool with it OOCly))
+
+You will find that the ship is equipped with transporter technology. There are teleporters to the outside world on both the port and starboard sides. Each of the experimentation chambers is also outfitted with an advanced translocator device that is linked to its given room. You will want to ensure that you take a translocator device with you BEFORE you leave the ship, as there will be no other way for you to return without assistance.
+
+Your translocator device is arguably your most critical piece of equipment, and it is imperative that you not lose it, as possessing it would allow outsiders access to the ship.
+
+The center of the ship sports the shield generator, as well as the chemical and resleeving labs. It would be wise to ensure that if your experiments are fatal, to scan the mind and body of your subject before you proceed, so we can ensure that we can return the subjects to where we find them.
+
+To the starboard and port sides you will find a total of six experimentation rooms, and two transporter rooms, as well as two engine rooms at the aft.
+
+The aft center of the ship is the common equipment room. The items here are limited in quantity, so only take what you intend to use in your given task.
+
+At the fore of the vessel are the briefing rooms, and the bridge.
+
+Lastly, there are camera uplink consoles scattered around the ship. It is recommended that you take stock of where potential targets are before you depart.
+
+You will find a dispenser within the room you started in which contains some basic equipment that you may wish to take with you. Please do not loot the dispensers from other rooms unless the one assigned to it is okay with it.
+
+And finally, to leave this room, you will want to put your ID on the table, and pray to the corporate overlords to add access 777 to it. "}
+
+/obj/machinery/porta_turret/alien/abductor
+ name = "anti-personnel turret"
+ installation = /obj/item/weapon/gun/energy/gun/taser
+ lethal = FALSE
+ health = 500 // Sturdier turrets, non-lethal, for capturing people alive
+ maxhealth = 500
+ req_one_access = list(777) // The code I've been using for events, same as the doors
+
+/obj/machinery/porta_turret/alien/abductor/ion
+ name = "anti-personnel turret"
+ installation = /obj/item/weapon/gun/energy/ionrifle/weak
+ lethal = TRUE
+
+/obj/machinery/power/rtg/abductor/built/abductor
+ name = "Void Core"
+ power_gen = 5000000
+
diff --git a/maps/offmap_vr/om_ships/abductor.dmm b/maps/offmap_vr/om_ships/abductor.dmm
new file mode 100644
index 00000000000..11f3098ca68
--- /dev/null
+++ b/maps/offmap_vr/om_ships/abductor.dmm
@@ -0,0 +1,20849 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"af" = (
+/obj/machinery/porta_turret/alien/abductor/ion,
+/turf/simulated/shuttle/floor/alienplating/vacuum,
+/area/abductor/exterior)
+"bG" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/abductor/interior)
+"bP" = (
+/obj/machinery/transhuman/synthprinter,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"cF" = (
+/turf/space,
+/area/space)
+"db" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"dN" = (
+/obj/structure/closet/alien,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/weapon/storage/firstaid/clotting,
+/obj/item/weapon/storage/firstaid/clotting,
+/obj/item/weapon/storage/firstaid/bonemed,
+/obj/item/weapon/storage/firstaid/bonemed,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid,
+/obj/item/weapon/storage/firstaid,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/toxin,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"ed" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/turf/simulated/shuttle/wall/alien,
+/area/abductor/interior)
+"eu" = (
+/obj/structure/table/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"eS" = (
+/obj/machinery/vending/abductor,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"eV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"fo" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/exterior)
+"fw" = (
+/obj/structure/table/alien,
+/obj/item/device/radio_jammer/admin,
+/obj/item/device/radio_jammer/admin,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"fz" = (
+/obj/structure/table/alien,
+/obj/item/weapon/implanter,
+/obj/item/weapon/implanter,
+/obj/item/weapon/implant/freedom,
+/obj/item/weapon/implant/adrenalin,
+/obj/item/weapon/implant/sizecontrol,
+/obj/item/weapon/implant/sizecontrol,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"fQ" = (
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/teargas,
+/obj/item/weapon/grenade/flashbang/clusterbang,
+/obj/item/weapon/grenade/flashbang/clusterbang,
+/obj/item/weapon/storage/box/metalfoam,
+/obj/item/clothing/mask/gas/wwii,
+/obj/item/clothing/mask/gas,
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"gA" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"hj" = (
+/obj/structure/table/alien,
+/obj/item/device/paicard,
+/obj/item/device/paicard,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"hq" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Bridge";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"hQ" = (
+/obj/machinery/porta_turret/alien/abductor,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"ib" = (
+/obj/structure/table/alien,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"iF" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/exterior)
+"iH" = (
+/obj/item/weapon/paper/alien/abductor,
+/obj/structure/table/alien,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"ja" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
+ },
+/turf/simulated/shuttle/wall/alien,
+/area/abductor/interior)
+"jI" = (
+/obj/machinery/clonepod/transhuman/full/abductor{
+ name = "grower pod"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"kf" = (
+/obj/machinery/turretid/stun{
+ ailock = 1;
+ check_arrest = 0;
+ check_down = 0;
+ check_records = 0;
+ control_area = /area/abductor/interior;
+ desc = "A firewall prevents AIs from interacting with this device.";
+ name = "Ship interior turret control";
+ pixel_x = 32;
+ pixel_y = 64;
+ req_access = list(777);
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"kT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/porta_turret/alien/abductor,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"mh" = (
+/obj/machinery/transhuman/resleever/abductor{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"nv" = (
+/obj/structure/table/alien,
+/obj/item/clothing/mask/gas/voice,
+/obj/item/clothing/mask/gas/voice,
+/obj/item/device/universal_translator/ear,
+/obj/item/device/universal_translator/ear,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"nw" = (
+/obj/machinery/chemical_dispenser/ert/specialops/abductor{
+ density = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"nx" = (
+/obj/machinery/button/remote/airlock{
+ id = "abd1";
+ name = "Door Bolts";
+ pixel_y = 32;
+ req_one_access = list(777);
+ specialfunctions = 4
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"nA" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ id_tag = "abd3";
+ name = "Experimentation 3";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"pa" = (
+/obj/structure/closet/alien,
+/obj/item/device/sleevemate,
+/obj/item/device/flash,
+/obj/item/weapon/storage/firstaid/toxin,
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"pc" = (
+/obj/structure/table/alien,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"pB" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Briefing Room 5";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"pC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"pG" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ id_tag = "abd1";
+ name = "Experimentation 1";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"pV" = (
+/turf/simulated/shuttle/wall/alien,
+/area/abductor/interior)
+"qk" = (
+/obj/machinery/atmospherics/unary/engine/biggest{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating/vacuum,
+/area/abductor/exterior)
+"qo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"qu" = (
+/obj/structure/table/alien,
+/obj/item/clothing/shoes/boots/speed,
+/obj/item/clothing/shoes/boots/speed,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"qL" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"rg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"rB" = (
+/obj/structure/table/alien,
+/obj/item/device/perfect_tele/alien,
+/obj/item/device/perfect_tele/alien,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"rL" = (
+/obj/structure/table/alien,
+/obj/item/weapon/storage/belt/utility/alien/full,
+/obj/item/weapon/storage/belt/utility/alien/full,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"rP" = (
+/obj/machinery/button/remote/airlock{
+ dir = 1;
+ id = "abd6";
+ name = "Door Bolts";
+ pixel_y = -25;
+ req_one_access = list(777);
+ specialfunctions = 4
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"sv" = (
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/fans/hardlight/colorable/abductor,
+/turf/simulated/floor/plating,
+/area/abductor/interior)
+"td" = (
+/obj/structure/table/alien,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/device/sleevemate,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"tl" = (
+/turf/simulated/shuttle/floor/alienplating/vacuum,
+/area/abductor/exterior)
+"tI" = (
+/obj/structure/table/alien,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"tQ" = (
+/obj/structure/table/alien,
+/obj/item/clothing/head/helmet/alien,
+/obj/item/clothing/head/helmet/alien,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"uU" = (
+/obj/machinery/button/remote/airlock{
+ dir = 4;
+ id = "abd3";
+ name = "Door Bolts";
+ pixel_x = -27;
+ pixel_y = 2;
+ req_one_access = list(777);
+ specialfunctions = 4
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"vk" = (
+/obj/machinery/computer/ship/helm/abductor{
+ req_one_access = list()
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"vm" = (
+/obj/machinery/button/remote/airlock{
+ dir = 1;
+ id = "abd5";
+ name = "Door Bolts";
+ pixel_y = -25;
+ req_one_access = list(777);
+ specialfunctions = 4
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"vF" = (
+/obj/structure/closet/autolok_wall{
+ pixel_y = 32
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/weapon/gun/energy/gun/taser,
+/obj/item/device/flash,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"vS" = (
+/obj/structure/table/alien,
+/obj/item/weapon/storage/belt/medical/alien,
+/obj/item/weapon/storage/belt/medical/alien,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"wk" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Briefing Room 6";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"wA" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Starboard Engine Room";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"wZ" = (
+/turf/simulated/shuttle/wall/alien,
+/area/abductor)
+"xc" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"xg" = (
+/obj/machinery/vending/entertainer,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"xD" = (
+/obj/machinery/computer/transhuman/resleeving/abductor,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"yr" = (
+/obj/item/clothing/shoes/magboots,
+/obj/structure/closet/autolok_wall{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/item/weapon/gun/energy/gun/taser,
+/obj/item/device/flash,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"yB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"zk" = (
+/obj/machinery/vending/abductor{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"zu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"AZ" = (
+/obj/structure/table/alien,
+/obj/item/weapon/gun/energy/medigun,
+/obj/item/weapon/gun/energy/medigun,
+/obj/item/weapon/cell/infinite,
+/obj/item/weapon/cell/infinite,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Bv" = (
+/obj/structure/table/alien,
+/obj/item/weapon/reagent_containers/glass/bottle/adminordrazine,
+/obj/item/weapon/reagent_containers/glass/bottle/adminordrazine,
+/obj/item/weapon/reagent_containers/glass/bottle/adminordrazine,
+/obj/item/weapon/reagent_containers/glass/bottle/adminordrazine,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"DG" = (
+/obj/structure/table/alien,
+/obj/item/weapon/bluespace_harpoon,
+/obj/item/weapon/bluespace_harpoon,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"DI" = (
+/obj/machinery/computer/teleporter{
+ dir = 2
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"EA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Fh" = (
+/obj/structure/closet/autolok_wall{
+ pixel_x = 32
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/weapon/gun/energy/gun/taser,
+/obj/item/device/flash,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Fl" = (
+/obj/machinery/atmospherics/binary/pump/fuel,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Fq" = (
+/obj/item/weapon/bikehorn,
+/obj/item/toy/bosunwhistle,
+/obj/item/weapon/storage/bible,
+/obj/item/weapon/storage/photo_album,
+/obj/item/weapon/storage/trinketbox,
+/obj/item/weapon/storage/briefcase/clutch,
+/obj/item/weapon/storage/wallet/random,
+/obj/item/weapon/storage/wallet/womens,
+/obj/item/weapon/bananapeel,
+/obj/item/device/taperecorder,
+/obj/item/device/camera,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars/spyglass,
+/obj/item/device/laser_pointer/red,
+/obj/item/device/healthanalyzer,
+/obj/item/weapon/stamp/chameleon,
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Fw" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Briefing Room 2";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Ge" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1;
+ icon_state = "map-fuel"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"GB" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ icon_state = "door_locked";
+ id_tag = "abdex";
+ locked = 1;
+ name = "Fore Port Exterior Access";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"GE" = (
+/obj/structure/table/alien,
+/obj/item/clothing/suit/armor/alien,
+/obj/item/clothing/suit/armor/alien,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Hj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/turf/simulated/shuttle/wall/alien,
+/area/abductor/interior)
+"Hv" = (
+/obj/effect/overmap/visitable/ship/abductor,
+/turf/space,
+/area/space)
+"IH" = (
+/obj/structure/table/alien,
+/obj/item/clothing/mask/muzzle/tape,
+/obj/item/clothing/mask/muzzle/tape,
+/obj/item/clothing/mask/muzzle/tape,
+/obj/item/clothing/mask/muzzle/tape,
+/obj/item/clothing/mask/muzzle/tape,
+/obj/item/clothing/mask/muzzle/tape,
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/tape_roll,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Ji" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"JF" = (
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"JW" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Briefing Room 3";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Ke" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ id_tag = "abd5";
+ name = "Experimentation 5";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Kx" = (
+/obj/structure/table/alien,
+/obj/item/clothing/glasses/thermal/syndi,
+/obj/item/clothing/glasses/thermal/syndi,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"KD" = (
+/obj/machinery/turretid/stun{
+ ailock = 1;
+ check_arrest = 0;
+ check_down = 0;
+ check_records = 0;
+ control_area = /area/abductor/exterior;
+ desc = "A firewall prevents AIs from interacting with this device.";
+ name = "Ship exterior turret control";
+ pixel_y = 30;
+ req_access = list(777);
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"KJ" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "abductor_port";
+ name = "Near Unknown Vessel - Port"
+ },
+/turf/space,
+/area/space)
+"KW" = (
+/obj/structure/table/alien,
+/obj/item/weapon/storage/box/beakers,
+/obj/item/weapon/reagent_containers/dropper,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Lg" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ req_one_access = list(777)
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Ll" = (
+/obj/machinery/button/remote/airlock{
+ id = "abd2";
+ name = "Door Bolts";
+ pixel_y = 32;
+ req_one_access = list(777);
+ specialfunctions = 4
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"LH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall/alien,
+/area/abductor/interior)
+"LU" = (
+/obj/machinery/chem_master,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"LW" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ id_tag = "abd6";
+ name = "Experimentation 6";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Nk" = (
+/obj/structure/bed/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"Nq" = (
+/obj/structure/table/alien,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/melee/baton,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"ND" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Briefing Room 1";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Ov" = (
+/obj/structure/table/alien,
+/obj/item/weapon/gun/energy/sickshot,
+/obj/item/weapon/gun/energy/sickshot,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Oz" = (
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/phoronreinforced,
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/fans/hardlight/colorable/abductor,
+/turf/simulated/floor/plating,
+/area/abductor/interior)
+"OG" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Equipment Access";
+ req_one_access = list(777)
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"PJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"PO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Qe" = (
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/fans/hardlight/colorable/abductor,
+/turf/simulated/floor/plating,
+/area/abductor/interior)
+"Qf" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Qy" = (
+/obj/structure/closet/autolok_wall{
+ pixel_x = -32
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/weapon/gun/energy/gun/taser,
+/obj/item/device/flash,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"QI" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ id_tag = "abd4";
+ name = "Experimentation 4";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"QJ" = (
+/obj/structure/prop/alien/dispenser/twoway,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Rr" = (
+/obj/machinery/computer/ship/engines/abductor,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"RA" = (
+/obj/machinery/computer/ship/sensors/abductor,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"RQ" = (
+/obj/machinery/porta_turret/alien/abductor,
+/turf/simulated/shuttle/floor/alienplating/vacuum,
+/area/abductor/exterior)
+"SD" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Ti" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Port Transporter Room";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Tm" = (
+/obj/machinery/computer/ship/navigation/abductor,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Ty" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Briefing Room 4";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"TA" = (
+/obj/machinery/button/remote/airlock{
+ id = "abdex";
+ name = "Door Bolts";
+ pixel_y = 32;
+ req_one_access = list(777);
+ specialfunctions = 4
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Ub" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ id_tag = "abd2";
+ name = "Experimentation 2";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Uq" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "abductor_starboard";
+ name = "Near Unknown Vessel - Starboard"
+ },
+/turf/space,
+/area/space)
+"UJ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"UK" = (
+/obj/machinery/computer/security/abductor{
+ icon_screen = null;
+ icon_state = "camera_flipped"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"UL" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Vh" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"VT" = (
+/obj/machinery/power/shield_generator/charged,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"Wl" = (
+/obj/structure/table/alien,
+/obj/item/weapon/storage/box/gloves,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"WB" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/rtg/abductor/built/abductor,
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"WC" = (
+/obj/machinery/computer/security/abductor{
+ icon_screen = null
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"WX" = (
+/turf/simulated/shuttle/wall/alien/hard_corner,
+/area/abductor/interior)
+"Xp" = (
+/obj/machinery/button/remote/airlock{
+ dir = 8;
+ id = "abd4";
+ name = "Door Bolts";
+ pixel_x = 27;
+ pixel_y = 2;
+ req_one_access = list(777);
+ specialfunctions = 4
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"XY" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Port Engine Room";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"XZ" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ name = "Starboard Transporter Room";
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"YA" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/rtg/abductor/built/abductor,
+/turf/simulated/shuttle/floor/alien,
+/area/abductor/interior)
+"YT" = (
+/obj/structure/fans/hardlight/colorable/abductor,
+/obj/machinery/door/airlock/alien{
+ req_one_access = list(777)
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"YW" = (
+/obj/item/ammo_casing/microbattery/combat/stun,
+/obj/item/ammo_casing/microbattery/combat/stun,
+/obj/item/ammo_casing/microbattery/combat/stun,
+/obj/item/ammo_casing/microbattery/combat/stun,
+/obj/item/ammo_casing/microbattery/combat/stun,
+/obj/item/ammo_casing/microbattery/combat/stun,
+/obj/item/ammo_casing/microbattery/combat/stun,
+/obj/item/ammo_casing/microbattery/combat/stun,
+/obj/item/ammo_casing/microbattery/combat/stun,
+/obj/item/ammo_casing/microbattery/combat/stun,
+/obj/item/ammo_casing/microbattery/combat/net,
+/obj/item/ammo_casing/microbattery/combat/net,
+/obj/item/ammo_casing/microbattery/combat/net,
+/obj/item/ammo_casing/microbattery/combat/net,
+/obj/item/ammo_casing/microbattery/combat/net,
+/obj/item/ammo_casing/microbattery/combat/net,
+/obj/item/ammo_casing/microbattery/combat/stripper,
+/obj/item/ammo_casing/microbattery/combat/stripper,
+/obj/item/ammo_casing/microbattery/combat/stripper,
+/obj/item/ammo_casing/microbattery/combat/stripper,
+/obj/item/ammo_casing/microbattery/medical/omni3,
+/obj/item/ammo_casing/microbattery/medical/omni3,
+/obj/item/ammo_casing/microbattery/medical/omni3,
+/obj/item/ammo_casing/microbattery/medical/omni3,
+/obj/structure/closet/alien,
+/obj/item/ammo_magazine/cell_mag/advanced,
+/obj/item/ammo_magazine/cell_mag/advanced,
+/obj/item/ammo_magazine/cell_mag/advanced,
+/obj/item/ammo_magazine/cell_mag/advanced,
+/obj/item/weapon/gun/projectile/cell_loaded,
+/obj/item/weapon/gun/projectile/cell_loaded,
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+"Zk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8;
+ icon_state = "intact-fuel"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/abductor/interior)
+
+(1,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(2,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(3,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(4,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(5,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(6,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(7,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(8,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(9,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(10,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(11,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(12,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(13,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(14,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(15,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(16,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(17,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(18,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(19,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(20,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(21,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(22,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(23,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(24,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(25,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(26,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(27,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(28,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(29,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(30,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(31,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+KJ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(32,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(33,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(34,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(35,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(36,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(37,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(38,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(39,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(40,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(41,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(42,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(43,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(44,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(45,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(46,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+tl
+tl
+RQ
+tl
+tl
+tl
+RQ
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(47,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(48,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(49,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+RQ
+cF
+cF
+cF
+tl
+tl
+tl
+tl
+af
+pV
+pV
+SD
+SD
+SD
+SD
+SD
+ed
+tl
+tl
+qk
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(50,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+tl
+tl
+tl
+cF
+RQ
+tl
+tl
+tl
+tl
+tl
+pV
+gA
+PO
+Qf
+Qf
+Qf
+Qf
+LH
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(51,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+pV
+tl
+tl
+tl
+pV
+sv
+pV
+tl
+tl
+pV
+gA
+PJ
+Zk
+Zk
+Ge
+qo
+LH
+tl
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(52,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+pV
+pV
+qL
+pV
+pV
+tl
+pV
+pV
+eu
+pV
+pV
+tl
+pV
+gA
+UL
+UJ
+UJ
+UJ
+Fl
+Hj
+pV
+pV
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(53,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+bG
+SD
+SD
+pV
+pV
+pV
+SD
+uU
+SD
+pV
+pV
+pV
+gA
+PJ
+Zk
+Zk
+Ge
+PO
+ja
+tl
+tl
+qk
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(54,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+Ji
+SD
+SD
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+pV
+gA
+qo
+db
+db
+db
+db
+pV
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(55,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+af
+pV
+pV
+DI
+JF
+SD
+pV
+Vh
+SD
+JF
+Nk
+JF
+SD
+pa
+pV
+JF
+SD
+SD
+SD
+SD
+SD
+pV
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(56,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+pV
+pV
+pV
+pV
+SD
+SD
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+pV
+XY
+WX
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(57,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+pa
+pV
+pV
+UK
+SD
+JF
+pV
+pV
+SD
+SD
+SD
+pV
+pV
+pV
+SD
+pV
+pV
+pV
+pa
+pV
+pV
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(58,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+pV
+pV
+SD
+SD
+SD
+pV
+pV
+WX
+Ti
+WX
+pV
+pV
+JF
+pV
+pV
+SD
+SD
+SD
+pV
+pV
+SD
+SD
+SD
+pV
+pV
+tl
+af
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(59,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+RQ
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+WX
+SD
+SD
+SD
+pV
+nA
+pV
+SD
+SD
+SD
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+pV
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(60,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+Oz
+eu
+nx
+JF
+Nk
+JF
+SD
+JF
+pG
+JF
+SD
+SD
+SD
+JF
+SD
+SD
+SD
+JF
+Ke
+JF
+SD
+JF
+Nk
+JF
+vm
+eu
+Oz
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(61,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+iF
+pV
+sv
+pV
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+pV
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(62,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+SD
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+tl
+tl
+tl
+tl
+pV
+pV
+SD
+SD
+SD
+pV
+pV
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+pV
+pV
+SD
+SD
+SD
+pV
+pV
+tl
+tl
+tl
+RQ
+cF
+tl
+RQ
+tl
+cF
+tl
+RQ
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(63,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+WC
+SD
+SD
+pV
+pV
+tl
+tl
+cF
+cF
+RQ
+tl
+tl
+tl
+tl
+tl
+af
+tl
+tl
+tl
+pV
+pV
+Vh
+pV
+pV
+SD
+SD
+SD
+SD
+pV
+pV
+pV
+pV
+pV
+SD
+SD
+SD
+SD
+pV
+pV
+Vh
+pV
+pV
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+af
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(64,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+Oz
+ib
+JF
+SD
+SD
+pV
+pV
+tl
+af
+tl
+tl
+tl
+tl
+pV
+pV
+pV
+pV
+tl
+tl
+tl
+tl
+pV
+pV
+pV
+SD
+SD
+SD
+SD
+Qe
+Qe
+jI
+mh
+bP
+Qe
+Qe
+SD
+SD
+SD
+SD
+pV
+pV
+pV
+tl
+tl
+tl
+pV
+pV
+pV
+tl
+pV
+pV
+pV
+tl
+pV
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(65,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+ib
+SD
+SD
+SD
+SD
+pV
+wZ
+tl
+tl
+pV
+pV
+pV
+pV
+iH
+zk
+pV
+pV
+pV
+pV
+tl
+WX
+pV
+SD
+SD
+SD
+SD
+Qe
+Qe
+SD
+SD
+SD
+SD
+SD
+Qe
+Qe
+SD
+SD
+SD
+SD
+pV
+WX
+tl
+tl
+pV
+pV
+WB
+pV
+pV
+pV
+WB
+pV
+pV
+pV
+WB
+pV
+pV
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(66,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+af
+tl
+pV
+pV
+SD
+SD
+hQ
+SD
+SD
+pV
+pV
+tl
+pV
+iH
+zk
+pV
+SD
+SD
+pV
+iH
+zk
+pV
+fo
+GB
+SD
+SD
+SD
+SD
+Qe
+Qe
+WC
+SD
+SD
+JF
+SD
+SD
+WC
+Qe
+Qe
+SD
+SD
+SD
+SD
+GB
+fo
+pV
+pV
+SD
+pC
+SD
+dN
+SD
+pC
+SD
+fQ
+SD
+pC
+SD
+pV
+pV
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(67,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+SD
+kf
+JF
+SD
+SD
+pV
+tl
+pV
+SD
+SD
+pV
+JW
+pV
+pV
+SD
+SD
+pV
+pV
+pV
+SD
+SD
+SD
+pV
+Qe
+SD
+SD
+JF
+td
+xD
+IH
+JF
+SD
+SD
+Qe
+pV
+SD
+SD
+SD
+pV
+pV
+pV
+SD
+SD
+kT
+SD
+JF
+SD
+pC
+SD
+JF
+SD
+kT
+SD
+SD
+pV
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(68,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+pV
+QJ
+SD
+SD
+SD
+SD
+pV
+pV
+pV
+ND
+pV
+pV
+SD
+SD
+pV
+pB
+pV
+pV
+pV
+vF
+SD
+SD
+SD
+pV
+SD
+SD
+SD
+SD
+SD
+JF
+SD
+SD
+SD
+SD
+SD
+pV
+SD
+SD
+SD
+yr
+pV
+Kx
+SD
+SD
+pC
+AZ
+Ov
+Nq
+pC
+tQ
+GE
+qu
+pC
+SD
+SD
+Oz
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(69,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+Oz
+Rr
+SD
+SD
+SD
+SD
+SD
+Qy
+pV
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+pV
+SD
+SD
+SD
+SD
+pV
+KD
+SD
+SD
+SD
+JF
+JF
+JF
+SD
+SD
+SD
+SD
+pV
+SD
+SD
+SD
+SD
+pV
+fw
+SD
+SD
+rg
+SD
+SD
+SD
+pC
+SD
+SD
+SD
+rg
+tI
+SD
+Oz
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(70,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+Hv
+cF
+tl
+tl
+Oz
+vk
+JF
+RA
+hQ
+JF
+SD
+JF
+hq
+JF
+SD
+hQ
+JF
+JF
+JF
+hQ
+SD
+JF
+YT
+JF
+SD
+SD
+JF
+YT
+JF
+SD
+SD
+JF
+JF
+VT
+yB
+yB
+EA
+EA
+yB
+Lg
+yB
+EA
+EA
+yB
+OG
+yB
+EA
+EA
+zu
+EA
+EA
+yB
+zu
+yB
+EA
+EA
+eV
+Bv
+SD
+pV
+tl
+af
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(71,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+Oz
+Tm
+SD
+SD
+SD
+SD
+SD
+Fh
+pV
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+pV
+SD
+SD
+SD
+SD
+pV
+TA
+SD
+SD
+SD
+JF
+JF
+JF
+SD
+SD
+SD
+SD
+pV
+SD
+SD
+SD
+SD
+pV
+xg
+SD
+SD
+rg
+SD
+SD
+SD
+pC
+SD
+SD
+SD
+rg
+rB
+SD
+Oz
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(72,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+pV
+xc
+SD
+SD
+SD
+SD
+pV
+pV
+pV
+Fw
+pV
+pV
+SD
+SD
+pV
+wk
+pV
+pV
+pV
+vF
+SD
+SD
+SD
+pV
+SD
+SD
+SD
+SD
+SD
+JF
+SD
+SD
+SD
+SD
+SD
+pV
+SD
+SD
+SD
+yr
+pV
+nv
+SD
+SD
+pC
+DG
+pc
+fz
+pC
+rL
+hj
+vS
+pC
+SD
+SD
+Oz
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(73,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+tl
+pV
+SD
+SD
+pV
+Ty
+pV
+pV
+SD
+SD
+pV
+pV
+pV
+SD
+SD
+SD
+pV
+Qe
+SD
+SD
+JF
+SD
+SD
+SD
+JF
+SD
+SD
+Qe
+pV
+SD
+SD
+SD
+pV
+pV
+pV
+SD
+SD
+kT
+SD
+JF
+SD
+pC
+SD
+JF
+SD
+kT
+SD
+SD
+pV
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(74,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+af
+tl
+pV
+pV
+SD
+SD
+hQ
+SD
+SD
+pV
+pV
+tl
+pV
+iH
+eS
+pV
+SD
+SD
+pV
+iH
+eS
+pV
+fo
+GB
+SD
+SD
+SD
+SD
+Qe
+Qe
+UK
+SD
+SD
+JF
+SD
+SD
+UK
+Qe
+Qe
+SD
+SD
+SD
+SD
+GB
+fo
+pV
+pV
+SD
+pC
+SD
+YW
+SD
+pC
+SD
+Fq
+SD
+pC
+SD
+pV
+pV
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(75,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+ib
+SD
+SD
+SD
+SD
+pV
+pV
+tl
+tl
+pV
+pV
+pV
+pV
+iH
+eS
+pV
+pV
+pV
+pV
+tl
+WX
+pV
+SD
+SD
+SD
+SD
+Qe
+Qe
+SD
+LU
+SD
+KW
+SD
+Qe
+Qe
+SD
+SD
+SD
+SD
+pV
+WX
+tl
+tl
+pV
+pV
+YA
+pV
+pV
+pV
+YA
+pV
+pV
+pV
+YA
+pV
+pV
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(76,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+Oz
+ib
+JF
+SD
+SD
+pV
+pV
+tl
+af
+tl
+tl
+tl
+tl
+pV
+pV
+pV
+pV
+tl
+tl
+tl
+tl
+pV
+pV
+pV
+SD
+SD
+SD
+SD
+Qe
+Qe
+ib
+nw
+Wl
+Qe
+Qe
+SD
+SD
+SD
+SD
+pV
+pV
+pV
+tl
+tl
+tl
+pV
+pV
+pV
+tl
+pV
+pV
+pV
+tl
+pV
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(77,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+UK
+SD
+SD
+pV
+pV
+tl
+tl
+cF
+cF
+RQ
+tl
+tl
+tl
+tl
+tl
+af
+tl
+tl
+tl
+pV
+pV
+Vh
+pV
+pV
+SD
+SD
+SD
+SD
+pV
+pV
+pV
+pV
+pV
+SD
+SD
+SD
+SD
+pV
+pV
+Vh
+pV
+pV
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+af
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(78,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+ib
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+tl
+tl
+tl
+tl
+wZ
+pV
+SD
+SD
+SD
+pV
+pV
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+pV
+pV
+SD
+SD
+SD
+pV
+pV
+tl
+tl
+tl
+RQ
+cF
+tl
+RQ
+tl
+cF
+tl
+RQ
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(79,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+iF
+pV
+sv
+pV
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+pV
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+SD
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(80,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+Oz
+eu
+Ll
+JF
+Nk
+JF
+SD
+JF
+Ub
+JF
+SD
+SD
+SD
+JF
+SD
+SD
+SD
+JF
+LW
+JF
+SD
+JF
+Nk
+JF
+rP
+eu
+Oz
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(81,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+RQ
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+WX
+SD
+SD
+SD
+pV
+QI
+pV
+SD
+SD
+SD
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+pV
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(82,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+wZ
+pV
+SD
+SD
+SD
+pV
+pV
+WX
+XZ
+WX
+pV
+pV
+JF
+pV
+pV
+SD
+SD
+SD
+pV
+pV
+SD
+SD
+SD
+pV
+pV
+tl
+af
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(83,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+pa
+pV
+pV
+WC
+SD
+JF
+pV
+pV
+SD
+SD
+SD
+pV
+pV
+pV
+SD
+pV
+pV
+pV
+pa
+pV
+pV
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(84,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+pV
+pV
+pV
+pV
+SD
+SD
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+pV
+wA
+WX
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(85,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+af
+pV
+pV
+bG
+SD
+SD
+pV
+Vh
+SD
+JF
+Nk
+JF
+SD
+pa
+pV
+JF
+SD
+SD
+SD
+SD
+SD
+ed
+tl
+tl
+qk
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(86,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+Ji
+SD
+SD
+pV
+pV
+SD
+SD
+JF
+SD
+SD
+pV
+pV
+gA
+PO
+Qf
+Qf
+Qf
+Qf
+LH
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(87,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+DI
+JF
+SD
+pV
+pV
+pV
+SD
+Xp
+SD
+pV
+pV
+pV
+gA
+PJ
+Zk
+Zk
+Ge
+qo
+LH
+tl
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(88,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+pV
+pV
+qL
+pV
+pV
+tl
+pV
+pV
+eu
+pV
+pV
+tl
+pV
+gA
+UL
+UJ
+UJ
+UJ
+Fl
+Hj
+pV
+pV
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(89,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+pV
+tl
+tl
+tl
+pV
+sv
+pV
+tl
+tl
+pV
+gA
+PJ
+Zk
+Zk
+Ge
+PO
+ja
+tl
+tl
+qk
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(90,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+tl
+tl
+tl
+cF
+RQ
+tl
+tl
+tl
+tl
+tl
+pV
+gA
+qo
+db
+db
+db
+db
+pV
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(91,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+RQ
+cF
+cF
+cF
+tl
+tl
+tl
+tl
+af
+pV
+pV
+SD
+SD
+SD
+SD
+SD
+pV
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(92,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+tl
+RQ
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(93,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(94,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+RQ
+tl
+tl
+tl
+RQ
+tl
+tl
+tl
+RQ
+tl
+tl
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(95,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(96,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(97,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(98,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(99,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(100,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(101,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(102,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(103,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(104,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(105,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(106,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(107,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(108,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(109,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(110,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(111,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(112,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(113,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(114,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(115,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(116,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(117,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(118,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(119,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(120,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(121,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(122,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(123,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(124,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(125,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(126,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(127,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(128,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(129,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+Uq
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(130,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(131,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(132,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(133,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(134,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(135,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(136,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(137,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(138,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(139,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
+(140,1,1) = {"
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+cF
+"}
diff --git a/maps/offmap_vr/om_ships/cruiser.dmm b/maps/offmap_vr/om_ships/cruiser.dmm
index b7eed73db0b..63d53696698 100644
--- a/maps/offmap_vr/om_ships/cruiser.dmm
+++ b/maps/offmap_vr/om_ships/cruiser.dmm
@@ -2589,9 +2589,6 @@
dir = 4
},
/obj/structure/table/bench/steel,
-/obj/effect/landmark{
- name = "Commando"
- },
/turf/simulated/floor/tiled/steel_grid,
/area/mothership/security)
"fk" = (
@@ -2599,9 +2596,6 @@
dir = 8
},
/obj/structure/table/bench/steel,
-/obj/effect/landmark{
- name = "Commando"
- },
/turf/simulated/floor/tiled/steel_grid,
/area/mothership/security)
"fl" = (
@@ -2767,9 +2761,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark{
- name = "Commando"
- },
/turf/simulated/floor/tiled/steel_grid,
/area/mothership/security)
"fF" = (
@@ -2780,9 +2771,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark{
- name = "Commando"
- },
/turf/simulated/floor/tiled/steel_grid,
/area/mothership/security)
"fG" = (
@@ -2988,9 +2976,6 @@
/area/mothership/security)
"fZ" = (
/obj/structure/table/bench/steel,
-/obj/effect/landmark{
- name = "Commando"
- },
/turf/simulated/floor/tiled/steel_grid,
/area/mothership/security)
"ga" = (
@@ -3199,18 +3184,6 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/effect/landmark{
- name = "Commando"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/mothership/security)
-"gA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/landmark{
- name = "Commando"
- },
/turf/simulated/floor/tiled/steel_grid,
/area/mothership/security)
"gB" = (
@@ -8925,7 +8898,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 4
},
-/obj/machinery/portable_atmospherics/canister/empty/sleeping_agent,
+/obj/machinery/portable_atmospherics/canister/empty/nitrous_oxide,
/turf/simulated/floor/tiled/steel_grid,
/area/mothership/engineering)
"sj" = (
@@ -21633,7 +21606,7 @@ fh
fD
fX
gn
-gA
+gB
fY
hi
TE
diff --git a/maps/offmap_vr/om_ships/gecko_cr_wreck.dmm b/maps/offmap_vr/om_ships/gecko_cr_wreck.dmm
index d2b574efa35..45138547ce1 100644
--- a/maps/offmap_vr/om_ships/gecko_cr_wreck.dmm
+++ b/maps/offmap_vr/om_ships/gecko_cr_wreck.dmm
@@ -219,7 +219,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/closet/crate,
+/obj/structure/prop/blackbox/gecko_wreck,
/turf/simulated/floor/plating,
/area/shuttle/gecko_cr_cockpit_wreck)
"fL" = (
@@ -235,10 +235,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/effect/decal/remains/human,
-/obj/item/weapon/tank/air,
-/obj/item/clothing/suit/space/void/refurb/marine,
-/obj/item/clothing/head/helmet/space/void/refurb/marine,
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/gecko_cr_cockpit_wreck)
"fR" = (
@@ -1098,6 +1094,7 @@
dir = 1;
pixel_y = 42
},
+/obj/random/multiple/voidsuit/vintage,
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/gecko_cr_cockpit_wreck)
"vI" = (
@@ -1597,6 +1594,7 @@
},
/obj/effect/floor_decal/industrial/outline/grey,
/obj/machinery/light/flicker,
+/obj/random/multiple/voidsuit/vintage,
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/gecko_cr_cockpit_wreck)
"FA" = (
@@ -1962,10 +1960,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/effect/decal/remains,
-/obj/item/weapon/tank/oxygen/yellow,
-/obj/item/clothing/suit/space/void/refurb/engineering,
-/obj/item/clothing/head/helmet/space/void/refurb/engineering,
/turf/simulated/floor/tiled/techmaint/airless,
/area/shuttle/gecko_cr_engineering_wreck)
"LW" = (
diff --git a/maps/offmap_vr/om_ships/itglight.dm b/maps/offmap_vr/om_ships/itglight.dm
new file mode 100644
index 00000000000..f9a31db30df
--- /dev/null
+++ b/maps/offmap_vr/om_ships/itglight.dm
@@ -0,0 +1,153 @@
+// Compile in the map for CI testing if we're testing compileability of all the maps
+#if MAP_TEST
+#include "itglight.dmm"
+#endif
+
+// Map template for spawning the shuttle
+/datum/map_template/om_ships/itglight
+ name = "OM Ship - ITG Dauntless (New Z)"
+ desc = "A small, well armed interstellar cargo ship!!"
+ mappath = 'itglight.dmm'
+
+/area/itglight
+ requires_power = 1
+ icon_state = "purple"
+
+/area/itglight/cockpit
+ name = "Dauntless - Cockpit"
+/area/itglight/captain
+ name = "Dauntless - Captain's Quarters"
+/area/itglight/readyroom
+ name = "Dauntless - Ready Room"
+/area/itglight/metingroom
+ name = "Dauntless - Meeting Room"
+/area/itglight/forehall
+ name = "Dauntless - Fore Hall"
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/itglight/starboardcargo
+ name = "Dauntless - Starboard Cargo Bay"
+/area/itglight/starboardhighsec
+ name = "Dauntless - Starboard Secure Cargo"
+/area/itglight/starboarddocking
+ name = "Dauntless - Starboard Docking Port"
+/area/itglight/portcargo
+ name = "Dauntless - Port Cargo Bay"
+/area/itglight/porthighsec
+ name = "Dauntless - Port Secure Cargo"
+/area/itglight/portdocking
+ name = "Dauntless - Port Docking Port"
+/area/itglight/common
+ name = "Dauntless - Common Area"
+/area/itglight/lockers
+ name = "Dauntless - Locker Room"
+/area/itglight/passengersleeping
+ name = "Dauntless - Passenger Sleeping Barracks"
+/area/itglight/showers
+ name = "Dauntless - Showers"
+/area/itglight/restrooms
+ name = "Dauntless - Restrooms"
+/area/itglight/afthall
+ name = "Dauntless - Aft Hall"
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/itglight/medbay
+ name = "Dauntless - Medbay"
+/area/itglight/kitchen
+ name = "Dauntless - Kitchen"
+/area/itglight/crew1
+ name = "Dauntless - Crew Quarters - 1"
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/itglight/crew2
+ name = "Dauntless - Crew Quarters - 2"
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/itglight/crew3
+ name = "Dauntless - Crew Quarters - 3"
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/itglight/crew4
+ name = "Dauntless - Crew Quarters - 4"
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/itglight/shuttlebay
+ name = "Dauntless - Shuttle Bay"
+/area/itglight/starboardengi
+ name = "Dauntless - Starboard Engineering"
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/itglight/starboardsolars
+ name = "Dauntless - Starboard Solars"
+/area/itglight/portengi
+ name = "Dauntless - Port Engineering"
+ flags = RAD_SHIELDED | BLUE_SHIELDED
+/area/itglight/portsolars
+ name = "Dauntless - Port Solars"
+
+/area/shuttle/itglightshuttle
+ name = "ITG Shuttlecraft"
+ requires_power = 1
+ dynamic_lighting = 1
+
+// The 'Dauntless'
+/obj/effect/overmap/visitable/ship/itglight
+ name = "spacecraft"
+ desc = "Spacefaring vessel. Friendly IFF detected."
+ scanner_name = "ITG Dauntless"
+ scanner_desc = @{"[i]Registration[/i]: ITG Dauntless
+[i]Class[/i]: Small Cargo Frigate (Low Displacement)
+[i]Transponder[/i]: Transmitting (CIV), non-hostile"
+[b]Notice[/b]: May carry passengers"}
+ color = "#d98c1a" //orng
+ vessel_mass = 8000
+ vessel_size = SHIP_SIZE_SMALL
+ initial_generic_waypoints = list("itglight_fore", "itglight_aft", "itglight_port", "itglight_starboard", "itglight_port_dock", "itglight_starboard_dock")
+ initial_restricted_waypoints = list("ITG Shuttlecraft" = list("omship_spawn_itglightshuttle"))
+ fore_dir = NORTH
+
+ skybox_icon = 'itglight.dmi'
+ skybox_icon_state = "skybox"
+ skybox_pixel_x = 425
+ skybox_pixel_y = 200
+
+/obj/effect/overmap/visitable/ship/itglight/build_skybox_representation()
+ ..()
+ if(!cached_skybox_image)
+ return
+ cached_skybox_image.add_overlay("glow")
+
+// The shuttle's 'shuttle' computer
+/obj/machinery/computer/shuttle_control/explore/itglightshuttle
+ name = "shuttle control console"
+ shuttle_tag = "ITG Shuttlecraft"
+
+// A shuttle lateloader landmark
+/obj/effect/shuttle_landmark/shuttle_initializer/itglightshuttle
+ name = "ITG Dauntless - Shuttle Bay"
+ base_area = /area/itglight/shuttlebay
+ base_turf = /turf/simulated/floor/reinforced
+ landmark_tag = "omship_spawn_itglightshuttle"
+ docking_controller = "itglight_shuttlebay"
+ shuttle_type = /datum/shuttle/autodock/overmap/itglightshuttle
+
+// The 'shuttle'
+/datum/shuttle/autodock/overmap/itglightshuttle
+ name = "ITG Shuttlecraft"
+ current_location = "omship_spawn_itglightshuttle"
+ docking_controller_tag = "itglightshuttle_docker"
+ shuttle_area = /area/shuttle/itglightshuttle
+ fuel_consumption = 0
+ defer_initialisation = TRUE
+
+/obj/machinery/photocopier/faxmachine/itglight
+ department = "ITG Dauntless"
+ desc = "The ship's fax machine! It's a safe assumption that most of the departments listed aren't on your ship, since the ship only has one."
+
+/obj/item/weapon/paper/Dauntless
+ name = "Notes about Dauntless"
+ info = {"Welcome to the Ironcrest Transport Group
+ ITG Dauntless
+ Welcome to the Dauntless, there are a few things you should know.
+ WRITE DOWN THE DOCKING CODES
+ You can find them in the Captain's Quarters, and on the shuttle control computers. Keep them handy, just in case.
+ DON'T OVERDO IT
+ The Dauntless is FAST, but if you get her up to interstellar speeds, it's hard to slow back down again.
+ Additionally, exercise extreme caution around rocks and dust.
+ She has six point defense turrets, but her armor is thin, and she hasn't got any fancy shields.
+ She's not a combat ship, and she demands a competent pilot to treat her right.
+ Also d1a2 is best port, just saying.
+ Also the ship is 150 meters long and 92 meters wide, in case that is ever relevent."}
\ No newline at end of file
diff --git a/maps/offmap_vr/om_ships/itglight.dmi b/maps/offmap_vr/om_ships/itglight.dmi
new file mode 100644
index 00000000000..02ed9c35ed4
Binary files /dev/null and b/maps/offmap_vr/om_ships/itglight.dmi differ
diff --git a/maps/offmap_vr/om_ships/itglight.dmm b/maps/offmap_vr/om_ships/itglight.dmm
new file mode 100644
index 00000000000..4707ee1c881
--- /dev/null
+++ b/maps/offmap_vr/om_ships/itglight.dmm
@@ -0,0 +1,28457 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Captain's Quarters";
+ req_one_access = list(778)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/captain)
+"ab" = (
+/obj/structure/bed/chair/bay/chair/padded/red/bignest{
+ name = "large dog bed"
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/mob/living/simple_mob/vore/woof/cass,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"ac" = (
+/obj/machinery/smartfridge,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"ad" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "itglight_fore";
+ name = "ITG Dauntless - Fore"
+ },
+/turf/space,
+/area/space)
+"ae" = (
+/obj/structure/cable/pink{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "dauntless_pd"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/readyroom)
+"af" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/weapon/paper/dockingcodes,
+/obj/item/weapon/card/id/itg/event/captain,
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_y = -32
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/captain)
+"ag" = (
+/obj/structure/closet/walllocker_double{
+ dir = 8;
+ name = "Cook's Cabinet";
+ pixel_x = -27
+ },
+/obj/item/clothing/under/tactical,
+/obj/item/clothing/shoes/boots/workboots,
+/obj/item/clothing/accessory/armband/hydro,
+/obj/item/clothing/under/utility,
+/obj/item/clothing/under/utility/blue,
+/obj/item/clothing/under/utility/grey,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/duty,
+/obj/item/device/communicator,
+/obj/item/weapon/storage/backpack/messenger/hyd,
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/clothing/suit/storage/hooded/wintercoat/hydro,
+/obj/item/clothing/suit/chef,
+/obj/item/clothing/suit/chef/classic,
+/obj/item/clothing/head/chefhat,
+/obj/item/clothing/suit/storage/solgov/service/army/service,
+/obj/item/weapon/card/id/itg/event/service,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"ah" = (
+/obj/structure/closet/walllocker_double{
+ dir = 8;
+ name = "Engineer's Cabinet";
+ pixel_x = -27
+ },
+/obj/item/clothing/under/tactical,
+/obj/item/clothing/shoes/boots/workboots,
+/obj/item/clothing/accessory/armband/engine,
+/obj/item/clothing/under/utility,
+/obj/item/clothing/under/utility/blue,
+/obj/item/clothing/under/utility/grey,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/duty,
+/obj/item/device/communicator,
+/obj/item/weapon/storage/backpack/messenger/engi,
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/clothing/suit/storage/hooded/wintercoat/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/clothing/suit/storage/solgov/service/army/engineering,
+/obj/item/weapon/card/id/itg/event/engineer,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"ai" = (
+/obj/structure/closet/walllocker_double{
+ dir = 8;
+ name = "Medic's Cabinet";
+ pixel_x = -27
+ },
+/obj/item/clothing/under/tactical,
+/obj/item/clothing/shoes/boots/workboots,
+/obj/item/clothing/accessory/armband/med/cross,
+/obj/item/clothing/under/utility,
+/obj/item/clothing/under/utility/blue,
+/obj/item/clothing/under/utility/grey,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/duty,
+/obj/item/device/communicator,
+/obj/item/weapon/storage/backpack/messenger/med,
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/clothing/suit/storage/hooded/wintercoat/medical,
+/obj/item/clothing/suit/storage/solgov/service/army/medical,
+/obj/item/weapon/card/id/itg/event/medical,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"aj" = (
+/obj/structure/closet/walllocker_double{
+ dir = 8;
+ name = "Security's Cabinet";
+ pixel_x = -27
+ },
+/obj/item/clothing/under/tactical,
+/obj/item/clothing/shoes/boots/workboots,
+/obj/item/clothing/accessory/armband,
+/obj/item/clothing/under/utility,
+/obj/item/clothing/under/utility/blue,
+/obj/item/clothing/under/utility/grey,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/duty,
+/obj/item/device/communicator,
+/obj/item/weapon/storage/backpack/messenger/sec,
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/clothing/suit/storage/hooded/wintercoat/security,
+/obj/item/clothing/suit/storage/trench,
+/obj/item/clothing/suit/storage/solgov/service/army/security,
+/obj/item/weapon/card/id/itg/event/security,
+/obj/item/clothing/accessory/holster/hip,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"ak" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/browndouble,
+/obj/structure/curtain{
+ color = "#2e1604"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/captain)
+"aq" = (
+/obj/structure/closet/autolok_wall{
+ pixel_x = -24
+ },
+/obj/item/device/radio,
+/obj/structure/bed/chair/bay/chair/padded/brown{
+ dir = 4
+ },
+/obj/item/device/flash,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"as" = (
+/obj/effect/overmap/visitable/ship/itglight,
+/turf/space,
+/area/space)
+"av" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"aw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/captain)
+"ay" = (
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/captain)
+"aH" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"aK" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ id_tag = "itglightshuttle_docker_hatch";
+ name = "Shuttle Hatch"
+ },
+/obj/effect/map_helper/airlock/door/simple,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/itglightshuttle)
+"aN" = (
+/turf/simulated/floor/wood,
+/area/itglight/captain)
+"aQ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/shuttle/itglightshuttle)
+"aS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light_switch{
+ dir = 8;
+ on = 0;
+ pixel_x = 26;
+ pixel_y = -6
+ },
+/turf/simulated/floor/wood,
+/area/itglight/captain)
+"aU" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"aV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"aX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"aY" = (
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/itglight/cockpit)
+"bd" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"bi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/bed/chair/bay/chair/padded/brown{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"bk" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/button/remote/airlock{
+ id = "dauntlesspassengeraccessbolts";
+ name = "Door Bolts";
+ pixel_x = 32;
+ pixel_y = -32;
+ req_access = list(777);
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"bn" = (
+/obj/machinery/chem_master/condimaster,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"bp" = (
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/captain)
+"bq" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "dauntless_pd"
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/captain)
+"bs" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"bv" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"by" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/bed/chair/bay/chair/padded/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"bA" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/captain)
+"bC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"bE" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/wood,
+/area/itglight/captain)
+"bF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/itglight/captain)
+"bJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"bT" = (
+/turf/simulated/floor/airless,
+/area/itglight/cockpit)
+"cb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ on = 0;
+ pixel_x = -25;
+ pixel_y = 26
+ },
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"cf" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"ci" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/bed/chair/bay/chair/padded/brown{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"cl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ id_tag = "dauntlesspq4";
+ name = "Room 4"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/crew4)
+"cp" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/browndouble,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew4)
+"cv" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/captain)
+"cw" = (
+/obj/machinery/telecomms/allinone,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"cx" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"cA" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"cM" = (
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/readyroom)
+"cR" = (
+/obj/structure/bed/chair/bay/chair/padded/brown{
+ dir = 8
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ pixel_y = -25
+ },
+/obj/structure/cable/pink,
+/turf/simulated/floor/wood,
+/area/itglight/captain)
+"cU" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/handrail,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"cV" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/itglight/shuttlebay)
+"cW" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/captain)
+"cY" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/itglight/captain)
+"dd" = (
+/obj/machinery/computer/operating{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/techfloor_grid,
+/area/itglight/medbay)
+"dj" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/airless,
+/area/itglight/cockpit)
+"dq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen/blade/blue{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/pen/blade/red{
+ pixel_x = -4;
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"ds" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/cockpit)
+"dv" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"dB" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"dC" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"dD" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/readyroom)
+"dE" = (
+/turf/simulated/floor/reinforced,
+/area/itglight/shuttlebay)
+"dO" = (
+/obj/structure/bed/chair/bay/chair/padded/brown{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"dP" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"dR" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"dS" = (
+/obj/machinery/oxygen_pump/anesthetic{
+ pixel_x = -28
+ },
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/eris/white/techfloor_grid,
+/area/itglight/medbay)
+"ea" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"eb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/itglightshuttle)
+"ec" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/mre/random,
+/obj/random/plushie,
+/obj/random/contraband/nofail,
+/obj/random/drinksoft,
+/obj/item/device/radio,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew1)
+"ed" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ pixel_y = -25
+ },
+/obj/structure/cable/pink,
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"ei" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"el" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_mining{
+ name = "Bridge";
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/cockpit)
+"em" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/captain)
+"eo" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/random/multiple/corp_crate,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"eq" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"eu" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"ew" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"eA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"eE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/handrail,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"eF" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"eI" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/material/kitchen/rollingpin,
+/obj/item/weapon/book/manual/chef_recipes,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"eJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"eQ" = (
+/obj/structure/sign/itg{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"eS" = (
+/obj/machinery/vending/medical{
+ req_access = null
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"eU" = (
+/obj/structure/handrail,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"eV" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"eW" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/item/weapon/rig/eva,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"eZ" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"fa" = (
+/obj/machinery/computer/ship/engines,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"fb" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"fc" = (
+/obj/machinery/chem_master,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -25
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"fe" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/ert/specialops,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"fg" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/random/multiple/voidsuit,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"fr" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/random/multiple/large_corp_crate,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"fz" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/closet/walllocker_double{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/item/clothing/under/rank/medical/scrubs,
+/obj/item/clothing/under/rank/medical/scrubs,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/clothing/suit/storage/toggle/labcoat,
+/obj/item/clothing/suit/storage/toggle/labcoat,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"fC" = (
+/turf/simulated/wall/rshull,
+/area/itglight/shuttlebay)
+"fE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"fP" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"fX" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/reagent_dispensers/fueltank/high,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"fY" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"ga" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"gc" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/reagentgrinder,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"ge" = (
+/obj/machinery/computer/ship/sensors,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"gh" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"gk" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"go" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ on = 0;
+ pixel_x = 26;
+ pixel_y = 27
+ },
+/obj/machinery/button/remote/airlock{
+ id = "dauntlesspq2";
+ name = "Door Bolts";
+ pixel_x = 24;
+ pixel_y = 36;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew2)
+"gt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/bed/chair/bay/chair/padded/blue{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"gu" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/wooden_reinforced,
+/obj/item/device/flashlight/lamp/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/captain)
+"gA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"gG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"gH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1;
+ name = "Scrubber to Waste"
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"gK" = (
+/turf/simulated/wall/rshull,
+/area/itglight/portcargo)
+"gL" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/captain)
+"gO" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/captain)
+"gS" = (
+/obj/structure/bed/chair/sofa/brown/right,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 25
+ },
+/turf/simulated/floor/wood,
+/area/itglight/captain)
+"gW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"gX" = (
+/obj/structure/bed/chair/sofa/brown/left,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/wood,
+/area/itglight/captain)
+"hc" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1380;
+ master_tag = "itglight_dock_1";
+ name = "port exterior access button";
+ pixel_x = -6;
+ pixel_y = 65
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1380;
+ master_tag = "itglight_dock_2";
+ name = "starboard exterior access button";
+ pixel_x = 4;
+ pixel_y = 65
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/itglight/cockpit)
+"hi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"hk" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/weapon/paper/Dauntless,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"hm" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"hn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"hq" = (
+/obj/machinery/computer/ship/navigation{
+ pixel_y = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "dauntless_blastdoors";
+ name = "blast shields";
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/itglight/cockpit)
+"hr" = (
+/obj/structure/sign/itg{
+ dir = 8;
+ pixel_x = 32
+ },
+/turf/space,
+/area/space)
+"hs" = (
+/obj/structure/bed/chair/bay/chair/padded/brown{
+ dir = 8
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"hw" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"hy" = (
+/obj/machinery/computer/ship/helm{
+ pixel_y = 4;
+ req_one_access = list()
+ },
+/obj/structure/sign/itg{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/itglight/cockpit)
+"hC" = (
+/obj/machinery/computer/shuttle_control/explore/itglightshuttle{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/itglight/cockpit)
+"hF" = (
+/turf/simulated/wall/rshull,
+/area/itglight/cockpit)
+"hG" = (
+/obj/machinery/bodyscanner,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"hK" = (
+/obj/structure/sign/itg{
+ dir = 4;
+ pixel_x = -32
+ },
+/turf/space,
+/area/space)
+"hO" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"hS" = (
+/obj/structure/bed/chair/bay/chair/padded/blue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/itglight/cockpit)
+"hT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"hU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/captain)
+"hY" = (
+/turf/simulated/wall/rshull,
+/area/itglight/starboardcargo)
+"ic" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ on = 0;
+ pixel_x = 26;
+ pixel_y = 27
+ },
+/obj/machinery/button/remote/airlock{
+ id = "dauntlesspq4";
+ name = "Door Bolts";
+ pixel_x = 24;
+ pixel_y = 36;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew4)
+"ie" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/medbay)
+"ih" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"ii" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/button/remote/airlock{
+ dir = 4;
+ id = "itglight_shuttle_port";
+ name = "Shuttle Hatch Bolts";
+ pixel_x = -24;
+ pixel_y = 23;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/shuttle/itglightshuttle)
+"ik" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/catwalk_plated,
+/turf/simulated/floor,
+/area/itglight/cockpit)
+"im" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"ip" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/mre/random,
+/obj/random/plushie,
+/obj/random/contraband/nofail,
+/obj/random/drinksoft,
+/obj/item/device/radio,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew2)
+"iq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Starboard Engineering";
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/starboardengi)
+"ir" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"it" = (
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/catwalk_plated,
+/turf/simulated/floor,
+/area/itglight/cockpit)
+"iu" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"ix" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"iC" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"iI" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"iJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Ready Room";
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/readyroom)
+"iR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/readyroom)
+"iT" = (
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/shuttle/itglightshuttle)
+"iU" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/metingroom)
+"iZ" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"jg" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/metalfoam,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/device/assembly/prox_sensor,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -25
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"jj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"jm" = (
+/obj/structure/closet/autolok_wall{
+ pixel_x = 24
+ },
+/obj/item/device/radio,
+/obj/structure/bed/chair/bay/chair/padded/brown{
+ dir = 8
+ },
+/obj/item/device/flash,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"jo" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"js" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"jB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ icon_state = "map-supply"
+ },
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"jE" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/photocopier/faxmachine/itglight,
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"jF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"jG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -25
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"jL" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"jQ" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"jV" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ id_tag = "itglight_shuttle_port";
+ locked = 1;
+ name = "Shuttle Hatch";
+ req_one_access = list()
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/itglightshuttle)
+"ka" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/itglight/cockpit)
+"kn" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/itglight/cockpit)
+"ko" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"kp" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/itglight/cockpit)
+"kq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"ky" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ nightshift_setting = 3;
+ pixel_y = -25
+ },
+/obj/structure/cable/pink,
+/obj/item/device/radio,
+/obj/structure/closet/autolok_wall{
+ pixel_x = 32
+ },
+/obj/item/device/flash,
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"kH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/kitchen)
+"kJ" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"kN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"kO" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ icon_state = "map-supply"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"kR" = (
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"kU" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"kY" = (
+/turf/simulated/floor/airless,
+/area/itglight/starboardengi)
+"la" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"lh" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"li" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/wall/rshull,
+/area/itglight/starboardengi)
+"lo" = (
+/turf/simulated/floor/airless,
+/area/itglight/readyroom)
+"ls" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"lu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Bridge";
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/cockpit)
+"lv" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portengi)
+"lw" = (
+/obj/machinery/vending/blood,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"lD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 2
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ on = 0;
+ pixel_x = -25;
+ pixel_y = 26
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -26
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -34
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"lH" = (
+/turf/simulated/wall/shull,
+/area/itglight/cockpit)
+"lK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ name = "Air to Distro"
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"lO" = (
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/spacespice,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/material/knife/butch,
+/obj/item/weapon/material/minihoe,
+/obj/item/weapon/material/knife/machete/hatchet,
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/obj/structure/closet,
+/obj/item/robot_parts/l_arm,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/device/analyzer/plant_analyzer,
+/obj/item/device/analyzer/plant_analyzer,
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"lR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"lV" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = "itglight_port_sensor";
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "itglight_port_pump"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"mf" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/box/sinpockets,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/metingroom)
+"mg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"mo" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "dauntless_pd"
+ },
+/obj/structure/cable/pink{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/shuttlebay)
+"mq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 2
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"ms" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"mu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"mF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"mL" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"mR" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/bed/chair/bay/chair/padded/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"mZ" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 8;
+ nightshift_setting = 3;
+ pixel_x = -25
+ },
+/obj/structure/cable/pink{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"na" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"nb" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/shuttle/itglightshuttle)
+"ne" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"nf" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"nh" = (
+/turf/simulated/wall/shull,
+/area/itglight/forehall)
+"nl" = (
+/obj/structure/closet/walllocker_double{
+ pixel_y = 27
+ },
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"nq" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"nu" = (
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"nv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/mining{
+ name = "Crew Access";
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/forehall)
+"nx" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/storage/briefcase/inflatable,
+/obj/item/weapon/storage/briefcase/inflatable,
+/obj/item/weapon/storage/briefcase/inflatable,
+/obj/item/weapon/storage/briefcase/inflatable,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"nH" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/itglightshuttle)
+"nJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"nO" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"nP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"nR" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "itglight_port";
+ pixel_y = 23;
+ tag_airpump = "itglight_port_pump";
+ tag_chamber_sensor = "itglight_port_sensor";
+ tag_exterior_door = "itglight_port_outer";
+ tag_interior_door = "itglight_port_inner"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1380;
+ id_tag = "itglight_port_pump"
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"nW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"oc" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/multiple/voidsuit,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"od" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"of" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"om" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"on" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"oq" = (
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"ov" = (
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/catwalk_plated,
+/turf/simulated/floor,
+/area/itglight/metingroom)
+"ow" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_platform,
+/area/itglight/cockpit)
+"oy" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"oz" = (
+/obj/structure/bed/chair/bay/chair/padded/brown,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"oA" = (
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/monofloor,
+/area/itglight/cockpit)
+"oB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"oE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"oH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"oI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"oK" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"oN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"oR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"oT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"oU" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"pi" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"pl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 8;
+ nightshift_setting = 3;
+ pixel_x = -25
+ },
+/obj/structure/cable/pink{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/fiftyspawner/phoron,
+/obj/fiftyspawner/phoron,
+/obj/fiftyspawner/phoron,
+/obj/fiftyspawner/phoron,
+/obj/fiftyspawner/phoron,
+/obj/fiftyspawner/phoron,
+/obj/structure/closet/crate,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"pm" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"pn" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"po" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"py" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9;
+ icon_state = "intact-scrubbers"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"pE" = (
+/obj/machinery/microwave,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"pG" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"pH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"pL" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"pU" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ icon_state = "map-supply"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"pW" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ on = 0;
+ pixel_x = 26;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"qg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"qh" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"qo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"qq" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"qt" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"qA" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"qB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"qG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"qK" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/metingroom)
+"qN" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/metingroom)
+"qR" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel/hull,
+/obj/fiftyspawner/steel/hull,
+/obj/fiftyspawner/rglass,
+/obj/fiftyspawner/rglass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"qU" = (
+/obj/item/weapon/stool/baystool/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"qW" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/obj/item/device/radio/headset{
+ adhoc_fallback = 1;
+ desc = "An updated, modular intercom that fits over the head. Takes encryption keys, also works as a shortwave radio.";
+ name = "dauntless headset"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"qZ" = (
+/turf/simulated/wall/rshull,
+/area/itglight/restrooms)
+"rf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"rg" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"rh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"rn" = (
+/obj/machinery/appliance/cooker/grill,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"rq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"rw" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/space/void/engineering/alt,
+/obj/item/clothing/head/helmet/space/void/engineering/alt,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"rC" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/shuttle/itglightshuttle)
+"rF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardengi)
+"rJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"rM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"rZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"sf" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/space/void,
+/obj/item/clothing/head/helmet/space/void,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"sq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"su" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"sx" = (
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"sy" = (
+/turf/simulated/floor/airless,
+/area/itglight/captain)
+"sF" = (
+/turf/space,
+/area/itglight/starboardengi)
+"sP" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 1
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/itglightshuttle)
+"sQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light_switch{
+ dir = 4;
+ on = 0;
+ pixel_x = -24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"sR" = (
+/obj/machinery/vending/tool{
+ req_access = list(777)
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"sX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portengi)
+"ta" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"te" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1;
+ density = 0;
+ name = "trash bin";
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"tg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"tj" = (
+/turf/simulated/floor/airless,
+/area/itglight/shuttlebay)
+"tl" = (
+/obj/structure/sign/itg{
+ dir = 8;
+ pixel_x = 32
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"to" = (
+/obj/machinery/power/solar_control,
+/obj/structure/cable/heavyduty{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"tq" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"tr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"tx" = (
+/obj/structure/sink{
+ pixel_y = 21
+ },
+/obj/structure/closet/walllocker_double{
+ pixel_x = -16;
+ pixel_y = 30
+ },
+/obj/item/weapon/storage/box/masks,
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/floor/tiled/eris/white/techfloor_grid,
+/area/itglight/medbay)
+"tz" = (
+/obj/machinery/button/remote/airlock{
+ id = "dauntlessstarboardcargobolts";
+ name = "Door Bolts";
+ req_access = list(777);
+ specialfunctions = 4
+ },
+/turf/simulated/wall/shull,
+/area/itglight/starboardcargo)
+"tC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"tD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"tE" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/handrail,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"tH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"tL" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/catwalk_plated,
+/turf/simulated/floor,
+/area/itglight/metingroom)
+"tP" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor,
+/area/itglight/forehall)
+"ud" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"uf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"uk" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"ul" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"um" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"un" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"up" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/random/multiple/large_corp_crate,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"uq" = (
+/turf/simulated/wall/rshull,
+/area/itglight/starboarddocking)
+"uv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"uy" = (
+/obj/structure/cable,
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"uz" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"uF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"uI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"uX" = (
+/obj/structure/bed/chair/bay/chair/padded/brown{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"vf" = (
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"vi" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"vl" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/space,
+/area/itglight/portengi)
+"vr" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/device/lightreplacer,
+/obj/item/device/lightreplacer,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"vy" = (
+/turf/simulated/wall/rshull,
+/area/itglight/portengi)
+"vI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/light/small,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew4)
+"vO" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"vR" = (
+/obj/machinery/newscaster{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"vX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"wa" = (
+/obj/machinery/smartfridge/chemistry,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"wg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"wj" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"wk" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"wm" = (
+/obj/item/weapon/bedsheet/brown,
+/obj/structure/curtain/black,
+/obj/structure/bed/padded,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"wt" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "itglight_starboard";
+ pixel_y = 23;
+ tag_airpump = "itglight_starboard_pump";
+ tag_chamber_sensor = "itglight_starboard_sensor";
+ tag_exterior_door = "itglight_starboard_outer";
+ tag_interior_door = "itglight_starboard_inner"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1380;
+ id_tag = "itglight_starboard_pump"
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"wu" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"ww" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"wy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"wz" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"wA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"wD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"wG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ id_tag = "dauntlesspq2";
+ name = "Room 2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/crew2)
+"wI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"wK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Equipment Access";
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/starboardhighsec)
+"wL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/mining{
+ id_tag = "dauntlesspassengeraccessbolts";
+ name = "Cargo Access";
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/common)
+"wM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"wN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"wS" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"wV" = (
+/obj/machinery/transhuman/resleever,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"wW" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"wX" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"wY" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"xi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Locker Room"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/lockers)
+"xj" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "itglight_dock_1_pump"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/itglight/portdocking)
+"xk" = (
+/obj/structure/bed/chair/bay/chair/padded/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"xp" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"xr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"xw" = (
+/obj/structure/closet/secure_closet/personal{
+ req_access = list(778)
+ },
+/obj/item/device/radio,
+/obj/random/drinksoft,
+/obj/random/contraband/nofail,
+/obj/random/plushie,
+/obj/item/weapon/storage/mre/random,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/clothing/suit/space/void/captain,
+/obj/item/clothing/head/helmet/space/void/captain,
+/obj/item/weapon/card/id/itg/event,
+/obj/item/weapon/card/id/itg/event,
+/obj/item/weapon/card/id/itg/event,
+/obj/item/weapon/card/id/itg/event,
+/obj/item/weapon/card/id/itg/event,
+/obj/item/weapon/card/id/itg/event/passengerliason,
+/obj/item/weapon/card/id/itg/event/pilot,
+/obj/item/weapon/card/id/itg/event/research,
+/obj/item/weapon/card/id/itg/event/research,
+/obj/item/weapon/card/id/itg/event/security,
+/obj/item/weapon/card/id/itg/event/service,
+/obj/item/weapon/card/id/itg/event/engineer,
+/obj/item/weapon/card/id/itg/event/engineer,
+/obj/item/weapon/card/id/itg/event/medical,
+/obj/item/weapon/card/id/itg/event/medical,
+/obj/item/clothing/suit/storage/hooded/wintercoat/cargo{
+ name = "dauntless winter coat"
+ },
+/obj/item/clothing/suit/pirate{
+ desc = "The Captain's coat!";
+ name = "captain's coat"
+ },
+/obj/item/clothing/suit/storage/solgov/service/army/command,
+/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,
+/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,
+/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/clothing/accessory/holster/hip,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/captain)
+"xx" = (
+/turf/simulated/wall/rshull,
+/area/itglight/medbay)
+"xy" = (
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"xE" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ pixel_y = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portdocking)
+"xM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew2)
+"xO" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"xT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
+ },
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"xZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"yc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"yd" = (
+/obj/machinery/vending/engivend{
+ req_access = list(777)
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"yf" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"ym" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ icon_state = "map-supply"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"yn" = (
+/turf/simulated/wall/rshull,
+/area/itglight/lockers)
+"yw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"yy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ id_tag = "itglight_port_inner"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1380;
+ master_tag = "itglight_port";
+ name = "interior access button";
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/portengi)
+"yD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"yE" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/itglightshuttle)
+"yF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"yI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/light/small,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew2)
+"yJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/mining{
+ name = "High Security Cargo";
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/porthighsec)
+"yK" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/computer/security/telescreen/entertainment{
+ desc = "Looks like it's set to Free-Anur-Entertanment, I wonder what else is on?";
+ icon_state = "frame";
+ pixel_y = 62
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"yN" = (
+/obj/machinery/seed_extractor,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"yO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"yP" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"yQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew3)
+"yS" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"yT" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "itglight_dock_2_pump"
+ },
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/itglight/starboarddocking)
+"yY" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ pixel_y = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboarddocking)
+"yZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"za" = (
+/obj/machinery/vending/engineering{
+ req_access = list(777)
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"zg" = (
+/turf/simulated/shuttle/wall/voidcraft,
+/area/shuttle/itglightshuttle)
+"zj" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"zm" = (
+/turf/simulated/wall/rshull,
+/area/itglight/starboardengi)
+"zn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"zp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"zq" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4;
+ icon_state = "map"
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"zr" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable/heavyduty,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"zs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/light/small,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew3)
+"zt" = (
+/obj/structure/sign/itg,
+/turf/simulated/wall/rshull,
+/area/itglight/portdocking)
+"zv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"zB" = (
+/turf/space,
+/area/itglight/portengi)
+"zD" = (
+/obj/structure/sign/itg{
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"zG" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "itglight_dock_1_pump"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/itglight/portdocking)
+"zL" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ nightshift_setting = 3;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"zM" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardengi)
+"zQ" = (
+/obj/machinery/atmospherics/binary/passive_gate/on,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"zR" = (
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"zS" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portengi)
+"Aa" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"Ab" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Ae" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1;
+ density = 0;
+ name = "trash bin";
+ pixel_x = -8;
+ pixel_y = 17;
+ plane = -34
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"Ar" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"As" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"Au" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew4)
+"AF" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"AG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Passenger Common Sleeping"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/passengersleeping)
+"AH" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/device/healthanalyzer,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/device/defib_kit/loaded,
+/obj/item/device/robotanalyzer{
+ pixel_y = -8
+ },
+/obj/item/stack/nanopaste/advanced,
+/turf/simulated/floor/tiled/eris/white/techfloor_grid,
+/area/itglight/medbay)
+"AJ" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ pixel_y = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"AK" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"AM" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"AU" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"AZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "itglight_starboard_pump"
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = "itglight_starboard_sensor";
+ pixel_y = -25
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Ba" = (
+/obj/structure/closet/wardrobe/mixed,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"Bj" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "itglight_dock_2_pump"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/itglight/starboarddocking)
+"Bo" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboarddocking)
+"Bq" = (
+/obj/machinery/atmospherics/binary/passive_gate/on,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"Bt" = (
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"BA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew3)
+"BJ" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/itglightshuttle)
+"BM" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"BP" = (
+/obj/machinery/meter{
+ frequency = 1443;
+ id = "dist_aux_meter";
+ name = "Distribution Loop"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"BR" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "itglight_dock_1";
+ landmark_tag = "itglight_port_dock";
+ name = "ITG Dauntless - Dock Port"
+ },
+/turf/space,
+/area/space)
+"BS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/mre/random,
+/obj/random/plushie,
+/obj/random/contraband/nofail,
+/obj/random/drinksoft,
+/obj/item/device/radio,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew4)
+"BU" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/browndouble,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew1)
+"BW" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"BX" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"Ca" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "itglight_dock_1_outer";
+ locked = 1;
+ name = "Port External Airlock"
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/portdocking)
+"Cg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"Cl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew2)
+"Cp" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/porthighsec)
+"Cq" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1380;
+ master_tag = "itglight_dock_1";
+ name = "exterior access button";
+ pixel_x = -27;
+ pixel_y = -27
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portdocking)
+"Ct" = (
+/obj/item/weapon/stool/baystool/padded,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"Cy" = (
+/obj/machinery/meter{
+ frequency = 1443;
+ id = "dist_aux_meter";
+ name = "Distribution Loop"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"CA" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"CH" = (
+/turf/simulated/wall/shull,
+/area/itglight/starboardhighsec)
+"CI" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable/heavyduty,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"CJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portdocking)
+"CM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/wall/shull,
+/area/itglight/portdocking)
+"CO" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "itglight_dock_1";
+ pixel_x = 18;
+ pixel_y = -32;
+ tag_airpump = "itglight_dock_1_pump";
+ tag_chamber_sensor = "itglight_dock_1_sensor";
+ tag_exterior_door = "itglight_dock_1_outer";
+ tag_interior_door = "itglight_dock_1_inner"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portdocking)
+"CQ" = (
+/obj/machinery/suit_cycler/vintage/tcrew,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"CU" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"CX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"CY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/shuttle/itglightshuttle)
+"Db" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ id_tag = "itglight_dock_1_inner"
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1380;
+ master_tag = "itglight_dock_1";
+ name = "interior access button";
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/portdocking)
+"Dc" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Dg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Dk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/handrail{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Do" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"Dp" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"Dv" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"Dx" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/mre/random,
+/obj/random/plushie,
+/obj/random/contraband/nofail,
+/obj/random/drinksoft,
+/obj/item/device/radio,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew3)
+"Dy" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/catwalk_plated,
+/turf/simulated/floor,
+/area/itglight/portcargo)
+"Dz" = (
+/turf/simulated/wall/shull,
+/area/itglight/lockers)
+"DB" = (
+/turf/simulated/wall/shull,
+/area/itglight/portdocking)
+"DF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_mining{
+ id_tag = "dauntlessportcargobolts";
+ name = "Port Cargo Access";
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/portcargo)
+"DH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"DI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"DJ" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/emblem/itgdauntless{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"DK" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/effect/floor_decal/emblem/itgdauntless,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"DP" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/emblem/itgdauntless{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"DQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_mining{
+ id_tag = "dauntlessstarboardcargobolts";
+ name = "Starboard Cargo Access";
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/starboardcargo)
+"DZ" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/shuttlebay)
+"Eg" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"Ej" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/catwalk_plated,
+/turf/simulated/floor,
+/area/itglight/starboardcargo)
+"Ek" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"En" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew1)
+"Ep" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"Ev" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"EC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ id_tag = "itglight_dock_2_inner"
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1380;
+ master_tag = "itglight_dock_2";
+ name = "interior access button";
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/starboarddocking)
+"EG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"EH" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "itglight_dock_2";
+ pixel_x = -18;
+ pixel_y = -32;
+ tag_airpump = "itglight_dock_2_pump";
+ tag_chamber_sensor = "itglight_dock_2_sensor";
+ tag_exterior_door = "itglight_dock_2_outer";
+ tag_interior_door = "itglight_dock_2_inner"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboarddocking)
+"EI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/shuttlebay)
+"EL" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/itglight/starboarddocking)
+"EN" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"EP" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1380;
+ master_tag = "itglight_dock_2";
+ name = "exterior access button";
+ pixel_x = 27;
+ pixel_y = -27
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboarddocking)
+"EQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"ER" = (
+/obj/machinery/seed_storage/garden,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"ES" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"EV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portengi)
+"EX" = (
+/obj/effect/shuttle_landmark/shuttle_initializer/itglightshuttle,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/shuttle/itglightshuttle)
+"EZ" = (
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"Fc" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Fe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "itglight_dock_2_outer";
+ locked = 1;
+ name = "Starboard External Airlock"
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/starboarddocking)
+"Ff" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"Fh" = (
+/obj/machinery/power/smes/buildable/offmap_spawn,
+/obj/structure/cable/pink{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Fu" = (
+/obj/machinery/power/solar_control,
+/obj/structure/cable/heavyduty{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Fw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"Fx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"Fz" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/clothing/suit/space/void/medical/alt,
+/obj/item/clothing/head/helmet/space/void/medical/alt,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardhighsec)
+"FA" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "itglight_dock_2";
+ landmark_tag = "itglight_starboard_dock";
+ name = "ITG Dauntless - Dock Starboard"
+ },
+/turf/space,
+/area/space)
+"FB" = (
+/obj/item/weapon/stool/baystool/padded,
+/obj/structure/window/reinforced{
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"FH" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"FI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"FQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"FR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/wall/shull,
+/area/itglight/starboarddocking)
+"FT" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Ga" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"Gb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ id_tag = "itglight_starboard_inner"
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1380;
+ master_tag = "itglight_starboard";
+ name = "interior access button";
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/starboardengi)
+"Gc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ on = 0;
+ pixel_x = 26;
+ pixel_y = 27
+ },
+/obj/machinery/button/remote/airlock{
+ id = "dauntlesspq3";
+ name = "Door Bolts";
+ pixel_x = 24;
+ pixel_y = 36;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew3)
+"Gl" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "itglightshuttle_docker";
+ pixel_x = -19;
+ tag_door = "itglightshuttle_docker_hatch"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/itglightshuttle)
+"Gm" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = -7;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/device/flashlight/pen{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"Gp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"Gq" = (
+/turf/simulated/wall/shull,
+/area/itglight/starboarddocking)
+"Gt" = (
+/obj/structure/closet/walllocker_double/medical{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/clotting,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/stack/medical/advanced/ointment,
+/obj/item/stack/medical/advanced/ointment,
+/obj/item/stack/medical/advanced/ointment,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"Gu" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"Gv" = (
+/turf/simulated/wall/rshull,
+/area/itglight/passengersleeping)
+"GA" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portdocking)
+"GD" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/emblem/itgdauntless{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"GG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"GI" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "itglight_dock_1_pump"
+ },
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/itglight/portdocking)
+"GO" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ on = 0;
+ pixel_x = 26;
+ pixel_y = 61
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"GP" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"GQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"GU" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"GV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"GX" = (
+/obj/machinery/atmospherics/unary/engine/biggest{
+ dir = 1
+ },
+/turf/space,
+/area/itglight/starboardengi)
+"Hi" = (
+/obj/machinery/button/remote/airlock{
+ id = "dauntlessportcargobolts";
+ name = "Door Bolts";
+ req_access = list(777);
+ specialfunctions = 4
+ },
+/turf/simulated/wall/shull,
+/area/itglight/portcargo)
+"Hj" = (
+/turf/simulated/floor/tiled/eris/white/techfloor_grid,
+/area/itglight/medbay)
+"Hy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"HA" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboarddocking)
+"HB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/readyroom)
+"HD" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "itglight_dock_2_pump"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/itglight/starboarddocking)
+"HJ" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"HM" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"HN" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "itglight_dock_1_pump"
+ },
+/obj/machinery/light/small,
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/itglight/portdocking)
+"HP" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portdocking)
+"HQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"HR" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "itglight_dock_1_pump"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/itglight/portdocking)
+"HU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"HW" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "itglight_dock_2_pump"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/itglight/starboarddocking)
+"HX" = (
+/obj/structure/sign/itg,
+/turf/simulated/wall/rshull,
+/area/itglight/starboarddocking)
+"Ia" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"Ij" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"Iu" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"Iv" = (
+/obj/machinery/clonepod/transhuman,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"Ix" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = "itglight_dock_1_sensor";
+ pixel_y = -25
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portdocking)
+"Iy" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"IA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/wall/rshull,
+/area/itglight/portengi)
+"IF" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"IH" = (
+/turf/simulated/wall/shull,
+/area/itglight/crew1)
+"IM" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"IN" = (
+/obj/structure/coatrack,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"IQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = "itglight_dock_2_sensor";
+ pixel_y = -25
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboarddocking)
+"IR" = (
+/obj/machinery/atmospherics/binary/pump/fuel,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"IS" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"Jc" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ nightshift_setting = 3;
+ pixel_y = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"Jg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ id_tag = "itglight_starboard_outer";
+ name = "Starboard Solars External Airlock"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1380;
+ master_tag = "itglight_starboard";
+ name = "exterior access button";
+ pixel_y = -27;
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/starboardengi)
+"Ji" = (
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Jk" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "itglight_dock_2_pump"
+ },
+/obj/machinery/light/small,
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/itglight/starboarddocking)
+"Jm" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Jt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1;
+ density = 0;
+ name = "trash bin";
+ pixel_x = 10;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Jz" = (
+/obj/machinery/computer/shuttle_control/explore/itglightshuttle,
+/turf/simulated/floor/tiled/monotile,
+/area/shuttle/itglightshuttle)
+"JB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"JC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"JI" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"JJ" = (
+/obj/machinery/biogenerator,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"JL" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/shuttlebay)
+"JM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"JN" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"JP" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"JR" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/browndouble,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew3)
+"JT" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/random/multiple/corp_crate,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"JV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Ka" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Kc" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/random/multiple/large_corp_crate,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"Kf" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"Kh" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ nightshift_setting = 3;
+ pixel_y = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"Kj" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"Kn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"Kt" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "itglight_port";
+ name = "ITG Dauntless - Port"
+ },
+/turf/space,
+/area/space)
+"Ku" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"Kv" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "dauntless_pd"
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/shuttlebay)
+"Kx" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/vending/dinnerware{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"KA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"KB" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ nightshift_setting = 3;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"KG" = (
+/turf/simulated/wall/shull,
+/area/itglight/crew2)
+"KJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/medical{
+ name = "Surgery and Resleeving";
+ req_one_access = list()
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/medbay)
+"KK" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "itglight_starboard";
+ name = "ITG Dauntless - Starboard"
+ },
+/turf/space,
+/area/space)
+"KM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"KP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"KQ" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/reinforced,
+/area/itglight/shuttlebay)
+"Lg" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"Lh" = (
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"Lk" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"Lr" = (
+/turf/simulated/wall/rshull,
+/area/itglight/captain)
+"Ly" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"Lz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew4)
+"LA" = (
+/obj/machinery/vending/wallmed2{
+ dir = 8;
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"LF" = (
+/turf/simulated/wall/rshull,
+/area/itglight/portdocking)
+"LG" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"LI" = (
+/obj/machinery/light/small{
+ dir = 8;
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/shuttle/itglightshuttle)
+"LJ" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"LO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/itglight/starboardcargo)
+"LQ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/random/multiple/corp_crate,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"LU" = (
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"LX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/starboardcargo)
+"LY" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"LZ" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Mg" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Mh" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"Mk" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/browndouble,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew2)
+"Ml" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Mm" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"Mo" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/passengersleeping)
+"Mu" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"Mv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"My" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"MA" = (
+/obj/structure/bed/chair/sofa/brown{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"ME" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"MF" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/device/paicard,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"MG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"MI" = (
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"ML" = (
+/obj/structure/closet/wardrobe/black,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"MO" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"MS" = (
+/obj/structure/undies_wardrobe,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"MU" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"MY" = (
+/obj/structure/bed/chair/sofa/brown/right{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Na" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/simulated/floor/tiled/eris/steel/gray_platform,
+/area/itglight/portcargo)
+"Nc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ id_tag = "dauntlesspq3";
+ name = "Room 3"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/crew3)
+"Nd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"Ne" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"Ng" = (
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"Nm" = (
+/turf/simulated/wall/shull,
+/area/itglight/starboardcargo)
+"Nn" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/random/coin,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"No" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/organ_printer/flesh,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/techfloor_grid,
+/area/itglight/medbay)
+"Np" = (
+/turf/simulated/wall/rshull,
+/area/itglight/kitchen)
+"Nq" = (
+/obj/machinery/ntnet_relay,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"Ns" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"Nv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"Nx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"NG" = (
+/obj/structure/closet/wardrobe/xenos,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"NJ" = (
+/obj/machinery/power/smes/buildable/offmap_spawn,
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"NM" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"NN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"NQ" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"NR" = (
+/obj/structure/sink{
+ pixel_y = 21
+ },
+/obj/item/frame/mirror{
+ pixel_y = 33
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"NS" = (
+/obj/effect/floor_decal/emblem/itgdauntless{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/shuttle/itglightshuttle)
+"NV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"NW" = (
+/obj/structure/closet/wardrobe/suit,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"NY" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/structure/cable/pink,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"Oc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/pink{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"Oe" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"Oi" = (
+/obj/item/weapon/bedsheet/brown,
+/obj/structure/curtain/black,
+/obj/structure/bed/padded,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"Oj" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"Ol" = (
+/obj/structure/bed/chair/sofa/brown/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Om" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/kitchen)
+"Or" = (
+/obj/structure/bed/chair/sofa/brown,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Ot" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Ov" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"Ow" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Ox" = (
+/obj/machinery/atmospherics/binary/pump/fuel,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"OA" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/snack,
+/obj/random/snack,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"OC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/mining{
+ id_tag = "dauntlessshuttlbaybolts";
+ name = "Shuttle Bay";
+ req_one_access = list(777)
+ },
+/obj/machinery/button/remote/airlock{
+ id = "dauntlessshuttlbaybolts";
+ name = "Door Bolts";
+ pixel_x = 32;
+ req_access = list(777);
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/shuttlebay)
+"OF" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/snack,
+/obj/random/snack,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"OH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/vending/fitness,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"OI" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/itglightshuttle)
+"OJ" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"OT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/kitchen)
+"OX" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"OY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/kitchen)
+"Pg" = (
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"Ph" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Pr" = (
+/turf/simulated/wall/rshull,
+/area/itglight/showers)
+"Py" = (
+/obj/machinery/vending/loadout/uniform{
+ density = 0;
+ pixel_y = 20
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"PA" = (
+/obj/machinery/computer/transhuman/resleeving,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"PB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"PD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ on = 0;
+ pixel_x = -25;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"PE" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/itglightshuttle)
+"PJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/eris/white/techfloor_grid,
+/area/itglight/medbay)
+"PM" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"PN" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"PO" = (
+/obj/item/weapon/bedsheet/brown,
+/obj/structure/curtain/black,
+/obj/structure/bed/padded,
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"PQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"PS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"PX" = (
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"Qa" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Qh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ pixel_y = 25
+ },
+/obj/structure/cable/pink{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/metingroom)
+"Qi" = (
+/turf/simulated/wall/shull,
+/area/itglight/showers)
+"Qo" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Qp" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"Qq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/lockers)
+"Qs" = (
+/obj/effect/catwalk_plated,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor,
+/area/itglight/afthall)
+"Qt" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"QF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Medical"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/medbay)
+"QI" = (
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"QN" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"QO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"QQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"QR" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/device/radio,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"QW" = (
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"QY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "dauntless_blastdoors";
+ name = "blast door"
+ },
+/turf/simulated/floor,
+/area/itglight/medbay)
+"Ra" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/khcrystal,
+/obj/item/weapon/storage/box/khcrystal,
+/obj/item/weapon/storage/box/khcrystal,
+/obj/item/weapon/storage/box/khcrystal,
+/obj/item/weapon/storage/box/khcrystal,
+/obj/item/device/sleevemate,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"Rb" = (
+/obj/structure/flora/pottedplant/orientaltree,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"Rd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"Rj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light_switch{
+ dir = 8;
+ on = 0;
+ pixel_x = 24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Rl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/white/techfloor_grid,
+/area/itglight/medbay)
+"Rn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Rp" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Rq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Rt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"Ru" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ on = 0;
+ pixel_x = 26;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"Rw" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"Ry" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"RL" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"RU" = (
+/turf/simulated/wall/rshull,
+/area/itglight/readyroom)
+"RY" = (
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"RZ" = (
+/obj/machinery/chemical_dispenser/biochemistry/full,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"Sh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"Sw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Sz" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"SA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"SB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ id_tag = "dauntlesspq1";
+ name = "Room 1"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/crew1)
+"SE" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"SF" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1380;
+ id_tag = "itglight_shuttlebay";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"SG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"SH" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/recharger,
+/obj/item/device/radio/intercom{
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"SL" = (
+/obj/item/weapon/bedsheet/brown,
+/obj/structure/curtain/black,
+/obj/structure/bed/padded,
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"SM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/itglight/portcargo)
+"SN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"SO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass{
+ name = "Passenger Access"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/common)
+"SV" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/device/radio,
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"SY" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"Tb" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"Td" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/heavyduty,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Tm" = (
+/obj/item/weapon/bedsheet/brown,
+/obj/structure/curtain/black,
+/obj/structure/bed/padded,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"Tp" = (
+/turf/simulated/floor/carpet,
+/area/itglight/readyroom)
+"Tt" = (
+/turf/simulated/wall/shull,
+/area/itglight/crew3)
+"Tw" = (
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"Ty" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Tz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"TC" = (
+/turf/simulated/floor/airless,
+/area/itglight/portengi)
+"TE" = (
+/obj/structure/sink{
+ pixel_y = 21
+ },
+/obj/item/frame/mirror{
+ pixel_y = 33
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"TJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"TS" = (
+/obj/effect/catwalk_plated,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/itglight/shuttlebay)
+"TU" = (
+/turf/simulated/wall/rshull,
+/area/itglight/starboardhighsec)
+"Ub" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"Ud" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"Uj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/itglightshuttle)
+"Um" = (
+/turf/space,
+/area/space)
+"Ut" = (
+/turf/simulated/wall/shull,
+/area/itglight/porthighsec)
+"Uv" = (
+/obj/structure/table/standard,
+/obj/random/soap,
+/obj/random/soap,
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"Uw" = (
+/turf/simulated/wall/shull,
+/area/itglight/medbay)
+"UF" = (
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"UH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ on = 0;
+ pixel_x = -25;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"UI" = (
+/obj/machinery/body_scanconsole,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"UL" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"UO" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"UQ" = (
+/obj/machinery/atmospherics/unary/engine/biggest{
+ dir = 1
+ },
+/turf/space,
+/area/itglight/portengi)
+"UX" = (
+/obj/machinery/atmospherics/pipe/tank/air/full,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"UY" = (
+/obj/structure/table/glass,
+/obj/item/device/sleevemate,
+/obj/item/weapon/book/manual/resleeving,
+/obj/item/weapon/storage/box/khcrystal,
+/obj/item/weapon/storage/box/khcrystal,
+/obj/item/weapon/storage/box/khcrystal,
+/obj/item/weapon/storage/box/khcrystal,
+/obj/item/weapon/storage/box/khcrystal,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"UZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/itglight/common)
+"Vd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"Ve" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/device/radio,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"Vi" = (
+/obj/structure/table/standard,
+/obj/random/soap,
+/obj/random/soap,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"Vn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"Vq" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"Vs" = (
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Vz" = (
+/obj/machinery/newscaster{
+ pixel_x = -12;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"VB" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/pointdefense_control{
+ id_tag = "dauntless_pd"
+ },
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"VC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ on = 0;
+ pixel_x = 26;
+ pixel_y = 27
+ },
+/obj/machinery/button/remote/airlock{
+ id = "dauntlesspq1";
+ name = "Door Bolts";
+ pixel_x = 24;
+ pixel_y = 36;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew1)
+"VE" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"VG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/sign/itg{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"VK" = (
+/obj/structure/table/standard,
+/obj/item/weapon/bikehorn/rubberducky,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"VM" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardengi)
+"VN" = (
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"VU" = (
+/turf/simulated/wall/shull,
+/area/itglight/readyroom)
+"VV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"VX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Wb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"Wc" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/space,
+/area/itglight/starboardengi)
+"We" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "dauntless_pd"
+ },
+/obj/structure/cable/pink{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"Wf" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"Wh" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/storage/box/beakers,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/random/firstaid,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"Wq" = (
+/turf/simulated/wall/rshull,
+/area/itglight/porthighsec)
+"Wv" = (
+/obj/machinery/appliance/cooker/fryer,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"WB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"WC" = (
+/obj/item/weapon/bedsheet/brown,
+/obj/structure/curtain/black,
+/obj/structure/bed/padded,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/itglight/passengersleeping)
+"WD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"WE" = (
+/obj/structure/flora/pottedplant/minitree,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"WG" = (
+/obj/structure/table/wooden_reinforced,
+/obj/random/plushie,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ pixel_y = -25
+ },
+/obj/structure/cable/pink,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"WN" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"WO" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/device/radio,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"WP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ id_tag = "itglight_port_outer";
+ name = "Port Solars External Airlock"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1380;
+ master_tag = "itglight_port";
+ name = "exterior access button";
+ pixel_y = -27;
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/portengi)
+"WQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"WS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"WU" = (
+/obj/machinery/vending/hydronutrients{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"WZ" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"Xb" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"Xg" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"Xh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled/eris/steel/techfloor_grid,
+/area/itglight/passengersleeping)
+"Xj" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "itglight_aft";
+ name = "ITG Dauntless - Aft"
+ },
+/turf/space,
+/area/space)
+"Xl" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 8;
+ pixel_x = -25
+ },
+/obj/structure/cable/pink{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"Xn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"Xq" = (
+/turf/simulated/wall/shull,
+/area/itglight/passengersleeping)
+"Xu" = (
+/turf/simulated/wall/shull,
+/area/itglight/common)
+"Xv" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"Xx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/lockers)
+"Xz" = (
+/obj/structure/medical_stand,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/eris/white/techfloor_grid,
+/area/itglight/medbay)
+"XA" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"XD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"XE" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"XF" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"XH" = (
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/shuttlebay)
+"XK" = (
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"XM" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ on = 0;
+ pixel_x = 26;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"XN" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/light/small,
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew1)
+"XO" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "dauntless_pd"
+ },
+/obj/structure/cable/pink{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"XP" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"XQ" = (
+/turf/simulated/wall/shull,
+/area/itglight/captain)
+"XT" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"XX" = (
+/turf/simulated/wall/shull,
+/area/itglight/starboardengi)
+"Yb" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Yf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Yg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"Yh" = (
+/obj/structure/window/reinforced{
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"Yk" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/forehall)
+"Yp" = (
+/obj/structure/table/standard,
+/obj/random/soap,
+/obj/random/soap,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"Yq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/itglight/portengi)
+"Ys" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"Yt" = (
+/turf/simulated/wall/shull,
+/area/itglight/crew4)
+"Yu" = (
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"Yw" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"Yy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"Yz" = (
+/obj/structure/cable,
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"YA" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"YC" = (
+/obj/machinery/appliance/cooker/oven,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"YD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/itglight/portengi)
+"YG" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/shuttle/itglightshuttle)
+"YL" = (
+/obj/structure/sink{
+ pixel_y = 21;
+ plane = -34
+ },
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"YM" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ dir = 1;
+ icon_state = "shower"
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "techmaint"
+ },
+/area/itglight/showers)
+"YO" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"YR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/restrooms)
+"YT" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"YU" = (
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/pink{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"YX" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/heavyduty,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"Za" = (
+/turf/simulated/wall/shull,
+/area/itglight/portengi)
+"Zc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/showers)
+"Zd" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"Zf" = (
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"Zh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardsolars)
+"Zi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5;
+ icon_state = "intact-supply"
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/showers)
+"Zj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Port Engineering";
+ req_one_access = list(777)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/itglight/portengi)
+"Zm" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"Zp" = (
+/obj/item/weapon/stool/baystool/padded,
+/turf/simulated/floor/tiled/eris/cafe,
+/area/itglight/kitchen)
+"Zq" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/itglight/portsolars)
+"Zr" = (
+/turf/simulated/wall/shull,
+/area/itglight/shuttlebay)
+"Zs" = (
+/obj/structure/bed/chair/sofa/brown/left,
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/common)
+"Zw" = (
+/turf/simulated/wall/shull,
+/area/itglight/kitchen)
+"Zz" = (
+/obj/machinery/door/airlock{
+ name = "Unit 3"
+ },
+/turf/simulated/floor/tiled/white,
+/area/itglight/restrooms)
+"ZG" = (
+/turf/simulated/wall/shull,
+/area/itglight/restrooms)
+"ZI" = (
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"ZJ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/itglight/starboardengi)
+"ZK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/closet/walllocker_double/medical{
+ pixel_x = -32;
+ pixel_y = 27
+ },
+/obj/item/weapon/storage/bag/chemistry,
+/obj/item/clothing/under/rank/chemist,
+/obj/item/clothing/suit/storage/toggle/labcoat/chemist,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/item/weapon/storage/box/beakers,
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"ZL" = (
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"ZM" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/itglight/starboardengi)
+"ZN" = (
+/turf/simulated/wall/shull,
+/area/itglight/portcargo)
+"ZO" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/obj/structure/closet/crate/bin{
+ anchored = 1;
+ density = 0;
+ name = "trash bin";
+ pixel_x = -10;
+ pixel_y = 11
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"ZQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/itglight/crew1)
+"ZT" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+"ZX" = (
+/turf/simulated/floor/tiled/monotile,
+/area/itglight/lockers)
+"ZY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/pink{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/eris/steel/brown_platform,
+/area/itglight/afthall)
+"ZZ" = (
+/obj/machinery/sleep_console,
+/obj/structure/cable/pink{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/white/cargo,
+/area/itglight/medbay)
+
+(1,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(2,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(3,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(4,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(5,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(6,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(7,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(8,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(9,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(10,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(11,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(12,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(13,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(14,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(15,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(16,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(17,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(18,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(19,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(20,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(21,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(22,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(23,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(24,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(25,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(26,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(27,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(28,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(29,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(30,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(31,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(32,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(33,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Kt
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(34,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(35,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(36,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(37,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(38,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(39,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(40,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(41,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(42,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(43,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(44,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(45,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(46,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(47,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(48,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+FH
+Yz
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(49,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+XF
+Cg
+Cg
+Cg
+Cg
+Cg
+Cg
+Cg
+Cg
+GU
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+uv
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(50,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Zq
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+zj
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+Lg
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(51,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+XF
+Cg
+Cg
+Cg
+Cg
+Cg
+Cg
+Cg
+Cg
+Cg
+Cg
+Ry
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+mu
+uv
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(52,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Zq
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+zj
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+IF
+Lg
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(53,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+XF
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+tl
+lv
+EV
+sX
+rJ
+rJ
+rJ
+rJ
+rJ
+rJ
+rJ
+rJ
+rJ
+uv
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(54,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+We
+zn
+Np
+Np
+kH
+kH
+kH
+Np
+kH
+kH
+kH
+Np
+vy
+vy
+WP
+vy
+vy
+vy
+Hy
+vy
+vy
+vy
+vy
+vy
+vy
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(55,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Yu
+SY
+zn
+Np
+rn
+YC
+Wv
+pE
+ac
+bn
+gc
+zv
+lO
+Za
+nR
+im
+lV
+Za
+Qo
+VX
+nu
+lR
+IA
+TC
+zS
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(56,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+BR
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Yu
+Yu
+Yu
+Lh
+XT
+Om
+YL
+GO
+NQ
+Dp
+jj
+jj
+eI
+SN
+yN
+Za
+Za
+yy
+Za
+Za
+Qo
+nf
+nu
+un
+vy
+TC
+zB
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(57,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+hr
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Yu
+Oj
+WD
+WD
+WD
+WD
+uv
+Np
+YO
+Pg
+Pg
+UO
+GQ
+GQ
+GQ
+jF
+JJ
+Za
+to
+Td
+RY
+RY
+RY
+JB
+oN
+uF
+IA
+TC
+zB
+UQ
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(58,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Wq
+Wq
+Wq
+Wq
+Wq
+Wq
+Wq
+Wq
+Wq
+Wq
+Wq
+Wq
+LF
+LF
+zt
+Ca
+LF
+LF
+LF
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+WN
+WN
+Np
+Zd
+Pg
+dB
+cf
+LJ
+ER
+Pg
+Pg
+WU
+Za
+pi
+im
+hm
+lK
+nW
+Ab
+IR
+YD
+vy
+TC
+zB
+zB
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(59,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Wq
+Wq
+fr
+fr
+pm
+fX
+kJ
+mZ
+on
+rg
+wk
+zR
+Cp
+DB
+xj
+zG
+Cq
+zG
+HN
+LF
+WN
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+WN
+WN
+WN
+OT
+Ae
+Pg
+Zp
+qU
+FB
+AK
+Pg
+Pg
+AK
+Za
+Fc
+gk
+CI
+Fh
+oR
+Yq
+Rn
+HQ
+vy
+TC
+zB
+zB
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(60,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Lr
+Lr
+aw
+aw
+Lr
+Lr
+eo
+zR
+zR
+zR
+ta
+vX
+oT
+oE
+ym
+tD
+zQ
+BP
+CM
+xE
+HP
+CJ
+GA
+Ix
+LF
+WN
+WN
+Um
+Um
+Um
+Gv
+Gv
+Mo
+Gv
+Mo
+Gv
+Mo
+Gv
+Gv
+WN
+Np
+Zm
+Pg
+Pg
+QO
+Yh
+AK
+Pg
+Pg
+AK
+Za
+UX
+gA
+RL
+HM
+FQ
+py
+Ty
+Nx
+IA
+TC
+vl
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(61,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+sy
+sy
+sy
+Lr
+ak
+ay
+hU
+xw
+XQ
+eu
+zR
+qh
+zR
+tg
+wg
+wY
+pW
+yw
+zR
+zR
+BX
+DB
+GI
+HR
+CO
+HR
+GI
+LF
+WN
+WN
+WN
+WN
+WN
+Gv
+wm
+PX
+SL
+PX
+PO
+PX
+Tm
+Gv
+WN
+Np
+Ct
+cx
+Zp
+fE
+Kx
+cA
+NY
+eF
+AK
+Za
+UX
+Dg
+Rj
+pU
+Ar
+Dc
+Dc
+KB
+vy
+TC
+TC
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(62,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+sy
+sy
+bp
+cW
+em
+gL
+gL
+bA
+cv
+XQ
+pm
+zR
+qh
+zR
+tg
+wj
+Ut
+Ut
+yJ
+Ut
+Ut
+Ut
+DB
+DB
+DB
+Db
+DB
+DB
+LF
+gK
+gK
+gK
+gK
+gK
+Gv
+LY
+PS
+PS
+Rd
+PQ
+PQ
+Sz
+Gv
+qZ
+Np
+Zw
+Zw
+Zw
+OY
+Zw
+Zw
+Zw
+Zw
+Zw
+Za
+Za
+Za
+Za
+Zj
+Za
+Za
+Za
+Za
+vy
+vy
+vy
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(63,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+sy
+sy
+sy
+bq
+sy
+Lr
+gO
+ay
+gu
+af
+XQ
+pm
+zR
+zR
+ww
+jo
+wk
+ZN
+oI
+rh
+sx
+sx
+um
+sx
+yf
+sx
+Do
+sx
+yf
+sx
+um
+sx
+sx
+sx
+vi
+Xq
+SL
+PX
+SL
+Rt
+SL
+PX
+SL
+Xq
+Tw
+Xl
+Zz
+oK
+ZG
+uf
+Ga
+SB
+VC
+En
+ZQ
+Zr
+PM
+jG
+yO
+iC
+Gp
+Ne
+Gp
+Gp
+JM
+fC
+cV
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(64,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+WN
+WN
+Lr
+gS
+aN
+bE
+cR
+XQ
+Ut
+Ut
+Ut
+Ut
+Ut
+Ut
+ZN
+yF
+yP
+JP
+JP
+JP
+sx
+JP
+JP
+Do
+JP
+up
+sx
+JP
+JP
+JP
+JP
+yD
+Xq
+Oc
+Mv
+Mv
+Ov
+EG
+EG
+WB
+Xh
+Nv
+Xn
+ZG
+ZG
+ZG
+Vd
+ZI
+IH
+ec
+BU
+XN
+Zr
+LU
+iZ
+iZ
+eq
+iZ
+iZ
+vO
+XH
+XH
+fC
+fC
+mo
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(65,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+WN
+Lr
+gX
+aS
+bF
+cY
+XQ
+ew
+ag
+ah
+ai
+aj
+wy
+ZN
+oU
+rM
+DH
+DH
+DH
+DH
+DH
+DH
+Dy
+GG
+GG
+JC
+KA
+KA
+KA
+KA
+My
+Xq
+Oi
+Dv
+SL
+Ru
+SL
+Dv
+WC
+Xq
+Tz
+Xv
+Kj
+Tb
+ZG
+VG
+Qt
+IH
+IH
+IH
+IH
+Zr
+HJ
+XH
+XH
+Ub
+XH
+XH
+jQ
+iZ
+iZ
+iZ
+EI
+JL
+tj
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(66,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+hF
+Lr
+XQ
+XQ
+aa
+XQ
+XQ
+Qh
+ms
+ul
+ul
+ul
+DI
+ZN
+yD
+AU
+Na
+JP
+up
+sx
+up
+JP
+Ia
+JP
+JP
+Do
+JP
+JT
+JT
+JP
+yF
+Xq
+Xq
+Xq
+Xq
+AG
+Xq
+Xq
+Xq
+Xq
+NR
+XD
+ZG
+ZG
+ZG
+uf
+Ga
+wG
+go
+Cl
+xM
+Zr
+tE
+PB
+PB
+EQ
+VV
+VV
+fY
+VV
+VV
+JN
+fC
+fC
+fC
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(67,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+ds
+fa
+aq
+aU
+od
+jE
+lH
+eA
+fP
+ul
+ul
+ul
+qo
+ZN
+pG
+sx
+sx
+sx
+sx
+Eg
+ZN
+Hi
+DF
+ZN
+ZN
+Jc
+sx
+sx
+sx
+sx
+KP
+Xu
+Ol
+MA
+MY
+Ow
+Qa
+ab
+WE
+Xu
+TE
+XM
+dv
+Tb
+ZG
+ZY
+ZI
+KG
+ip
+Mk
+yI
+Zr
+SF
+dE
+dE
+dE
+dE
+dE
+KQ
+dE
+dE
+dE
+dE
+dE
+fC
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(68,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+ds
+fb
+hk
+aV
+bJ
+dq
+lH
+eE
+gh
+ul
+ul
+vf
+kN
+ZN
+ZN
+SM
+SM
+SM
+SM
+ZN
+ZN
+Aa
+Iu
+GP
+ZN
+ZN
+SM
+SM
+SM
+SM
+ZN
+Xu
+Or
+yK
+QI
+Sh
+UF
+UF
+IN
+Xu
+ZG
+YR
+ZG
+ZG
+ZG
+Vd
+ZI
+KG
+KG
+KG
+KG
+Zr
+tq
+dE
+dE
+zg
+eb
+zg
+jV
+zg
+zg
+zg
+zg
+dE
+fC
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(69,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+bT
+hF
+hF
+hq
+aY
+ik
+ka
+el
+eJ
+gW
+vf
+vf
+js
+te
+nh
+Ng
+Ng
+Ng
+dR
+Ng
+Ep
+Ng
+Ng
+DJ
+Ng
+Ng
+Ep
+Ng
+ea
+Ng
+Ng
+Ng
+Xu
+Zs
+QI
+Nn
+Sh
+UF
+UF
+Vz
+Xu
+Ud
+YT
+ZI
+YA
+ZI
+Vd
+ZI
+ix
+Zr
+of
+XH
+XH
+tq
+dE
+zg
+YG
+rC
+LI
+ii
+Gl
+nH
+PE
+yE
+dE
+fC
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(70,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+ad
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+as
+Um
+bT
+dj
+hF
+hy
+hS
+ow
+kn
+lH
+eQ
+ov
+qq
+iI
+tL
+kO
+nv
+LG
+LG
+LG
+tP
+LG
+LG
+LG
+As
+DK
+LG
+LG
+LG
+LG
+tP
+LG
+LG
+bk
+wL
+LZ
+ME
+Ns
+MU
+Qp
+EN
+Jm
+SO
+Oe
+YU
+pn
+uk
+pn
+Qs
+pn
+Ij
+OC
+EZ
+GD
+bs
+TS
+dE
+CY
+Jz
+nb
+NS
+iT
+OI
+BJ
+PE
+yE
+dE
+fC
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Xj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(71,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+bT
+hF
+hF
+hC
+hc
+it
+kp
+lu
+nq
+oy
+wD
+rZ
+vf
+qB
+nh
+Ng
+Ng
+Ng
+Yk
+Ng
+Ev
+Ng
+AF
+DP
+Ng
+Ng
+Ev
+Ng
+uI
+Ng
+Ng
+Ng
+Xu
+Ot
+wW
+UF
+Sh
+UF
+UZ
+Jt
+Xu
+Yg
+YT
+ZI
+lh
+ZI
+Vd
+ZI
+Fx
+Zr
+IM
+XH
+XH
+tq
+dE
+zg
+YG
+rC
+aQ
+EX
+nH
+sP
+PE
+yE
+dE
+fC
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(72,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+ds
+ga
+hT
+hT
+iu
+kq
+lH
+eU
+oz
+qK
+iU
+uX
+la
+Nm
+Nm
+LO
+LO
+LO
+LO
+Nm
+Nm
+AJ
+Iu
+xp
+Nm
+Nm
+LO
+LO
+LO
+LO
+Nm
+Xu
+Mg
+MF
+Rb
+Sh
+UF
+UZ
+SH
+Xu
+Qi
+Zc
+Qi
+Qi
+Qi
+Vd
+ZI
+Tt
+Tt
+Tt
+Tt
+Zr
+tq
+dE
+dE
+zg
+Uj
+zg
+aK
+zg
+zg
+zg
+zg
+dE
+fC
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(73,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+ds
+ge
+jm
+bd
+oA
+ky
+lH
+nO
+oz
+mf
+qN
+uX
+tr
+Nm
+pH
+kR
+kR
+kR
+kR
+wS
+Nm
+tz
+DQ
+Nm
+Nm
+Kh
+kR
+kR
+kR
+kR
+Ek
+Xu
+Ml
+Ml
+Ji
+Sw
+QN
+Rp
+WG
+Xu
+Uv
+Zf
+UL
+YM
+Qi
+wA
+Ga
+Nc
+Gc
+BA
+yQ
+Zr
+Mu
+dE
+dE
+dE
+dE
+dE
+KQ
+dE
+dE
+dE
+dE
+dE
+fC
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(74,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+hF
+RU
+VU
+VU
+iJ
+VU
+VU
+vR
+oz
+qN
+qN
+uX
+qB
+Nm
+wI
+Kf
+Kf
+Kf
+Kf
+kR
+Kf
+Kf
+Iy
+Kf
+Kf
+IS
+Kc
+Kc
+LQ
+LQ
+qG
+Dz
+Dz
+Dz
+Dz
+xi
+Dz
+Dz
+Dz
+Dz
+Yp
+Zi
+yc
+YM
+Qi
+Vd
+ZI
+Tt
+Dx
+JR
+zs
+Zr
+cU
+GV
+GV
+bC
+Ly
+Ly
+xO
+Ly
+Ly
+Ku
+fC
+fC
+fC
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(75,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+WN
+RU
+Mh
+Tp
+cb
+dC
+VU
+nl
+vf
+hs
+dO
+vf
+qB
+Nm
+qA
+Ff
+Ff
+Ff
+Ff
+Ff
+Ff
+Ff
+Ej
+xr
+xr
+Kn
+Ff
+Ff
+Ff
+Ff
+Lk
+Dz
+OA
+ML
+NG
+PD
+Ve
+Ve
+WO
+Dz
+Vi
+Nd
+yc
+YM
+Qi
+VG
+Qt
+Yt
+Yt
+Yt
+Yt
+Zr
+HJ
+XH
+XH
+po
+iZ
+iZ
+wX
+iZ
+iZ
+iZ
+EI
+DZ
+tj
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(76,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+WN
+WN
+RU
+Tp
+bi
+ci
+Tp
+VU
+CH
+CH
+CH
+CH
+CH
+wK
+Nm
+qG
+Kf
+Kc
+LQ
+LQ
+kR
+Kf
+Kf
+IS
+Kf
+Kf
+kR
+Kf
+Kf
+eV
+Kc
+wI
+Dz
+OF
+ZX
+ZX
+SA
+WQ
+WQ
+WQ
+Xx
+Vn
+Fw
+yc
+YM
+Qi
+uf
+Ga
+cl
+ic
+Au
+Lz
+Zr
+oq
+iZ
+iZ
+BM
+XH
+XH
+XH
+Nq
+cw
+fC
+fC
+Kv
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(77,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+lo
+lo
+lo
+ae
+lo
+RU
+av
+bv
+hw
+ed
+VU
+eW
+hi
+qW
+jg
+vr
+lD
+Nm
+xZ
+kR
+kR
+kR
+wu
+kR
+yS
+kR
+IS
+kR
+yS
+kR
+wu
+kR
+kR
+kR
+LX
+Dz
+OH
+ZX
+ZX
+SG
+ZX
+ZX
+Xb
+Dz
+VK
+kU
+Rw
+YM
+Qi
+Vd
+ZI
+Yt
+BS
+cp
+vI
+Zr
+WS
+ko
+Gp
+Gu
+yO
+aX
+yO
+yO
+TJ
+fC
+cV
+tj
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(78,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+lo
+lo
+cM
+dD
+HB
+hO
+by
+mR
+Tp
+VU
+oc
+oB
+Bt
+Bt
+Bt
+mg
+CH
+CH
+CH
+CH
+CH
+CH
+Gq
+Gq
+Gq
+EC
+Gq
+Gq
+uq
+hY
+hY
+hY
+hY
+hY
+yn
+OJ
+ZX
+ZX
+SG
+ZX
+ZX
+Xg
+yn
+Pr
+Pr
+Qi
+Qi
+Qi
+QF
+Uw
+Uw
+Uw
+Uw
+Uw
+XX
+XX
+XX
+XX
+iq
+XX
+XX
+XX
+XX
+zm
+zm
+zm
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(79,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+lo
+lo
+lo
+RU
+Tp
+Tp
+Tp
+Tp
+VU
+fg
+hn
+rq
+mF
+jB
+mq
+nx
+qR
+sR
+CQ
+CQ
+wz
+Gq
+yT
+Bj
+EH
+Bj
+yT
+uq
+WN
+WN
+WN
+WN
+WN
+yn
+Mm
+MS
+NW
+Ba
+QR
+QR
+SV
+yn
+WN
+xx
+RZ
+fc
+eS
+UH
+lw
+Uw
+dd
+dS
+AH
+XX
+Yb
+Dk
+sQ
+uz
+KM
+CU
+CU
+pl
+li
+kY
+VM
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(80,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+RU
+RU
+iR
+iR
+RU
+RU
+oc
+oH
+Bt
+Bt
+oB
+wN
+yZ
+yZ
+yZ
+tH
+Bq
+Cy
+FR
+yY
+Bo
+EL
+HA
+IQ
+uq
+WN
+WN
+Um
+Um
+Um
+yn
+yn
+Qq
+Qq
+yn
+Qq
+Qq
+yn
+yn
+WN
+QY
+ZK
+gt
+wM
+NV
+wa
+Uw
+tx
+Hj
+Xz
+XX
+Yb
+sq
+na
+AM
+ud
+FT
+nP
+gG
+zm
+kY
+sF
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(81,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+TU
+TU
+Fz
+rw
+sf
+jL
+mL
+xy
+yd
+za
+zL
+Bt
+CA
+Gq
+HD
+HW
+EP
+HW
+Jk
+uq
+WN
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+WN
+WN
+WN
+QY
+ZL
+fe
+Wh
+Vq
+ES
+Uw
+PJ
+Rl
+No
+XX
+OX
+Ka
+zr
+NJ
+NM
+JV
+Rq
+Ph
+li
+kY
+sF
+GX
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(82,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+TU
+TU
+TU
+TU
+TU
+TU
+TU
+TU
+TU
+TU
+TU
+TU
+uq
+uq
+HX
+Fe
+uq
+uq
+uq
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+WN
+WN
+xx
+ZO
+QW
+QW
+dP
+Ra
+Uw
+Py
+ir
+Gm
+XX
+VB
+XA
+tC
+gH
+zp
+QQ
+Ox
+HU
+zm
+kY
+sF
+sF
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(83,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+hK
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+VN
+PN
+MG
+MG
+MG
+MG
+Wb
+QY
+ZT
+QW
+hG
+eZ
+nJ
+KJ
+nJ
+ei
+ES
+XX
+Fu
+YX
+XK
+XK
+XK
+qg
+ls
+NN
+zm
+kY
+sF
+sF
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(84,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+FA
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+VN
+VN
+VN
+MI
+Wf
+QY
+ZZ
+aH
+UI
+qt
+Gt
+Uw
+PA
+xk
+wV
+XX
+XX
+Gb
+XX
+XX
+VE
+ZJ
+Vs
+xT
+li
+kY
+Wc
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(85,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+VN
+MO
+Ys
+xx
+om
+LA
+QW
+pL
+fz
+Uw
+UY
+om
+Iv
+XX
+wt
+zq
+AZ
+XX
+VE
+Yf
+Vs
+BW
+zm
+kY
+kY
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(86,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+XO
+Ys
+xx
+xx
+xx
+ie
+xx
+xx
+xx
+xx
+xx
+xx
+zm
+zm
+Jg
+zm
+zm
+zm
+su
+zm
+zm
+zm
+zm
+zm
+zm
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(87,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+XP
+Yy
+Yy
+Yy
+Yy
+Yy
+Yy
+Yy
+Yy
+Yy
+Yy
+zD
+zM
+ZM
+rF
+rf
+rf
+rf
+rf
+rf
+rf
+rf
+rf
+rf
+Wb
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(88,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Yw
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+WZ
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+ne
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(89,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+XP
+CX
+CX
+CX
+CX
+CX
+CX
+CX
+CX
+CX
+CX
+JI
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Wb
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(90,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Yw
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+WZ
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+ne
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(91,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+XP
+CX
+CX
+CX
+CX
+CX
+CX
+CX
+CX
+SE
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Zh
+Wb
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(92,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+Yw
+ih
+uy
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(93,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(94,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(95,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(96,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(97,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(98,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(99,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(100,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(101,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(102,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(103,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(104,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(105,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(106,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(107,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(108,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(109,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(110,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(111,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(112,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+KK
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(113,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(114,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(115,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(116,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(117,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(118,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(119,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(120,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(121,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(122,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(123,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(124,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(125,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(126,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(127,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(128,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(129,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(130,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(131,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(132,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(133,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(134,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(135,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(136,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(137,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(138,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(139,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
+(140,1,1) = {"
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+Um
+"}
diff --git a/maps/offmap_vr/om_ships/mackerel_lc_wreck.dmm b/maps/offmap_vr/om_ships/mackerel_lc_wreck.dmm
index 418b6a416ac..0b52c12bc09 100644
--- a/maps/offmap_vr/om_ships/mackerel_lc_wreck.dmm
+++ b/maps/offmap_vr/om_ships/mackerel_lc_wreck.dmm
@@ -74,8 +74,6 @@
/area/shuttle/mackerel_lc_wreck)
"cD" = (
/obj/effect/floor_decal/industrial/warning,
-/obj/item/weapon/bone/skull,
-/obj/item/clothing/head/helmet/space/void/refurb/pilot,
/obj/item/weapon/material/shard/shrapnel,
/obj/item/weapon/material/shard/shrapnel,
/turf/simulated/floor/tiled/techmaint/airless,
@@ -616,6 +614,10 @@
/obj/machinery/door/airlock/hatch,
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/mackerel_lc_wreck)
+"Iu" = (
+/obj/structure/prop/blackbox/mackerel_wreck,
+/turf/simulated/floor/airless,
+/area/shuttle/mackerel_lc_wreck)
"Jq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -890,9 +892,8 @@
/turf/simulated/floor/airless,
/area/shuttle/mackerel_lc_wreck)
"Zp" = (
-/obj/item/weapon/bone/ribs,
-/obj/item/clothing/suit/space/void/refurb/pilot,
/obj/effect/decal/cleanable/blood,
+/obj/effect/landmark/corpse/vintage/pilot,
/turf/simulated/floor/tiled/techmaint/airless,
/area/shuttle/mackerel_lc_wreck)
"ZJ" = (
@@ -1061,7 +1062,7 @@ ka
ka
tV
ka
-WP
+ka
WP
WP
"}
@@ -1085,10 +1086,10 @@ fL
JG
kU
dG
+Iu
ka
WP
WP
-WP
"}
(8,1,1) = {"
WP
@@ -1235,10 +1236,10 @@ zo
KZ
rQ
dG
+oq
ka
WP
WP
-WP
"}
(14,1,1) = {"
WP
@@ -1261,7 +1262,7 @@ ka
ka
tV
ka
-WP
+ka
BB
WP
"}
diff --git a/maps/offmap_vr/om_ships/salamander_wreck.dmm b/maps/offmap_vr/om_ships/salamander_wreck.dmm
index 537f37aeb19..d1b9c38c848 100644
--- a/maps/offmap_vr/om_ships/salamander_wreck.dmm
+++ b/maps/offmap_vr/om_ships/salamander_wreck.dmm
@@ -448,6 +448,10 @@
},
/turf/simulated/floor/tiled/techmaint/airless,
/area/shuttle/salamander_wreck_cockpit)
+"gx" = (
+/obj/structure/prop/blackbox/salamander_wreck,
+/turf/simulated/floor/plating,
+/area/shuttle/salamander_wreck)
"gC" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/techfloor{
@@ -2322,7 +2326,7 @@ ON
mO
VT
Vs
-qQ
+gx
VT
WP
"}
diff --git a/maps/offmap_vr/talon/talon.dm b/maps/offmap_vr/talon/talon.dm
index b11afb614f3..45c5d28dc8f 100644
--- a/maps/offmap_vr/talon/talon.dm
+++ b/maps/offmap_vr/talon/talon.dm
@@ -404,7 +404,7 @@ Once in open space, consider disabling nonessential power-consuming electronics
/datum/tgui_module/camera/ntos/talon_ship
name = "Talon Ship Camera Monitor"
-/datum/tgui_module/camera/ntos/New(host)
+/datum/tgui_module/camera/ntos/talon_ship/New(host)
. = ..(host, list(NETWORK_TALON_SHIP, NETWORK_THUNDER))
/datum/tgui_module/camera/ntos/talon_helmet
diff --git a/maps/offmap_vr/talon/talon1.dmm b/maps/offmap_vr/talon/talon1.dmm
index b194f0220a9..ba71141c7db 100644
--- a/maps/offmap_vr/talon/talon1.dmm
+++ b/maps/offmap_vr/talon/talon1.dmm
@@ -118,14 +118,14 @@
/turf/simulated/floor/plating/eris/under,
/area/talon/maintenance/deckone_port)
"an" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled/eris/white/golden,
/area/talon/deckone/bridge)
"ao" = (
@@ -324,7 +324,7 @@
/obj/structure/handrail{
dir = 8
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_port_fore_wing)
"aH" = (
/obj/structure/catwalk,
@@ -334,14 +334,14 @@
/obj/structure/handrail{
dir = 4
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_starboard_fore_wing)
"aI" = (
/obj/structure/catwalk,
/obj/structure/sign/warning/moving_parts{
pixel_x = 30
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_port_fore_wing)
"aJ" = (
/obj/structure/table/rack/shelf/steel,
@@ -407,7 +407,7 @@
/obj/structure/sign/warning/moving_parts{
pixel_x = -30
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_starboard_fore_wing)
"aT" = (
/obj/structure/catwalk,
@@ -416,7 +416,7 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_port_fore_wing)
"aU" = (
/obj/structure/catwalk,
@@ -424,7 +424,7 @@
dir = 1;
icon_state = "4-8"
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_starboard_fore_wing)
"aV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/aux,
@@ -456,34 +456,25 @@
/area/talon/deckone/armory)
"aZ" = (
/obj/structure/catwalk,
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_port_fore_wing)
"ba" = (
/obj/structure/catwalk,
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_starboard_fore_wing)
-"bb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/closet/hydrant{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/eris/dark/cyancorner,
-/area/talon/deckone/bridge)
"bc" = (
/obj/structure/catwalk,
/obj/structure/handrail{
dir = 8
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_port_aft_wing)
"bd" = (
/obj/structure/catwalk,
/obj/structure/handrail{
dir = 4
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_starboard_aft_wing)
"be" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -535,7 +526,7 @@
/area/talon/deckone/medical)
"bi" = (
/obj/structure/catwalk,
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_port_aft_wing)
"bj" = (
/obj/structure/window/reinforced,
@@ -550,7 +541,7 @@
/area/talon/maintenance/deckone_starboard)
"bl" = (
/obj/structure/catwalk,
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_starboard_aft_wing)
"bm" = (
/obj/structure/catwalk,
@@ -559,7 +550,7 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_port_aft_wing)
"bn" = (
/obj/structure/catwalk,
@@ -568,21 +559,21 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_starboard_aft_wing)
"bo" = (
/obj/machinery/light/small{
dir = 4
},
/obj/structure/catwalk,
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_port)
"bp" = (
/obj/machinery/light/small{
dir = 8
},
/obj/structure/catwalk,
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_starboard)
"bq" = (
/obj/machinery/airlock_sensor{
@@ -676,7 +667,7 @@
},
/obj/effect/map_helper/airlock/sensor/ext_sensor,
/obj/structure/catwalk,
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_port)
"by" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -705,7 +696,7 @@
},
/obj/effect/map_helper/airlock/sensor/ext_sensor,
/obj/structure/catwalk,
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_starboard)
"bA" = (
/obj/structure/catwalk,
@@ -715,7 +706,7 @@
/obj/machinery/camera/network/talon{
dir = 8
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_port)
"bB" = (
/obj/structure/catwalk,
@@ -725,7 +716,7 @@
/obj/machinery/camera/network/talon{
dir = 4
},
-/turf/simulated/floor/plating/eris/under,
+/turf/simulated/floor/plating/eris/under/airless,
/area/talon/maintenance/deckone_starboard)
"bC" = (
/obj/structure/catwalk,
@@ -739,6 +730,9 @@
/obj/structure/closet/autolok_wall{
pixel_y = -24
},
+/obj/structure/closet/hydrant{
+ pixel_x = -26
+ },
/turf/simulated/floor/tiled/eris/dark/cyancorner,
/area/talon/deckone/bridge)
"bE" = (
@@ -798,12 +792,7 @@
/turf/simulated/floor/tiled/eris/steel,
/area/talon/deckone/central_hallway)
"bI" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/closet/hydrant{
- pixel_y = 32
- },
+/obj/structure/flora/pottedplant/minitree,
/turf/simulated/floor/tiled/eris/dark/cyancorner,
/area/talon/deckone/bridge)
"bJ" = (
@@ -958,6 +947,9 @@
id = "talon_sensor";
name = "sensor blast shields"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/tiled/eris/dark/cyancorner,
/area/talon/deckone/bridge)
"bX" = (
@@ -1929,6 +1921,9 @@
/area/talon/deckone/starboard_eng)
"hQ" = (
/obj/structure/table/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled/eris/dark/cyancorner,
/area/talon/deckone/bridge)
"id" = (
@@ -2525,9 +2520,13 @@
/turf/simulated/floor/plating/eris/under,
/area/talon/maintenance/deckone_starboard)
"nT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/emblem/talon,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/tiled/eris/white/golden,
/area/talon/deckone/bridge)
"nW" = (
@@ -2699,6 +2698,9 @@
/obj/structure/closet/autolok_wall{
pixel_y = -24
},
+/obj/structure/closet/hydrant{
+ pixel_x = 26
+ },
/turf/simulated/floor/tiled/eris/dark/cyancorner,
/area/talon/deckone/bridge)
"pJ" = (
@@ -4075,9 +4077,6 @@
/obj/machinery/computer/ship/helm{
req_one_access = list(301)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/tiled/eris/dark/cyancorner,
/area/talon/deckone/bridge)
"Gb" = (
@@ -4248,9 +4247,6 @@
/area/talon/deckone/bridge_hallway)
"HW" = (
/obj/machinery/computer/ship/sensors,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/tiled/eris/dark/cyancorner,
/area/talon/deckone/bridge)
"Id" = (
@@ -5140,13 +5136,11 @@
/turf/simulated/floor/hull/airless,
/area/talon/maintenance/deckone_starboard_aft_wing)
"RS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
+/obj/structure/table/steel,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
-/turf/simulated/floor/tiled/eris/white/golden,
+/turf/simulated/floor/tiled/eris/dark/cyancorner,
/area/talon/deckone/bridge)
"RV" = (
/obj/structure/cable/green{
@@ -5418,6 +5412,9 @@
id = "talon_windows";
name = "window blast shields"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/tiled/eris/dark/cyancorner,
/area/talon/deckone/bridge)
"UC" = (
@@ -15410,7 +15407,7 @@ aa
af
ab
ac
-bb
+bI
Nz
bW
tw
@@ -15694,11 +15691,11 @@ aa
ag
ae
al
+ao
+ao
an
ao
ao
-ao
-ao
as
ac
KP
@@ -15836,8 +15833,8 @@ aa
aa
ai
IM
-RS
-on
+LH
+LH
nT
on
uy
@@ -15978,10 +15975,10 @@ aa
aa
ai
IM
+LH
+LH
wm
LH
-LH
-LH
cC
zy
ac
@@ -16122,7 +16119,7 @@ ab
ac
HW
oS
-hQ
+RS
Os
VU
YT
diff --git a/maps/southern_cross/items/encryptionkey_sc.dm b/maps/southern_cross/items/encryptionkey_sc.dm
index c84fe0f0ca5..3e02f2fc089 100644
--- a/maps/southern_cross/items/encryptionkey_sc.dm
+++ b/maps/southern_cross/items/encryptionkey_sc.dm
@@ -6,7 +6,7 @@
/obj/item/device/encryptionkey/explorer
name = "explorer radio encryption key"
icon_state = "com_cypherkey"
- channels = list("Explorer" = 1)
+ channels = list("Explorer" = 1, "Science" = 1)
/obj/item/device/encryptionkey/sar
name = "sar's encryption key"
diff --git a/maps/southern_cross/southern_cross-1.dmm b/maps/southern_cross/southern_cross-1.dmm
index 79854174896..a863c2057f3 100644
--- a/maps/southern_cross/southern_cross-1.dmm
+++ b/maps/southern_cross/southern_cross-1.dmm
@@ -106,9 +106,9 @@
"acb" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"acc" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/fore)
"acd" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/fore)
-"ace" = (/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/shuttle/wall,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod1/station)
+"ace" = (/turf/simulated/shuttle/wall,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod1/station)
"acf" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_pod_1_hatch"; locked = 1; name = "Escape Pod 1 Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod1/station)
-"acg" = (/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/shuttle/wall,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod2/station)
+"acg" = (/turf/simulated/shuttle/wall,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod2/station)
"ach" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_pod_2_hatch"; locked = 1; name = "Escape Pod 2 Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod2/station)
"aci" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/maintenance/firstdeck/forestarboard)
"acj" = (/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "d1fore_starboard_airlock"; pixel_x = -26; req_access = list(13); tag_airpump = "d1fore_starboard_pump"; tag_chamber_sensor = "d1fore_starboard_sensor"; tag_exterior_door = "d1fore_starboard_outer"; tag_interior_door = "d1fore_starboard_inner"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "d1fore_starboard_pump"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard)
@@ -430,11 +430,13 @@
"ain" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/spot{dir = 4},/obj/machinery/camera/network/first_deck{c_tag = "Hangar One - Fore Starboard"; dir = 8},/turf/simulated/floor/tiled/monotile,/area/hangar/one)
"aio" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"aip" = (/obj/machinery/light/small{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fp_emergency)
+"aiq" = (/turf/simulated/floor/airless,/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod2/station)
"air" = (/obj/structure/ladder/up,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fp_emergency)
"ais" = (/turf/simulated/wall/r_wall,/area/storage/emergency_storage/firstdeck/fp_emergency)
"ait" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/construction/firstdeck/construction5)
"aiu" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"aiv" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Fore Hallway One"; dir = 8},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
+"aiw" = (/turf/simulated/floor/airless,/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod2/station)
"aix" = (/obj/item/weapon/storage/box/lights/mixed,/obj/structure/table/steel,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/technology_scanner,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fs_emergency)
"aiy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard)
"aiz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/spot{dir = 8},/obj/machinery/camera/network/first_deck{c_tag = "Hangar Three - Fore Port"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/hangar/three)
@@ -589,7 +591,7 @@
"als" = (/turf/simulated/floor/airless,/area/maintenance/firstdeck/centralport)
"alt" = (/turf/simulated/shuttle/wall,/area/shuttle/large_escape_pod2/station)
"alu" = (/turf/simulated/shuttle/wall/no_join,/area/shuttle/large_escape_pod2/station)
-"alv" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "propulsion_r"},/turf/simulated/floor/airless,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod2/station)
+"alv" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/shuttle1/start)
"alw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hangar/one)
"alx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hangar/one)
"aly" = (/obj/effect/landmark{name = "bluespacerift"},/turf/space,/area/space)
@@ -637,7 +639,7 @@
"amo" = (/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod2/station)
"amp" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod2/station)
"amq" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/structure/closet/crate,/turf/simulated/floor/tiled,/area/hangar/one)
-"amr" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/floor/airless,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod2/station)
+"amr" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/shuttle1/start)
"ams" = (/obj/machinery/vending/cigarette{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/firstdeck/hallway)
"amt" = (/obj/structure/closet,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hangar/one)
"amu" = (/obj/item/weapon/storage/bible,/obj/structure/table/rack,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/firstdeck/foreport)
@@ -659,8 +661,8 @@
"amK" = (/turf/simulated/wall,/area/tcomm/computer)
"amL" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/fscenter)
"amM" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fscenter)
-"amN" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"},/turf/simulated/floor/reinforced,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/shuttle1/start)
-"amO" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"},/turf/simulated/floor/reinforced,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/shuttle1/start)
+"amN" = (/turf/simulated/floor/airless,/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod2/station)
+"amO" = (/turf/simulated/floor/airless,/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station)
"amP" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hangar/three)
"amQ" = (/turf/simulated/floor/airless,/area/rnd/xenobiology/xenoflora)
"amR" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/vending/wallmed1{layer = 3.3; name = "Emergency NanoMed"; pixel_x = -28},/turf/simulated/shuttle/floor/white,/area/shuttle/large_escape_pod2/station)
@@ -769,7 +771,7 @@
"aoQ" = (/obj/machinery/telecomms/bus/preset_three,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcomm/chamber)
"aoR" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/camera/network/telecom{c_tag = "Tcoms - Central Compartment Starboard"; dir = 8},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcomm/chamber)
"aoS" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/tcomm/computer)
-"aoT" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "propulsion_l"},/turf/simulated/floor/airless,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod2/station)
+"aoT" = (/turf/simulated/floor/airless,/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station)
"aoU" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/tiled,/area/tcomm/computer)
"aoV" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/tcomm/computer)
"aoW" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled,/area/tcomm/computer)
@@ -989,6 +991,7 @@
"atc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"atd" = (/obj/structure/sign/hangar/one,/turf/simulated/wall,/area/hangar/onecontrol)
"ate" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/engineering{name = "Utility Down"; req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
+"atf" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion{dir = 1; icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/shuttle2/start)
"atg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/flora/pottedplant/tall,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/port)
"ath" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/port)
"ati" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/green/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
@@ -1225,6 +1228,7 @@
"axF" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
"axG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/station_map{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"axH" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
+"axI" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion{dir = 1; icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/shuttle2/start)
"axJ" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
"axK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
"axL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
@@ -1244,6 +1248,7 @@
"axZ" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"aya" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"ayb" = (/turf/simulated/wall,/area/maintenance/firstdeck/aftport)
+"ayc" = (/turf/simulated/floor/airless,/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station)
"ayd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/port)
"aye" = (/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/port)
"ayf" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/green/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
@@ -1683,9 +1688,9 @@
"aGx" = (/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 4},/turf/simulated/floor/tiled,/area/hangar/two)
"aGy" = (/turf/simulated/floor/reinforced,/area/hangar/two)
"aGz" = (/obj/machinery/computer/telecomms/monitor{dir = 4; network = "tcommsat"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/tcomm/computer)
-"aGA" = (/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_l"},/turf/simulated/floor/airless,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station)
+"aGA" = (/turf/simulated/shuttle/wall,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod3/station)
"aGB" = (/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/industrial/danger{dir = 8},/turf/simulated/floor/tiled,/area/hangar/two)
-"aGC" = (/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/floor/airless,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station)
+"aGC" = (/turf/simulated/shuttle/wall,/obj/structure/shuttle/engine/propulsion/burst{dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod5/station)
"aGD" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station)
"aGE" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/shuttle/floor/white,/area/shuttle/large_escape_pod1/station)
"aGF" = (/obj/structure/grille,/obj/structure/shuttle/window,/turf/simulated/shuttle/plating,/area/shuttle/large_escape_pod1/station)
@@ -1718,7 +1723,7 @@
"aHg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/ascenter)
"aHh" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/ascenter)
"aHi" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/maintenance/firstdeck/aftstarboard)
-"aHj" = (/obj/structure/shuttle/engine/propulsion{dir = 1; icon_state = "propulsion_r"},/turf/simulated/floor/reinforced,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/shuttle2/start)
+"aHj" = (/turf/simulated/shuttle/wall,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod4/station)
"aHk" = (/turf/simulated/shuttle/wall/voidcraft/no_join,/area/shuttle/shuttle2/start)
"aHl" = (/turf/simulated/shuttle/wall/voidcraft,/area/shuttle/shuttle2/start)
"aHm" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel,/area/hangar/two)
@@ -1753,7 +1758,7 @@
"aHP" = (/turf/simulated/floor/tiled,/area/tcomm/entrance)
"aHQ" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/shuttle/shuttle2/start)
"aHR" = (/obj/machinery/teleport/station,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tcomm/entrance)
-"aHS" = (/obj/structure/shuttle/engine/propulsion{dir = 1; icon_state = "propulsion_l"},/turf/simulated/floor/reinforced,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/shuttle2/start)
+"aHS" = (/turf/simulated/shuttle/wall,/obj/structure/shuttle/engine/propulsion/burst{dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod6/station)
"aHT" = (/obj/machinery/teleport/hub,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tcomm/entrance)
"aHU" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/shuttle/shuttle2/start)
"aHV" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/shuttle/plating,/area/shuttle/shuttle2/start)
@@ -2022,7 +2027,7 @@
"aMY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
"aMZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
"aNa" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/engineering/auxiliary_engineering)
-"aNb" = (/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_r"},/turf/simulated/floor/airless,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station)
+"aNb" = (/turf/simulated/floor/airless,/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "burst_r"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/cryo/station)
"aNc" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
"aNd" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/space_heater,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
"aNe" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
@@ -2094,6 +2099,7 @@
"aOs" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/quartermaster/storage)
"aOt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"aOu" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/storage)
+"aOv" = (/turf/simulated/floor/airless,/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "burst_l"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/cryo/station)
"aOw" = (/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
"aOx" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
"aOy" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = list(12)},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
@@ -2256,6 +2262,7 @@
"aRz" = (/turf/simulated/wall,/area/storage/emergency_storage/firstdeck/aft_emergency)
"aRA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/aft_emergency)
"aRB" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/green/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
+"aRC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
"aRD" = (/turf/simulated/wall,/area/security/checkpoint3)
"aRE" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
"aRF" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Escape Pod"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
@@ -2356,11 +2363,11 @@
"aTw" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/brigdoor/eastright{name = "Security Checkpoint"},/turf/simulated/floor/tiled,/area/security/checkpoint3)
"aTx" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/checkpoint3)
"aTy" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/monotile,/area/security/checkpoint3)
-"aTz" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/shuttle/wall,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod3/station)
+"aTz" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
"aTA" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
"aTB" = (/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Aft Starboard Escape Pods"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
"aTC" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/hologram/holopad,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
-"aTD" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 8},/turf/simulated/shuttle/wall,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod5/station)
+"aTD" = (/obj/machinery/status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/blue/border,/obj/item/modular_computer/console/preset/medical{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
"aTE" = (/turf/simulated/shuttle/wall,/area/shuttle/escape_pod6/station)
"aTF" = (/turf/simulated/shuttle/wall/no_join{base_state = "orange"; icon = 'icons/turf/shuttle_orange.dmi'; icon_state = "orange"},/area/shuttle/escape_pod6/station)
"aTG" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/shuttle/plating,/area/shuttle/escape_pod4/station)
@@ -2380,7 +2387,6 @@
"aTU" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"aTV" = (/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint3)
"aTW" = (/turf/simulated/floor/tiled/monotile,/area/security/checkpoint3)
-"aTX" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/shuttle/wall,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod4/station)
"aTY" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
"aTZ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{frequency = 1380; id_tag = "escape_pod_6_berth"; pixel_x = 25; pixel_y = 30; tag_door = "escape_pod_6_berth_hatch"},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
"aUa" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_pod_6_berth_hatch"; locked = 1; name = "Escape Pod 6"; req_access = list(13)},/turf/simulated/floor,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
@@ -2545,7 +2551,6 @@
"aXd" = (/obj/structure/table/steel,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/material/minihoe,/obj/item/device/analyzer/plant_analyzer,/obj/item/clothing/head/greenbandana,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
"aXe" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
"aXf" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
-"aXg" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 8},/turf/simulated/shuttle/wall,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod6/station)
"aXh" = (/turf/simulated/wall,/area/security/prison)
"aXi" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/security/prison)
"aXj" = (/turf/simulated/floor/tiled/freezer,/area/security/prison)
@@ -5799,7 +5804,6 @@
"cjN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
"cjO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
"cjP" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"cjQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
"cjR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
"cjS" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/starboard)
"cjT" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
@@ -5926,7 +5930,6 @@
"cmu" = (/obj/machinery/computer/centrifuge,/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Starboard"; dir = 8},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
"cmv" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/virology)
"cmE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/wingrille_spawn/reinforced_phoron,/turf/simulated/floor,/area/engineering/engine_monitoring)
-"cmF" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/regular{dir = 8; id = "SupermatterPort"; layer = 3.3; name = "Reactor Blast Door"},/turf/simulated/floor,/area/engineering/engine_room)
"cmG" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
"cmH" = (/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
"cmI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
@@ -7616,7 +7619,6 @@
"cUd" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/ward)
"cUe" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/machinery/newscaster{pixel_x = 30},/obj/structure/curtain/open/privacy,/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/paleblue/border{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/ward)
"cUf" = (/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/machinery/clonepod/full,/turf/simulated/floor/tiled/white,/area/medical/genetics_cloning)
-"cUg" = (/obj/machinery/status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/blue/border,/obj/item/modular_computer/console/preset/medical{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo{dir = 1})
"cUh" = (/obj/machinery/dna_scannernew,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/genetics_cloning)
"cUi" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/genetics_cloning)
"cUj" = (/obj/structure/closet/wardrobe/medic_white,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/genetics_cloning)
@@ -8547,7 +8549,6 @@
"dlY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
"dlZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main)
"dma" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = list(12,25,27,28,35)},/turf/simulated/floor/plating,/area/chapel/main)
-"dmb" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -32; pixel_y = 30},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
"dmc" = (/obj/machinery/door/airlock/glass{name = "Cryogenic Storage"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/hallway/secondary/docking_hallway2)
"dmd" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/bar)
"dme" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = list(12,25,27,28,35)},/turf/simulated/floor/plating,/area/maintenance/bar)
@@ -8719,7 +8720,6 @@
"dpo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/light{dir = 1},/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/construction/seconddeck/construction2)
"dpp" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/construction/seconddeck/construction2)
"dpq" = (/turf/simulated/floor/plating,/area/construction/seconddeck/construction2)
-"dpr" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "burst_r"},/turf/simulated/floor/airless,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/cryo/station)
"dps" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/chapel)
"dpt" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "cryostorage_shuttle"; name = "cryostorage controller"; pixel_x = -26; req_access = list(19); tag_door = "cryostorage_shuttle_hatch"},/obj/effect/landmark{name = "JoinLateCryo"},/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
"dpu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
@@ -8860,7 +8860,6 @@
"drZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/checkpoint2)
"dsa" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/tool/crowbar,/obj/item/weapon/pen,/obj/item/device/flash,/obj/machinery/camera/network/security{c_tag = "SEC - Arrival Checkpoint"; dir = 8},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint2)
"dsb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/gamblingtable,/obj/item/weapon/deck/cards,/turf/simulated/floor/plating,/area/construction/seconddeck/construction2)
-"dsc" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "burst_l"},/turf/simulated/floor/airless,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/cryo/station)
"dsd" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/chapel)
"dse" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/chapel)
"dsf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access = list(12)},/turf/simulated/floor/plating,/area/maintenance/chapel)
@@ -10838,20 +10837,14 @@
"edY" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 5},/turf/simulated/floor/tiled,/area/engineering/foyer)
"edZ" = (/obj/machinery/shipsensors,/obj/structure/lattice,/obj/structure/catwalk,/turf/space,/area/hallway/primary/seconddeck/ascenter)
"eea" = (/obj/machinery/computer/ship/sensors,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/ascenter)
-"euC" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; req_access = list(11)},/turf/simulated/floor,/area/engineering/engine_room)
-"jEU" = (/obj/machinery/door/blast/regular{id = "EngineVent"; name = "Reactor Vent"},/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced/airless,/area/engineering/engine_room)
-"lUM" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"oXt" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; req_access = list(11)},/turf/simulated/floor,/area/engineering/engine_room)
-"pew" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"rct" = (/turf/simulated/floor/greengrid/nitrogen,/area/engineering/engine_room)
-"rsg" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/regular{id = "SupermatterPort"; layer = 3.3; name = "Reactor Blast Door"},/turf/simulated/floor,/area/engineering/engine_room)
-"skI" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Core 2"; dir = 1},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"syt" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"tIr" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
"tZc" = (/obj/effect/landmark/engine_loader,/turf/space,/area/space)
+<<<<<<< HEAD
"xwB" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
>>>>>>> 3e4bf4a... Merge pull request #7574 from Rykka-Stormheart/shep-dev-engine-randomization
+=======
+
+>>>>>>> 01c333e... Map Fixes (#7758)
(1,1,1) = {"
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -10969,11 +10962,11 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaeFafCajEafEafFajFajGajHajIagZagWajJajKafGafFafKajEaiGaeFajLaioajMadlaaaaaaaaaaabaaaaaaajpajpajoajNajOajPajQajRajSajTajUahUajVajWajXajYajZakaakbakcajwajxajxaaaaaaaabaaaaaaaaaadFakdajyakeaeZaiSakfaiAagmagmagmagmagmagmagmagmagmagmagmagVakfagpaeZcdzcdCcdBcfocfncfpcfpckbcjEclTclTcpDcnNcpFcpEcpHcpGcvHcpHcItcCgcLTcJxcOQcLUcSccPZcTFaowaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaeFafCajEakgafFakhagZagZagZagZakiakjaJtaklafFafKajEaiGaeFahcakmaknadlaaaaaaaaaaaaaaaajpajpakoakpakqakraksaktakuakvakwakxakyakzakAakBakCakDakEakFakGakHakIajxajxaaaaaaaaaaaaaaaadFakJakKaikaeZaiSakfaiAagmagmagmagmagmagmagmagmagmagmagmagVakfagpaeZcXDdfZcYadjyarMcfpcfpdGcdkodGydGydVCdOZdVEdVDdGydVFdVGdGydVIdVHdVKdVJdVMdVLdVOdVNdVPaowaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakLakLakLakLakLakLakLakLakLakLakLakLakLaeFaeFakMakgafFafGalzakOakNakNakPakQakRakSafFafKakTaeFaeFaeFaioakUadlaaaaaaaaaaaaajpajpakoakVakWakWakXakYakZalaalbalcaldalealfalgalhalialjalkallalmalmalnakIajxajxaaaaaaaaaaaaadFaloaiyaeZaeZaeZalpaiAagmagmagmagmagmagmagmagmagmagmagmagValqaeZaeZdVQdVSdVRapiaqzdVUdVTdVVdVTdVVdVWdVYdVXdWadVZdVVdVVdVVdVVdWbbmqdWddWcdWedWcdWcdWfdWgaowaafaafaafaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalsalsaltaltaltalualtaltalualtaltaltalvaeFalwalxakgafFafGalAalBaAxalCaAyalBaDdafGafFafKalDalEaeFahcaioadladlaaaaaaaaaajpajpakoakoalFakoalGalHalHalHalHalHalHalHalHalHalHalHalHalIalIalIalJakIalKakIakIajxajxaaaaaaaaaadFadFaiyaikaeZalLalMaiAagmagmagmagmagmagmagmagmagmagmagmagValNaijaeZambdfZcYadWibmqdWkdWjdWmdWldWodWndWqdWpdWsdWrdWudWtdWwdWvdWxbmqdWzdWydWBdWAbHAdWCdWDaowaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalsaltalRalSalTalUalValWalXalYalZamaamraeFamcajEafEafFaiDaiDahBafFafFafFahBaiDaiDafFafKajEamdaeFameaioadLaaaaaaaaaaaaajpakoakVakWamfamgalHalHalHalHalHalHalHalHalHalHalHalHalHalIalIalIalIamhamialmalnakIajxaaaaaaaaaaaaaejaiyamjaeZaiSamkaiAagmagmagmagmagmagmagmagmagmagmagmagVakfagpaeZamsdWGdWFdWHbmqdWIarMdWJarMbmqbmqdWLdWKdWNdWMbmqarMdWJarMdWObmqdWQdWPdWSdWRdWUdWTdWVaowaaaaaaaaaaaaaafaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalsammamnamoamoamoamoamoamoamoampamaamraeFamqajEafEafFamNamOafFafFafFafFafFamNamOafFafKajEamtaeFamudWWadLaaaaaaaaaajoajoamvalFakoamwamxalHalHalHamyamzamAamBamCamDamEamBamFamGamHamIamJalIamKamLakIalKamMajwajwaaaaaaaaaaejaiyantaeZanEamkaiAagmagmagmagmagmagmagmagmagmagmagmagVakfamPaeZapTdWZdWYdXbdXadXddXcdXbdXbdXfdXedXhdXgdXjdXidXkdXbdXmdXldXnaSNdXodXodXodXodXodXodXodXodXoaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalsaltalRamRamSamTaSjamUamVamWamXamaamraeFamYamZanaanbanbanbanbanbanbanbanbanbanbanbancandaneaeFanfaioadLaaaaaaaaaajoanganhalFalGanianianialHalHanjanjanjanjanjankanlanmanmannanoanpanqalIalIalIalJalKanransajwaaaaaaaaaaejaiyaoaaeZanuanvanwanxanxanxanxanxanxanxanxanxanxanxanyanzanAaeZdXpdXrdXqdXqdXsdXudXtdXwdXvdXxdXvdXzdXydXBdXAdXDdXCdXFdXEdXHdXGdXodXIdXKdXJdXMdXLdXKdXNdXobhgbhgaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalsalsaltaltaltaluanDanDalualtaltaltaoTaeFanFanGanHanHanIanHanHanJanKanLanManNanNanNanNanOamtaeFanPaioadladlaaaaaaajpanQanRanSanianiaoJaoKanialHanVanWanXanYanZanZaEyaobaocaodaoealIaofalIaogalIalIaohaoiaojajxaaaaaaadFadFaiyaokaeZaolaomaonaonaonaonaooaopaoqaoraosaosaotaosaosaouaovaeZdXOdXQdXPdXRapiatLdXSapidXUdXWdXVdXXaSNaSNdXYaSNaZYdXZcfodXHdYadXodYbdYcdXJdXMdXLdXKdYddXodXodYfdYedXoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalsalsaltaltaltalualtaltalualtaltaltaiqaeFalwalxakgafFafGalAalBaAxalCaAyalBaDdafGafFafKalDalEaeFahcaioadladlaaaaaaaaaajpajpakoakoalFakoalGalHalHalHalHalHalHalHalHalHalHalHalHalIalIalIalJakIalKakIakIajxajxaaaaaaaaaadFadFaiyaikaeZalLalMaiAagmagmagmagmagmagmagmagmagmagmagmagValNaijaeZambdfZcYadWibmqdWkdWjdWmdWldWodWndWqdWpdWsdWrdWudWtdWwdWvdWxbmqdWzdWydWBdWAbHAdWCdWDaowaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalsaltalRalSalTalUalValWalXalYalZamaaiwaeFamcajEafEafFaiDaiDahBafFafFafFahBaiDaiDafFafKajEamdaeFameaioadLaaaaaaaaaaaaajpakoakVakWamfamgalHalHalHalHalHalHalHalHalHalHalHalHalHalIalIalIalIamhamialmalnakIajxaaaaaaaaaaaaaejaiyamjaeZaiSamkaiAagmagmagmagmagmagmagmagmagmagmagmagVakfagpaeZamsdWGdWFdWHbmqdWIarMdWJarMbmqbmqdWLdWKdWNdWMbmqarMdWJarMdWObmqdWQdWPdWSdWRdWUdWTdWVaowaaaaaaaaaaaaaafaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalsammamnamoamoamoamoamoamoamoampamaaiwaeFamqajEafEafFalvamrafFafFafFafFafFalvamrafFafKajEamtaeFamudWWadLaaaaaaaaaajoajoamvalFakoamwamxalHalHalHamyamzamAamBamCamDamEamBamFamGamHamIamJalIamKamLakIalKamMajwajwaaaaaaaaaaejaiyantaeZanEamkaiAagmagmagmagmagmagmagmagmagmagmagmagVakfamPaeZapTdWZdWYdXbdXadXddXcdXbdXbdXfdXedXhdXgdXjdXidXkdXbdXmdXldXnaSNdXodXodXodXodXodXodXodXodXoaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalsaltalRamRamSamTaSjamUamVamWamXamaaiwaeFamYamZanaanbanbanbanbanbanbanbanbanbanbanbancandaneaeFanfaioadLaaaaaaaaaajoanganhalFalGanianianialHalHanjanjanjanjanjankanlanmanmannanoanpanqalIalIalIalJalKanransajwaaaaaaaaaaejaiyaoaaeZanuanvanwanxanxanxanxanxanxanxanxanxanxanxanyanzanAaeZdXpdXrdXqdXqdXsdXudXtdXwdXvdXxdXvdXzdXydXBdXAdXDdXCdXFdXEdXHdXGdXodXIdXKdXJdXMdXLdXKdXNdXobhgbhgaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalsalsaltaltaltaluanDanDalualtaltaltamNaeFanFanGanHanHanIanHanHanJanKanLanManNanNanNanNanOamtaeFanPaioadladlaaaaaaajpanQanRanSanianiaoJaoKanialHanVanWanXanYanZanZaEyaobaocaodaoealIaofalIaogalIalIaohaoiaojajxaaaaaaadFadFaiyaokaeZaolaomaonaonaonaonaooaopaoqaoraosaosaotaosaosaouaovaeZdXOdXQdXPdXRapiatLdXSapidXUdXWdXVdXXaSNaSNdXYaSNaZYdXZcfodXHdYadXodYbdYcdXJdXMdXLdXKdYddXodXodYfdYedXoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaakLatTatTakLakLakLakLaoxaoxaoyaoyaoyaoyaoyaeFaeFaeFaeFaeFaeFaeFaeFaozahcaoAaeFaoBaoBaoBaeFaeFaeFaeFafMaoCaoDadlaaaaaaajpaoEaoFaoGaoHaoIapOarganialHanjaoLaoMaoNaxjanZaoOaoPaoQaoRaoSaGeaoUaoVaoWaoXalIaoYaoZapaajxaaaaaaadFapbapcapdaeZaeZaeZaikapeapeapeaikapfaikapgaikaeZaeZaeZaeZaeZaeZaeZaphaphaphaphaphdYgdYgalralralralralralrdYidYhalralrdXZdYjdYkdWHdXodYldXKdXJdXMdXLdXKdYldXodYmdYodYndXodXoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafakLakLapjapkaplapmapnakLapoapoappapqaprapsaptapuapvapwapxapyapyapzapuapAapAapBapCapDapEapFapCapGafMadlapHapIapJadlaaaaaaajpapKapLapManiapNaNGaNHanialHanjanjanjanjanjapPapQapQapQapRapSaGzapUapVapWapXalIapYapZaqaajxaaaaaaadFaqbaghaqcaqdaqeaqfaqgaqhaqiaqjaqgaqkaqlaqlaqmaqnaqoaqoaqpaqqaqraqmaqsaqtaquaqvaqwaqxaqxalraqydYpaqAaqBaqCalOdYqatMalrdYtdYsdXodXodXodYudYwdYvdYydYxdYAdYzdXodYBdYDdYCdYFdYEdYGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaakLakLaqDaqDapkaqEaqFaqFaqGaqHaqIaqJaqKaqLaqMaqNapuapvaqOaqPapyapyapyapuaqQaqQaqRaqSaqTaqUaqVapCaqWaqXaqYaqZaraarbadlaaaaaaajoarcardareaniarfaOdaNWanialHarhariarjarkarlarmarnarkaroarparqarrarsartaruarvalIarwapZarxajwaaaaaaadFaryaghaghaghaghagharzarAarBarCarDarEarFarFaqmarGarHaqoarIaqqaqqaqmarJarKarLdYHarNarOarPdYIarRarRarRarRarRarRalOalralrdYKdYJdXodYLdYNdYMaShdYOdYRdYQaShdYSdYUdYTdYWdYVdXodXodXodXodXoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -10987,11 +10980,11 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaakLakLapkapkapkapkaqDaqDaqDaqDaqDazVazWazWazXaxVayQayRayRazYayRayRayVaxVazZaAaaAaaAbazbazbaAcaAcaAcaAcaAcaAcaAcaAdaybaaaaaaaAeaAfaAgaAhauAazrazqaAjaAiauAaAnaAoaApaAkaAraAsaAtaAuaAvaAwaGoaBNaAzaAAaABaACaAzaADaAEaAFaAGaaaaaaayxaAHazBaAIaAIaAIaAIaAJaAKaALaAMaANaAOaAPaAPayDaAQaARaASazNaATaAUayDaAVaAWaAXaAYaAZaBaaBbeaKaBdaBdaBearRarRarRalralrdXodXodXodXoeaLeaNeaMeaPeaOeaReaQeaPeaSeaTdYTdYTeaUdXodXodXodXodXoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaafaafakLakLaBfaBfaBgaBhaBiaBjaBkaBlaxTaBmaBmaBmaxVayQaBnayRaBoayRaBpaBqaxVaBraBsaBsaBtaBtaBtaBtaBtaBtaBtaBtaBuaBvaBwaybaaaaaaaBxaByaBzaBAaBDaAqaAmaBCaBBaBGaBHaBIaBJaBJaBKaBJaBEaBFaAvaCWaBOaBPaBQaBRaBSaBTaAzaBUaBVaBWaBXaaaaaaayxaBYazBaAIaBZaCaaCaayyaCbaFDaCdayyaqkaqlaqlayDaCeaCfayDaCgaARaChayDaCiaCjaCkaClaCmaCnaCnalraCoalOaCpaCqaCralralraafaaaaaaaaadXodXodXoeaVeaXeaWdYyeaYebaeaZdXodZbdZbdZbebbdXoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaakLakLaBfaCsaCsaCsaCsaCtaCtaCsaCsaCuaCsaCsaCsaCsaCsaCsaCsaCsaCsaCvaCwaCxaCyaBtaCzaCAaCBaCCaCDaCEaBtaybaCFaCGaybaaaaaaaBxaCHaCIaCJauAaBLaBMaCZaCKaCLaCPaCQaCRaCSaCTaCUaCVaCXaAvaGpaCYaDbaDadVsaDcaHbaAzaDeaDfaDgaBXaaaaaaayxaDhaDiaAIaDjaDjaDjaDkaDlaDlaDlaDkaDmaDkaDnaDkaDjaDjaDjaDjaDjaDjaDjazUazUazUazUazUaDoaDoalralralralravpavpalraaaaaaaaaaaaaaaaaaaaadXodYldXKdXKdYydXKdXKdYldXoebcebeebddXodXoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxTalsaCtaDpaDqaDraDsaDtaDuaDvaDwaDxaDtaDyaDzaDAaDBaDCaDDaDEaDFaDGaDHaDIaDJaDKaDLaDMaDMaDMaDNaBtaDOaDPaybaybaaaaaaaBxaDQaCMaDSaCNaCNaykaykaykaykaDUaDVaDWaDXaDYaDZaEaaEbaEcaEdaEeaEfaAzaEgaEhaAzaAzaEiaEjaEkaBXaaaaaaayxayxaElaEmaDjaEnaEoaEpaEpaEpaEpaEqaEraEsaEtaEuaEuaEvaEuaEuaEwaExaDjaGAaEzaEzaEzaEAaEBaEBaECaEzaEzaEzaEDaEDaaaaaaaaaaaaaaaaaaaaaaaadXodYbdZBdXKdYydXKdXKdYddXodXodYfdYedXoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxTalsaCtaEEaEFaEGaEHaEHaEIaEJaEJaEKaELaEMaENaENaEOaEPaEQaERaESaETaEUaEVaEWaEXaEYaEZaDMaDMaFaaFbaDOaDPaFcaaaaaaaaaaAeaFdaFeaFfaFgauHauHaFhaFhaDTaFiaFjaCUaCUaCUaFkaCVaFlaFmaFnaFoaFpaAzaAzaAzaAzaFqaFraFsaFtaAGaaaaaaaaaaFuaElaFvaDjaFwaFxaFyaFzaFzaFzaFzaFzaFzaFzaFzaFzaFzaFzaFAaFBaFCaDjaGCaFEaFFaFGaFHaFIaSBaFKaFLaFMaFNaEzaEDaaaaaaaaaaaaaaaaaaaaaaaadXoebfdXKdXKdYydXKdXKebgdXobhgbhgaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxTalsaCtaEEaFOaFPaFPaFPaFPaFPaFPaFPaFRaFSaEPaEPaFTaEPaEPaFUaFVaFWaFXaFYaFZaGaaDMaGbaGcaGdaHYaBtaDOaDPaFcaaaaaaaaaaAeaAeaGfaFfaFfaGgaDTauHaFhaDTaGhaGiaGjaGkaCUaGlaGmaGnaAvaHdaHcaHPaGqaAzaGraGsaGtaFraGuaAGaAGaaaaaaaaaaFuaElaGvaDjaEnaGwaGxaGyaHjaHSaGyaGyaGyaGyaGyaHjaHSaGyaGBaGwaLhaDjaGCaFEaGDaFJaFJaFJaFJaFJaFJaFJaGEaGFaEDaaaaaaaaaaaaaaaaaaaaaaaadXodXodXodXodXodXodXodXodXoaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxTalsaCtaEEaFOaFPaFPaFPaFPaFPaFPaFPaFRaGGaEPaEPaFTaEPaEPaGHaCxaGIaGJaGKaGLaGMaGNaGOaGPaGQaGRaBtaybaGSaFcaaaaaaaaaaaaaBxaFfaFfaFfaFfaGTauHauHauHaGUauHaGVaGWaGXaCUaGYaGZaHaaOeaHRaHTaAvaAvaHeaHfaHgaHhaGtaBXaaaaaaaaaaaaaFuaElaHiaDjaMtaGwaGxaGyaHkaHkaHlaGyaGyaGyaHlaHkaHkaGyaGBaGwaHmaDjaGCaFEaHnaHoaHpaHqaHraHsaHtaHuaFNaEzaEDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxTalsaCtaHvaFOaFPaFPaFPaFPaFPaFPaFPaHwaHxaHxaHxaFTaEPaEPaHyaCxaHzaHAaHBaEWaEWaGLaHCaEWaEWaEWaEWaHDazhaybaybaaaaaaaaaaBxaBxaFfaFfaFfaFfaFgaHEaHFaHFaHFaHGaHHaHIaHJaHKaHLaAvaAvaAvaAvaAvaFqaGtaFraGtaGtaBXaBXaaaaaaaaaayxayxaElaDkaDjaHMaHNaGxaGyaHOaHVaHQbqBaMzbskaHQbsmaHOaGyaGBaHWaHXaDjaNbaEzaEzaEzaEAaEzaEzaECaEzaEzaEzaEDaEDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxTalsaCtaDpaDqaDraDsaDtaDuaDvaDwaDxaDtaDyaDzaDAaDBaDCaDDaDEaDFaDGaDHaDIaDJaDKaDLaDMaDMaDMaDNaBtaDOaDPaybaybaaaaaaaBxaDQaCMaDSaCNaCNaykaykaykaykaDUaDVaDWaDXaDYaDZaEaaEbaEcaEdaEeaEfaAzaEgaEhaAzaAzaEiaEjaEkaBXaaaaaaayxayxaElaEmaDjaEnaEoaEpaEpaEpaEpaEqaEraEsaEtaEuaEuaEvaEuaEuaEwaExaDjamOaEzaEzaEzaEAaEBaEBaECaEzaEzaEzaEDaEDaaaaaaaaaaaaaaaaaaaaaaaadXodYbdZBdXKdYydXKdXKdYddXodXodYfdYedXoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxTalsaCtaEEaEFaEGaEHaEHaEIaEJaEJaEKaELaEMaENaENaEOaEPaEQaERaESaETaEUaEVaEWaEXaEYaEZaDMaDMaFaaFbaDOaDPaFcaaaaaaaaaaAeaFdaFeaFfaFgauHauHaFhaFhaDTaFiaFjaCUaCUaCUaFkaCVaFlaFmaFnaFoaFpaAzaAzaAzaAzaFqaFraFsaFtaAGaaaaaaaaaaFuaElaFvaDjaFwaFxaFyaFzaFzaFzaFzaFzaFzaFzaFzaFzaFzaFzaFAaFBaFCaDjaoTaFEaFFaFGaFHaFIaSBaFKaFLaFMaFNaEzaEDaaaaaaaaaaaaaaaaaaaaaaaadXoebfdXKdXKdYydXKdXKebgdXobhgbhgaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxTalsaCtaEEaFOaFPaFPaFPaFPaFPaFPaFPaFRaFSaEPaEPaFTaEPaEPaFUaFVaFWaFXaFYaFZaGaaDMaGbaGcaGdaHYaBtaDOaDPaFcaaaaaaaaaaAeaAeaGfaFfaFfaGgaDTauHaFhaDTaGhaGiaGjaGkaCUaGlaGmaGnaAvaHdaHcaHPaGqaAzaGraGsaGtaFraGuaAGaAGaaaaaaaaaaFuaElaGvaDjaEnaGwaGxaGyatfaxIaGyaGyaGyaGyaGyatfaxIaGyaGBaGwaLhaDjaoTaFEaGDaFJaFJaFJaFJaFJaFJaFJaGEaGFaEDaaaaaaaaaaaaaaaaaaaaaaaadXodXodXodXodXodXodXodXodXoaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxTalsaCtaEEaFOaFPaFPaFPaFPaFPaFPaFPaFRaGGaEPaEPaFTaEPaEPaGHaCxaGIaGJaGKaGLaGMaGNaGOaGPaGQaGRaBtaybaGSaFcaaaaaaaaaaaaaBxaFfaFfaFfaFfaGTauHauHauHaGUauHaGVaGWaGXaCUaGYaGZaHaaOeaHRaHTaAvaAvaHeaHfaHgaHhaGtaBXaaaaaaaaaaaaaFuaElaHiaDjaMtaGwaGxaGyaHkaHkaHlaGyaGyaGyaHlaHkaHkaGyaGBaGwaHmaDjaoTaFEaHnaHoaHpaHqaHraHsaHtaHuaFNaEzaEDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxTalsaCtaHvaFOaFPaFPaFPaFPaFPaFPaFPaHwaHxaHxaHxaFTaEPaEPaHyaCxaHzaHAaHBaEWaEWaGLaHCaEWaEWaEWaEWaHDazhaybaybaaaaaaaaaaBxaBxaFfaFfaFfaFfaFgaHEaHFaHFaHFaHGaHHaHIaHJaHKaHLaAvaAvaAvaAvaAvaFqaGtaFraGtaGtaBXaBXaaaaaaaaaayxayxaElaDkaDjaHMaHNaGxaGyaHOaHVaHQbqBaMzbskaHQbsmaHOaGyaGBaHWaHXaDjaycaEzaEzaEzaEAaEzaEzaECaEzaEzaEzaEDaEDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakLakLaCsaEEaFOaFPaFPaFPaFPaFPaFPaFPaHZaHZaHZaIaaFTaEPaEPaIbaESaIcaHAaIdaIeaIfaDHaIgaESaDOaIhaIiaAcazhaIjaybaaaaaaaaaaaaaBxaBxaFfaFfaFfaFfaIkaIlaImaInazlaIoaIpaIqaIraIsaItaIuaIvaIwaIxaHgaHgaHhaGtaBXaBXaaaaaaaaaaaaayxaIyaElaDjaDjaDjaIzaGxaGyaIAaIBaICaIDaIEaIEaIFbwsaHOaGyaGBaIGaDjaDjalralralralralralralralralralralralralraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCOaEEaFOaFPaFPaFPaFPaFPaFPaFPaIHaIIaIJaIIaIKaENaENaILaIMaINaIOaIPaIQaIRaIQaISaITaDOaIhaAcaAcaIUaIVaybaaaaaaaaaaaaaaaaBxaBxaFfaIWaIXaIYaIZaJaaJbaJcaJdaJeaJfaJgaJhaJiaJjaJkaJlaJmaJnaJoaGtaBXaBXaaaaaaaaaaaaaaaayxaJpaJqaDkaDjaJraGwaGxaGyaJsaTJaJuaJvaJwaJwaJwaJwaJxaGyaGBaGwaJyaDjaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaDRaJzaFOaFPaFPaFPaFPaFPaUcaFPaFRaEPaEPaJAaFTaJBaJCaJDaJEaJFaJGaJHaJIaJJaJKaJLaESaDOaJMaJNaAcazhaJOaybaaaaaaaaaaabaaaaaaaBxaBxaAeaJPaJQaJRaJSaInazlaIoaJTaJUaJVaJWaJXaJYaJZaKaaKbaKcaAGaBXaBXaaaaaaaabaaaaaaaaaayxaKdaElaKeaDjaJraGwaGxaGyaHOaKfaKgaKhaJwaKiaKjaKkaKlaGyaGBaGwaJyaDjaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaKmaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -11009,13 +11002,13 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaFcbySbyQaQBaQCaQDaQDaQEaQFaQGaQHaQDaQIaQDaQJaQKaQLaQMaQNaQKaQOaQPaQQaQRaQSaQKaQTaQUaQVaQVaQWaQXbznbzXaFuaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaagaadaadabcaagaagaadaadaafaagaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaabaaaaaaaaaaMfazgazgaybaRaaRbaRbaRcaRdaReaRfaRgaRhaRbaRiaRjaRkaRlaRmaRjaRnaRjaRoaRpaRqaRraRsaRtaRjaRjaRuayxazBazBaPIaaaaaaaaaaabaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaafaadaadaadaafaaeaagaadaadaadaafaaaaafaagaadaadaadaadaafaaeaaaaMfaMfaMfaMfaLOaLOaLOaRvaRwaRxaRyaRzaRAaRzaRzaRBaKvaPZaKwaKxaRDaRDaRDaRDaREaRFaRGaRHaLOaLOaLOaPIaPIaPIaPIaafaafaadaadaadaadaKmaaaaadaafaadaadaadaadaadaadaadaaaaaeaKmaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaRIaRJaRJaRKaRJaTzaRMaRNaROaRMaRPaRQaRRaRzaRSaRTaPZaRUaRSaRDaRVaRWaRWaREaRYaRZaSaaTDaScaSdaScaScaSeaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaRIaRJaRJaRKaRJaGAaRMaRNaROaRMaRPaRQaRRaRzaRSaRTaPZaRUaRSaRDaRVaRWaRWaREaRYaRZaSaaGCaScaSdaScaScaSeaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaaaaaaaaaaSfaaaaaaaaaaaaaaaaSfaaaaaaaaaaSfaSfaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRIaSgbEoaSidHcaSkaSlaSmaSnaRMaSoaSpaSqaSraRSaSsaStaKTaKRaRDaSuaRVaSvaSwaSxaSydgEaSAdLkaSCaSDaSEaSeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaaaaaaaaaaSfaSfaSfaSfaSfaSfaSfaaaaaaaaaaSfdLNaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRIaRJaRJaRKaRJaTzaRMaSFaSGaRyaRzaRzaRzaRzaRSaSHaSIaSJaSKaSLaSMebkaSOaREaSPaSQaSaaTDaScaSdaScaScaSeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaaaaaaaaaaSfaSfaSfaSfaSfaSfaSfaaaaaaaaaaSfdLNaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRIaRJaRJaRKaRJaGAaRMaSFaSGaRyaRzaRzaRzaRzaRSaSHaSIaSJaSKaSLaSMebkaSOaREaSPaSQaSaaGCaScaSdaScaScaSeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaaaaaaaSfaSfaSfaSfaSfaSfaSfaSfaSfaaaaaaaSfaSfaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSRaRyaRyaRyaRyaRyaRyaSSaSTaRyaSUaSVaSWaSXaSYaSZaTaaTbaTcaTdaTeaTfaTVaREaThaTiaREaREaREaREaREaREaTjaaaaaaaaaaTkaaaaaaaaaaTkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaaaaaaaSfaSfaSfaSfaSfaSfaSfaSfaSfaaaaaaaSfaSfaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRIaTlaTlaTmaTlaTXaRMaToaTpaTqaTraTbaTbaTbaTsaTbaTtaTuaTvaTwaTxaTyaVYaTAaTBaTCaSaaXgaTEaTFaTEaTEaSeaaaaaaaaaaTkaaaaaaaaaaTkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaaaaaaaSfaSfaSfaSfaSfaSfaSfaSfaSfaaaaaaaSfaSfaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRIaTlaTlaTmaTlaHjaRMaToaTpaTqaTraTbaTbaTbaTsaTbaTtaTuaTvaTwaTxaTyaVYaTAaTBaTCaSaaHSaTEaTFaTEaTEaSeaaaaaaaaaaTkaaaaaaaaaaTkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRIaTGaTHaTIdPJaTKaTLaTMaTNaRyaTOaTPaTQaTRaRnaTSaTTaTUaTcaTdbtcaTWbwDaREaTYaTZaUaaUbdYPaUdaUeaUfaSeaaaaaaaaaaTkaaaaaaaaaaTkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRIaTlaTlaTmaTlaTXaRMaUgaUhaRydnCaKRaUjaUkaUlaUmaUnaUmaUoaUkaUpaUqaUraREaUsaUtaSaaXgaTEaTFaTEaTEaSeaaaaaaaaaaTkaTkaTkaTkaTkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRIaTlaTlaTmaTlaHjaRMaUgaUhaRydnCaKRaUjaUkaUlaUmaUnaUmaUoaUkaUpaUqaUraREaUsaUtaSaaHSaTEaTFaTEaTEaSeaaaaaaaaaaTkaTkaTkaTkaTkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUuaUvaUvaUvaUvaUvaRyaUwaUwaRMaUxaUkaUkaUkaUyaUzaUAaUzaUBaUkaUCaUCaUCaREaUDaUEaREaUvaUvaUvaUvaUvaUuaaaaTkaTkaTkaTkaTkaTkaTkaTkaTkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUFaUGaUHaUFaUIaUJaUKaULaUMaUNaUOaUPaUQaURaUSaUTaUUaUVaUWaUXaUYaULaUYaUZaUMaVaaVbaVcaVdaUFaVeaVfaUFaTkaTkaTkaTkaTkaTkaTkaTkaTkaTkaTkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVgaVhaViaVjaVkaVlaVmaVnaVoaVpaVqaVraVraVraVraVsaVtaVuaVraVraVraVraVvaVwaVxaVyaVmaVlaVzaVAaVBaVCaVDaTkecraTkaTkaTkaTkaTkaTkaTkaTkaTkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -11109,6 +11102,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
dYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
"}
+
(1,1,2) = {"
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -11261,15 +11255,15 @@ aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbA
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcAzcAzbBEbVJbVKbVLbVMbVNbVObQgbVPbTMbVQbVRbVSbVTbTRbVUbQkbVVbVWbVXbVYbVZbWabNjbWbbWcbWdbWebWfbWgbWhbWibWjbUhbWkbWlbWmbWnbWobWpbWqbStbWrbymbCrbWsbGZaaaaaabLBbLBbWtbQJbSwbWubWvbWwbWxbWybWxbWxbWzbWAbKjbWBbWCbWDbWEbWDbWFbWGbWDbWDbWHbUHbSMbNEbWIbLHbLHaaaaaabvibUKbxibWJbPvbWKbWLbWMbUPbWNbPvbYxbxHcfqbxHbPCbPCbWPbWQbWRbWSbVabWTbWUbWVbWWbWXbPCbWYbWZbXabXbbVjbXcbTobXdbPFbXebXfbXgbPIbXhbBvbKBbVrbXibXjbXkbXlbXmbXnbVubGsaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcAzcAzbBEbXybXzbKZbDibXAbXBbQgbXCbTMbTObZibXEbTObTRbXFbQkbZlbXHbXIchibXKbXLbXMbXNbXObGLbXPbUcbQwbXQbXRbXRbXSbQwbStbXTbXUbXVbXWbXXbStbWrbymcWTbDLbGZaaaaaabLBbXYbXZbYabYbbYcbWwbWwbYdbYebYfbWwbYgbWAbWAbYhbWDbWDbYlbYjbYkbZOcbebWDbWDbYnbYobYpbYqbYrbLHaaaaaabvidGFdGGcvCbPvbYtbYubYubYvbYwbUScbWbYybYzbYAbYBbRjbYCbYDbYDbYDbYEbYFbYFbYGbYHbYFbYIbYJbYKbYLbYMbTobTobTobYNbPFbYObYPbYQbPIbRDbREbKBbYRbKBbKBbKBbKBbKBbKBbKBbKBbYSbYSaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcAzcAzbBEbZbbZcbZbbDibZdbZebQgbZfbZgbZhciJbXEbZhbZjbZkbQkckIbZmbZnbZobZpbZqbSibOXbEVbEVbSlbZrbZsbQwbQwbQwbQwbZtbStbZubStbZvbStbStbStbuxbymcWTbZwbuxaaaaaabLCbZxbZybZzbZAbZBbZCbZDbZEbZFbZGbWwcbIcbIbZIbZJbWDcbGcgpcdfcdgcbHcbJceJbWDbZQbZRbZSbYqbZTbIDaaaaaabvZdGHcqSbvZbPvbZUbZVbZWbZWbZXbZYbZZcaacabcaccadcaecafcagcagcagcahcaicajcakcalcambYIcancaocapcaqbPFcarcascatbPFcaucavcawbPIbRDbREcaxcaybGEcaAcaBcaCcaDcaEcaFcaGcaHcaIcaIcaHcaHcaHcaHcaHaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcaMcaMcaMcaMcaMcaMcaMcaNcaObQgdxCdzedxlcaScaTcaUcaVcaWbQkbQkcaXbQkcaYcaZbQkcbacbbbEVcbccbdbQucazcbfcbgcbhcbicbjbStcbkbStcblbStcbmcbncbobymcWTbymbuxaaaaaabLCcbpcbqcbrcbscbtcbuebPcbwcbxcbycbzcbAcbBcbCcbDbWDceKceLcgocgqceMceNchTcbKcbLcbMcbNcbOcbPbIDaaaaaabvZdGHcAIcbRbPvbPvcbScbTcbUcbVbUSdmbcbXcbYcbZccaccbcccccdebRebQccgcaicchcciccjcckbYIbPFcclbPFbPFbPFbPFbPFbPFbPFbPIbPIbPIbPIccmccncaxccoccpccqccrccscctcaCcaFcaFcaHccuccvccwcaHccxccycaHcaHaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcaMcaMcaMcaMcaMcaMcaMcaNcaObQgdxCdzedxlcaScaTcaUcaVcaWbQkbQkcaXbQkcaYcaZbQkcbacbbbEVcbccbdbQucazcbfcbgcbhcbicbjbStcbkbStcblbStcbmcbncbobymcWTbymbuxaaaaaabLCcbpcbqcbrcbscbtcbuebPcbwcbxcbycbzcbAcbBcbCcbDbWDceKceLcgocgqceMceNchTcbKcbLcbMcbNcbOcbPbIDaaaaaabvZdGHcAIcbRbPvbPvcbScbTcbUcbVbUSaTzcbXcbYcbZccaccbcccccdebRebQccgcaicchcciccjcckbYIbPFcclbPFbPFbPFbPFbPFbPFbPFbPIbPIbPIbPIccmccncaxccoccpccqccrccscctcaCcaFcaFcaHccuccvccwcaHccxccycaHcaHaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcaMccGccHccIccJccKcaMbXAccLcaWcaWcaWcaWcaWcaWcaWcaWcaWcCibQkbQkbQkbQkbQkbQkccNccObDxccPccNccQccQccQccQccQccQccQccRccRccRccRbStccSccTbuxccUdHeccWbuxaaaaaabLCccXccYccZcdacdbbWwbWwbWwbWwbWwbWwcdccddcddcdebWDbWDbWDclubWDchUbYjcnxbWDcdhcbMcdicbOcdjbIDaaaaaabvZdHxdHzcbQcdlbPvbPvbPvbPvbPvbPvcdmcipcdocipcdmbPCbPCbPCbPCbPCbPCbYIcdpcdqcdqcdrbYIcdscdscdscdtcducdvcdwcdxcdycdAcgUebVebSebTcdDcdEcrWcdGcdHccrccscdIcaCcdJcaFcdKcdLcdMcdNcaIcdOcdMcdPcaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcdYcdZceacebceccedceebXAcefcegcfEceicejcekcekcekcekcekcekcekcekcekcelcemcenceocepceqceqcerbuxcescescetbDLceubymbAQbAQbvFbvGbuxcevbuxbuxbymcWTcewbuxaaaaaabLBcexccYbQJceycezceAceBceCceDceEceFceGceHceHceIceHceHceHdcybWDbYjcnydzAbWDbNEceObNEcbObNGbLHedZaaabvZdIcdILceQceQceRceSbxiceTceUbvZceVceWceXceWceYceZcfacfbcfccfdcfebYIbYIcffcfgbYIbYIcfhcficficfjcfkcflcfmcfmcfmcdvebYbxHebWebXbOncoHcfrcfscftccrccsccscdIcdIcaFcaHcfucfvcfwcfxcfycfzcfAcfBcfCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcaMcaMcaMcaMcfJcfKcfLcfMcfNcfOcfOcfPcfQcfRcfRcfRcfRcfRcfRcfRcencencencfScfTcfUcfVcfWcfXcfYcfZcgacgbcgacgacgacgacgacgccgccgccgccgdcgccgccgcdINcgfbuxbLCbLCbLBcggccYcghcgicgjcgkcglcglcgmceEcgnbWAbWAbWAbWAbWAbWAbWAcgnbWEdMrecFecGbWDcgrcgscgtcgucgvbLHcgwcgwbvZdJCdJEbAUbCCbCDcgxbxicgybxicgzcgAcgBcgCcgDcgAcgEcfacgFcgGcgHcgIcgJcgKcgLcgMcgNcgNcgOcdtcdtcdtcdtcdtcdtcdtcfmcdvcgPbxHcgQcgRcgScaxcgTcvecgVccrccscdIcgWcgXcaFcaHcgYcgZchacaHcaIchbcaIcaHcaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTEbTDcmFcmFbTDcAzcAzcAzcAzcAzchhcmHchjchkchlchmchnchochpchqchrchschtcfRchuchuchuchuchuchvchwchxcenchychzchAchBchCchDchEbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxchFchGchHchIbLBchJchKchLchMchNcgkcgkchOchPceEchQbWAchRchRchRchRchRbWAchSbWDbWDbWDbWDbWDchVchWchVchXchYchZeeacibciccidbvgbvZbvZbvZbvZbvZbvZbvZbvZciecifcigcihcieceZceZceZciiceZceZceZceZcijcikcgNcilcimcinciociociociociocdtcdvcdvcaGbxHcoIbxHbxHcaxciqcaxcaxccrcaFcaGcaHcaHcaHcaHcircgZciscitciucivciwcixcaHcaHaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDtIrsytxwBeuCcAzcAzcAzcAzcAzciIcoyciKciLciMciNciOciPciQciRcfOciSciTcfRchuchuchuchuchuciUciVciWciXciYciZcjacjbcjccjdcjecjfcjgdVxcjdcjhcjicjbcjjcjkcjlcjmcjbcjncjociWcjpcjqcjrcjscjtcjucjvbUwbUwcjwcjxcjycjzcgkceEceEceEcdcbWAchRchRchRchRchRbWAcgnbWAdxoebUbWDciacjAcjBcjCcjDcjDebZcjFcjGcjHcjIcjJcjKcjLcjMcjNcjOcjPcjQcjRcjNcjOcjScjTcjUcjVcjWcjXcjTcjYcjZckaecacijckcckdckeckfckgciociociociociocdtckhcdvckickjckkcklcaGckmcknckockpcaCckqckrcaHckscktcaHckueccecbecbecbcopcdMckvckwcaIaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajEUrctrctpewrsgcAzcAzcAzcAzcAzckHcOGckJckKckLckMchnbLgckNcfOcfOckOcencfRchuchuchuchuchuckPckQckRckSckTckUckVckWckXckWckYckUckZckUckUclaclbckUckUclccldcledhndhpdhqclhclicljclkcllclmcllcllcllcllcllclncloclpbYhclqclrceHclsbWAchRchRchRchRchRbWAcltbZJecJclvclwclxclyclzclAclAclAclAclAclBclCclDclEclFclGclHclIclHclHclJclKclHclIclLclHclMclHclHclNclHclHclOclPclJclQclRclSecdclUclVciociociociociocdtclWcdvclXclYclZcmacmbcmccmdcmecmfcmgcmhcmicmjcmkcmlcmmcmncmocmpcmqcmrcmscmtcdMcmucmvaafaafaafaadaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDskIsytlUMoXtcAzcAzcAzcAzcAzcmEdjgcmGcmHcmIcmJcmKcfOcfOcfOcmLcmMcmNcfRchuchuchuchuchucmOcmPciWciXcmQcmRcmScmTcjccmUcmVcmWcmXchCdhscmYcmZcmTcnacnbcnccndcngdhSdiqcnhcnicnjcnkcnlcnmcnncnobUwbUwcnpcnqcnrcnsbWAcntcnucddcddbWAchRchRchRchRchRbWAcnvcnwbZJecKbWAcnzcnAcnBcnCcnDcnDcnEcnFcnGcnHcnIcnJcjKcjLcjPcnKcjPcjPcnLcnMececnOcnPcnQdVycnRcnScnTcnLcnRcnUcnVcnWcnXckcckdcnYcnZcoaciociociociociocdtcobcoccaGcodcoecofcaGcogcohcogcoicojcokcolcaHcomconcaHcoocopcoqcdMcorcgZcdMcoscotcaIaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTEbTDcmFcmFbTDcAzcAzcAzcAzcAzchhdWhebtcoAcoBcoCcoDcoEcoFcoGcmLcrQcrOcfRchuchuchuchuchuchvcoJcoKcencencoLchEcoMchCcoNcoOcoPcoPcoPcoPcoPcoPcoQcoQcoRcoScoQdirdwgdwqditcoTcoVcoWchGcoXcnsbLBcoYchKchLcoZchNbLBbWAcgncpacpbcpcbWAchRchRchRchRchRcpdcpdcpecpdcpdcpdcpdcpfchWchVchXcpgchZcphcpiciccpjcpkcpkcpkcplcpmcpncpncpncpncpncpocpncpncpncpncpncpncppcpqcprcnVcpsciecptcgNcpuciecinciociociociociocdtcpvcdvcaGcpwcpxcpycpzcpzcpzcpAcpzcpBcpzcpzcaHcaHcaHcaHcpCechecfecgeciecjcpIcpJcaHcaHaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTEbTDcAzcAzcAzcAzcAzcAzcAzcAzchhcmHchjchkchlchmchnchochpchqchrchschtcfRchuchuchuchuchuchvchwchxcenchychzchAchBchCchDchEbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxbuxchFchGchHchIbLBchJchKchLchMchNcgkcgkchOchPceEchQbWAchRchRchRchRchRbWAchSbWDbWDbWDbWDbWDchVchWchVchXchYchZeeacibciccidbvgbvZbvZbvZbvZbvZbvZbvZbvZciecifcigcihcieceZceZceZciiceZceZceZceZcijcikcgNcilcimcinciociociociociocdtcdvcdvcaGbxHcoIbxHbxHcaxciqcaxcaxccrcaFcaGcaHcaHcaHcaHcircgZciscitciucivciwcixcaHcaHaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcAzciIcoyciKciLciMciNciOciPciQciRcfOciSciTcfRchuchuchuchuchuciUciVciWciXciYciZcjacjbcjccjdcjecjfcjgdVxcjdcjhcjicjbcjjcjkcjlcjmcjbcjncjociWcjpcjqcjrcjscjtcjucjvbUwbUwcjwcjxcjycjzcgkceEceEceEcdcbWAchRchRchRchRchRbWAcgnbWAdxoebUbWDciacjAcjBcjCcjDcjDebZcjFcjGcjHcjIcjJcjKcjLcjMcjNcjOcjPaRCcjRcjNcjOcjScjTcjUcjVcjWcjXcjTcjYcjZckaecacijckcckdckeckfckgciociociociociocdtckhcdvckickjckkcklcaGckmcknckockpcaCckqckrcaHckscktcaHckueccecbecbecbcopcdMckvckwcaIaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcAzckHcOGckJckKckLckMchnbLgckNcfOcfOckOcencfRchuchuchuchuchuckPckQckRckSckTckUckVckWckXckWckYckUckZckUckUclaclbckUckUclccldcledhndhpdhqclhclicljclkcllclmcllcllcllcllcllclncloclpbYhclqclrceHclsbWAchRchRchRchRchRbWAcltbZJecJclvclwclxclyclzclAclAclAclAclAclBclCclDclEclFclGclHclIclHclHclJclKclHclIclLclHclMclHclHclNclHclHclOclPclJclQclRclSecdclUclVciociociociociocdtclWcdvclXclYclZcmacmbcmccmdcmecmfcmgcmhcmicmjcmkcmlcmmcmncmocmpcmqcmrcmscmtcdMcmucmvaafaafaafaadaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcAzcmEdjgcmGcmHcmIcmJcmKcfOcfOcfOcmLcmMcmNcfRchuchuchuchuchucmOcmPciWciXcmQcmRcmScmTcjccmUcmVcmWcmXchCdhscmYcmZcmTcnacnbcnccndcngdhSdiqcnhcnicnjcnkcnlcnmcnncnobUwbUwcnpcnqcnrcnsbWAcntcnucddcddbWAchRchRchRchRchRbWAcnvcnwbZJecKbWAcnzcnAcnBcnCcnDcnDcnEcnFcnGcnHcnIcnJcjKcjLcjPcnKcjPcjPcnLcnMececnOcnPcnQdVycnRcnScnTcnLcnRcnUcnVcnWcnXckcckdcnYcnZcoaciociociociociocdtcobcoccaGcodcoecofcaGcogcohcogcoicojcokcolcaHcomconcaHcoocopcoqcdMcorcgZcdMcoscotcaIaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTEbTDcAzcAzcAzcAzcAzcAzcAzcAzchhdWhebtcoAcoBcoCcoDcoEcoFcoGcmLcrQcrOcfRchuchuchuchuchuchvcoJcoKcencencoLchEcoMchCcoNcoOcoPcoPcoPcoPcoPcoPcoQcoQcoRcoScoQdirdwgdwqditcoTcoVcoWchGcoXcnsbLBcoYchKchLcoZchNbLBbWAcgncpacpbcpcbWAchRchRchRchRchRcpdcpdcpecpdcpdcpdcpdcpfchWchVchXcpgchZcphcpiciccpjcpkcpkcpkcplcpmcpncpncpncpncpncpocpncpncpncpncpncpncppcpqcprcnVcpsciecptcgNcpuciecinciociociociociocdtcpvcdvcaGcpwcpxcpycpzcpzcpzcpAcpzcpBcpzcpzcaHcaHcaHcaHcpCechecfecgeciecjcpIcpJcaHcaHaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcpPcpPcpQcpPcpRcpScpPcoEcmLcmLcmLcpUcpTcfRcfRcfRcfRcfRcfRcfRcencencencpVcpWcpXcpYcpZcqacpXcqbcqccqdcqecqfcqgcqhcqicqjcqkcqlcoQdwTdwWdwTdwUcqncqocoVbLCbLCcqpcqqcqrcqscqtcqubWzcqvcqwcqxcqxcqxcqycqycqzcqAcqBcqpcpdcqCcqDcqEcqFcqGcpdcqHcqIcjCcqJcqKchZcgwcgwcpkcqLcqMcqNcqOcqPcqPcqQcqRcDfcSCecUcqVcqWcqXcqYcqZcracracrbcrccrdcrecrfcrgcrhcrhcrhcricdtcdtcdtcdtcdtcdtcdtcfmcdvcrjcpwcrkcrlcrmcrncrocrpcrqcrrcrscrtcrucrvcrvcaHcrwcgZcrxcaHcaIcrycaIcaHcaHaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcrGcrHcrIcrJcrKcrLcpPcuXcrMcrNcrNcrPcuZcrRcrRcrRcrScrTcrUcrVcpVcvfcpVcpVcencrXcrXcrXcrXcrXcoPcrYcrZcsacsbcsccoQcsdcsecsfcsgcoQdyidypdybdwUcshcqocoVaaaaaacqpcsicqrcsjcskcslbWzcsmcsncqxcsocspcsqcsrcsjcsjcsjcsscstcsucsvcswcsxcsycpdcszcsAcjDcsBcsCchZaaaaaacpkcsDcsEcsFcpkcsGcsHcpncsIcsJcsKcsLcsMcsNcsOcsPcsQcsRcsScpncsTcsUcsVcsVcsWcrhcdvcdvcsXcfmcfmcfmcfmcfmcfmcfmcfmcdvcsYcpwcsZctacrmctbctcctdctectfctgcthcticrvcrvctjctkctlctmcaIctnctoctpcaHaaaaaaaaaaaaaadabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTDcAzcAzcAzcAzcAzcAzcAzcAzcpPctxctyctzctActBcpPcuXctCctDctDctFctEctDctGctGctHcTCctIctJctIcvgcvgctIctLctLctMctNctMctLctLctOctOctOctPctOctOctQctRctScoQcoQdUPdUQdBMdwUctTcqocoVaaaaaactUctVctWctXcskctYbWzctZcuacubcuccudcuecufcugcuhcsjcuicujcukculcumcuncuocpdcupcsAcuqcurcuscgwaaaaaacpkcutcuucuucuucuvcuwcuucuucuxcuxcuxcuycuzcuAcuzcuzcuzcuzcuBcuCcuDcuEcuFcuCcuGcuGcuGcuGcuGcuGcuGcuHcuHcuHcuHcuIcuIcuIcuIcuJcuKcuLctbcuMcrqcrqcrqcrqcrqcrvcrvcrvcaHcuNcorcuOcaIcdOcdMcdPcaHaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -11288,7 +11282,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaacMWcDHcFpcFpcDHcDHcMXcMYcMYcMXcMZcNacMXcMXcLLcGTcIMcIMcIMcDUcNbcNccNdcNecNfcDUcNgcHgcHgcNhcNicHgcHgcHgcNjcNkcLWcLWcLWcLWcLWcLXcNlcNmcNncLYcCwcQkcoVcTDedgcNrcNscNscNtcNucKNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaactUcNvcNwcNxcNycNzctUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKRcNAcNBcNCcKRcNDcKVcNEcNFcNGcKTcNHcNIcNJcNKcNLcNMcNNcNOcNPcNQcNRcLccNScNTcNUcNVcNWcNXcNYcNZcOacObcOccLhcOdcOecOfcOgcOhcMOcOicOjcOkcPucMOcOmcOncLucOocOpcOqcLyaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaacMXcOrcOscOtcMXcLLcGTcIMcIMcIMcDUcDUcDUcDUcDUcDUcDUcOucOvcHgcHgcOwcOwcOwcHgcOxcOycLWcLWcLWcLWcLWcLXcOzcOAdUVcLYcOCcBbcODedhedicKNcPVcOHcOIcOJcKNcoVcoVcoVcoVczlczlczlcoVcoVcoVcoVcoVcOKcOLcMfcOMcOKcpkcpkcpkcpkcpkczCczCczCcpkcpkcpkcpkcKRcONcOOcOPcKRecqcKVcORcOScOTcKTcOUcOVcOWcOXcOYcKZcOZcPacPbcPccPdcLfcNScNTcPecPfcPgcPhcPicPjcPkcPlcPmcLhcPncPocPpcPqcPrcMOcPscPtcPtcSLcMOcPvcPwcPxcPycPzcPAcKlaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaacMXcPBcPCcPDcMXcLLcGTcGTcPEcIMcFucFucIMcIMcIMcNocGTcEacPGcEacEacPHcPIcPJcPKcPLcPMcLWcLWcLWcLWcLWcLXcPNcPOcPPcLYcPQcPRcoVcPScPTcKNcKNcKNcKNcKNcKNcPWcHwcHwcQacQacPYcQacQacQacQacQacQacQbcQccQdcQecQfcQgcQgcQgcQgcQgcQgcURcTHcpkcPFcSpcQlcKRcQmcOOcQncKRcQocKVcKVcQpcKVcKTcQqcQrcQscQtcQucKXcQvcQwcQxcQycPdcLccNScQzcQAcQBcQCcQDcQEcQFcQGcQHcQIcLhcLlcLlcLlcLlcLlcMOcPscQJcQKcSLcMOcQLcQMcKlcKlcKlcKlcKlaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaafaaaaaaaaaaaacMXcQNcQNcMXcMXcLLcIMcGTcGTcFucFucGTcGTcGTcGTcGTcGTcQOcQOcQOcEacEacEacEacQPcQQcKGcLWcLWcLWcLWcLWcLXcLYcKUcLYcLYcoVcoVcoVcQjcQTcQUcHwcQVcQWcQXcHwcHxcBbcBbcBbcBbcQYcQZcAYcPUcPUcRdcQScoVcRfcRgcRhcpkcRicRjcRicRkcRlcRmcWecWcedmedpedpedocKRcKRcRpcKRcKRcQocpkcGjcRqcRrcLacRscRtcUgcRvcRwcKZcRxcRycRzcRAcRBcLbcRCcRDcREcRFcRGcRHcRIcRJcRKcRLcRMcRNcROcRPcRQcRRcRScMOcRTcRUcPtcRVcMOcRWcRXcpwaaaaaaaaaaaaaaaaaaaaaabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaafaaaaaaaaaaaacMXcQNcQNcMXcMXcLLcIMcGTcGTcFucFucGTcGTcGTcGTcGTcGTcQOcQOcQOcEacEacEacEacQPcQQcKGcLWcLWcLWcLWcLWcLXcLYcKUcLYcLYcoVcoVcoVcQjcQTcQUcHwcQVcQWcQXcHwcHxcBbcBbcBbcBbcQYcQZcAYcPUcPUcRdcQScoVcRfcRgcRhcpkcRicRjcRicRkcRlcRmcWecWcedmedpedpedocKRcKRcRpcKRcKRcQocpkcGjcRqcRrcLacRscRtaTDcRvcRwcKZcRxcRycRzcRAcRBcLbcRCcRDcREcRFcRGcRHcRIcRJcRKcRLcRMcRNcROcRPcRQcRRcRScMOcRTcRUcPtcRVcMOcRWcRXcpwaaaaaaaaaaaaaaaaaaaaaabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaadaadaaaaaaaaacMXcRYcRZcSacMXcSbcKvecscSdcSecSfcSgcShcIMcSicIMcSjcSkcSkcSkcSlcSmcSmcEacEacEacKGcKGcKGcKGcKGcKGcKGcQOcSncQOcGTcSocGTdTdcBbcFUcBbcSqcSrcPScRecBbcSucSvcSwcSucSucSucSucSucSucSucSucSucSucSxcSycSzcSAcSAcSAcSKcSAcSAcSAcSAdaMedvedredvedtcSFcSGcSHcSDcSDcSIcSJcTucTycSMcLacLacLacLacLacLacLacSNcLbcLbcLbcSOcLbcSPcSQcSRcSScSPcLhcSTcLhcLhcLhcMIcSUcSVcSWcSXcSYcSZcTacPtcTbcTccTdcTecTfcTgcpwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabfGaafaafaafaafaaaaaaaaacMXcMXcSbcKucKucKucThcTicTicTicTjcTicTicTicTkcKucKucKucKucThcKucKucKucKucKucKucKucKucTlcTmcTncTocTpcKucTqcTrcTscTtcTJcTJcTJcTJcTJcVYcSucTvcTwcRbcRacSucStcTxcUCcRccSscTEcSucTzcTAcXacSAcTGcTIcUucUvcUvcUMcSAcUNcSAcpkcpkcpkcpkcpkcpkcpkcpkcpkcTKcsFcTLcTMcTNcTOcTPcTQcTQcTRcTScTTcTUcTVcTWcTXcSRcTYcTZcUacUbcUccSRcUdcTWcTVcTUcUecSUcUfcXCcUhcUicUjcMOcUkcUlcUmcUncUocUpcUqcpwaaaaaaaaaabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaafaaaaaaaaaaaacMXcMXcMYcMYcMYcMXcMXcMXcMYcMYcMYcMXcMXcMXcMXcMXcMXcMXcMXcIMcIMcIMecucIMcIMcIMcIMcIMcIMcIMcMXcMXcMXcMXcUrdaPcUtcTJcUycUwcUxcUYcUZcSucUzcTwcUDcUAcUBcUGcUHcUEcUFcUIcUScSucUJcUKdfkcSAcSAcSAcUOcUPcUQcUTcSAcUUcUXcVacVbcVccWdcWfcWkcWncWocpkcpkcpkcTLcVfcVhcVdcVecVgcWbcGjcTScVicUacVjcVkcVlcSRcVmcVncVocVpcVqcSRcVrcVkcVjcUacVscSUcSUcSUcSUcVtcSUcMOcMOcMOcMOcMOcMOcVucVvcVwaafaafaafabcaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -11318,14 +11312,14 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacUrdkTdmddiMdmOdmfdmOdmgdjsdjsdkYdmidiRdlxdmjdlUdjsdmkdmldmmdmndmodmOdmqcUKdlidhudhxdmrdmtdmudmvdmwdmxdjYdjXdjYdjYdjZdkadkbdkcdkddkbdkbdkedkfdkgdkhdkiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacUrcAYdjjdkldlDdmydlDdlDdmzdmAdmBdmAdmAdmAdmAdmCdmDdmVdmldmWdmYdmodmOdfkcUKdmsdlEdlFdlGdlJdlKdlLdlYdlZdkHdmEdkJdkHdkKdkLdkMdkNdkOdkNdkNdkPdkQdkRdkSdkiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacUrcUrcUrcUrcUrcUrcUrdmediMdiMdkrdksdnJdnKdmZdoodoqdoudoudnLdmhdoxdoydozdoAdoAdlHdmOdfkdncdowdixdixdmUdixdixdixdixdmXdixdixdixdlmdixdlndixdlodlpdlqdhxdnadhxdnbdixdjAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmHdmHdmHdmIdmHdmHdprdmKdmLdmMdiMdmNdmOdmOdmPdmQdiMdiMdiMdiMdiMdiMdiMdiMdiMdmOdmOdmOdmRdmSdcLdmTdnednhdnhdnxdnhdnydnDdnednednednednEdnFdnGdixdnHdnHdnIdnNdnOdhxdordosdotaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmHdmHdmHdmIdmHdmHaNbdmKdmLdmMdiMdmNdmOdmOdmPdmQdiMdiMdiMdiMdiMdiMdiMdiMdiMdmOdmOdmOdmRdmSdcLdmTdnednhdnhdnxdnhdnydnDdnednednednednEdnFdnGdixdnHdnHdnIdnNdnOdhxdordosdotaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmHdngdrgdrgdrgdnidnidmKdnjdnkdnkdnldnkdnmdnndnodnpdnqdnrdnsdntdnudnvdnwdpNdpOdnzdnAdnBdfkcUKdVAdnedovdovdoCdoDdpkdoFdnedpcdpcdnedixdixdixdixdixdixdixdixdmadixdixdixdjAaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmIdnPdnQdnRdnRdnSdmIdnTdnUdnVdnWdnXdnYdnZdoadobdocdoddoedofdogdohdoidojdokdoldomdomdomdondqodopdnednednedpedpfdpgdphdpidpjdsRdnedpldpmdpndpodppdpqdqndnedpsdcGdpLdpMdpPaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmHdngdoGdoHdoHecTdoJdmcdoLdoMdoNdoOdoPdoQdoRdoPdoPdoOdoSdoTdoUdoVdoWdoXdoYdoZdpadpbdoYdfkcUKdpddnedpQdpRdpUdqkdqldqmdnedoEdoEdnedqOdqpdpqdqqdqrdqsdqtdnedqudqvdcGdqwdpPaafaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmHdngdptdoHdoHdoIdoJdmcdoLdpudpvdoOdpwdpxdpydpzdpAdoOdpBdpBdpCdpBdpDdpEdpFdpGdpFdpHdpIdpJcUKdpKdnednednednedqxdnednhdnednednednedqydqzdpqdsbdqAdpqdqtdnedqBdcGcZScZScZScZSaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmIdpSdoKdpTdpTdnSdmIdmKdpVdpudpWdoPdpXdpYdpZdpXdpXdqadqbdqcdqddqcdqedpEdqfdqgdqhdpFdqidfkcUKdqjdqCdqSdqTdqUdqVdqWdqXdqYdqZdradrbdrcdrddredrfdrydrydrydrzdrAdrBdhhdrCdrDdpPaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmHdngdqDdqDdqDdnidnidmKdqEdpudqFdoPdqGdqHdqIdqJdqKdoOdqLdqMdqNdqcdqPdpEdrsdqQdqRdpFdqidfkdsLdqjdqCdqSdrEdpqdpqdrFdrGdrGdrHdrGdrIdrJdrKdrGdrLdrGdrMdrtdnedsddsedsfdcGdsgdpPaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmHdmHdmHdmIdmHdmHdscdmKdrhdridrjdoOdrkdrldrmdrndrodoOdrpdrqdrrdqcdrXdpEdrYdrudrvdrwdrxdfkdtrdtsdsidsjdskdsldsmdrGdrGdsndnDdpqdsodnednednedspdnednednednedsEdsFdhhdsGdsHdpPaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmHdmHdmHdmIdmHdmHaOvdmKdrhdridrjdoOdrkdrldrmdrndrodoOdrpdrqdrrdqcdrXdpEdrYdrudrvdrwdrxdfkdtrdtsdsidsjdskdsldsmdrGdrGdsndnDdpqdsodnednednedspdnednednednedsEdsFdhhdsGdsHdpPaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmKdmKdmKdmKdmKdmKdmKdrNdrOdpWdoPdrPdrQdrRdrSdrTdoOdrUdqcdrVdrWdCFdpEdCZdrZdsadpFdqidfkcUKdXTdsIdsJdsKdsMdsNdrGdrGdsndpqdpqdsOdsPdnedpqdsQdshdnedsSdnedtkdtldhhdhhcZScZSaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmKdsqdsrdqFdoPdssdpxdssdstdsudoOdsvdqcdswdqcdsxdpEdsydszdsAdpFdsBdsCcTAdsDdsIdtmdtndtodsNdrGdrGdsndpqdtpdpqdpqdnhdpmdtqdttdnedtudnedtvdFLcZSaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadsTdsTdsTdsTdsTaaaaaaaaaaaaaaaaaadmKdsUdsVdoXdoOdsWdsXdsYdssdsZdtadtbdtcdtddtcdtedpEdpEdpEdpEdtfdtgdthdtidtjdtgdHddUXdUYdUZdVadrGdsndpqdpqdVbdVcdnhdCmdVedVfdnedsSdnedVgdVtcZSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -11397,6 +11391,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
"}
+
(1,1,3) = {"
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -11654,3 +11649,4 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
dUOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
"}
+
diff --git a/maps/southern_cross/southern_cross_jobs.dm b/maps/southern_cross/southern_cross_jobs.dm
index 9d7988dd220..0903a3ac3dc 100644
--- a/maps/southern_cross/southern_cross_jobs.dm
+++ b/maps/southern_cross/southern_cross_jobs.dm
@@ -75,16 +75,16 @@ var/const/access_explorer = 43
/datum/job/explorer
title = "Explorer"
flag = EXPLORER
- departments = list(DEPARTMENT_PLANET)
- department_flag = CIVILIAN
+ departments = list(DEPARTMENT_RESEARCH, DEPARTMENT_PLANET)
+ department_flag = MEDSCI
faction = "Station"
total_positions = 4
spawn_positions = 4
- supervisors = "the Head of Personnel"
- selection_color = "#515151"
+ supervisors = "the Research Director"
+ selection_color = "#633D63"
economic_modifier = 4
- access = list(access_explorer)
- minimal_access = list(access_explorer)
+ access = list(access_explorer, access_research)
+ minimal_access = list(access_explorer, access_research)
outfit_type = /decl/hierarchy/outfit/job/explorer2
job_description = "An Explorer searches for interesting things on the surface of Sif, and returns them to the station."
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index e7e7be1271a..0081799cc32 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -14,7 +14,7 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/dock_port)
"ad" = (
-/obj/machinery/porta_turret/industrial/military,
+/obj/machinery/porta_turret/stationary/CIWS,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/dock_port)
"ae" = (
@@ -42,7 +42,7 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/mech_bay)
"ai" = (
-/obj/machinery/porta_turret/industrial/military,
+/obj/machinery/porta_turret/stationary/CIWS,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/mech_bay)
"aj" = (
@@ -79,17 +79,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_port)
"an" = (
-/obj/structure/table/rack/steel,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
/obj/machinery/light/no_nightshift{
dir = 1
},
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/dispenser/oxygen,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"ao" = (
@@ -158,13 +152,13 @@
"aQ" = (
/obj/structure/table/steel_reinforced,
/obj/item/weapon/storage/firstaid/surgery,
-/obj/item/stack/nanopaste/advanced,
/obj/machinery/light/no_nightshift{
dir = 8
},
/obj/item/weapon/surgical/bone_clamp,
/obj/item/weapon/surgical/scalpel/manager,
/obj/item/weapon/surgical/circular_saw/manager,
+/obj/item/stack/nanopaste,
/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"aV" = (
@@ -173,10 +167,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/eng_storage)
-"bg" = (
-/turf/space,
-/turf/space,
-/area/space)
"bp" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/turf/simulated/floor/tiled/techfloor,
@@ -219,6 +209,10 @@
/obj/item/device/suit_cooling_unit,
/obj/item/device/suit_cooling_unit,
/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"bJ" = (
@@ -242,7 +236,7 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/atmos)
"bW" = (
-/obj/machinery/porta_turret/industrial/military,
+/obj/machinery/porta_turret/stationary/CIWS,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/atmos)
"ch" = (
@@ -292,6 +286,10 @@
},
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/hallways_aft)
+"cL" = (
+/obj/machinery/telecomms/allinone/ert,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
"cO" = (
/obj/machinery/computer/operating,
/turf/simulated/floor/tiled/white,
@@ -406,6 +404,8 @@
/obj/structure/table/rack,
/obj/item/weapon/storage/backpack/ert/commander,
/obj/item/clothing/suit/space/void/responseteam/command,
+/obj/item/clothing/head/helmet/ert/command,
+/obj/item/clothing/suit/armor/vest/ert/command,
/turf/simulated/floor/wood,
/area/ship/ert/commander)
"dx" = (
@@ -571,7 +571,7 @@
/turf/simulated/floor/plating,
/area/ship/ert/engine)
"eD" = (
-/obj/machinery/porta_turret/industrial/military,
+/obj/machinery/porta_turret/stationary/CIWS,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med)
"eF" = (
@@ -643,8 +643,6 @@
/area/ship/ert/dock_star)
"fx" = (
/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/rescue_pharm,
-/obj/item/rig_module/sprinter,
/obj/item/rig_module/sprinter,
/obj/machinery/light/no_nightshift{
dir = 8
@@ -657,7 +655,6 @@
pixel_x = -23
},
/obj/item/rig_module/sprinter,
-/obj/item/rig_module/sprinter,
/obj/item/rig_module/rescue_pharm,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
@@ -666,7 +663,6 @@
/obj/item/rig_module/mounted,
/obj/item/rig_module/mounted/egun,
/obj/item/rig_module/mounted/egun,
-/obj/item/rig_module/mounted,
/obj/item/rig_module/mounted/egun,
/obj/item/rig_module/mounted/egun,
/turf/simulated/floor/tiled/techfloor,
@@ -689,10 +685,6 @@
/obj/item/rig_module/device/rcd,
/obj/item/rig_module/device/plasmacutter,
/obj/item/rig_module/device/plasmacutter,
-/obj/item/rig_module/device/rcd,
-/obj/item/rig_module/device/rcd,
-/obj/item/rig_module/device/plasmacutter,
-/obj/item/rig_module/device/plasmacutter,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"fZ" = (
@@ -770,10 +762,6 @@
/obj/item/weapon/shield/riot,
/obj/item/weapon/shield/riot,
/obj/item/weapon/shield/riot,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/effect/floor_decal/industrial/outline/grey,
/obj/machinery/recharger/wallcharger{
pixel_x = -23;
@@ -1010,7 +998,7 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/hangar)
"hY" = (
-/obj/machinery/porta_turret/industrial/military,
+/obj/machinery/porta_turret/stationary/CIWS,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/dock_star)
"ia" = (
@@ -1156,6 +1144,10 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/mech_bay)
+"kd" = (
+/obj/item/device/multitool/tether_buffered,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
"kf" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/projectile/automatic/pdw,
@@ -1259,6 +1251,10 @@
/obj/item/weapon/plastique,
/obj/item/weapon/plastique,
/obj/effect/floor_decal/industrial/outline/red,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
"kG" = (
@@ -1290,7 +1286,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
"kO" = (
-/obj/machinery/porta_turret/industrial/military,
+/obj/machinery/porta_turret/stationary/CIWS,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/barracks)
"kP" = (
@@ -1356,6 +1352,7 @@
starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
},
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"lx" = (
@@ -1468,12 +1465,18 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/effect/landmark{
+ name = "Commando"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"mq" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/effect/landmark{
+ name = "Commando"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"mr" = (
@@ -1652,10 +1655,6 @@
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/energy/xray,
/obj/item/weapon/gun/energy/xray,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/machinery/light/no_nightshift,
/obj/machinery/firealarm/alarms_hidden{
dir = 1;
@@ -1990,6 +1989,12 @@
/obj/item/clothing/suit/space/void/responseteam/engineer,
/obj/item/clothing/suit/space/void/responseteam/engineer,
/obj/item/clothing/suit/space/void/responseteam/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"pa" = (
@@ -2031,12 +2036,24 @@
/obj/item/clothing/suit/space/void/responseteam/medical,
/obj/machinery/light/no_nightshift,
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"pf" = (
/obj/effect/landmark/map_data/ert_ship,
/turf/space,
/area/space)
+"pg" = (
+/obj/effect/landmark{
+ name = "Commando"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
"pm" = (
/obj/effect/floor_decal/corner/yellow{
dir = 9
@@ -2052,6 +2069,12 @@
/obj/item/clothing/suit/space/void/responseteam/medical,
/obj/item/clothing/suit/space/void/responseteam/medical,
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"po" = (
@@ -2074,10 +2097,12 @@
/area/ship/ert/med_surg)
"pq" = (
/obj/structure/table/steel_reinforced,
-/obj/item/weapon/storage/box/syringes,
-/obj/item/weapon/storage/box/syringes,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/storage/box/bodybags,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"pt" = (
@@ -2150,23 +2175,13 @@
/area/ship/ert/barracks)
"pI" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/gun/energy/pulse_rifle,
+/obj/item/weapon/gun/energy/pulse_rifle,
+/obj/item/weapon/gun/energy/pulse_rifle,
+/obj/item/weapon/gun/energy/pulse_rifle,
+/obj/item/weapon/gun/energy/pulse_rifle,
+/obj/item/weapon/gun/energy/pulse_rifle,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"pK" = (
@@ -2217,8 +2232,6 @@
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/energy/plasmastun,
/obj/item/weapon/gun/energy/plasmastun,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
@@ -2505,6 +2518,12 @@
/obj/item/clothing/suit/space/void/responseteam/security,
/obj/machinery/light/no_nightshift,
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"sp" = (
@@ -2539,6 +2558,7 @@
},
/obj/machinery/light/no_nightshift,
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"sA" = (
@@ -2576,8 +2596,6 @@
/obj/item/clothing/glasses/graviton,
/obj/item/clothing/glasses/graviton,
/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
@@ -2655,10 +2673,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
-"tb" = (
-/obj/machinery/telecomms/allinone/talon,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/teleporter)
"tg" = (
/obj/effect/floor_decal/corner/white{
dir = 6
@@ -2992,12 +3006,6 @@
/obj/item/weapon/gun/energy/gun,
/obj/item/weapon/gun/energy/gun,
/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/gun/energy/gun,
/obj/item/weapon/gun/energy/gun,
/obj/effect/floor_decal/industrial/outline/grey,
@@ -3028,14 +3036,12 @@
"wt" = (
/obj/structure/table/steel_reinforced,
/obj/item/weapon/storage/firstaid/bonemed,
-/obj/item/weapon/storage/firstaid/bonemed,
/obj/item/weapon/storage/firstaid/clotting,
-/obj/item/weapon/storage/firstaid/clotting,
-/obj/item/weapon/storage/pill_bottle/sleevingcure/full,
-/obj/item/weapon/storage/pill_bottle/sleevingcure/full,
/obj/effect/floor_decal/corner/yellow{
dir = 1
},
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/weapon/storage/firstaid/combat,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"wO" = (
@@ -3084,33 +3090,52 @@
/area/ship/ert/bridge)
"xg" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/anti_photons,
-/obj/item/weapon/storage/box/anti_photons,
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"xh" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/smokes,
-/obj/item/weapon/storage/box/smokes,
/obj/machinery/light_switch{
pixel_y = 23
},
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"xi" = (
-/obj/item/weapon/storage/box/teargas,
-/obj/item/weapon/storage/box/teargas,
/obj/structure/table/rack/steel,
/obj/effect/floor_decal/industrial/outline/grey,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/armoury_st)
-"xr" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/empslite,
-/obj/item/weapon/storage/box/empslite,
-/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"xt" = (
@@ -3124,22 +3149,20 @@
pixel_y = 26
},
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/smokes,
+/obj/item/weapon/storage/box/smokes,
+/obj/item/weapon/storage/box/teargas,
+/obj/item/weapon/storage/box/empslite,
+/obj/item/weapon/storage/box/empslite,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"xv" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/energy/ionrifle/pistol,
/obj/item/weapon/gun/energy/ionrifle/pistol,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/gun/energy/ionrifle,
/obj/item/weapon/gun/energy/ionrifle,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/machinery/power/apc/hyper{
alarms_hidden = 1;
dir = 4;
@@ -3161,8 +3184,6 @@
/obj/structure/closet/medical_wall{
pixel_x = 32
},
-/obj/item/weapon/storage/firstaid/clotting,
-/obj/item/weapon/storage/firstaid/bonemed,
/obj/item/weapon/storage/firstaid/adv,
/obj/item/weapon/storage/firstaid/adv,
/obj/item/weapon/storage/firstaid/fire,
@@ -3171,8 +3192,6 @@
/obj/item/weapon/storage/firstaid/o2,
/obj/item/weapon/storage/firstaid/toxin,
/obj/item/weapon/storage/firstaid/toxin,
-/obj/item/weapon/storage/firstaid/combat,
-/obj/item/weapon/storage/firstaid/combat,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"xA" = (
@@ -3492,6 +3511,11 @@
dir = 4
},
/obj/effect/catwalk_plated,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/simulated/floor/plating,
/area/ship/ert/hallways)
"zB" = (
@@ -3792,7 +3816,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_st)
"BI" = (
-/obj/machinery/porta_turret/industrial/military,
+/obj/machinery/porta_turret/stationary/CIWS,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/engineering)
"BU" = (
@@ -3831,6 +3855,10 @@
emagged = 1;
name = "ERT NIFSoft Vendor"
},
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/hallways)
"Cq" = (
@@ -3851,7 +3879,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"Cr" = (
-/obj/machinery/porta_turret/industrial/military,
+/obj/machinery/porta_turret/stationary/CIWS,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med_surg)
"Cx" = (
@@ -3963,7 +3991,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
"Do" = (
-/obj/machinery/porta_turret/industrial/military,
+/obj/machinery/porta_turret/stationary/CIWS,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/engine)
"Dt" = (
@@ -4027,6 +4055,8 @@
/obj/item/weapon/surgical/scalpel/manager,
/obj/item/weapon/surgical/circular_saw/manager,
/obj/item/weapon/surgical/circular_saw/manager,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"DN" = (
@@ -4058,6 +4088,10 @@
icon_state = "0-2"
},
/obj/effect/floor_decal/industrial/outline,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"DS" = (
@@ -4076,6 +4110,12 @@
pixel_y = -26
},
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"Ed" = (
@@ -4203,8 +4243,6 @@
/obj/structure/closet/crate/medical,
/obj/item/weapon/storage/box/autoinjectors,
/obj/item/weapon/storage/box/beakers,
-/obj/item/device/defib_kit/compact/combat/loaded,
-/obj/item/device/defib_kit/compact/combat/loaded,
/obj/item/weapon/storage/box/bodybags,
/obj/item/weapon/storage/box/bodybags{
pixel_x = 2;
@@ -4214,6 +4252,8 @@
/obj/item/weapon/storage/box/freezer,
/obj/item/weapon/storage/box/masks,
/obj/effect/floor_decal/industrial/outline,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"Fd" = (
@@ -4362,7 +4402,36 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/item/weapon/paper/ert_armory_cells,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_st)
"FY" = (
@@ -4409,6 +4478,7 @@
dir = 1
},
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"GI" = (
@@ -4421,7 +4491,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engine)
"GJ" = (
-/obj/machinery/porta_turret/industrial/military,
+/obj/machinery/porta_turret/stationary/CIWS,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/eng_storage)
"GK" = (
@@ -4531,16 +4601,8 @@
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/energy/gun/burst,
/obj/item/weapon/gun/energy/gun/burst,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/gun/energy/lasershotgun,
/obj/item/weapon/gun/energy/lasershotgun,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/effect/floor_decal/industrial/outline/grey,
/obj/machinery/recharger/wallcharger{
pixel_x = -23;
@@ -4569,10 +4631,6 @@
/obj/item/weapon/storage/pill_bottle/iron,
/obj/item/weapon/storage/pill_bottle/iron,
/obj/item/weapon/storage/pill_bottle/sleevingcure/full,
-/obj/item/weapon/extinguisher/mini,
-/obj/item/weapon/extinguisher/mini,
-/obj/item/weapon/extinguisher/mini,
-/obj/item/weapon/extinguisher/mini,
/obj/item/weapon/storage/box/syringes,
/obj/item/weapon/storage/box/syringes{
pixel_x = 2;
@@ -4958,18 +5016,26 @@
/area/ship/ert/engine)
"JZ" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/machinery/light/no_nightshift,
/obj/machinery/alarm/alarms_hidden{
dir = 1;
pixel_y = -26
},
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Kb" = (
@@ -5198,33 +5264,19 @@
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/hallways)
+"Lm" = (
+/obj/machinery/ntnet_relay,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
"Lq" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"LA" = (
@@ -5267,9 +5319,11 @@
},
/obj/item/weapon/gun/energy/laser,
/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"LH" = (
@@ -5298,7 +5352,7 @@
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/button/remote/blast_door{
- desc = "[OOC] DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
+ desc = "\[OOC] DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
dir = 1;
id = "NRV_DELTA";
name = "DELTA ACCESS CONTROL";
@@ -5327,10 +5381,6 @@
/obj/item/weapon/gun/energy/taser,
/obj/item/weapon/gun/energy/taser,
/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
@@ -5359,14 +5409,10 @@
"Mt" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/gun/energy/sniperrifle{
+ battery_lock = 0
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"Mv" = (
@@ -5448,18 +5494,18 @@
/area/shuttle/ert_ship_boat)
"MX" = (
/obj/structure/table/steel_reinforced,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/item/weapon/storage/belt/utility/full,
/obj/item/clothing/accessory/storage/brown_vest,
/obj/item/clothing/accessory/storage/brown_vest,
/obj/item/clothing/accessory/storage/brown_vest,
/obj/item/clothing/accessory/storage/brown_vest,
/obj/item/clothing/accessory/storage/brown_vest,
/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"MZ" = (
@@ -5543,6 +5589,7 @@
"NI" = (
/obj/structure/table/rack,
/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid,
+/obj/item/weapon/storage/belt/explorer/pathfinder,
/turf/simulated/floor/wood,
/area/ship/ert/commander)
"NJ" = (
@@ -5796,10 +5843,6 @@
/obj/item/weapon/gun/energy/sniperrifle{
battery_lock = 0
},
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
@@ -5846,6 +5889,18 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
+"OU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "Commando"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
"OW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -6136,6 +6191,7 @@
"QY" = (
/obj/structure/table/rack,
/obj/item/weapon/rig/ert,
+/obj/item/weapon/cell/slime,
/turf/simulated/floor/wood,
/area/ship/ert/commander)
"QZ" = (
@@ -6426,6 +6482,8 @@
pixel_y = 26
},
/obj/effect/floor_decal/industrial/outline,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"SZ" = (
@@ -6628,10 +6686,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
-"VB" = (
-/obj/machinery/ntnet_relay,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/teleporter)
"VC" = (
/obj/machinery/power/port_gen/pacman/super/potato,
/obj/structure/cable/green,
@@ -6691,6 +6745,10 @@
/obj/structure/curtain/open/bed,
/turf/simulated/floor/wood,
/area/ship/ert/commander)
+"Wd" = (
+/obj/machinery/telecomms/relay,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
"Wj" = (
/obj/machinery/light/no_nightshift{
dir = 8
@@ -6704,17 +6762,11 @@
/area/ship/ert/teleporter)
"Wl" = (
/obj/structure/table/steel_reinforced,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
/obj/machinery/light/no_nightshift{
dir = 1
},
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/item/device/defib_kit/compact/combat/loaded,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"Wq" = (
@@ -6834,6 +6886,9 @@
dir = 1
},
/obj/effect/catwalk_plated,
+/obj/effect/landmark{
+ name = "Commando"
+ },
/turf/simulated/floor/plating,
/area/ship/ert/barracks)
"Xg" = (
@@ -12951,10 +13006,10 @@ yz
yz
yz
yz
-bg
-bg
-bg
-bg
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -13228,10 +13283,6 @@ yz
yz
yz
yz
-bg
-bg
-bg
-bg
yz
yz
yz
@@ -13242,10 +13293,14 @@ yz
yz
yz
yz
-bg
-bg
-bg
-bg
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -13322,8 +13377,8 @@ pV
kP
kP
rS
-gA
-gA
+Wd
+kd
CT
qR
pV
@@ -13890,8 +13945,8 @@ pV
ls
ls
ls
-gA
-gA
+Lm
+cL
DQ
Ip
pV
@@ -14465,7 +14520,7 @@ ds
sp
Oi
Mm
-tb
+jA
Wj
UU
iA
@@ -15175,7 +15230,7 @@ IZ
sp
Oi
wn
-VB
+jA
Yq
Ys
Yr
@@ -15875,7 +15930,7 @@ Zo
Bo
ia
ip
-WH
+pg
Kk
lv
ZM
@@ -16300,8 +16355,8 @@ Ye
Zo
Gw
Kk
-Jd
-WH
+OU
+pg
Kk
lv
ZM
@@ -16442,8 +16497,8 @@ Ye
yY
lv
Kk
-Jd
-WH
+OU
+pg
Kk
sz
ZM
@@ -16584,8 +16639,8 @@ Ye
yY
lv
Kk
-Jd
-WH
+OU
+pg
Kk
lv
ZM
@@ -16726,7 +16781,7 @@ Ye
yY
lv
Kk
-Jd
+OU
mr
WH
sF
@@ -17010,7 +17065,7 @@ ab
Zo
Gw
Kk
-Jd
+OU
mF
ip
ip
@@ -17019,7 +17074,7 @@ Bc
BW
Js
BW
-BW
+sX
BW
VP
sX
@@ -18150,7 +18205,7 @@ ip
mV
pa
tH
-xr
+xi
BU
GK
FR
diff --git a/maps/submaps/admin_use_vr/fun.dm b/maps/submaps/admin_use_vr/fun.dm
index f618e7c3708..7144ae50d9b 100644
--- a/maps/submaps/admin_use_vr/fun.dm
+++ b/maps/submaps/admin_use_vr/fun.dm
@@ -152,8 +152,43 @@
power_environ = FALSE
power_light = FALSE
+/area/submap/admin_upload/lo
+ name = "\improper Unknown Area AA"
+ requires_power = 1
+ dynamic_lighting = 1
+ lightswitch = 0
+ power_equip = FALSE
+ power_environ = FALSE
+ power_light = FALSE
+
+/area/submap/admin_upload/lo/one
+ name = "\improper Unknown Area AB"
+
+/area/submap/admin_upload/lo/two
+ name = "\improper Unknown Area AC"
+/area/submap/admin_upload/lo/three
+ name = "\improper Unknown Area AD"
+
+/area/submap/admin_upload/lo/four
+ name = "\improper Unknown Area AE"
+
+/area/submap/admin_upload/lo/pow
+ name = "\improper Unknown Area AF"
+ requires_power = 0
+
+/area/submap/admin_upload/lo/pow/one
+ name = "\improper Unknown Area AG"
+
+/area/submap/admin_upload/lo/pow/two
+ name = "\improper Unknown Area AH"
+
+/area/submap/admin_upload/lo/pow/three
+ name = "\improper Unknown Area AI"
+
+/area/submap/admin_upload/lo/pow/four
+ name = "\improper Unknown Area AJ"
// Adminbuse things for overmap sectors
diff --git a/maps/submaps/admin_use_vr/kk_mercship.dmm b/maps/submaps/admin_use_vr/kk_mercship.dmm
index bb3ee7cabe8..b5279064be9 100644
--- a/maps/submaps/admin_use_vr/kk_mercship.dmm
+++ b/maps/submaps/admin_use_vr/kk_mercship.dmm
@@ -164,9 +164,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
"aM" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -174,6 +171,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
"aN" = (
@@ -255,9 +255,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"bc" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -268,8 +265,17 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
+"bd" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
"bg" = (
/turf/space,
/turf/space,
@@ -337,7 +343,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
"br" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -350,6 +355,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
"bt" = (
@@ -390,9 +398,15 @@
dir = 1
},
/obj/machinery/appliance/cooker/fryer,
-/obj/effect/floor_decal/corner/black,
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
+"by" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
"bA" = (
/obj/structure/closet/cabinet{
name = "Clothing Storage"
@@ -648,9 +662,6 @@
/turf/simulated/floor/reinforced,
/area/ship/manta/med)
"cK" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -658,6 +669,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"cM" = (
@@ -719,9 +733,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
"cX" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -731,6 +742,9 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
"cY" = (
@@ -758,12 +772,12 @@
icon_state = "1-2"
},
/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/dock_star)
"da" = (
@@ -861,10 +875,10 @@
/turf/simulated/floor/wood,
/area/ship/manta/barracks)
"dH" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/structure/flora/pottedplant/minitree,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
"dI" = (
@@ -929,12 +943,14 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/manta/bridge)
"dZ" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/corner,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"ec" = (
@@ -998,7 +1014,9 @@
/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"er" = (
-/obj/effect/floor_decal/techfloor/corner,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"et" = (
@@ -1012,8 +1030,8 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
-/obj/effect/floor_decal/corner/black,
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"eB" = (
/obj/machinery/chemical_dispenser/ert,
@@ -1261,7 +1279,7 @@
/area/ship/manta/teleporter)
"fU" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 4
+ dir = 5
},
/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
@@ -1308,7 +1326,7 @@
/area/ship/manta/barracks/bed_1)
"gf" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 8
+ dir = 10
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
@@ -1608,12 +1626,12 @@
/turf/simulated/floor/wood,
/area/ship/manta/barracks)
"hD" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
"hH" = (
@@ -1640,12 +1658,12 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"hS" = (
@@ -1796,10 +1814,10 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"it" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
"iu" = (
@@ -1807,8 +1825,8 @@
dir = 1
},
/obj/machinery/appliance/cooker/oven,
-/obj/effect/floor_decal/corner/black,
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"iv" = (
/obj/machinery/atmospherics/portables_connector/fuel{
@@ -1855,7 +1873,7 @@
/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"iB" = (
/obj/effect/floor_decal/techfloor{
@@ -2106,38 +2124,33 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
"jz" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/corner/black,
-/obj/effect/floor_decal/corner/black{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"jB" = (
-/obj/effect/floor_decal/corner/black,
-/obj/effect/floor_decal/corner/black{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"jD" = (
-/obj/effect/floor_decal/corner/black{
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/white{
dir = 1
},
-/obj/effect/floor_decal/corner/black,
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor/corner,
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"jE" = (
/obj/machinery/door/blast/regular{
@@ -2162,25 +2175,25 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"jI" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"jP" = (
@@ -2197,9 +2210,6 @@
icon_state = "4-8"
},
/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -2210,6 +2220,9 @@
dir = 1;
pixel_y = -23
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"jW" = (
@@ -2286,7 +2299,7 @@
dir = 10
},
/obj/machinery/appliance/cooker/grill,
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"kF" = (
/obj/structure/table/steel_reinforced,
@@ -2310,10 +2323,10 @@
pixel_y = 8
},
/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/corner/black{
+/obj/effect/floor_decal/corner/white{
dir = 1
},
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"kJ" = (
/obj/machinery/vending/food{
@@ -2322,15 +2335,12 @@
/obj/effect/floor_decal/techfloor{
dir = 6
},
-/obj/effect/floor_decal/corner/black{
+/obj/effect/floor_decal/corner/white{
dir = 1
},
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"kL" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/effect/floor_decal/techfloor{
dir = 10
},
@@ -2345,6 +2355,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"kO" = (
@@ -2368,7 +2381,6 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
-/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -2380,6 +2392,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"lg" = (
@@ -2482,15 +2497,15 @@
icon_state = "4-8"
},
/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"lG" = (
@@ -2711,6 +2726,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
"mG" = (
@@ -2810,9 +2828,6 @@
/obj/effect/floor_decal/techfloor{
dir = 6
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/machinery/light/no_nightshift{
dir = 4
},
@@ -2827,6 +2842,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"nl" = (
@@ -2948,14 +2966,14 @@
/turf/simulated/floor/plating,
/area/ship/manta/dock_port)
"nP" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
"nS" = (
@@ -2975,12 +2993,6 @@
pixel_y = -24;
req_access = list(150)
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/effect/floor_decal/techfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -2988,6 +3000,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"nY" = (
@@ -3053,9 +3071,6 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/manta/radiator_star)
"oi" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/effect/floor_decal/techfloor{
dir = 1
},
@@ -3070,6 +3085,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"om" = (
@@ -3181,10 +3199,10 @@
dir = 4
},
/obj/effect/floor_decal/techfloor/corner{
- dir = 8
+ dir = 10
},
/obj/effect/floor_decal/techfloor/corner{
- dir = 1
+ dir = 9
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/engineering)
@@ -3241,10 +3259,10 @@
pixel_y = 8
},
/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/corner/black{
+/obj/effect/floor_decal/corner/white{
dir = 1
},
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"oT" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
@@ -3257,9 +3275,6 @@
/area/ship/manta/radiator_port)
"oU" = (
/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/engineering{
- req_one_access = list(150)
- },
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -3271,6 +3286,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/door/airlock/engineering{
+ name = "Radiator Array";
+ req_one_access = list(150)
+ },
/turf/simulated/floor/plating,
/area/ship/manta/radiator_star)
"oW" = (
@@ -3380,12 +3399,12 @@
icon_state = "1-2"
},
/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/dock_port)
"pS" = (
@@ -3517,14 +3536,16 @@
/area/ship/manta/med)
"qz" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 8
+ dir = 10
},
/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"qA" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"qB" = (
@@ -3626,12 +3647,14 @@
/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"rb" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"rl" = (
@@ -3661,7 +3684,7 @@
/area/ship/manta/radiator_port)
"rq" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 1
+ dir = 9
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
@@ -3935,13 +3958,13 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"sV" = (
@@ -4003,7 +4026,9 @@
/turf/simulated/floor/wood,
/area/ship/manta/barracks)
"tm" = (
-/obj/effect/floor_decal/techfloor/corner,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
"tp" = (
@@ -4108,7 +4133,7 @@
/area/ship/manta/recreation)
"tQ" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 1
+ dir = 9
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
@@ -4126,14 +4151,14 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
"ua" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
"ub" = (
@@ -4264,7 +4289,7 @@
/area/ship/manta/hangar)
"uE" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 4
+ dir = 5
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
@@ -4283,17 +4308,28 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
"uK" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/effect/floor_decal/techfloor/corner{
- dir = 1
+ dir = 10
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
"uM" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
"uN" = (
@@ -4325,14 +4361,14 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
"uS" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
"uT" = (
@@ -4560,7 +4596,6 @@
/turf/simulated/floor/plating,
/area/ship/manta/engine)
"vU" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -4572,6 +4607,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
"vV" = (
@@ -4606,10 +4644,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
"wb" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -4626,6 +4660,12 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
"wc" = (
@@ -4652,7 +4692,7 @@
/area/ship/manta/armoury_st)
"wd" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 4
+ dir = 5
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
@@ -4661,9 +4701,6 @@
/turf/simulated/floor/plating,
/area/ship/manta/radiator_star)
"wi" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -4675,6 +4712,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"wl" = (
@@ -4715,7 +4755,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"wp" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -4727,6 +4766,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"wt" = (
@@ -4772,9 +4814,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"wy" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -4786,6 +4825,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"wC" = (
@@ -4832,12 +4874,14 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"wP" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"wQ" = (
@@ -4864,14 +4908,14 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"wX" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
"wZ" = (
@@ -4896,7 +4940,7 @@
icon_state = "1-2"
},
/obj/effect/floor_decal/techfloor/corner{
- dir = 4
+ dir = 5
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/engineering)
@@ -5039,12 +5083,14 @@
/turf/simulated/floor/plating,
/area/ship/manta/radiator_star)
"xF" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
"xG" = (
@@ -5071,6 +5117,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
"xL" = (
@@ -5232,7 +5281,6 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/manta/dock_port)
"yp" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -5249,6 +5297,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
"ys" = (
@@ -5458,7 +5509,7 @@
/area/ship/manta/mech_bay)
"zb" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 4
+ dir = 5
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/mech_bay)
@@ -5481,7 +5532,7 @@
/area/ship/manta/engine)
"zg" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 1
+ dir = 9
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
@@ -5546,10 +5597,10 @@
dir = 1
},
/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/corner/black{
+/obj/effect/floor_decal/corner/white{
dir = 1
},
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"zp" = (
/obj/structure/cable{
@@ -5754,14 +5805,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/manta_ship_boat)
"Aw" = (
-/obj/effect/floor_decal/corner/black,
-/obj/effect/floor_decal/corner/black{
- dir = 1
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"AA" = (
/obj/machinery/atmospherics/portables_connector{
@@ -5782,9 +5830,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/effect/floor_decal/techfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5792,6 +5837,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"AD" = (
@@ -6058,19 +6106,18 @@
/area/ship/manta/dock_star)
"Cp" = (
/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"Cu" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -6082,6 +6129,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/mech_bay)
"Cw" = (
@@ -6155,9 +6205,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/mech_bay)
"CK" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -6169,6 +6216,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
"CP" = (
@@ -6318,12 +6368,6 @@
/turf/simulated/floor/plating,
/area/ship/manta/atmos)
"Dp" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -6331,6 +6375,12 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_as)
"Dq" = (
@@ -6463,15 +6513,15 @@
/turf/simulated/floor/plating,
/area/ship/manta/radiator_star)
"DR" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
"DY" = (
@@ -6578,11 +6628,13 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/techfloor/corner,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"EA" = (
@@ -6833,11 +6885,11 @@
pixel_y = 4
},
/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/corner/black{
+/obj/machinery/light/no_nightshift,
+/obj/effect/floor_decal/corner/white{
dir = 1
},
-/obj/machinery/light/no_nightshift,
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"Gg" = (
/obj/structure/table/woodentable,
@@ -7222,15 +7274,15 @@
icon_state = "1-4"
},
/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/teleporter)
"Iq" = (
@@ -7277,16 +7329,18 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/techfloor/corner,
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"II" = (
@@ -7396,15 +7450,15 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"Jl" = (
@@ -7554,11 +7608,8 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
"JY" = (
-/obj/effect/floor_decal/corner/black,
-/obj/effect/floor_decal/corner/black{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"Kc" = (
/obj/item/modular_computer/console/preset/mercenary{
@@ -7595,19 +7646,18 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"Ko" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -7615,6 +7665,9 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
"Kp" = (
@@ -7764,9 +7817,11 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/techfloor/corner,
/obj/effect/floor_decal/techfloor/corner{
- dir = 4
+ dir = 5
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/engineering)
@@ -7778,8 +7833,8 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
-/obj/effect/floor_decal/corner/black,
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"Ld" = (
/obj/effect/floor_decal/industrial/warning/corner{
@@ -7812,6 +7867,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
+"Lj" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
"Lm" = (
/obj/machinery/atmospherics/pipe/manifold/visible,
/turf/simulated/wall/rplastihull,
@@ -7821,12 +7889,12 @@
dir = 1
},
/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"Lt" = (
@@ -7917,10 +7985,6 @@
pixel_y = 25;
req_access = list(150)
},
-/obj/effect/floor_decal/techfloor/corner,
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/effect/floor_decal/techfloor{
dir = 1
},
@@ -7930,6 +7994,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"LU" = (
@@ -7998,15 +8068,25 @@
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"Ml" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
+"Mp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
"Mr" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
/turf/simulated/floor/plating,
@@ -8031,12 +8111,12 @@
dir = 4
},
/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"ME" = (
@@ -8050,14 +8130,14 @@
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"MI" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"MM" = (
@@ -8068,10 +8148,12 @@
/turf/simulated/floor/plating,
/area/ship/manta/hallways_star)
"MQ" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"MU" = (
@@ -8079,12 +8161,12 @@
/turf/simulated/floor/plating,
/area/ship/manta/radiator_port)
"MV" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
"MY" = (
@@ -8134,7 +8216,7 @@
/area/ship/manta/armoury_as)
"Ne" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 8
+ dir = 10
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
@@ -8223,14 +8305,16 @@
/area/ship/manta/armoury_st)
"NA" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 8
+ dir = 10
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"ND" = (
-/obj/effect/floor_decal/techfloor/corner,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"NE" = (
@@ -8273,9 +8357,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/engineering)
"NK" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8283,6 +8364,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"NM" = (
@@ -8298,7 +8382,9 @@
/turf/simulated/wall/plastihull,
/area/ship/manta/barracks)
"NT" = (
-/obj/effect/floor_decal/techfloor/corner,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"NV" = (
@@ -8402,9 +8488,6 @@
/obj/effect/floor_decal/techfloor{
dir = 4
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -8419,6 +8502,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
"OK" = (
@@ -8869,9 +8955,6 @@
/obj/effect/floor_decal/techfloor{
dir = 4
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8879,6 +8962,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
"Rj" = (
@@ -8888,15 +8974,15 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
-/obj/effect/floor_decal/corner/black,
/obj/machinery/light/no_nightshift{
dir = 1
},
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/white,
+/turf/simulated/floor/tiled/dark,
/area/ship/manta/recreation)
"Rq" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 4
+ dir = 5
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
@@ -9026,10 +9112,12 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
-/obj/effect/floor_decal/techfloor/corner,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"RR" = (
@@ -9200,6 +9288,7 @@
"SO" = (
/obj/machinery/door/firedoor/border_only,
/obj/machinery/door/airlock/engineering{
+ name = "Radiator Array";
req_one_access = list(150)
},
/obj/structure/cable/orange{
@@ -9231,14 +9320,14 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"SW" = (
@@ -9369,12 +9458,18 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/ship/manta/engine)
-"Tv" = (
+"Tp" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 4
+ dir = 9
},
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"Tv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"Tw" = (
@@ -9483,14 +9578,14 @@
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"Ua" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"Ub" = (
@@ -9917,9 +10012,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
"We" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -9927,6 +10019,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"Wi" = (
@@ -9997,6 +10092,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/multi_tile/metal{
+ name = "Engineering";
req_one_access = list(150)
},
/obj/effect/floor_decal/techfloor{
@@ -10105,9 +10201,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -10115,6 +10208,9 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"Xp" = (
@@ -10223,9 +10319,6 @@
/turf/simulated/wall/rplastihull,
/area/ship/manta/engine)
"XF" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -10238,6 +10331,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
"XH" = (
@@ -10269,10 +10365,10 @@
icon_state = "4-8"
},
/obj/effect/floor_decal/techfloor/corner{
- dir = 8
+ dir = 9
},
/obj/effect/floor_decal/techfloor/corner{
- dir = 1
+ dir = 10
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/engineering)
@@ -10282,6 +10378,7 @@
},
/obj/machinery/door/airlock/multi_tile/metal{
dir = 1;
+ name = "Brig";
req_one_access = list(150)
},
/obj/effect/floor_decal/techfloor,
@@ -10341,14 +10438,14 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/barracks)
"Yh" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
"Yi" = (
@@ -10455,14 +10552,16 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/techfloor/corner,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
"YH" = (
/obj/effect/floor_decal/techfloor/corner{
- dir = 1
+ dir = 9
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/engineering)
@@ -10658,14 +10757,14 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"ZI" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/recreation)
"ZO" = (
@@ -18595,7 +18694,7 @@ hU
lj
oD
oD
-iR
+bd
wi
zv
Du
@@ -18744,7 +18843,7 @@ bR
bR
NA
RR
-iR
+bd
bR
bR
bR
@@ -18886,7 +18985,7 @@ OR
OR
ND
Sb
-OR
+Mp
OR
sy
nC
@@ -19021,7 +19120,7 @@ ih
lo
oO
lo
-aX
+by
wp
zx
Dz
@@ -19305,7 +19404,7 @@ ip
lz
oP
sk
-iR
+bd
wy
zy
Eb
@@ -19596,7 +19695,7 @@ bR
bR
NT
St
-aX
+by
bR
bR
bR
@@ -19731,7 +19830,7 @@ iU
lP
lP
lP
-aX
+by
wP
zH
lP
@@ -20744,7 +20843,7 @@ fx
gR
Jw
FQ
-FQ
+Lj
UF
SV
WN
@@ -20886,7 +20985,7 @@ Bq
gR
zU
Yd
-Yd
+er
WV
IG
sg
@@ -22003,7 +22102,7 @@ kh
kh
qz
sz
-uK
+Tp
xN
NQ
Fj
@@ -22430,7 +22529,7 @@ mY
qS
rM
uQ
-yb
+uK
AX
qn
Ic
@@ -22855,7 +22954,7 @@ ky
nf
qz
sz
-uK
+Tp
ys
NQ
tJ
@@ -23430,7 +23529,7 @@ BJ
BJ
OT
BJ
-uK
+Tp
DR
BJ
OT
diff --git a/maps/submaps/engine_submaps/southern_cross/_engine_submaps.dm b/maps/submaps/engine_submaps/southern_cross/_engine_submaps.dm
index 9e63699e94b..84374d4a66e 100644
--- a/maps/submaps/engine_submaps/southern_cross/_engine_submaps.dm
+++ b/maps/submaps/engine_submaps/southern_cross/_engine_submaps.dm
@@ -1,5 +1,5 @@
// This causes engine maps to get 'checked' and compiled, when undergoing a unit test.
-// This is so Travis can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
+// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
// When adding a new engine, please add it to this list.
// Polaris: R-UST and Singulo are commented out as their current submap does not line up with the control room.
#if MAP_TEST
diff --git a/maps/submaps/engine_submaps/southern_cross/engine_tesla.dmm b/maps/submaps/engine_submaps/southern_cross/engine_tesla.dmm
index 71abab71647..c6787641caf 100644
--- a/maps/submaps/engine_submaps/southern_cross/engine_tesla.dmm
+++ b/maps/submaps/engine_submaps/southern_cross/engine_tesla.dmm
@@ -1,2808 +1,201 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/template_noop,
-/area/template_noop)
-"ab" = (
-/turf/space,
-/area/space)
-"ac" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/space,
-/area/space)
-"ad" = (
-/obj/structure/lattice,
-/turf/space,
-/area/space)
-"af" = (
-/turf/simulated/wall/r_wall,
-/area/engineering/engine_room)
-"ah" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/engineering,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/engineering/engine_waste)
-"ai" = (
-/turf/simulated/wall/r_wall,
-/area/engineering/engine_waste)
-"aj" = (
-/turf/simulated/floor/airless,
-/area/space)
-"ak" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/air/airlock{
- start_pressure = 4559.63
- },
-/turf/simulated/floor,
-/area/engineering/engine_waste)
-"al" = (
-/obj/structure/cable/cyan{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 1;
- state = 1
- },
-/turf/simulated/floor/airless,
-/area/space)
-"am" = (
-/obj/machinery/field_generator,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10
- },
-/turf/simulated/floor,
-/area/engineering/engine_waste)
-"an" = (
-/obj/machinery/field_generator,
-/turf/simulated/floor,
-/area/engineering/engine_waste)
-"ao" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor,
-/area/engineering/engine_waste)
-"aq" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"ar" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"as" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/engineering/engine_waste)
-"at" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "eng_north_airlock";
- pixel_x = 24;
- req_one_access = list(10,11);
- tag_airpump = "eng_north_pump";
- tag_chamber_sensor = "eng_north_sensor";
- tag_exterior_door = "eng_north_outer";
- tag_interior_door = "eng_north_inner"
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/engine_room)
-"au" = (
-/turf/template_noop,
-/area/engineering/engine_waste)
-"av" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/engineering/engine_waste)
-"aw" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/structure/table/standard,
-/obj/item/stack/cable_coil/random,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/tool/screwdriver,
-/turf/simulated/floor,
-/area/engineering/engine_waste)
-"ax" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor,
-/area/engineering/engine_waste)
-"ay" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"az" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aA" = (
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aB" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "eng_north_airlock";
- name = "exterior access button";
- pixel_x = -5;
- pixel_y = -26;
- req_one_access = list(10,11,13)
- },
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "eng_north_outer";
- locked = 1;
- name = "Engine North Airlock Exterior"
- },
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/engine_room)
-"aC" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "eng_north_airlock";
- name = "interior access button";
- pixel_x = -28;
- pixel_y = 26;
- req_one_access = list(10,11)
- },
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aD" = (
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
- },
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aG" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aH" = (
-/obj/machinery/door/airlock/glass_engineering,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"aI" = (
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Engine Power";
- name_tag = "Engine Power"
- },
-/obj/structure/cable/cyan{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor,
-/area/engineering/engine_waste)
-"aK" = (
-/obj/machinery/camera/network/engine{
- dir = 1
- },
-/obj/structure/table/standard,
-/obj/item/weapon/circuitboard/tesla_coil,
-/obj/item/weapon/circuitboard/tesla_coil,
-/turf/simulated/floor,
-/area/engineering/engine_waste)
-"aL" = (
-/turf/simulated/wall/r_wall,
-/area/space)
-"aM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aN" = (
-/obj/effect/floor_decal/borderfloor/corner,
-/obj/effect/floor_decal/corner/yellow/bordercorner,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aO" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aP" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aQ" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aR" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aS" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aT" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aU" = (
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aV" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aX" = (
-/obj/machinery/power/tesla_coil,
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"aY" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"aZ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/cyan{
- d2 = 2;
- dir = 8;
- icon_state = "0-2"
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"ba" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"bb" = (
-/obj/effect/floor_decal/steeldecal/steel_decals_central5{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"bc" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 4
- },
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"bd" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 6
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/pa_room)
-"bf" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
- },
-/turf/simulated/wall/r_wall,
-/area/submap/pa_room)
-"bh" = (
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for the engine charging port.";
- dir = 1;
- id = "SupermatterPort";
- name = "Observation Blast Doors";
- pixel_x = -4;
- pixel_y = -24;
- req_access = list(10)
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"bi" = (
-/turf/simulated/wall/r_wall,
-/area/submap/pa_room)
-"bj" = (
-/obj/machinery/field_generator{
- anchored = 1;
- state = 1
- },
-/turf/simulated/floor/airless,
-/area/space)
-"bk" = (
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"bl" = (
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"bm" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"bo" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "EngineRadiatorViewport";
- name = "Engine Radiator Viewport Shutter";
- opacity = 0
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor,
-/area/submap/pa_room)
-"bp" = (
-/obj/machinery/power/grounding_rod,
-/turf/simulated/floor/airless,
-/area/space)
-"bq" = (
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"br" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass_engineering,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"bs" = (
-/obj/structure/cable/cyan,
-/obj/machinery/power/emitter{
- anchored = 1;
- state = 1
- },
-/turf/simulated/floor/airless,
-/area/space)
-"bt" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/floor_decal/rust/mono_rusted1,
-/turf/simulated/floor/airless,
-/area/space)
-"bv" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 4;
- frequency = 1379;
- id_tag = "eng_north_pump"
- },
-/obj/machinery/light/small,
-/obj/machinery/airlock_sensor{
- id_tag = "eng_north_sensor";
- pixel_y = -25
- },
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/engine_room)
-"bw" = (
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"by" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for the engine charging port.";
- id = "EngineRadiatorViewport";
- name = "Viewport Blast Doors";
- pixel_x = -4;
- pixel_y = 24;
- req_access = list(10)
- },
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"bz" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"bA" = (
-/obj/machinery/camera/network/engine{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/borderfloor/corner2,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"bB" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "eng_north_inner";
- locked = 1;
- name = "Engine North Airlock Interior"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/engine_room)
-"bC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"bE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"bF" = (
-/obj/effect/floor_decal/techfloor/orange/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/pa_room)
-"bG" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"bH" = (
-/obj/machinery/particle_accelerator/control_box,
-/obj/effect/floor_decal/techfloor/orange{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"bI" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"bJ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"bL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"bN" = (
-/obj/machinery/camera/network/engine{
- dir = 8
- },
-/turf/space,
-/area/space)
-"bO" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"bP" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 2;
- icon_state = "pdoor0";
- id = "SupermatterPort";
- name = "Reactor Blast Door";
- opacity = 0
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/turf/simulated/floor,
-/area/engineering/engine_room)
-"bQ" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 1
- },
-/obj/structure/particle_accelerator/particle_emitter/right{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"bS" = (
-/obj/structure/particle_accelerator/fuel_chamber{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"bT" = (
-/obj/structure/particle_accelerator/end_cap{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor/hole{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"bU" = (
-/obj/machinery/camera/network/engine{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"bV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor,
-/area/submap/pa_room)
-"bW" = (
-/obj/structure/particle_accelerator/particle_emitter/center{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"bX" = (
-/obj/effect/floor_decal/techfloor/orange,
-/obj/structure/particle_accelerator/particle_emitter/left{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"bY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor,
-/area/submap/pa_room)
-"bZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"ca" = (
-/obj/effect/floor_decal/techfloor/orange,
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"cb" = (
-/obj/item/weapon/extinguisher,
-/turf/space,
-/area/space)
-"cc" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cd" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"ce" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cf" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cg" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"ch" = (
-/obj/machinery/camera/network/engine,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"ci" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cj" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"ck" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cl" = (
-/obj/machinery/power/tesla_coil,
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"cm" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"cn" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"co" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/item/clothing/head/hardhat,
-/turf/simulated/floor/airless,
-/area/space)
-"cp" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cq" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cr" = (
-/turf/simulated/wall/r_wall,
-/area/template_noop)
-"cs" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"ct" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cu" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
- },
-/turf/simulated/wall/r_wall,
-/area/engineering/engine_room)
-"cv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cw" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cy" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"cz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "EngineRadiatorViewport";
- name = "Engine Radiator Viewport Shutter";
- opacity = 0
- },
-/turf/simulated/floor,
-/area/submap/pa_room)
-"cA" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "eng_south_airlock";
- name = "exterior access button";
- pixel_x = -5;
- pixel_y = 26;
- req_one_access = list(10,11,13)
- },
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "eng_south_outer";
- locked = 1;
- name = "Engine South Airlock Exterior"
- },
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/engine_room)
-"cB" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "eng_south_inner";
- locked = 1;
- name = "Engine South Airlock Interior"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "eng_south_airlock";
- name = "interior access button";
- pixel_x = 8;
- pixel_y = -26;
- req_one_access = list(10,11)
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/engine_room)
-"cC" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"cD" = (
-/obj/structure/cable/cyan{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"cE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cF" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cG" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"cH" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25
- },
-/obj/effect/floor_decal/steeldecal/steel_decals8,
-/obj/structure/table/standard,
-/obj/item/weapon/book/manual/tesla_engine,
-/obj/item/weapon/book/manual/engineering_particle_accelerator{
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"cI" = (
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/tesla_coil,
-/obj/structure/cable/yellow,
-/turf/simulated/floor/airless,
-/area/space)
-"cJ" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/pa_room)
-"cK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "EngineRadiatorViewport";
- name = "Engine Radiator Viewport Shutter";
- opacity = 0
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/submap/pa_room)
-"cL" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.6
- },
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/engineering,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/head/helmet/space/void/engineering,
-/turf/template_noop,
-/area/template_noop)
-"cM" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals_central5{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"cN" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"cQ" = (
-/obj/item/weapon/book/manual/engineering_particle_accelerator{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/book/manual/tesla_engine,
-/turf/template_noop,
-/area/template_noop)
-"fm" = (
-/obj/machinery/light,
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for the engine charging port.";
- dir = 1;
- id = "EngineRadiatorViewport";
- name = "Viewport Blast Doors";
- pixel_x = -4;
- pixel_y = -24;
- req_access = list(10)
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"hf" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/pa_room)
-"hF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "EngineRadiatorViewport";
- name = "Engine Radiator Viewport Shutter";
- opacity = 0
- },
-/turf/simulated/floor,
-/area/submap/pa_room)
-"hV" = (
-/obj/structure/particle_accelerator/power_box{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"jd" = (
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for the engine charging port.";
- id = "SupermatterPort";
- name = "Observation Blast Doors";
- pixel_x = -4;
- pixel_y = 24;
- req_access = list(10)
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"ji" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"jt" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"jD" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"kd" = (
-/obj/item/weapon/tool/wirecutters,
-/turf/simulated/floor/airless,
-/area/space)
-"kq" = (
-/obj/effect/floor_decal/steeldecal,
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"pr" = (
-/obj/item/weapon/weldingtool,
-/turf/simulated/floor/airless,
-/area/space)
-"qP" = (
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"rv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"rS" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"rU" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"rV" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"sq" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/submap/pa_room)
-"vq" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"vr" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "eng_south_airlock";
- pixel_x = 24;
- req_one_access = list(10,11);
- tag_airpump = "eng_south_pump";
- tag_chamber_sensor = "eng_south_sensor";
- tag_exterior_door = "eng_south_outer";
- tag_interior_door = "eng_south_inner"
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/engine_room)
-"vV" = (
-/obj/effect/floor_decal/techfloor/orange,
-/obj/effect/floor_decal/techfloor/hole,
-/turf/simulated/floor/tiled/techfloor,
-/area/submap/pa_room)
-"yC" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"yG" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 4;
- frequency = 1379;
- id_tag = "eng_south_pump"
- },
-/obj/machinery/airlock_sensor{
- id_tag = "eng_south_sensor";
- pixel_y = 25
- },
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/engine_room)
-"yI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "EngineRadiatorViewport";
- name = "Engine Radiator Viewport Shutter";
- opacity = 0
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/submap/pa_room)
-"An" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/airless,
-/area/space)
-"Bi" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"Bp" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/yellow/bordercorner2,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"EG" = (
-/obj/machinery/the_singularitygen/tesla{
- anchored = 1
- },
-/turf/simulated/floor/airless,
-/area/space)
-"Gj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "EngineRadiatorViewport";
- name = "Engine Radiator Viewport Shutter";
- opacity = 0
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor,
-/area/submap/pa_room)
-"Ia" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"Ms" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"My" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"NG" = (
-/obj/structure/cable/yellow,
-/obj/machinery/power/tesla_coil,
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/airless,
-/area/space)
-"Of" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"SX" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"Tu" = (
-/obj/effect/floor_decal/techfloor/orange/corner,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/submap/pa_room)
-"TM" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"WG" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/tiled,
-/area/engineering/engine_room)
-"Xy" = (
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for the engine charging port.";
- id = "SupermatterPort";
- name = "Radiation Collector Blast Doors";
- pixel_x = -6;
- pixel_y = 7;
- req_access = list(10)
- },
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for the engine control room blast doors.";
- id = "EngineBlast";
- name = "Engine Monitoring Room Blast Doors";
- pixel_x = 5;
- pixel_y = 7;
- req_access = list(10)
- },
-/obj/effect/engine_setup/shutters,
-/turf/template_noop,
-/area/template_noop)
+"aa" = (/turf/template_noop,/area/template_noop)
+"ab" = (/turf/space,/area/space)
+"ac" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space)
+"ad" = (/obj/structure/lattice,/turf/space,/area/space)
+"ae" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/effect/floor_decal/corner/yellow/bordercorner,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"af" = (/turf/simulated/wall/r_wall,/area/engineering/engine_room)
+"ah" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_waste)
+"ai" = (/turf/simulated/wall/r_wall,/area/engineering/engine_waste)
+"aj" = (/turf/simulated/floor/airless,/area/space)
+"ak" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock{start_pressure = 4559.63},/turf/simulated/floor,/area/engineering/engine_waste)
+"al" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/emitter{anchored = 1; dir = 1; state = 1},/turf/simulated/floor/airless,/area/space)
+"am" = (/obj/machinery/field_generator,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor,/area/engineering/engine_waste)
+"an" = (/obj/machinery/field_generator,/turf/simulated/floor,/area/engineering/engine_waste)
+"ao" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine_waste)
+"aq" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"ar" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/space)
+"as" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_waste)
+"at" = (/obj/structure/closet/emcloset,/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "eng_north_airlock"; pixel_x = 24; req_one_access = list(10,11); tag_airpump = "eng_north_pump"; tag_chamber_sensor = "eng_north_sensor"; tag_exterior_door = "eng_north_outer"; tag_interior_door = "eng_north_inner"},/turf/simulated/floor/tiled/dark,/area/engineering/engine_room)
+"au" = (/turf/template_noop,/area/engineering/engine_waste)
+"av" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine_waste)
+"aw" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/structure/table/standard,/obj/item/stack/cable_coil/random,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/screwdriver,/turf/simulated/floor,/area/engineering/engine_waste)
+"ax" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/engineering/engine_waste)
+"ay" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"az" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aA" = (/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aB" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "eng_north_airlock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(10,11,13)},/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_north_outer"; locked = 1; name = "Engine North Airlock Exterior"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/engineering/engine_room)
+"aC" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "eng_north_airlock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(10,11)},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aD" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aF" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aG" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aH" = (/obj/machinery/door/airlock/glass_engineering,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/submap/pa_room)
+"aI" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Engine Power"; name_tag = "Engine Power"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine_waste)
+"aK" = (/obj/machinery/camera/network/engine{dir = 1},/obj/structure/table/standard,/obj/item/weapon/circuitboard/tesla_coil,/obj/item/weapon/circuitboard/tesla_coil,/turf/simulated/floor,/area/engineering/engine_waste)
+"aL" = (/turf/simulated/wall/r_wall,/area/space)
+"aM" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aN" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aO" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aP" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aQ" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aR" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aS" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aU" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aV" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"aX" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/airless,/area/space)
+"aY" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"ba" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"bb" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"bc" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"bd" = (/obj/effect/floor_decal/techfloor/orange{dir = 6},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/submap/pa_room)
+"bf" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"},/turf/simulated/wall/r_wall,/area/submap/pa_room)
+"bh" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; dir = 1; id = "SupermatterPort"; name = "Observation Blast Doors"; pixel_x = -4; pixel_y = -24; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"bi" = (/turf/simulated/wall/r_wall,/area/submap/pa_room)
+"bj" = (/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/airless,/area/space)
+"bk" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"bl" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/airless,/area/space)
+"bm" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/airless,/area/space)
+"bo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/submap/pa_room)
+"bp" = (/obj/machinery/power/grounding_rod,/turf/simulated/floor/airless,/area/space)
+"bq" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/airless,/area/space)
+"br" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_engineering,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/submap/pa_room)
+"bs" = (/obj/structure/cable/cyan,/obj/machinery/power/emitter{anchored = 1; state = 1},/turf/simulated/floor/airless,/area/space)
+"bt" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/rust/mono_rusted1,/turf/simulated/floor/airless,/area/space)
+"bv" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "eng_north_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{id_tag = "eng_north_sensor"; pixel_y = -25},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/engineering/engine_room)
+"bw" = (/turf/simulated/floor/tiled,/area/submap/pa_room)
+"by" = (/obj/machinery/light{dir = 1},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; id = "EngineRadiatorViewport"; name = "Viewport Blast Doors"; pixel_x = -4; pixel_y = 24; req_access = list(10)},/turf/simulated/floor/tiled,/area/submap/pa_room)
+"bz" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/submap/pa_room)
+"bA" = (/obj/machinery/camera/network/engine{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"bB" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_north_inner"; locked = 1; name = "Engine North Airlock Interior"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/engineering/engine_room)
+"bC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"bE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"bF" = (/obj/effect/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/submap/pa_room)
+"bG" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"bH" = (/obj/machinery/particle_accelerator/control_box,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"bI" = (/obj/effect/floor_decal/techfloor/orange{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"bJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/submap/pa_room)
+"bL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"bN" = (/obj/machinery/camera/network/engine{dir = 8},/turf/space,/area/space)
+"bO" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"bP" = (/obj/machinery/door/blast/regular{density = 0; dir = 2; icon_state = "pdoor0"; id = "SupermatterPort"; name = "Reactor Blast Door"; opacity = 0},/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor,/area/engineering/engine_room)
+"bQ" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/structure/particle_accelerator/particle_emitter/right{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"bS" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"bT" = (/obj/structure/particle_accelerator/end_cap{dir = 8},/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/effect/floor_decal/techfloor/hole{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"bU" = (/obj/machinery/camera/network/engine{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/submap/pa_room)
+"bV" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/submap/pa_room)
+"bW" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"bX" = (/obj/effect/floor_decal/techfloor/orange,/obj/structure/particle_accelerator/particle_emitter/left{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"bY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/submap/pa_room)
+"bZ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"ca" = (/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"cb" = (/obj/item/weapon/extinguisher,/turf/space,/area/space)
+"cc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cd" = (/obj/effect/floor_decal/techfloor/orange{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"ce" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cf" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cg" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"ch" = (/obj/machinery/camera/network/engine,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"ci" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"ck" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cl" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless,/area/space)
+"cm" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/submap/pa_room)
+"cn" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"co" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/clothing/head/hardhat,/turf/simulated/floor/airless,/area/space)
+"cp" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cq" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cr" = (/turf/simulated/wall/r_wall,/area/template_noop)
+"cs" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"ct" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cu" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"},/turf/simulated/wall/r_wall,/area/engineering/engine_room)
+"cv" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cw" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cy" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/airless,/area/space)
+"cz" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/turf/simulated/floor,/area/submap/pa_room)
+"cA" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "eng_south_airlock"; name = "exterior access button"; pixel_x = -5; pixel_y = 26; req_one_access = list(10,11,13)},/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_south_outer"; locked = 1; name = "Engine South Airlock Exterior"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/engineering/engine_room)
+"cB" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_south_inner"; locked = 1; name = "Engine South Airlock Interior"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "eng_south_airlock"; name = "interior access button"; pixel_x = 8; pixel_y = -26; req_one_access = list(10,11)},/turf/simulated/floor/tiled/dark,/area/engineering/engine_room)
+"cC" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless,/area/space)
+"cD" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/machinery/light_switch{pixel_y = 24},/turf/simulated/floor/tiled,/area/submap/pa_room)
+"cE" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cF" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cG" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/submap/pa_room)
+"cH" = (/obj/machinery/alarm{dir = 8; pixel_x = 25},/obj/effect/floor_decal/steeldecal/steel_decals8,/obj/structure/table/standard,/obj/item/weapon/book/manual/tesla_engine,/obj/item/weapon/book/manual/engineering_particle_accelerator{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled,/area/submap/pa_room)
+"cI" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow,/turf/simulated/floor/airless,/area/space)
+"cJ" = (/obj/effect/floor_decal/techfloor/orange{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/submap/pa_room)
+"cK" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/submap/pa_room)
+"cL" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/turf/template_noop,/area/template_noop)
+"cM" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"cN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/space)
+"cQ" = (/obj/item/weapon/book/manual/engineering_particle_accelerator{pixel_x = 5; pixel_y = 5},/obj/item/weapon/book/manual/tesla_engine,/turf/template_noop,/area/template_noop)
+"fm" = (/obj/machinery/light,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; dir = 1; id = "EngineRadiatorViewport"; name = "Viewport Blast Doors"; pixel_x = -4; pixel_y = -24; req_access = list(10)},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/submap/pa_room)
+"hf" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/submap/pa_room)
+"hF" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/turf/simulated/floor,/area/submap/pa_room)
+"hV" = (/obj/structure/particle_accelerator/power_box{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"jd" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; id = "SupermatterPort"; name = "Observation Blast Doors"; pixel_x = -4; pixel_y = 24; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"ji" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"jt" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"jD" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless,/area/space)
+"kd" = (/obj/item/weapon/tool/wirecutters,/turf/simulated/floor/airless,/area/space)
+"kq" = (/obj/effect/floor_decal/steeldecal,/turf/simulated/floor/tiled,/area/submap/pa_room)
+"pr" = (/obj/item/weapon/weldingtool,/turf/simulated/floor/airless,/area/space)
+"qP" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"rv" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"rS" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"rU" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"rV" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/airless,/area/space)
+"sq" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/submap/pa_room)
+"vq" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"vr" = (/obj/structure/closet/emcloset,/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "eng_south_airlock"; pixel_x = 24; req_one_access = list(10,11); tag_airpump = "eng_south_pump"; tag_chamber_sensor = "eng_south_sensor"; tag_exterior_door = "eng_south_outer"; tag_interior_door = "eng_south_inner"},/turf/simulated/floor/tiled/dark,/area/engineering/engine_room)
+"vV" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor/hole,/turf/simulated/floor/tiled/techfloor,/area/submap/pa_room)
+"yC" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"yG" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "eng_south_pump"},/obj/machinery/airlock_sensor{id_tag = "eng_south_sensor"; pixel_y = 25},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/engineering/engine_room)
+"yI" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/submap/pa_room)
+"An" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor/airless,/area/space)
+"Bi" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless,/area/space)
+"Bp" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"EG" = (/obj/machinery/the_singularitygen/tesla{anchored = 1},/turf/simulated/floor/airless,/area/space)
+"Gj" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/structure/window/reinforced,/turf/simulated/floor,/area/submap/pa_room)
+"Ia" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"Ms" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"My" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"NG" = (/obj/structure/cable/yellow,/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/airless,/area/space)
+"Of" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"SX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"Tu" = (/obj/effect/floor_decal/techfloor/orange/corner,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/submap/pa_room)
+"TM" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"WG" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled,/area/engineering/engine_room)
+"Xy" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; id = "SupermatterPort"; name = "Radiation Collector Blast Doors"; pixel_x = -6; pixel_y = 7; req_access = list(10)},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; pixel_x = 5; pixel_y = 7; req_access = list(10)},/obj/effect/engine_setup/shutters,/turf/template_noop,/area/template_noop)
(1,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ac
-ac
-ad
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-aa
-"}
-(2,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ad
-ab
-ab
-ab
-ab
-ab
-ad
-ab
-ab
-ab
-ab
-ab
-ab
-ad
-aa
-"}
-(3,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ad
-ab
-ab
-ab
-ab
-ab
-ad
-ab
-ab
-ab
-ab
-ab
-ad
-ad
-aa
-"}
-(4,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-ac
-aj
-ab
-ab
-ab
-cb
-ab
-ad
-ab
-ab
-ab
-ab
-ab
-ad
-ab
-ab
-ab
-ab
-ab
-aj
-aL
-aa
-"}
-(5,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-ac
-aj
-aj
-ab
-ab
-ab
-bp
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-bp
-ab
-ab
-ab
-kd
-aj
-aL
-aa
-"}
-(6,1,1) = {"
-aa
-aa
-aa
-ab
-ad
-ab
-ab
-ab
-ac
-bl
-bs
-ad
-ad
-ad
-aj
-bj
-ab
-ad
-ab
-ad
-ab
-bj
-aj
-ad
-ad
-ad
-al
-cC
-aL
-aa
-"}
-(7,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-ac
-ar
-aj
-ab
-ab
-ab
-aX
-ab
-ab
-ad
-ab
-ad
-ab
-ab
-aX
-ab
-ab
-ab
-aj
-ar
-aL
-aa
-"}
-(8,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-ac
-ar
-aj
-ab
-ab
-ab
-cN
-ad
-ad
-pr
-aj
-aj
-ad
-ad
-cN
-ab
-ab
-ab
-aj
-ar
-aL
-aa
-"}
-(9,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-ac
-ar
-aj
-ad
-ad
-ad
-cN
-ab
-ab
-aj
-EG
-aj
-ab
-ab
-cN
-ad
-ad
-ad
-aj
-ar
-aL
-aa
-"}
-(10,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-ac
-ar
-aj
-ab
-ab
-ab
-cN
-ad
-ad
-aj
-aj
-aj
-ad
-ad
-cN
-ab
-ab
-ab
-aj
-ar
-aL
-aa
-"}
-(11,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-ac
-ar
-aj
-ab
-ab
-ab
-cl
-ab
-ab
-ad
-ab
-ad
-ab
-ab
-cl
-ab
-ab
-ab
-aj
-ar
-aL
-aa
-"}
-(12,1,1) = {"
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ac
-bm
-bs
-ad
-ad
-ad
-cN
-bj
-ab
-ad
-ab
-ad
-ab
-bj
-cN
-ad
-ad
-ad
-al
-Bi
-aL
-aa
-"}
-(13,1,1) = {"
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ac
-ar
-aj
-ab
-ab
-ad
-co
-cy
-cI
-cy
-jD
-cy
-NG
-cy
-rV
-ad
-ab
-ab
-aj
-ar
-aL
-aa
-"}
-(14,1,1) = {"
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ac
-ar
-ad
-ab
-ab
-bp
-ad
-ad
-ad
-ad
-cN
-ad
-ad
-ad
-ad
-bp
-ab
-ab
-ad
-ar
-aL
-aa
-"}
-(15,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-ac
-bq
-bt
-bN
-ab
-ab
-ab
-cz
-cK
-cK
-yI
-cK
-cK
-hF
-ab
-ab
-ab
-bN
-bl
-An
-aL
-aa
-"}
-(16,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-af
-af
-aB
-af
-ab
-ab
-ab
-bo
-cJ
-bF
-hf
-Tu
-bd
-Gj
-ab
-ab
-ab
-af
-cA
-af
-af
-aa
-"}
-(17,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-af
-at
-bv
-af
-ab
-ab
-ab
-bo
-bw
-bQ
-bW
-bX
-cm
-Gj
-ab
-ab
-ab
-af
-yG
-vr
-af
-aa
-"}
-(18,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ab
-ab
-ab
-af
-af
-bB
-cu
-bP
-bP
-bP
-bf
-kq
-bG
-hV
-ca
-cm
-bf
-bP
-bP
-bP
-cu
-cB
-af
-cu
-aa
-"}
-(19,1,1) = {"
-aa
-aa
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-af
-aC
-cE
-bZ
-ce
-bh
-bi
-by
-bH
-bS
-vV
-fm
-bi
-jd
-rv
-bZ
-cv
-Bp
-af
-af
-aa
-"}
-(20,1,1) = {"
-aa
-aa
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-af
-aD
-cw
-aQ
-aG
-cs
-br
-bz
-bI
-bT
-cd
-sq
-aH
-cc
-ji
-aA
-aA
-qP
-Of
-af
-aa
-"}
-(21,1,1) = {"
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-af
-af
-af
-af
-af
-aR
-ba
-bA
-bi
-cD
-bJ
-bU
-cG
-cH
-bi
-ch
-cn
-aA
-aA
-aA
-Ms
-af
-aa
-"}
-(22,1,1) = {"
-aa
-aa
-ai
-ai
-ai
-ai
-ai
-ai
-ay
-aP
-ci
-af
-aS
-bb
-ct
-bi
-bi
-bY
-bV
-bY
-bi
-bi
-aT
-cM
-jt
-aA
-aA
-vq
-af
-aa
-"}
-(23,1,1) = {"
-aa
-aa
-ai
-ak
-ak
-ak
-ax
-ai
-aA
-aA
-bE
-aM
-aU
-bc
-cx
-bC
-bC
-bL
-SX
-yC
-cf
-cf
-cj
-cp
-aA
-aA
-aA
-rU
-af
-aa
-"}
-(24,1,1) = {"
-aa
-aa
-ai
-am
-ao
-av
-aI
-ah
-az
-az
-aF
-aN
-aV
-aZ
-bk
-cF
-cw
-cw
-TM
-cw
-cw
-cg
-ck
-cq
-cw
-rS
-cs
-My
-af
-aa
-"}
-(25,1,1) = {"
-aa
-aa
-ai
-an
-as
-aw
-aK
-ai
-aq
-aY
-aA
-aO
-cr
-cr
-aa
-cr
-aa
-aa
-aa
-aa
-aa
-cr
-aa
-cr
-cr
-Ia
-aA
-aO
-af
-aa
-"}
-(26,1,1) = {"
-aa
-aa
-ai
-ai
-au
-ai
-ai
-ai
-af
-aq
-aV
-bO
-cr
-aa
-aa
-cr
-cL
-aa
-aa
-aa
-aa
-cr
-aa
-aa
-cr
-aq
-aV
-WG
-af
-aa
-"}
-(27,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cr
-af
-af
-af
-cr
-aa
-aa
-cr
-cQ
-aa
-Xy
-aa
-aa
-aa
-aa
-aa
-cr
-af
-af
-af
-af
-aa
-"}
-(28,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(29,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(30,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababaiaiaiaiaiaaaaaaaa
+abababababababababababababababababababababaiakamanaiaaaaaaaa
+acacacacacadacacacacacabababacacacacacacabaiakaoasauaaaaaaaa
+acababababababababababababababababababababaiakavawaiaaaaaaaa
+acababababababababababababababababababababaiaxaIaKaiaaaaaaaa
+adabababababababababababababababababababafaiaiahaiaiaaaaaaaa
+acacacacacacacacacacacacacacacafafafababafayaAazaqafcraaaaaa
+acababajajblarararararbmararbqafatafafafafaPaAazaYaqafaaaaaa
+acabababajbsajajajajajbsajadbtaBbvbBaCaDafcibEaFaAaVafaaaaaa
+acababababadababadababadababbNafafcucEcwafafaMaNaObOafaaaaaa
+acababababadababadababadabababababbPbZaQaRaSaUaVcrcrcraaaaaa
+acababcbabadababadababadadbpabababbPceaGbabbbcaecraaaaaaaaaa
+acabababbpajaXcNcNcNclcNcoadabababbPbhcsbActcxbkaaaaaaaaaaaa
+acadadadajbjabadabadabbjcyadczbobobfbibrbibibCcFcrcrcraaaaaa
+acabababajababadabadababcIadcKcJbwkqbybzcDbibCcwaacLcQaaaaaa
+acabababajadadprajajadadcyadcKbFbQbGbHbIbJbYbLcwaaaaaaaaaaaa
+acabababajababajEGajababjDcNyIhfbWhVbSbTbUbVSXTMaaaaXyaaaaaa
+acabababajadadajajajadadcyadcKTubXcavVcdcGbYyCcwaaaaaaaaaaaa
+acabababajababadabadababNGadcKbdcmcmfmsqcHbicfcwaaaaaaaaaaaa
+acadadadajbjabadabadabbjcyadhFGjGjbfbiaHbibicfcgcrcraaaaaaaa
+acabababbpajaXcNcNcNclcNrVadabababbPjdccchaTcjckaaaaaaaaaaaa
+acababababadababadababadadbpabababbPrvjicncMcpcqcraaaaaaaaaa
+acababababadababadababadabababababbPbZaAaAjtaAcwcrcrcraaaaaa
+acababababadababadababadababbNafafcucvaAaAaAaArSIaaqafaaaaaa
+acabababkdalajajajajajalajadblcAyGcBBpqPaAaAaAcsaAaVafaaaaaa
+acabadajajcCarararararBiararAnafvrafafOfMsvqrUMyaOWGafaaaaaa
+acadadaLaLaLaLaLaLaLaLaLaLaLaLafafcuafafafafafafafafafaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
"}
diff --git a/maps/submaps/engine_submaps_vr/tether/_engine_submaps.dm b/maps/submaps/engine_submaps_vr/tether/_engine_submaps.dm
index 0f16e26e41c..ee0a748b260 100644
--- a/maps/submaps/engine_submaps_vr/tether/_engine_submaps.dm
+++ b/maps/submaps/engine_submaps_vr/tether/_engine_submaps.dm
@@ -1,5 +1,5 @@
// This causes engine maps to get 'checked' and compiled, when undergoing a unit test.
-// This is so Travis can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
+// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
// When adding a new engine, please add it to this list.
#if MAP_TEST
#include "engine_rust.dmm"
diff --git a/maps/submaps/pois_vr/aerostat/Rockybase.dmm b/maps/submaps/pois_vr/aerostat/Rockybase.dmm
index b9c9e2e327f..657988b5858 100644
--- a/maps/submaps/pois_vr/aerostat/Rockybase.dmm
+++ b/maps/submaps/pois_vr/aerostat/Rockybase.dmm
@@ -659,12 +659,6 @@
/obj/item/mecha_parts/chassis/gygax,
/turf/simulated/floor/tiled/techfloor/virgo2,
/area/submap/virgo2/Rockybase)
-"co" = (
-/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced{
- faction = "syndicate"
- },
-/turf/simulated/floor/tiled/techfloor/virgo2,
-/area/submap/virgo2/Rockybase)
"cp" = (
/obj/machinery/vending/robotics,
/obj/machinery/light{
@@ -1302,7 +1296,7 @@ al
bA
ao
ao
-co
+ao
bq
ao
al
diff --git a/maps/submaps/pois_vr/debris_field/_templates.dm b/maps/submaps/pois_vr/debris_field/_templates.dm
index 6d200d3c20c..408647587fc 100644
--- a/maps/submaps/pois_vr/debris_field/_templates.dm
+++ b/maps/submaps/pois_vr/debris_field/_templates.dm
@@ -18,6 +18,41 @@
mappath = 'asteroids3.dmm'
cost = 2
+/datum/map_template/debrisfield/asteroids4
+ name = "Asteroids 4"
+ mappath = 'asteroids4.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/asteroids5
+ name = "Asteroids 5"
+ mappath = 'asteroids5.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/asteroids6
+ name = "Asteroids 6"
+ mappath = 'asteroids6.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/asteroids7
+ name = "Asteroids 7"
+ mappath = 'asteroids7.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/asteroids8
+ name = "Asteroids 8"
+ mappath = 'asteroids8.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/asteroids9
+ name = "Asteroids 9"
+ mappath = 'asteroids9.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/asteroids10
+ name = "Asteroids 10"
+ mappath = 'asteroids10.dmm'
+ cost = 2
+
/datum/map_template/debrisfield/carp_asteroids1
name = "Carp Asteroids 1"
mappath = 'carp_asteroids1.dmm'
@@ -38,6 +73,21 @@
mappath = 'carp_asteroids4.dmm'
cost = 5
+/datum/map_template/debrisfield/carp_asteroids5
+ name = "Carp Asteroids 5"
+ mappath = 'carp_asteroids5.dmm'
+ cost = 5
+
+/datum/map_template/debrisfield/carp_asteroids6
+ name = "Carp Asteroids 6"
+ mappath = 'carp_asteroids6.dmm'
+ cost = 5
+
+/datum/map_template/debrisfield/carp_asteroids7
+ name = "Carp Asteroids 7"
+ mappath = 'carp_asteroids7.dmm'
+ cost = 5
+
/datum/map_template/debrisfield/foodstand
name = "Food Stand"
mappath = 'foodstand.dmm'
@@ -74,6 +124,76 @@
mappath = 'debris6.dmm'
cost = 2
+/datum/map_template/debrisfield/debris7
+ name = "Debris 7"
+ mappath = 'debris7.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/debris8
+ name = "Debris 8"
+ mappath = 'debris8.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/debris9
+ name = "Debris 9"
+ mappath = 'debris9.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/debris10
+ name = "Debris 10"
+ mappath = 'debris10.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/debris11
+ name = "Debris 11"
+ mappath = 'debris11.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/debris12
+ name = "Debris 12"
+ mappath = 'debris12.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/debris13
+ name = "Debris 13"
+ mappath = 'debris13.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/debris14
+ name = "Debris 14"
+ mappath = 'debris14.dmm'
+ cost = 2
+
+/datum/map_template/debrisfield/escape_pod
+ name = "Ancient Escape Pod"
+ mappath = 'escape_pod.dmm'
+ cost = 5
+ allow_duplicates = FALSE
+
+/datum/map_template/debrisfield/old_satellite
+ name = "Old Satellite"
+ mappath = 'old_satellite.dmm'
+ cost = 10
+ allow_duplicates = FALSE
+
+/datum/map_template/debrisfield/old_teleporter
+ name = "Old Teleporter"
+ mappath = 'old_teleporter.dmm'
+ cost = 10
+ allow_duplicates = FALSE
+
+/datum/map_template/debrisfield/old_mining_outpost
+ name = "Old Drone Mining Outpost"
+ mappath = 'mining_drones.dmm'
+ cost = 20
+ allow_duplicates = FALSE
+
+/datum/map_template/debrisfield/ship_mining_drone
+ name = "Disabled Mining Drone Ship"
+ mappath = 'ship_mining_drone.dmm'
+ cost = 35
+ allow_duplicates = FALSE
+
/datum/map_template/debrisfield/ship_sup_exploded
name = "Exploded Cargo Ship"
mappath = 'ship_sup_exploded.dmm'
@@ -98,6 +218,12 @@
cost = 30
allow_duplicates = FALSE
+/datum/map_template/debrisfield/tinycarrier
+ name = "Disabled Tiny Carrier"
+ mappath = 'tinycarrier.dmm'
+ cost = 30
+ allow_duplicates = FALSE
+
/datum/map_template/debrisfield/alien_massive_derelict
name = "Alien Derelict"
mappath = 'derelict.dmm'
@@ -105,6 +231,34 @@
allow_duplicates = FALSE
discard_prob = 50
+/datum/map_template/debrisfield/new_escape_pod
+ name = "Escape Pod"
+ mappath = 'new_escapepod.dmm'
+ cost = 10
+ allow_duplicates = FALSE
+ discard_prob = 10
+
+/datum/map_template/debrisfield/new_escape_pod_infested_xeno
+ name = "Xeno-Infested Escape Pod"
+ mappath = 'new_escapepod_xeno.dmm'
+ cost = 20
+ allow_duplicates = FALSE
+ discard_prob = 25
+
+/datum/map_template/debrisfield/new_escape_pod_infested_carp
+ name = "Carp-Infested Escape Pod"
+ mappath = 'new_escapepod_carp.dmm'
+ cost = 20
+ allow_duplicates = FALSE
+ discard_prob = 25
+
+/datum/map_template/debrisfield/new_escape_pod_infested_robo
+ name = "Robo-Infested Escape Pod"
+ mappath = 'new_escapepod_robo.dmm'
+ cost = 20
+ allow_duplicates = FALSE
+ discard_prob = 25
+
/datum/map_template/debrisfield/gutted_mackerel
name = "Gutted Mackerel LC"
mappath = 'maps/offmap_vr/om_ships/mackerel_lc_wreck.dmm'
diff --git a/maps/submaps/pois_vr/debris_field/asteroids1.dmm b/maps/submaps/pois_vr/debris_field/asteroids1.dmm
index 0bdaf44d13a..664fa1c50e1 100644
--- a/maps/submaps/pois_vr/debris_field/asteroids1.dmm
+++ b/maps/submaps/pois_vr/debris_field/asteroids1.dmm
@@ -1,10 +1,16 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/simulated/mineral/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/space)
"b" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -31,77 +37,77 @@ b
(3,1,1) = {"
b
b
-b
-b
-b
-a
-a
+c
+c
+c
+d
+d
a
b
"}
(4,1,1) = {"
b
b
-a
-b
-b
-b
-a
+d
+c
+c
+c
+d
b
b
"}
(5,1,1) = {"
b
a
-a
-a
-b
-b
-b
+d
+d
+c
+c
+c
b
b
"}
(6,1,1) = {"
b
a
-a
-a
-a
-b
-b
+d
+d
+d
+c
+c
b
b
"}
(7,1,1) = {"
a
a
-a
-a
-a
-a
-b
+d
+d
+d
+d
+c
b
a
"}
(8,1,1) = {"
a
a
-a
-a
-a
-a
-b
+d
+d
+d
+d
+c
a
a
"}
(9,1,1) = {"
b
a
-a
-a
-a
-a
-b
+d
+d
+d
+d
+c
b
b
"}
diff --git a/maps/submaps/pois_vr/debris_field/asteroids10.dmm b/maps/submaps/pois_vr/debris_field/asteroids10.dmm
new file mode 100644
index 00000000000..31bbdc50a38
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/asteroids10.dmm
@@ -0,0 +1,238 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+c
+c
+c
+c
+d
+c
+c
+d
+b
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+c
+c
+c
+c
+c
+c
+c
+c
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+d
+c
+c
+d
+d
+d
+c
+c
+b
+a
+a
+"}
+(7,1,1) = {"
+a
+b
+b
+d
+c
+c
+c
+d
+d
+c
+c
+b
+b
+a
+"}
+(8,1,1) = {"
+a
+b
+b
+d
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+"}
+(9,1,1) = {"
+a
+b
+b
+d
+d
+c
+c
+c
+d
+d
+c
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+b
+d
+d
+c
+c
+c
+d
+d
+d
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+b
+d
+d
+c
+c
+c
+d
+d
+c
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+b
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+a
+b
+b
+a
+a
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+b
+b
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/asteroids2.dmm b/maps/submaps/pois_vr/debris_field/asteroids2.dmm
index 77631496ccb..ef40ad205cb 100644
--- a/maps/submaps/pois_vr/debris_field/asteroids2.dmm
+++ b/maps/submaps/pois_vr/debris_field/asteroids2.dmm
@@ -1,10 +1,16 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
"b" = (
/turf/simulated/mineral/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/space)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -39,60 +45,60 @@ a
(3,1,1) = {"
a
a
-a
-a
-a
-a
-a
-a
-a
-a
-a
+c
+c
+c
+c
+c
+c
+c
+c
+c
a
a
"}
(4,1,1) = {"
a
b
-b
-a
-a
-a
-a
-a
-b
-b
-a
+d
+c
+c
+c
+c
+c
+d
+d
+c
a
a
"}
(5,1,1) = {"
b
b
-b
-b
-a
-a
-a
-a
-b
-b
-b
+d
+d
+c
+c
+c
+c
+d
+d
+d
a
a
"}
(6,1,1) = {"
b
b
-b
-b
-a
-a
-a
-b
-b
-b
-b
+d
+d
+c
+c
+c
+d
+d
+d
+d
b
a
"}
diff --git a/maps/submaps/pois_vr/debris_field/asteroids3.dmm b/maps/submaps/pois_vr/debris_field/asteroids3.dmm
index ea91de78386..f255bf81cda 100644
--- a/maps/submaps/pois_vr/debris_field/asteroids3.dmm
+++ b/maps/submaps/pois_vr/debris_field/asteroids3.dmm
@@ -1,10 +1,16 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/simulated/mineral/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/space)
"b" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -31,55 +37,55 @@ a
(3,1,1) = {"
a
b
-b
-a
-a
-a
-a
+c
+d
+d
+d
+d
a
a
"}
(4,1,1) = {"
b
b
-b
-b
-a
-a
-a
+c
+c
+d
+d
+d
a
b
"}
(5,1,1) = {"
b
b
-b
-b
-b
-a
-a
+c
+c
+c
+d
+d
a
b
"}
(6,1,1) = {"
b
a
-a
-b
-b
-b
-a
+d
+c
+c
+c
+d
b
b
"}
(7,1,1) = {"
a
a
-a
-a
-b
-b
-b
+d
+d
+c
+c
+c
b
a
"}
diff --git a/maps/submaps/pois_vr/debris_field/asteroids4.dmm b/maps/submaps/pois_vr/debris_field/asteroids4.dmm
new file mode 100644
index 00000000000..4d93d697190
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/asteroids4.dmm
@@ -0,0 +1,134 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"c" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+b
+b
+b
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+b
+b
+c
+c
+c
+d
+d
+d
+a
+a
+"}
+(4,1,1) = {"
+a
+b
+c
+c
+c
+c
+d
+d
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+d
+d
+c
+c
+c
+d
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+d
+d
+d
+c
+d
+d
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+d
+d
+c
+c
+d
+c
+b
+a
+"}
+(8,1,1) = {"
+a
+a
+d
+d
+d
+c
+c
+c
+b
+b
+"}
+(9,1,1) = {"
+a
+a
+a
+a
+a
+a
+b
+b
+b
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/asteroids5.dmm b/maps/submaps/pois_vr/debris_field/asteroids5.dmm
new file mode 100644
index 00000000000..24ac373349c
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/asteroids5.dmm
@@ -0,0 +1,126 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+a
+a
+b
+b
+a
+"}
+(2,1,1) = {"
+a
+a
+b
+b
+b
+a
+"}
+(3,1,1) = {"
+a
+a
+c
+d
+b
+b
+"}
+(4,1,1) = {"
+a
+a
+c
+c
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+c
+c
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+c
+c
+a
+a
+"}
+(7,1,1) = {"
+b
+b
+c
+c
+a
+a
+"}
+(8,1,1) = {"
+b
+b
+c
+c
+a
+a
+"}
+(9,1,1) = {"
+a
+b
+d
+c
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+c
+c
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+c
+c
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+c
+d
+b
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+b
+b
+b
+"}
+(14,1,1) = {"
+a
+a
+b
+b
+b
+b
+"}
diff --git a/maps/submaps/pois_vr/debris_field/asteroids6.dmm b/maps/submaps/pois_vr/debris_field/asteroids6.dmm
new file mode 100644
index 00000000000..0a99b2ce837
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/asteroids6.dmm
@@ -0,0 +1,98 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"c" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+b
+a
+a
+"}
+(2,1,1) = {"
+b
+b
+b
+b
+"}
+(3,1,1) = {"
+b
+c
+c
+b
+"}
+(4,1,1) = {"
+a
+d
+c
+a
+"}
+(5,1,1) = {"
+a
+d
+d
+a
+"}
+(6,1,1) = {"
+a
+d
+d
+a
+"}
+(7,1,1) = {"
+a
+d
+d
+a
+"}
+(8,1,1) = {"
+b
+c
+d
+a
+"}
+(9,1,1) = {"
+b
+c
+c
+a
+"}
+(10,1,1) = {"
+a
+c
+d
+a
+"}
+(11,1,1) = {"
+a
+d
+d
+a
+"}
+(12,1,1) = {"
+a
+d
+d
+a
+"}
+(13,1,1) = {"
+a
+a
+b
+a
+"}
+(14,1,1) = {"
+a
+a
+b
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/asteroids7.dmm b/maps/submaps/pois_vr/debris_field/asteroids7.dmm
new file mode 100644
index 00000000000..eee9a24999e
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/asteroids7.dmm
@@ -0,0 +1,112 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+a
+a
+b
+b
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+b
+b
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+c
+d
+c
+c
+d
+d
+c
+c
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+c
+d
+d
+c
+c
+c
+c
+c
+a
+a
+"}
+(5,1,1) = {"
+b
+b
+c
+d
+d
+c
+c
+c
+c
+d
+b
+a
+"}
+(6,1,1) = {"
+b
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+"}
diff --git a/maps/submaps/pois_vr/debris_field/asteroids8.dmm b/maps/submaps/pois_vr/debris_field/asteroids8.dmm
new file mode 100644
index 00000000000..c8fe4c14b8a
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/asteroids8.dmm
@@ -0,0 +1,126 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/space,
+/area/space)
+"b" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"c" = (
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+b
+b
+a
+"}
+(3,1,1) = {"
+b
+b
+c
+c
+c
+c
+c
+c
+d
+d
+d
+d
+b
+a
+"}
+(4,1,1) = {"
+b
+b
+d
+d
+c
+c
+d
+c
+c
+c
+c
+c
+a
+a
+"}
+(5,1,1) = {"
+a
+b
+c
+d
+d
+d
+d
+d
+c
+c
+c
+c
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+b
+b
+b
+a
+a
+a
+a
+a
+b
+b
+a
+"}
+(7,1,1) = {"
+a
+a
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/asteroids9.dmm b/maps/submaps/pois_vr/debris_field/asteroids9.dmm
new file mode 100644
index 00000000000..76e775a0415
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/asteroids9.dmm
@@ -0,0 +1,302 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+a
+c
+d
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+a
+c
+d
+d
+d
+c
+c
+c
+b
+b
+b
+a
+a
+"}
+(7,1,1) = {"
+a
+b
+a
+a
+c
+d
+d
+d
+c
+c
+c
+b
+b
+b
+b
+a
+"}
+(8,1,1) = {"
+a
+b
+b
+a
+c
+c
+c
+c
+c
+c
+c
+a
+a
+b
+b
+a
+"}
+(9,1,1) = {"
+a
+b
+a
+a
+c
+c
+c
+c
+c
+c
+c
+a
+a
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+c
+c
+c
+d
+c
+c
+c
+a
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+b
+d
+d
+c
+c
+c
+c
+d
+b
+b
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+d
+d
+c
+c
+c
+c
+d
+b
+b
+b
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+b
+b
+b
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+"}
diff --git a/maps/submaps/pois_vr/debris_field/carp_asteroids1.dmm b/maps/submaps/pois_vr/debris_field/carp_asteroids1.dmm
index 985271c59b5..4f88bef644a 100644
--- a/maps/submaps/pois_vr/debris_field/carp_asteroids1.dmm
+++ b/maps/submaps/pois_vr/debris_field/carp_asteroids1.dmm
@@ -1,14 +1,20 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
"b" = (
/turf/simulated/mineral/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/space)
"c" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"e" = (
/obj/tether_away_spawner/debrisfield/carp,
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -39,91 +45,91 @@ a
(3,1,1) = {"
a
a
-b
-b
-b
-b
-a
-a
-b
+c
+c
+c
+c
+d
+d
+c
b
b
"}
(4,1,1) = {"
a
a
-a
-b
-a
-a
-a
-b
-b
+d
+c
+d
+d
+d
+c
+c
b
b
"}
(5,1,1) = {"
a
a
-a
-a
-a
-a
-a
-b
-b
+d
+d
+d
+d
+d
+c
+c
b
b
"}
(6,1,1) = {"
a
b
-b
-a
-a
c
-a
-b
-b
+d
+d
+e
+d
+c
+c
b
b
"}
(7,1,1) = {"
b
b
-b
-b
-a
-a
-a
-a
-b
+c
+c
+d
+d
+d
+d
+c
b
a
"}
(8,1,1) = {"
b
b
-b
-b
-a
-a
-a
-a
-a
+c
+c
+d
+d
+d
+d
+d
a
a
"}
(9,1,1) = {"
b
b
-b
-a
-a
-b
-b
-a
-a
+c
+d
+d
+c
+c
+d
+d
a
a
"}
diff --git a/maps/submaps/pois_vr/debris_field/carp_asteroids2.dmm b/maps/submaps/pois_vr/debris_field/carp_asteroids2.dmm
index 42312652751..4598540df71 100644
--- a/maps/submaps/pois_vr/debris_field/carp_asteroids2.dmm
+++ b/maps/submaps/pois_vr/debris_field/carp_asteroids2.dmm
@@ -1,14 +1,20 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/simulated/mineral/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/space)
"b" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
"c" = (
/obj/tether_away_spawner/debrisfield/carp,
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+"e" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -31,81 +37,81 @@ a
(3,1,1) = {"
a
a
-a
-b
-b
+d
+e
+e
b
b
"}
(4,1,1) = {"
b
b
-b
-b
-b
+e
+e
+e
c
b
"}
(5,1,1) = {"
b
b
-a
-a
-b
+d
+d
+e
b
b
"}
(6,1,1) = {"
b
a
-a
-a
-a
+d
+d
+d
b
b
"}
(7,1,1) = {"
b
a
-a
-a
-a
+d
+d
+d
b
b
"}
(8,1,1) = {"
b
c
-a
-a
-b
+d
+d
+e
b
b
"}
(9,1,1) = {"
b
b
-a
-b
-b
+d
+e
+e
b
b
"}
(10,1,1) = {"
b
b
-b
-b
-b
+e
+e
+e
b
b
"}
(11,1,1) = {"
b
b
-b
-b
-a
+e
+e
+d
a
b
"}
diff --git a/maps/submaps/pois_vr/debris_field/carp_asteroids3.dmm b/maps/submaps/pois_vr/debris_field/carp_asteroids3.dmm
index c6de2a96576..07c7c46a5e5 100644
--- a/maps/submaps/pois_vr/debris_field/carp_asteroids3.dmm
+++ b/maps/submaps/pois_vr/debris_field/carp_asteroids3.dmm
@@ -1,14 +1,20 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
"b" = (
/turf/simulated/mineral/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/space)
"c" = (
/obj/tether_away_spawner/debrisfield/carp,
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"e" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -43,90 +49,90 @@ a
(3,1,1) = {"
a
a
-a
-b
-b
-b
-a
-a
-b
-b
-b
+d
+e
+e
+e
+d
+d
+e
+e
+e
b
a
"}
(4,1,1) = {"
a
a
-b
-b
-b
-b
-b
-a
-a
-b
-b
+e
+e
+e
+e
+e
+d
+d
+e
+e
a
a
"}
(5,1,1) = {"
a
b
-b
-b
-b
-b
-b
-b
-a
-a
-a
+e
+e
+e
+e
+e
+e
+d
+d
+d
a
a
"}
(6,1,1) = {"
a
b
-b
-b
-b
-b
-b
-b
-a
-a
-a
+e
+e
+e
+e
+e
+e
+d
+d
+d
a
a
"}
(7,1,1) = {"
b
b
-b
-b
-b
-b
-b
-b
-a
-a
-a
+e
+e
+e
+e
+e
+e
+d
+d
+d
a
a
"}
(8,1,1) = {"
b
b
-b
-b
-b
-b
-b
-a
-a
-a
-a
+e
+e
+e
+e
+e
+d
+d
+d
+d
a
b
"}
diff --git a/maps/submaps/pois_vr/debris_field/carp_asteroids4.dmm b/maps/submaps/pois_vr/debris_field/carp_asteroids4.dmm
index e4ebbe5b4db..1661c2d06d3 100644
--- a/maps/submaps/pois_vr/debris_field/carp_asteroids4.dmm
+++ b/maps/submaps/pois_vr/debris_field/carp_asteroids4.dmm
@@ -1,14 +1,20 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
"b" = (
/turf/simulated/mineral/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/space)
"c" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"e" = (
/obj/tether_away_spawner/debrisfield/carp/hard,
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -33,70 +39,70 @@ b
(3,1,1) = {"
b
b
-b
-b
-a
-b
+c
+c
+d
+c
b
b
"}
(4,1,1) = {"
b
b
-b
-a
-a
-a
+c
+d
+d
+d
b
b
"}
(5,1,1) = {"
a
b
-a
-a
-c
-a
+d
+d
+e
+d
a
a
"}
(6,1,1) = {"
a
a
-a
-a
-a
-a
+d
+d
+d
+d
a
a
"}
(7,1,1) = {"
a
a
-b
-b
-b
-a
+c
+c
+c
+d
a
a
"}
(8,1,1) = {"
a
b
-b
-b
-b
-b
+c
+c
+c
+c
b
a
"}
(9,1,1) = {"
a
b
-b
-b
-b
-b
+c
+c
+c
+c
b
a
"}
diff --git a/maps/submaps/pois_vr/debris_field/carp_asteroids5.dmm b/maps/submaps/pois_vr/debris_field/carp_asteroids5.dmm
new file mode 100644
index 00000000000..171680ee869
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/carp_asteroids5.dmm
@@ -0,0 +1,178 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/floor/vacuum,
+/area/submap/debrisfield/misc_debris)
+"e" = (
+/turf/simulated/mineral/vacuum,
+/area/submap/debrisfield/misc_debris)
+"f" = (
+/obj/tether_away_spawner/debrisfield/carp,
+/turf/simulated/mineral/floor/vacuum,
+/area/submap/debrisfield/misc_debris)
+"g" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+b
+c
+c
+c
+g
+g
+g
+g
+c
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+c
+c
+g
+g
+e
+g
+g
+g
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+c
+c
+g
+d
+d
+f
+g
+g
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+c
+c
+d
+d
+d
+f
+g
+g
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+c
+c
+g
+g
+e
+d
+g
+c
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+g
+c
+c
+g
+e
+g
+g
+g
+b
+a
+"}
+(9,1,1) = {"
+a
+a
+g
+g
+c
+g
+g
+g
+g
+g
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/carp_asteroids6.dmm b/maps/submaps/pois_vr/debris_field/carp_asteroids6.dmm
new file mode 100644
index 00000000000..614615d3716
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/carp_asteroids6.dmm
@@ -0,0 +1,242 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+"e" = (
+/obj/tether_away_spawner/debrisfield/carp,
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+b
+a
+b
+b
+b
+b
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+c
+d
+d
+d
+d
+d
+d
+d
+d
+d
+b
+a
+"}
+(4,1,1) = {"
+a
+a
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+d
+d
+d
+d
+d
+d
+d
+d
+d
+c
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+c
+d
+c
+c
+c
+d
+d
+c
+c
+c
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+c
+c
+c
+c
+c
+c
+c
+c
+c
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+a
+c
+c
+d
+c
+c
+c
+c
+c
+e
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+d
+d
+d
+c
+c
+c
+c
+c
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+d
+d
+d
+d
+c
+c
+c
+a
+a
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+c
+d
+d
+d
+d
+c
+a
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/carp_asteroids7.dmm b/maps/submaps/pois_vr/debris_field/carp_asteroids7.dmm
new file mode 100644
index 00000000000..a79e64cd240
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/carp_asteroids7.dmm
@@ -0,0 +1,216 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/mineral/floor/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+"e" = (
+/turf/simulated/mineral/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+"f" = (
+/obj/tether_away_spawner/debrisfield/carp/hard,
+/turf/simulated/mineral/floor/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+c
+c
+c
+c
+c
+e
+c
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+c
+c
+c
+c
+e
+e
+e
+b
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+c
+c
+d
+d
+e
+e
+e
+b
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+b
+d
+e
+d
+f
+d
+e
+e
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+b
+b
+e
+e
+e
+d
+c
+c
+e
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+b
+b
+e
+e
+c
+c
+c
+c
+c
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+e
+c
+c
+c
+c
+c
+c
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/debris1.dmm b/maps/submaps/pois_vr/debris_field/debris1.dmm
index 2c9339ae2d8..4d9f58a4605 100644
--- a/maps/submaps/pois_vr/debris_field/debris1.dmm
+++ b/maps/submaps/pois_vr/debris_field/debris1.dmm
@@ -2,17 +2,20 @@
"a" = (
/obj/structure/lattice,
/turf/space,
-/area/tether_away/debrisfield/explored)
+/area/space)
"b" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
"c" = (
/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/space)
"d" = (
/obj/structure/girder,
/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/space)
+"e" = (
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -25,16 +28,16 @@ c
(2,1,1) = {"
a
a
-c
-c
+e
+e
c
b
"}
(3,1,1) = {"
a
a
-c
-c
+e
+e
b
b
"}
diff --git a/maps/submaps/pois_vr/debris_field/debris10.dmm b/maps/submaps/pois_vr/debris_field/debris10.dmm
new file mode 100644
index 00000000000..994f8b2328d
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/debris10.dmm
@@ -0,0 +1,45 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/obj/structure/girder,
+/turf/simulated/floor/airless,
+/area/space)
+"b" = (
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/airless,
+/area/space)
+"c" = (
+/turf/template_noop,
+/area/space)
+"d" = (
+/obj/structure/grille/broken,
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/airless,
+/area/space)
+"e" = (
+/obj/item/stack/rods,
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"f" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"g" = (
+/obj/structure/grille,
+/turf/simulated/floor/airless,
+/area/space)
+
+(1,1,1) = {"
+a
+d
+g
+"}
+(2,1,1) = {"
+b
+e
+f
+"}
+(3,1,1) = {"
+c
+f
+c
+"}
diff --git a/maps/submaps/pois_vr/debris_field/debris11.dmm b/maps/submaps/pois_vr/debris_field/debris11.dmm
new file mode 100644
index 00000000000..8fca42f1de8
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/debris11.dmm
@@ -0,0 +1,53 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/obj/structure/lattice,
+/turf/template_noop,
+/area/space)
+"b" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"c" = (
+/obj/structure/disposalpipe/broken{
+ dir = 8;
+ icon_state = "pipe-b"
+ },
+/obj/structure/lattice,
+/turf/template_noop,
+/area/space)
+"d" = (
+/turf/simulated/floor/airless,
+/area/space)
+"e" = (
+/obj/structure/disposalpipe/segment,
+/obj/random/junk,
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"f" = (
+/obj/structure/disposalpipe/broken{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"g" = (
+/turf/template_noop,
+/area/space)
+
+(1,1,1) = {"
+a
+d
+a
+"}
+(2,1,1) = {"
+b
+e
+f
+"}
+(3,1,1) = {"
+c
+a
+g
+"}
diff --git a/maps/submaps/pois_vr/debris_field/debris12.dmm b/maps/submaps/pois_vr/debris_field/debris12.dmm
new file mode 100644
index 00000000000..b4547ac8519
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/debris12.dmm
@@ -0,0 +1,43 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/template_noop,
+/area/space)
+"b" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/turf/simulated/floor/reinforced/airless{
+ name = "reinforced floor"
+ },
+/area/space)
+"c" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/simulated/floor/reinforced/airless{
+ name = "reinforced floor"
+ },
+/area/space)
+"d" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/template_noop,
+/area/space)
+"e" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/simulated/floor/reinforced/airless{
+ name = "reinforced floor"
+ },
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+e
+c
+"}
+(2,1,1) = {"
+b
+e
+d
+"}
diff --git a/maps/submaps/pois_vr/debris_field/debris13.dmm b/maps/submaps/pois_vr/debris_field/debris13.dmm
new file mode 100644
index 00000000000..a0937393828
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/debris13.dmm
@@ -0,0 +1,78 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/wall/shull,
+/area/tether_away/debrisfield/shuttle_buffer)
+"c" = (
+/obj/item/stack/rods,
+/turf/template_noop,
+/area/space)
+"d" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"e" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"f" = (
+/obj/structure/lattice,
+/turf/template_noop,
+/area/space)
+"g" = (
+/obj/structure/girder,
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"h" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"i" = (
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"j" = (
+/obj/structure/lattice,
+/obj/item/weapon/material/shard/shrapnel,
+/turf/template_noop,
+/area/space)
+"k" = (
+/obj/item/weapon/material/shard/shrapnel,
+/turf/template_noop,
+/area/space)
+
+(1,1,1) = {"
+a
+c
+f
+f
+a
+"}
+(2,1,1) = {"
+b
+b
+g
+i
+k
+"}
+(3,1,1) = {"
+b
+d
+h
+i
+f
+"}
+(4,1,1) = {"
+b
+e
+i
+j
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/debris14.dmm b/maps/submaps/pois_vr/debris_field/debris14.dmm
new file mode 100644
index 00000000000..91a5ef114a5
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/debris14.dmm
@@ -0,0 +1,80 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/obj/item/weapon/material/shard/shrapnel,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"b" = (
+/obj/structure/girder,
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"e" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"f" = (
+/obj/item/stack/rods,
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"g" = (
+/obj/structure/lattice,
+/obj/item/stack/rods,
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
+"h" = (
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
+"i" = (
+/obj/item/weapon/material/shard/shrapnel,
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"j" = (
+/obj/structure/lattice,
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
+"k" = (
+/turf/template_noop,
+/area/space)
+"l" = (
+/turf/simulated/wall,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+b
+l
+j
+j
+e
+"}
+(2,1,1) = {"
+c
+a
+f
+j
+k
+"}
+(3,1,1) = {"
+i
+d
+d
+j
+k
+"}
+(4,1,1) = {"
+k
+j
+g
+h
+k
+"}
diff --git a/maps/submaps/pois_vr/debris_field/debris2.dmm b/maps/submaps/pois_vr/debris_field/debris2.dmm
index 9acdf06e447..d6be7bc91ef 100644
--- a/maps/submaps/pois_vr/debris_field/debris2.dmm
+++ b/maps/submaps/pois_vr/debris_field/debris2.dmm
@@ -1,14 +1,21 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/space,
-/area/tether_away/debrisfield/explored)
+/turf/template_noop,
+/area/space)
"b" = (
/obj/structure/lattice,
/turf/space,
-/area/tether_away/debrisfield/explored)
+/area/space)
"c" = (
/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/space)
+"d" = (
+/obj/structure/lattice,
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
+"e" = (
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -17,17 +24,17 @@ c
"}
(2,1,1) = {"
a
-b
+d
c
"}
(3,1,1) = {"
a
-c
+e
a
"}
(4,1,1) = {"
b
-c
+e
a
"}
(5,1,1) = {"
diff --git a/maps/submaps/pois_vr/debris_field/debris3.dmm b/maps/submaps/pois_vr/debris_field/debris3.dmm
index 0af46a29101..edf2239745b 100644
--- a/maps/submaps/pois_vr/debris_field/debris3.dmm
+++ b/maps/submaps/pois_vr/debris_field/debris3.dmm
@@ -1,18 +1,25 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/space,
-/area/tether_away/debrisfield/explored)
+/turf/template_noop,
+/area/space)
"b" = (
/obj/structure/lattice,
/turf/space,
-/area/tether_away/debrisfield/explored)
+/area/space)
"c" = (
/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/space)
"d" = (
/obj/structure/girder,
/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/space)
+"e" = (
+/obj/structure/lattice,
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
+"f" = (
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -25,16 +32,16 @@ d
(2,1,1) = {"
a
b
-b
-c
+e
+f
c
c
"}
(3,1,1) = {"
b
c
-b
-b
+e
+e
b
c
"}
diff --git a/maps/submaps/pois_vr/debris_field/debris4.dmm b/maps/submaps/pois_vr/debris_field/debris4.dmm
index 3623fa21da9..212ae1a678b 100644
--- a/maps/submaps/pois_vr/debris_field/debris4.dmm
+++ b/maps/submaps/pois_vr/debris_field/debris4.dmm
@@ -1,24 +1,27 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/space,
-/area/tether_away/debrisfield/explored)
+/turf/template_noop,
+/area/space)
"b" = (
/obj/structure/lattice,
/turf/space,
-/area/tether_away/debrisfield/explored)
+/area/space)
"c" = (
/obj/structure/girder,
/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/space)
"d" = (
/turf/simulated/shuttle/wall,
-/area/tether_away/debrisfield/explored)
+/area/space)
"e" = (
/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/space)
"f" = (
/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
+/area/tether_away/debrisfield/shuttle_buffer)
+"g" = (
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -44,7 +47,7 @@ b
(4,1,1) = {"
a
d
-e
+g
b
a
"}
diff --git a/maps/submaps/pois_vr/debris_field/debris5.dmm b/maps/submaps/pois_vr/debris_field/debris5.dmm
index 7a3fe532fa0..440dfe1296d 100644
--- a/maps/submaps/pois_vr/debris_field/debris5.dmm
+++ b/maps/submaps/pois_vr/debris_field/debris5.dmm
@@ -1,6 +1,6 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/space,
+/turf/template_noop,
/area/space)
"b" = (
/obj/structure/lattice,
@@ -8,10 +8,13 @@
/area/space)
"c" = (
/turf/simulated/floor/airless,
-/area/space)
+/area/tether_away/debrisfield/shuttle_buffer)
"d" = (
/turf/simulated/shuttle/wall/dark,
/area/space)
+"e" = (
+/turf/simulated/shuttle/wall/dark,
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
a
@@ -27,8 +30,8 @@ d
"}
(3,1,1) = {"
a
-d
-d
+e
+e
b
"}
(4,1,1) = {"
diff --git a/maps/submaps/pois_vr/debris_field/debris6.dmm b/maps/submaps/pois_vr/debris_field/debris6.dmm
index 9381921db8c..41df44de219 100644
--- a/maps/submaps/pois_vr/debris_field/debris6.dmm
+++ b/maps/submaps/pois_vr/debris_field/debris6.dmm
@@ -1,24 +1,28 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
+/obj/structure/lattice,
/turf/space,
-/area/space)
+/area/tether_away/debrisfield/shuttle_buffer)
"b" = (
/obj/structure/lattice,
/turf/space,
/area/space)
+"c" = (
+/turf/template_noop,
+/area/space)
(1,1,1) = {"
b
b
-a
+c
"}
(2,1,1) = {"
b
-b
+a
b
"}
(3,1,1) = {"
b
b
-a
+c
"}
diff --git a/maps/submaps/pois_vr/debris_field/debris7.dmm b/maps/submaps/pois_vr/debris_field/debris7.dmm
new file mode 100644
index 00000000000..103f67bf68f
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/debris7.dmm
@@ -0,0 +1,107 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/wall/dshull,
+/area/space)
+"c" = (
+/obj/structure/lattice,
+/obj/item/stack/cable_coil/cut,
+/turf/space,
+/area/space)
+"d" = (
+/turf/simulated/floor/airless,
+/area/space)
+"e" = (
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"f" = (
+/obj/structure/lattice,
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
+"g" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"h" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"i" = (
+/obj/structure/lattice,
+/obj/item/stack/cable_coil/cut,
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
+"j" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+a
+a
+a
+b
+b
+b
+b
+b
+"}
+(2,1,1) = {"
+b
+b
+b
+b
+b
+d
+d
+d
+a
+"}
+(3,1,1) = {"
+a
+c
+e
+e
+e
+e
+e
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+f
+h
+h
+i
+j
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+g
+g
+g
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+g
+a
+a
+a
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/debris8.dmm b/maps/submaps/pois_vr/debris_field/debris8.dmm
new file mode 100644
index 00000000000..7e21a82345a
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/debris8.dmm
@@ -0,0 +1,121 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"c" = (
+/turf/simulated/floor/hull/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"d" = (
+/obj/machinery/power/pointdefense{
+ dir = 4
+ },
+/turf/simulated/floor/hull/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"e" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"f" = (
+/obj/structure/lattice,
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+e
+a
+e
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+b
+c
+c
+c
+c
+f
+e
+a
+"}
+(4,1,1) = {"
+a
+a
+c
+c
+d
+c
+c
+c
+e
+a
+"}
+(5,1,1) = {"
+a
+a
+b
+c
+c
+c
+c
+f
+e
+a
+"}
+(6,1,1) = {"
+a
+a
+b
+b
+b
+f
+f
+b
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+e
+a
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/debris9.dmm b/maps/submaps/pois_vr/debris_field/debris9.dmm
new file mode 100644
index 00000000000..fa45426b2a9
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/debris9.dmm
@@ -0,0 +1,82 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"c" = (
+/turf/simulated/floor/airless,
+/area/space)
+"d" = (
+/turf/simulated/wall/lead,
+/area/space)
+"e" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"f" = (
+/obj/structure/closet/crate/radiation,
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"g" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"h" = (
+/turf/simulated/wall/lead,
+/area/tether_away/debrisfield/shuttle_buffer)
+"i" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/lead,
+/area/tether_away/debrisfield/shuttle_buffer)
+
+(1,1,1) = {"
+a
+b
+d
+a
+a
+"}
+(2,1,1) = {"
+a
+f
+h
+a
+a
+"}
+(3,1,1) = {"
+a
+g
+h
+a
+a
+"}
+(4,1,1) = {"
+b
+c
+i
+a
+a
+"}
+(5,1,1) = {"
+b
+c
+h
+e
+a
+"}
+(6,1,1) = {"
+a
+c
+e
+e
+a
+"}
+(7,1,1) = {"
+a
+b
+e
+e
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/debrisfield_things.dm b/maps/submaps/pois_vr/debris_field/debrisfield_things.dm
index 13cd7f032dc..874a87c7351 100644
--- a/maps/submaps/pois_vr/debris_field/debrisfield_things.dm
+++ b/maps/submaps/pois_vr/debris_field/debrisfield_things.dm
@@ -82,4 +82,24 @@
prob(2);/obj/item/slime_extract/emerald,
prob(2);/obj/item/slime_extract/light_pink,
prob(1);/obj/item/slime_extract/grey,
- prob(1);/obj/item/slime_extract/rainbow)
\ No newline at end of file
+ prob(1);/obj/item/slime_extract/rainbow)
+
+/obj/item/weapon/paper/robo_escape_pod
+ name = "faded note"
+ info = {"This paper is old and the shaky writing has faded, rendering it difficult to read. \
+whichever poor bastard finds this pod \
+ \
+im sorry \
+we tried to do everything we could for her \
+but in the end the virus was too much \
+rnd wanted to take her apart and document what happened \
+but after watching her tear through three of my men like they were nothing \
+i just. i couldnt. they might fire me, but fuck the suits. the safety of the other staff here matter more. \
+her fucking dignity matters more. \
+ \
+we managed to bait her into one of the escape pods. fired her out into the black. \
+ \
+hope nobody ever has to read this. has to find her. \
+if you do, im sorry. \
+i just hope whatever happens, she finds the mercy we werent equipped to give her. \
+The author's signature is smudged beyond recognition. "}
\ No newline at end of file
diff --git a/maps/submaps/pois_vr/debris_field/derelict.dmm b/maps/submaps/pois_vr/debris_field/derelict.dmm
index afc47198600..c1dcd090225 100644
--- a/maps/submaps/pois_vr/debris_field/derelict.dmm
+++ b/maps/submaps/pois_vr/debris_field/derelict.dmm
@@ -1,7 +1,7 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
-/turf/space,
-/area/tether_away/debrisfield/explored)
+/turf/template_noop,
+/area/space)
"ab" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -13,7 +13,7 @@
},
/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"ac" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -22,7 +22,7 @@
/obj/structure/window/reinforced,
/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"ad" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -33,7 +33,7 @@
},
/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"ae" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -45,23 +45,23 @@
},
/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"af" = (
/obj/structure/prop/alien/computer/camera,
/turf/simulated/floor/tiled/techfloor,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"ag" = (
/obj/structure/prop/alien/computer,
/turf/simulated/floor/tiled/techfloor,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"ah" = (
/obj/structure/prop/alien/dispenser,
/turf/simulated/floor/tiled/techfloor,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"ai" = (
/obj/structure/prop/alien/computer/camera/flipped,
/turf/simulated/floor/tiled/techfloor,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"aj" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -72,14 +72,14 @@
},
/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"ak" = (
/turf/simulated/floor/tiled/techfloor,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"al" = (
/obj/tether_away_spawner/debrisfield/derelict,
/turf/simulated/floor/tiled/techfloor,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"am" = (
/obj/structure/cable{
icon_state = "0-4"
@@ -91,26 +91,26 @@
pixel_y = -24
},
/turf/simulated/floor/tiled/techfloor,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"an" = (
/obj/structure/cable{
icon_state = "2-8"
},
/turf/simulated/floor/tiled/techfloor,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"ao" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"ap" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"aq" = (
/obj/machinery/door/airlock/alien/locked,
/turf/simulated/floor/tiled/techfloor,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"ar" = (
/turf/simulated/wall,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"as" = (
/obj/structure/cable{
d1 = 1;
@@ -119,20 +119,20 @@
pixel_y = 0
},
/turf/simulated/wall,
-/area/tether_away/debrisfield/derelict/bridge)
+/area/submap/debrisfield/derelict/bridge)
"at" = (
/turf/simulated/floor/tiled/monotile,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"au" = (
/obj/effect/decal/remains/human,
/turf/simulated/floor/tiled/monotile,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"av" = (
/turf/simulated/wall,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aw" = (
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"ax" = (
/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm,
/obj/structure/cable{
@@ -141,7 +141,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/bluegrid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"ay" = (
/obj/structure/cable,
/obj/structure/cable{
@@ -159,11 +159,11 @@
},
/obj/machinery/power/rtg/abductor/built,
/turf/simulated/floor/bluegrid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"az" = (
/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm,
/turf/simulated/floor/tiled/monotile,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aA" = (
/obj/structure/cable{
d1 = 1;
@@ -173,7 +173,7 @@
},
/obj/item/weapon/grenade/empgrenade,
/turf/simulated/floor/bluegrid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aB" = (
/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm,
/obj/structure/cable{
@@ -183,7 +183,7 @@
pixel_y = 0
},
/turf/simulated/floor/bluegrid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aC" = (
/obj/structure/cable{
d1 = 1;
@@ -192,11 +192,11 @@
pixel_y = 0
},
/turf/simulated/floor/bluegrid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aD" = (
/obj/machinery/door/airlock/alien,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aE" = (
/obj/machinery/door/airlock/alien,
/obj/structure/cable{
@@ -206,14 +206,14 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aF" = (
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aG" = (
/obj/machinery/door/airlock/alien,
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aH" = (
/obj/structure/cable{
d1 = 1;
@@ -222,18 +222,18 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aI" = (
/obj/structure/old_roboprinter,
/turf/simulated/floor/tiled/monotile,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aJ" = (
/obj/structure/shuttle/engine/heater,
/turf/simulated/floor/reinforced/airless,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aK" = (
/turf/space,
-/area/tether_away/debrisfield/derelict)
+/area/space)
"aL" = (
/obj/structure/cable{
d2 = 2;
@@ -246,7 +246,7 @@
},
/obj/machinery/power/rtg/abductor/built,
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aM" = (
/obj/structure/cable{
icon_state = "0-4"
@@ -257,7 +257,7 @@
},
/obj/machinery/power/rtg/abductor/built,
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aN" = (
/obj/random/humanoidremains,
/obj/structure/cable{
@@ -267,101 +267,109 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aO" = (
/obj/machinery/porta_turret/alien{
faction = "derelict";
use_power = 0
},
/turf/space,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aP" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "burst_l";
dir = 8
},
/turf/space,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aQ" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "burst_l";
dir = 4
},
/turf/space,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aR" = (
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aS" = (
/obj/effect/decal/mecha_wreckage/gygax/adv,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aT" = (
/obj/effect/map_effect/interval/effect_emitter/sparks/frequent,
/obj/effect/map_effect/interval/effect_emitter/smoke,
/obj/machinery/door/airlock/alien,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aU" = (
/obj/effect/map_effect/interval/effect_emitter/sparks/frequent,
/obj/structure/door_assembly/door_assembly_alien,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aV" = (
/obj/machinery/door/airlock/alien,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aW" = (
/obj/random/tool/alien,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aX" = (
/obj/random/energy,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aY" = (
/obj/random/humanoidremains,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"aZ" = (
/mob/living/simple_mob/mechanical/infectionbot{
faction = "derelict"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"ba" = (
/obj/random/humanoidremains,
/obj/item/weapon/gun/energy/ionrifle,
/turf/simulated/floor/tiled/steel_ridged,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bb" = (
/turf/simulated/floor/tiled/steel_ridged,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bc" = (
/obj/machinery/bomb_tester,
/turf/simulated/floor/tiled/steel_ridged,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bd" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "burst_l";
dir = 1
},
/turf/space,
-/area/tether_away/debrisfield/derelict/interior)
+/area/space)
"be" = (
/obj/structure/prop/alien/computer/camera,
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
+"bf" = (
+/obj/structure/catwalk,
+/turf/space,
+/area/space)
+"bg" = (
+/obj/item/weapon/gun/energy/ionrifle,
+/turf/space,
+/area/space)
"bh" = (
/obj/structure/prop/alien/computer/camera/flipped,
/obj/structure/cable{
icon_state = "2-8"
},
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bi" = (
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bj" = (
/obj/structure/cable{
d1 = 1;
@@ -370,24 +378,24 @@
pixel_y = 0
},
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bk" = (
/turf/simulated/floor/tiled/steel_grid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bl" = (
/obj/machinery/transhuman/resleever,
/turf/simulated/floor/tiled/steel_grid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bm" = (
/obj/machinery/artifact,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bn" = (
/mob/living/simple_mob/mechanical/infectionbot{
faction = "derelict"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bo" = (
/obj/structure/cable{
d1 = 2;
@@ -395,7 +403,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bp" = (
/obj/structure/cable{
d1 = 4;
@@ -403,7 +411,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bq" = (
/obj/structure/cable{
d1 = 1;
@@ -411,11 +419,11 @@
icon_state = "1-8"
},
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"br" = (
/obj/tether_away_spawner/debrisfield/derelict,
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bs" = (
/obj/structure/cable{
d1 = 1;
@@ -424,7 +432,7 @@
pixel_y = 0
},
/turf/simulated/wall,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bt" = (
/obj/structure/cable{
d1 = 1;
@@ -439,30 +447,30 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bu" = (
/obj/machinery/transhuman/synthprinter,
/turf/simulated/floor/tiled/steel_grid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bv" = (
/obj/tether_away_spawner/debrisfield/derelict/mech_wizard,
/turf/simulated/floor/tiled/steel_grid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bw" = (
/obj/machinery/vr_sleeper/alien,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bx" = (
/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm,
/mob/living/simple_mob/mechanical/corrupt_maint_drone{
faction = "derelict"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"by" = (
/obj/effect/decal/remains/human,
/turf/simulated/floor/tiled/steel_grid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bz" = (
/obj/structure/cable{
d1 = 1;
@@ -470,29 +478,29 @@
icon_state = "1-4"
},
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bA" = (
/obj/structure/cable{
icon_state = "2-8"
},
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bB" = (
/obj/tether_away_spawner/debrisfield/derelict,
/turf/simulated/floor/tiled/steel_grid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bC" = (
/obj/structure/old_roboprinter,
/turf/simulated/floor/tiled/steel_grid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bD" = (
/obj/structure/loot_pile/surface/alien/engineering,
/turf/simulated/floor/tiled/steel_ridged,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bE" = (
/obj/structure/old_roboprinter,
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bF" = (
/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm,
/obj/structure/cable{
@@ -501,33 +509,33 @@
icon_state = "1-4"
},
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bG" = (
/obj/structure/cable{
icon_state = "4-8"
},
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bH" = (
/obj/machinery/door/airlock/alien,
/obj/structure/cable{
icon_state = "4-8"
},
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bI" = (
/obj/machinery/door/airlock/alien,
/obj/structure/cable{
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bJ" = (
/obj/structure/cable{
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bK" = (
/obj/structure/cable{
icon_state = "2-8"
@@ -539,7 +547,7 @@
icon_state = "1-8"
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bL" = (
/obj/structure/cable{
d1 = 2;
@@ -555,7 +563,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bM" = (
/obj/effect/map_effect/interval/effect_emitter/sparks/frequent,
/obj/structure/door_assembly/door_assembly_alien,
@@ -565,7 +573,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bN" = (
/obj/structure/cable{
d1 = 4;
@@ -573,10 +581,13 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bO" = (
-/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/obj/item/weapon/grenade/empgrenade,
+/obj/item/weapon/grenade/empgrenade,
+/obj/item/weapon/grenade/empgrenade,
+/turf/space,
+/area/space)
"bP" = (
/obj/random/humanoidremains,
/obj/structure/cable{
@@ -585,7 +596,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bQ" = (
/obj/machinery/door/airlock/alien,
/obj/structure/cable{
@@ -594,10 +605,11 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bR" = (
-/turf/template_noop,
-/area/tether_away/debrisfield/unexplored)
+/obj/structure/shuttle/engine/propulsion,
+/turf/space,
+/area/submap/debrisfield/derelict/interior)
"bS" = (
/obj/machinery/door/airlock/alien,
/obj/structure/cable{
@@ -606,15 +618,15 @@
icon_state = "4-8"
},
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bT" = (
/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm,
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bU" = (
/obj/machinery/door/airlock/alien,
/turf/simulated/floor/reinforced,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bV" = (
/obj/item/xenos_claw,
/obj/structure/cable{
@@ -624,25 +636,25 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bW" = (
/obj/structure/old_roboprinter,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bX" = (
/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm,
/mob/living/simple_mob/mechanical/corrupt_maint_drone{
faction = "derelict"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bY" = (
/obj/machinery/porta_turret/alien{
faction = "derelict";
use_power = 0
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"bZ" = (
/obj/structure/cable{
d1 = 1;
@@ -656,7 +668,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"ca" = (
/obj/structure/cable{
d1 = 1;
@@ -670,14 +682,14 @@
icon_state = "1-8"
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cb" = (
/turf/simulated/floor/tiled/white,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cc" = (
/obj/machinery/implantchair,
/turf/simulated/floor/tiled/white,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cd" = (
/obj/structure/cable{
d1 = 2;
@@ -685,42 +697,42 @@
icon_state = "2-4"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"ce" = (
/obj/machinery/door/airlock/alien,
/obj/structure/cable{
icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cf" = (
/obj/structure/cable{
icon_state = "2-8"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cg" = (
/obj/structure/cable{
icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"ch" = (
/obj/structure/cable{
icon_state = "2-8"
},
/turf/simulated/floor/tiled/white,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"ci" = (
/mob/living/simple_mob/mechanical/infectionbot{
faction = "derelict"
},
/turf/simulated/floor/tiled/white,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cj" = (
/obj/machinery/dna_scannernew,
/turf/simulated/floor/tiled/white,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"ck" = (
/obj/structure/cable{
d1 = 1;
@@ -729,7 +741,7 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cl" = (
/obj/structure/cable{
d1 = 1;
@@ -737,7 +749,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cm" = (
/obj/structure/cable{
d1 = 1;
@@ -746,12 +758,12 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/white,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cn" = (
/obj/machinery/optable,
/obj/random/humanoidremains,
/turf/simulated/floor/tiled/white,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"co" = (
/obj/machinery/door/airlock/alien,
/obj/structure/cable{
@@ -761,15 +773,15 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cp" = (
/obj/random/humanoidremains,
/turf/simulated/floor/tiled/white,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cq" = (
/obj/structure/prop/prism,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cr" = (
/obj/structure/cable{
d1 = 1;
@@ -781,7 +793,7 @@
icon_state = "1-8"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cs" = (
/obj/structure/cable,
/obj/machinery/power/apc{
@@ -791,20 +803,20 @@
pixel_y = -24
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"ct" = (
/obj/structure/cable{
icon_state = "1-8"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cu" = (
/obj/machinery/replicator,
/turf/simulated/floor/tiled/neutral,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cv" = (
/turf/simulated/floor/tiled/neutral,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cw" = (
/obj/structure/cable{
d1 = 1;
@@ -813,7 +825,7 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/neutral,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cx" = (
/obj/structure/cable{
d1 = 2;
@@ -821,7 +833,7 @@
icon_state = "2-4"
},
/turf/simulated/floor/tiled/neutral,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cy" = (
/obj/structure/cable{
d1 = 4;
@@ -829,7 +841,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled/neutral,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cz" = (
/obj/structure/cable{
d1 = 1;
@@ -837,18 +849,11 @@
icon_state = "1-8"
},
/turf/simulated/floor/tiled/neutral,
-/area/tether_away/debrisfield/derelict/interior)
-"cA" = (
-/obj/structure/catwalk,
-/turf/space,
-/area/tether_away/debrisfield/derelict/interior)
-"cB" = (
-/turf/space,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cC" = (
/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm,
/turf/simulated/floor/tiled/steel_ridged,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cD" = (
/obj/structure/cable{
d1 = 4;
@@ -856,25 +861,25 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cE" = (
/obj/random/humanoidremains,
/obj/structure/cable{
icon_state = "2-8"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cF" = (
/obj/effect/alien/egg,
/obj/effect/alien/weeds,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cG" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"cH" = (
/turf/simulated/wall,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"cI" = (
/obj/machinery/door/airlock/alien,
/obj/structure/cable{
@@ -884,19 +889,15 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"cJ" = (
/obj/machinery/door/airlock/alien,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/ai_access_port)
-"cK" = (
-/obj/item/weapon/gun/energy/ionrifle,
-/turf/space,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/ai_access_port)
"cM" = (
/obj/structure/prop/alien/pod,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"cN" = (
/obj/structure/cable{
d1 = 1;
@@ -905,42 +906,32 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"cO" = (
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"cP" = (
/obj/structure/loot_pile/surface/alien/medical,
/turf/simulated/floor/tiled/steel_ridged,
-/area/tether_away/debrisfield/derelict/interior)
-"cQ" = (
-/obj/item/weapon/grenade/empgrenade,
-/obj/item/weapon/grenade/empgrenade,
-/obj/item/weapon/grenade/empgrenade,
-/turf/space,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cR" = (
/obj/structure/ghost_pod/manual/lost_drone/dogborg,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
-"cS" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/space,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cT" = (
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"cU" = (
/obj/machinery/door/airlock/alien/locked,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"cV" = (
/obj/machinery/door/airlock/alien/locked,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"cW" = (
/turf/simulated/wall,
-/area/tether_away/debrisfield/derelict/ai_access_starboard)
+/area/submap/debrisfield/derelict/ai_access_starboard)
"cX" = (
/obj/machinery/door/airlock/alien,
/obj/structure/cable{
@@ -950,10 +941,10 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/ai_access_starboard)
+/area/submap/debrisfield/derelict/ai_access_starboard)
"cY" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/debrisfield/derelict/ai_access_starboard)
+/area/submap/debrisfield/derelict/ai_access_starboard)
"cZ" = (
/obj/random/humanoidremains,
/obj/structure/cable{
@@ -963,7 +954,7 @@
pixel_y = 0
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"da" = (
/obj/structure/cable{
d1 = 1;
@@ -972,10 +963,10 @@
pixel_y = 0
},
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_access_starboard)
+/area/submap/debrisfield/derelict/ai_access_starboard)
"db" = (
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_access_starboard)
+/area/submap/debrisfield/derelict/ai_access_starboard)
"dc" = (
/obj/structure/cable{
d1 = 1;
@@ -983,7 +974,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"dd" = (
/obj/structure/cable{
icon_state = "0-8"
@@ -995,7 +986,7 @@
pixel_x = 28
},
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"de" = (
/obj/structure/cable{
d1 = 1;
@@ -1009,13 +1000,13 @@
icon_state = "1-4"
},
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_access_starboard)
+/area/submap/debrisfield/derelict/ai_access_starboard)
"df" = (
/obj/structure/cable{
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_access_starboard)
+/area/submap/debrisfield/derelict/ai_access_starboard)
"dg" = (
/obj/structure/cable{
d2 = 8;
@@ -1028,22 +1019,22 @@
pixel_x = 28
},
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_access_starboard)
+/area/submap/debrisfield/derelict/ai_access_starboard)
"dh" = (
/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"di" = (
/obj/structure/ghost_pod/manual/lost_drone/dogborg,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"dj" = (
/obj/tether_away_spawner/debrisfield/derelict/mech_wizard,
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_access_starboard)
+/area/submap/debrisfield/derelict/ai_access_starboard)
"dk" = (
/turf/simulated/wall/r_wall,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"dl" = (
/obj/machinery/door/airlock/hatch{
icon_state = "door_locked";
@@ -1053,7 +1044,7 @@
req_access = list(16)
},
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"dm" = (
/obj/machinery/door/airlock/hatch{
icon_state = "door_locked";
@@ -1069,13 +1060,13 @@
pixel_y = 0
},
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"dn" = (
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"do" = (
/turf/simulated/floor/greengrid,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"dp" = (
/obj/structure/cable{
icon_state = "0-4"
@@ -1088,7 +1079,7 @@
pixel_y = 24
},
/turf/simulated/floor/greengrid,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"dq" = (
/obj/structure/cable{
d1 = 4;
@@ -1096,94 +1087,69 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"dr" = (
/obj/structure/cable{
icon_state = "1-8"
},
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"ds" = (
/obj/machinery/porta_turret/alien{
faction = "derelict";
use_power = 0
},
/turf/simulated/floor/plating,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"dt" = (
/obj/structure/prop/prism,
/turf/simulated/floor/greengrid,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"du" = (
/obj/structure/prop/blackbox/xenofrigate,
/turf/simulated/floor/greengrid,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"dv" = (
/obj/machinery/porta_turret/alien{
faction = "derelict";
use_power = 0
},
/turf/simulated/floor/greengrid,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"dw" = (
/obj/structure/prop/fake_ai,
/turf/simulated/floor/greengrid,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"dx" = (
/obj/structure/ghost_pod/manual/lost_drone/dogborg,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/ai_access_port)
+/area/submap/debrisfield/derelict/ai_access_port)
"dF" = (
/obj/structure/salvageable/server,
/turf/simulated/floor/greengrid,
-/area/tether_away/debrisfield/derelict/ai_chamber)
+/area/submap/debrisfield/derelict/ai_chamber)
"oS" = (
/obj/structure/salvageable/server,
/turf/simulated/floor/tiled/monotile,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"tR" = (
/obj/structure/salvageable/computer,
/turf/simulated/floor/tiled/dark,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"HB" = (
/obj/structure/salvageable/implant_container,
/turf/simulated/floor/tiled/white,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"QE" = (
/obj/structure/salvageable/autolathe,
/turf/simulated/floor/tiled/steel_grid,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
"ZJ" = (
/obj/structure/salvageable/personal,
/turf/simulated/floor/tiled/monotile,
-/area/tether_away/debrisfield/derelict/interior)
+/area/submap/debrisfield/derelict/interior)
(1,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
@@ -1209,6 +1175,43 @@ aa
aa
aa
aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
aa
aa
aa
@@ -1219,49 +1222,37 @@ aa
aa
aa
aa
-aa
-aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(2,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
bd
ao
ao
@@ -1293,48 +1284,48 @@ ao
ao
ao
ao
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(3,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
ao
ao
ao
@@ -1365,48 +1356,48 @@ bi
bi
ao
aJ
-cS
-cB
+bR
+aK
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(4,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
ao
ao
ao
@@ -1440,47 +1431,47 @@ bi
bi
ao
aJ
-cS
+bR
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(5,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
ao
ao
ao
@@ -1514,49 +1505,49 @@ bi
bi
ao
aJ
-cS
+bR
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(6,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
ao
ao
ao
@@ -1587,51 +1578,51 @@ bi
bi
ao
aJ
-cS
-cB
+bR
+aK
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(7,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
bd
ao
ao
@@ -1663,45 +1654,20 @@ ao
ao
ao
ao
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(8,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
@@ -1716,10 +1682,54 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
bG
bi
ao
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
aa
aa
aa
@@ -1730,52 +1740,8 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(9,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
@@ -1790,10 +1756,54 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
bG
bi
ao
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
aa
aa
aa
@@ -1804,52 +1814,8 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(10,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
@@ -1863,12 +1829,55 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
bG
bi
ao
ao
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
aa
aa
aa
@@ -1879,51 +1888,8 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(11,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
@@ -1936,6 +1902,31 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
ao
@@ -1944,6 +1935,26 @@ bi
ao
ao
ao
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
aa
aa
aa
@@ -1951,55 +1962,35 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bO
-bO
-bO
-bO
-bO
-bO
-bO
"}
(12,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
ao
@@ -2036,43 +2027,43 @@ cG
cG
cG
dk
+aK
+aK
+aa
+aa
+aa
+aa
+aa
aa
aa
-bO
-bO
-bO
-bO
-bO
-bO
-bO
"}
(13,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
ba
@@ -2111,22 +2102,22 @@ cO
dh
dk
dk
+aK
+aK
+aa
+aa
+aa
+aa
aa
aa
-bO
-bO
-bO
-bO
-bO
-bO
"}
(14,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
ao
@@ -2138,15 +2129,15 @@ ao
ao
ao
ao
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
bb
@@ -2186,21 +2177,21 @@ cH
dk
dk
dk
+aK
+aK
+aa
+aa
+aa
aa
aa
-bO
-bO
-bO
-bO
-bO
"}
(15,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
ao
at
at
@@ -2212,15 +2203,15 @@ at
at
at
ao
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
aF
aF
@@ -2261,20 +2252,20 @@ dl
dn
dk
dk
+aK
+aK
+aa
+aa
aa
aa
-bO
-bO
-bO
-bO
"}
(16,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
ao
at
at
@@ -2286,15 +2277,15 @@ av
av
at
ao
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
aF
av
@@ -2336,19 +2327,19 @@ dn
dn
dk
dk
+aK
+aK
+aa
aa
aa
-bO
-bO
-bO
"}
(17,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
ao
au
at
@@ -2360,15 +2351,15 @@ av
ZJ
at
ao
-aa
-aa
-aa
+aK
+aK
+aK
av
aT
av
-aa
-aa
-aa
+aK
+aK
+aK
ao
aF
aF
@@ -2411,18 +2402,18 @@ dn
ds
dk
dk
+aK
+aK
aa
aa
-bO
-bO
"}
(18,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
ao
oS
az
@@ -2434,15 +2425,15 @@ av
au
az
ao
-aa
-aa
+aK
+aK
aP
av
aR
av
aP
-aa
-aa
+aK
+aK
ao
aW
aF
@@ -2486,12 +2477,12 @@ do
dv
dk
dk
+aK
+aK
aa
-aa
-bO
"}
(19,1,1) = {"
-aa
+aK
ab
ae
ae
@@ -2508,15 +2499,15 @@ av
av
av
ao
-aa
-aa
+aK
+aK
av
av
aU
av
av
-aa
-aa
+aK
+aK
ao
av
av
@@ -2561,11 +2552,11 @@ do
dv
dk
dk
-aa
-aa
+aK
+aK
"}
(20,1,1) = {"
-aa
+aK
ac
af
ak
@@ -2616,17 +2607,17 @@ aF
cq
bY
ao
-cA
-cA
-cA
-cA
-cA
-cA
-cA
-cA
-cA
-cA
-cA
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
dk
do
do
@@ -2636,10 +2627,10 @@ do
dv
dk
dk
-aa
+aK
"}
(21,1,1) = {"
-aa
+aK
ac
ag
ak
@@ -2690,17 +2681,17 @@ ck
cl
aF
ao
-cA
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cA
+bf
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+bf
dk
do
do
@@ -2710,10 +2701,10 @@ do
do
dv
dk
-aa
+aK
"}
(22,1,1) = {"
-aa
+aK
ac
ah
ak
@@ -2764,17 +2755,17 @@ av
cg
aF
ao
-cA
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cA
+bf
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+bf
dk
dF
do
@@ -2784,10 +2775,10 @@ do
do
do
dk
-aa
+aK
"}
(23,1,1) = {"
-aa
+aK
ac
ag
ak
@@ -2838,17 +2829,17 @@ co
cr
cs
ao
-cA
-cB
-cB
-cB
-cK
-cQ
-cQ
-cB
-cB
-cB
-cA
+bf
+aK
+aK
+aK
+bg
+bO
+bO
+aK
+aK
+aK
+bf
dk
dF
do
@@ -2858,10 +2849,10 @@ do
do
dv
dk
-aa
+aK
"}
(24,1,1) = {"
-aa
+aK
ac
ag
ak
@@ -2912,17 +2903,17 @@ co
ck
cl
ao
-cA
-cB
-cB
-cB
-cB
-cQ
-cQ
-cB
-cB
-cB
-cA
+bf
+aK
+aK
+aK
+aK
+bO
+bO
+aK
+aK
+aK
+bf
dk
dF
do
@@ -2932,10 +2923,10 @@ do
do
dv
dk
-aa
+aK
"}
(25,1,1) = {"
-aa
+aK
ac
ah
ak
@@ -2986,17 +2977,17 @@ av
aY
cg
ao
-cA
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cA
+bf
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+bf
dk
dF
do
@@ -3006,10 +2997,10 @@ do
do
do
dk
-aa
+aK
"}
(26,1,1) = {"
-aa
+aK
ac
ag
ak
@@ -3060,17 +3051,17 @@ ck
ck
ct
ao
-cA
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cB
-cA
+bf
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+bf
dk
do
do
@@ -3080,10 +3071,10 @@ do
do
dv
dk
-aa
+aK
"}
(27,1,1) = {"
-aa
+aK
ac
ai
ak
@@ -3100,15 +3091,15 @@ aw
aw
aw
ao
-aa
-aa
+aK
+aK
av
aR
aR
aR
av
-aa
-aa
+aK
+aK
ao
aZ
aF
@@ -3134,17 +3125,17 @@ aF
cq
bY
ao
-cA
-cA
-cA
-cA
-cA
-cA
-cA
-cA
-cA
-cA
-cA
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
dk
do
do
@@ -3154,10 +3145,10 @@ do
dv
dk
dk
-aa
+aK
"}
(28,1,1) = {"
-aa
+aK
ad
aj
aj
@@ -3174,15 +3165,15 @@ av
av
av
ao
-aa
-aa
+aK
+aK
av
av
aV
av
av
-aa
-aa
+aK
+aK
ao
av
av
@@ -3227,16 +3218,16 @@ do
dv
dk
dk
-aa
-aa
+aK
+aK
"}
(29,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
ao
au
at
@@ -3248,15 +3239,15 @@ av
aI
aI
ao
-aa
-aa
+aK
+aK
aQ
av
aR
av
aQ
-aa
-aa
+aK
+aK
ao
aW
aF
@@ -3300,17 +3291,17 @@ do
dv
dk
dk
+aK
+aK
aa
-aa
-bO
"}
(30,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
ao
at
at
@@ -3322,15 +3313,15 @@ av
at
at
ao
-aa
-aa
-aa
+aK
+aK
+aK
av
aV
av
-aa
-aa
-aa
+aK
+aK
+aK
ao
aF
aF
@@ -3373,18 +3364,18 @@ dn
ds
dk
dk
+aK
+aK
aa
aa
-bO
-bO
"}
(31,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
ao
at
at
@@ -3396,15 +3387,15 @@ av
az
az
ao
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
aF
aF
@@ -3446,19 +3437,19 @@ dq
dn
dk
dk
+aK
+aK
+aa
aa
aa
-bO
-bO
-bO
"}
(32,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
ao
at
at
@@ -3470,15 +3461,15 @@ at
at
at
ao
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
aF
aF
@@ -3519,20 +3510,20 @@ dm
dr
dk
dk
+aK
+aK
+aa
+aa
aa
aa
-bO
-bO
-bO
-bO
"}
(33,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
ao
@@ -3544,15 +3535,15 @@ ao
ao
ao
ao
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
bb
@@ -3592,41 +3583,41 @@ db
dk
dk
dk
+aK
+aK
+aa
+aa
+aa
aa
aa
-bO
-bO
-bO
-bO
-bO
"}
(34,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
bc
@@ -3665,43 +3656,43 @@ dg
dj
dk
dk
+aK
+aK
+aa
+aa
+aa
+aa
aa
aa
-bO
-bO
-bO
-bO
-bO
-bO
"}
(35,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
ao
@@ -3738,42 +3729,17 @@ cY
cY
cY
dk
+aK
+aK
+aa
+aa
+aa
+aa
+aa
aa
aa
-bO
-bO
-bO
-bO
-bO
-bO
-bO
"}
(36,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
@@ -3786,6 +3752,31 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
ao
@@ -3794,6 +3785,25 @@ bi
ao
ao
ao
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
aa
aa
aa
@@ -3802,52 +3812,8 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bO
-bO
-bO
-bO
-bO
-bO
-bO
-bO
"}
(37,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
@@ -3861,12 +3827,55 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
ao
bp
bi
ao
ao
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
aa
aa
aa
@@ -3877,51 +3886,8 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(38,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
@@ -3936,10 +3902,54 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
bp
bi
ao
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
aa
aa
aa
@@ -3950,52 +3960,8 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(39,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
@@ -4010,10 +3976,54 @@ aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
ao
bp
bi
ao
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
aa
aa
aa
@@ -4024,56 +4034,37 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(40,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
bd
ao
ao
@@ -4105,48 +4096,48 @@ ao
ao
ao
ao
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(41,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
ao
ao
ao
@@ -4177,48 +4168,48 @@ bi
bi
ao
aJ
-cS
-cB
+bR
+aK
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(42,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
ao
ao
ao
@@ -4252,47 +4243,47 @@ bi
bi
ao
aJ
-cS
+bR
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(43,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
ao
ao
ao
@@ -4326,49 +4317,49 @@ bi
bi
ao
aJ
-cS
+bR
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(44,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
ao
ao
ao
@@ -4399,51 +4390,51 @@ av
bi
ao
aJ
-cS
-cB
+bR
+aK
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(45,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aK
+aK
+aK
+aK
bd
ao
ao
@@ -4475,45 +4466,20 @@ ao
ao
ao
ao
+aK
+aK
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
aa
aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
(46,1,1) = {"
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
aa
aa
aa
@@ -4539,6 +4505,43 @@ aa
aa
aa
aa
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
aa
aa
aa
@@ -4549,16 +4552,4 @@ aa
aa
aa
aa
-aa
-aa
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
-bR
"}
diff --git a/maps/submaps/pois_vr/debris_field/escape_pod.dmm b/maps/submaps/pois_vr/debris_field/escape_pod.dmm
new file mode 100644
index 00000000000..18468e697ef
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/escape_pod.dmm
@@ -0,0 +1,63 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ pixel_x = -16
+ },
+/turf/simulated/shuttle/wall/hard_corner,
+/area/submap/debrisfield/misc_debris)
+"b" = (
+/turf/simulated/shuttle/wall,
+/area/submap/debrisfield/misc_debris)
+"c" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/simulated/shuttle/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"d" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/effect/decal/remains/human,
+/obj/item/weapon/bananapeel{
+ layer = 2.5
+ },
+/turf/simulated/shuttle/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"e" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/effect/decal/remains/tajaran,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24;
+ req_access = list()
+ },
+/turf/simulated/shuttle/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"f" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+
+(1,1,1) = {"
+a
+c
+a
+"}
+(2,1,1) = {"
+b
+d
+b
+"}
+(3,1,1) = {"
+b
+e
+b
+"}
+(4,1,1) = {"
+b
+f
+b
+"}
diff --git a/maps/submaps/pois_vr/debris_field/foodstand.dmm b/maps/submaps/pois_vr/debris_field/foodstand.dmm
index a035bb4b3a3..40efa5aff3b 100644
--- a/maps/submaps/pois_vr/debris_field/foodstand.dmm
+++ b/maps/submaps/pois_vr/debris_field/foodstand.dmm
@@ -1,23 +1,23 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
"b" = (
/turf/simulated/mineral/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/foodstand)
"c" = (
/turf/simulated/mineral/floor/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/foodstand)
"d" = (
/turf/simulated/wall/wood,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/foodstand)
"e" = (
/obj/structure/closet/secure_closet/freezer/meat,
/obj/item/weapon/reagent_containers/food/snacks/carpmeat,
/obj/item/weapon/reagent_containers/food/snacks/carpmeat,
/obj/item/weapon/reagent_containers/food/snacks/carpmeat,
/turf/simulated/floor/wood,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/foodstand)
"f" = (
/obj/structure/table/woodentable,
/obj/item/weapon/reagent_containers/food/condiment/coldsauce,
@@ -25,19 +25,19 @@
/obj/item/weapon/reagent_containers/food/condiment/hotsauce,
/obj/item/weapon/reagent_containers/food/condiment/soysauce,
/turf/simulated/floor/wood,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/foodstand)
"g" = (
/obj/structure/table/woodentable,
/obj/machinery/microwave,
/turf/simulated/floor/wood,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/foodstand)
"h" = (
/obj/structure/simple_door/wood,
/turf/simulated/floor/wood,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/foodstand)
"i" = (
/turf/simulated/floor/wood,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/foodstand)
"j" = (
/obj/structure/closet/crate/freezer,
/obj/item/weapon/reagent_containers/food/snacks/taco,
@@ -48,23 +48,23 @@
/obj/item/weapon/reagent_containers/food/snacks/cheeseburrito,
/obj/item/weapon/reagent_containers/food/snacks/cheeseburrito,
/turf/simulated/floor/wood,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/foodstand)
"k" = (
/obj/structure/table/woodentable,
-/turf/simulated/floor/wood,
-/area/tether_away/debrisfield/explored)
-"l" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/taco,
-/turf/simulated/floor/wood,
-/area/tether_away/debrisfield/explored)
-"m" = (
-/obj/structure/table/woodentable,
/obj/machinery/cash_register{
dir = 1
},
/turf/simulated/floor/wood,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/foodstand)
+"l" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/taco,
+/turf/simulated/floor/wood,
+/area/submap/debrisfield/foodstand)
+"m" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/submap/debrisfield/foodstand)
(1,1,1) = {"
a
@@ -121,7 +121,7 @@ a
(5,1,1) = {"
b
b
-b
+c
c
d
d
@@ -133,22 +133,22 @@ a
"}
(6,1,1) = {"
b
-b
+c
c
c
d
e
i
-m
+k
c
c
c
"}
(7,1,1) = {"
-a
b
c
c
+c
d
f
i
@@ -165,7 +165,7 @@ c
d
g
j
-k
+m
c
c
c
diff --git a/maps/submaps/pois_vr/debris_field/mining_drones.dmm b/maps/submaps/pois_vr/debris_field/mining_drones.dmm
new file mode 100644
index 00000000000..57fee61a6fe
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/mining_drones.dmm
@@ -0,0 +1,409 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/space,
+/area/space)
+"b" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"c" = (
+/mob/living/simple_mob/mechanical/mining_drone{
+ faction = "poi_mining_drones"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"d" = (
+/obj/machinery/power/rtg,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"e" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/smes/batteryrack/mapped{
+ input_attempt = 1;
+ mode = 3;
+ output_attempt = 1
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"f" = (
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"g" = (
+/turf/simulated/wall,
+/area/submap/debrisfield/mining_outpost)
+"h" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/wall,
+/area/submap/debrisfield/mining_outpost)
+"i" = (
+/obj/item/stack/material/steel,
+/turf/space,
+/area/space)
+"j" = (
+/obj/structure/girder,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"k" = (
+/turf/simulated/mineral/vacuum,
+/area/submap/debrisfield/mining_outpost)
+"l" = (
+/obj/structure/ore_box,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"m" = (
+/obj/structure/cable,
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"n" = (
+/obj/machinery/porta_turret/stationary/syndie{
+ faction = "poi_mining_drones";
+ icon_state = "turret_cover_industrial";
+ turret_type = "industrial"
+ },
+/obj/effect/map_effect/perma_light,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"o" = (
+/obj/machinery/power/apc/alarms_hidden{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"p" = (
+/obj/item/weapon/material/shard,
+/turf/space,
+/area/space)
+"q" = (
+/obj/structure/sign/poster{
+ pixel_y = 32;
+ poster_type = "/datum/poster/bay_50"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"r" = (
+/obj/random/multiple/underdark/ores,
+/obj/structure/closet/syndicate/resources{
+ name = "storage locker"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"s" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust/steel_decals_rusted2{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"t" = (
+/obj/item/modular_computer/console/preset/civilian{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/asteroid_steel/airless,
+/area/submap/debrisfield/mining_outpost)
+"u" = (
+/obj/item/weapon/ore,
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/tiled/asteroid_steel/airless,
+/area/submap/debrisfield/mining_outpost)
+"v" = (
+/turf/template_noop,
+/area/space)
+"w" = (
+/obj/item/weapon/material/shard,
+/obj/structure/grille/broken,
+/obj/item/stack/rods,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"x" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"y" = (
+/obj/machinery/conveyor,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"z" = (
+/obj/machinery/light/small/emergency{
+ auto_flicker = 1;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"A" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"B" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"C" = (
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"D" = (
+/obj/item/weapon/material/shard,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"E" = (
+/obj/machinery/door/airlock/external/glass{
+ density = 0;
+ health = 0;
+ icon_state = "door_open";
+ stat = 1
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"F" = (
+/obj/machinery/door/airlock/external/glass/bolted,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"G" = (
+/obj/random/unidentified_medicine/old_medicine,
+/obj/random/unidentified_medicine/old_medicine,
+/obj/random/unidentified_medicine/old_medicine,
+/obj/random/unidentified_medicine/old_medicine,
+/obj/random/unidentified_medicine/old_medicine,
+/obj/random/unidentified_medicine/old_medicine,
+/obj/random/unidentified_medicine/old_medicine,
+/obj/random/unidentified_medicine/old_medicine,
+/obj/structure/closet/medical_wall{
+ dir = 2;
+ pixel_y = -24
+ },
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/ointment,
+/obj/item/weapon/storage/mre/random,
+/obj/effect/floor_decal/rust/part_rusted3,
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"H" = (
+/obj/structure/closet/syndicate/resources{
+ name = "storage locker"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"I" = (
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"J" = (
+/obj/machinery/light_switch{
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/mining_outpost)
+"L" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"M" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"N" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"O" = (
+/obj/machinery/mineral/input,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"R" = (
+/obj/machinery/mineral/processing_unit,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"S" = (
+/obj/machinery/conveyor{
+ dir = 4
+ },
+/obj/machinery/mineral/output,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"T" = (
+/obj/machinery/conveyor{
+ dir = 4
+ },
+/obj/structure/plasticflaps/mining,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+"U" = (
+/obj/machinery/conveyor{
+ dir = 5
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_outpost)
+
+(1,1,1) = {"
+v
+a
+B
+f
+c
+f
+c
+f
+f
+"}
+(2,1,1) = {"
+v
+f
+f
+l
+y
+y
+y
+O
+g
+"}
+(3,1,1) = {"
+v
+f
+g
+g
+g
+g
+g
+R
+g
+"}
+(4,1,1) = {"
+v
+d
+h
+m
+z
+r
+g
+S
+g
+"}
+(5,1,1) = {"
+v
+B
+g
+e
+A
+H
+g
+T
+g
+"}
+(6,1,1) = {"
+v
+B
+g
+o
+C
+C
+f
+U
+g
+"}
+(7,1,1) = {"
+v
+i
+g
+q
+C
+I
+g
+g
+g
+"}
+(8,1,1) = {"
+v
+a
+j
+s
+C
+J
+g
+a
+B
+"}
+(9,1,1) = {"
+i
+b
+k
+t
+C
+C
+M
+B
+n
+"}
+(10,1,1) = {"
+b
+b
+k
+u
+D
+G
+g
+a
+a
+"}
+(11,1,1) = {"
+b
+b
+k
+k
+E
+L
+g
+v
+v
+"}
+(12,1,1) = {"
+v
+b
+b
+w
+f
+M
+v
+v
+v
+"}
+(13,1,1) = {"
+v
+v
+p
+x
+F
+N
+v
+v
+v
+"}
diff --git a/maps/submaps/pois_vr/debris_field/new_escapepod.dmm b/maps/submaps/pois_vr/debris_field/new_escapepod.dmm
new file mode 100644
index 00000000000..c61dd72670d
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/new_escapepod.dmm
@@ -0,0 +1,91 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/simulated/wall/rshull,
+/area/submap/debrisfield/misc_debris)
+"n" = (
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"z" = (
+/obj/structure/closet/walllocker/emerglocker/south,
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"D" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/structure/closet/walllocker/emerglocker/north,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"O" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/structure/closet/walllocker/emerglocker/south,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"P" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"R" = (
+/obj/structure/closet/walllocker/emerglocker/north,
+/obj/structure/bed/chair/bay/shuttle,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"Y" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Door"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+
+(1,1,1) = {"
+a
+P
+P
+P
+a
+"}
+(2,1,1) = {"
+a
+D
+n
+O
+a
+"}
+(3,1,1) = {"
+a
+D
+n
+O
+a
+"}
+(4,1,1) = {"
+a
+R
+n
+z
+a
+"}
+(5,1,1) = {"
+a
+D
+n
+O
+a
+"}
+(6,1,1) = {"
+a
+a
+Y
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/new_escapepod_carp.dmm b/maps/submaps/pois_vr/debris_field/new_escapepod_carp.dmm
new file mode 100644
index 00000000000..8bbf078a8a5
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/new_escapepod_carp.dmm
@@ -0,0 +1,87 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/simulated/wall/rshull,
+/area/submap/debrisfield/misc_debris)
+"F" = (
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"K" = (
+/mob/living/simple_mob/animal/space/carp/large,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"N" = (
+/obj/structure/grille/broken,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"R" = (
+/obj/structure/grille/broken,
+/mob/living/simple_mob/animal/space/carp,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"S" = (
+/obj/machinery/door/airlock/external{
+ density = 0;
+ icon_state = "door_open";
+ name = "Escape Pod Door";
+ opacity = 0
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"U" = (
+/obj/structure/grille/broken,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"W" = (
+/mob/living/simple_mob/animal/space/carp,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"Z" = (
+/obj/effect/gibspawner/human,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+
+(1,1,1) = {"
+a
+U
+N
+R
+a
+"}
+(2,1,1) = {"
+a
+W
+Z
+F
+a
+"}
+(3,1,1) = {"
+a
+F
+K
+F
+a
+"}
+(4,1,1) = {"
+a
+F
+Z
+W
+a
+"}
+(5,1,1) = {"
+a
+W
+F
+F
+a
+"}
+(6,1,1) = {"
+a
+a
+S
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/new_escapepod_robo.dmm b/maps/submaps/pois_vr/debris_field/new_escapepod_robo.dmm
new file mode 100644
index 00000000000..c0d1c8504a0
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/new_escapepod_robo.dmm
@@ -0,0 +1,115 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/simulated/wall/rshull,
+/area/submap/debrisfield/misc_debris)
+"g" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"i" = (
+/mob/living/simple_mob/vore/aggressive/corrupthound/space,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"m" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/gibspawner/robot,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"q" = (
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"r" = (
+/obj/effect/gibspawner/robot,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"v" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/gibspawner/robot,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"y" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/wall/rshull,
+/area/submap/debrisfield/misc_debris)
+"B" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/item/weapon/paper/robo_escape_pod,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"D" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Door"
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"E" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"Q" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+"S" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/misc_debris)
+
+(1,1,1) = {"
+a
+E
+E
+E
+y
+"}
+(2,1,1) = {"
+y
+S
+S
+v
+a
+"}
+(3,1,1) = {"
+a
+m
+i
+S
+a
+"}
+(4,1,1) = {"
+a
+Q
+S
+q
+a
+"}
+(5,1,1) = {"
+a
+B
+r
+g
+a
+"}
+(6,1,1) = {"
+y
+a
+D
+a
+y
+"}
diff --git a/maps/submaps/pois_vr/debris_field/new_escapepod_xeno.dmm b/maps/submaps/pois_vr/debris_field/new_escapepod_xeno.dmm
new file mode 100644
index 00000000000..ed2b127f4fd
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/new_escapepod_xeno.dmm
@@ -0,0 +1,119 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/simulated/wall/rshull,
+/area/submap/debrisfield/misc_debris)
+"f" = (
+/obj/structure/grille/broken,
+/obj/effect/alien/weeds,
+/obj/effect/alien/resin/membrane,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"h" = (
+/obj/effect/alien/resin/wall,
+/obj/effect/alien/weeds,
+/turf/space,
+/area/submap/debrisfield/misc_debris)
+"k" = (
+/obj/effect/alien/weeds,
+/mob/living/simple_mob/animal/space/alien,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"r" = (
+/obj/structure/grille/broken,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/alien/weeds,
+/obj/effect/alien/resin/membrane,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"t" = (
+/obj/effect/alien/weeds,
+/mob/living/simple_mob/animal/space/alien/sentinel,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"v" = (
+/obj/machinery/door/airlock/external{
+ density = 0;
+ icon_state = "door_open";
+ name = "Escape Pod Door";
+ opacity = 0
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"A" = (
+/obj/effect/alien/weeds/node,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"D" = (
+/obj/effect/alien/weeds,
+/obj/effect/alien/resin/wall,
+/turf/simulated/wall/rshull,
+/area/submap/debrisfield/misc_debris)
+"T" = (
+/obj/structure/grille/broken,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/alien/weeds,
+/obj/effect/alien/resin/membrane,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"U" = (
+/obj/effect/alien/weeds,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"W" = (
+/obj/effect/alien/weeds,
+/obj/effect/alien/egg,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"X" = (
+/obj/effect/alien/weeds,
+/mob/living/simple_mob/animal/space/alien/drone,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/misc_debris)
+
+(1,1,1) = {"
+a
+T
+f
+r
+a
+"}
+(2,1,1) = {"
+h
+X
+U
+W
+D
+"}
+(3,1,1) = {"
+a
+k
+A
+t
+D
+"}
+(4,1,1) = {"
+a
+U
+U
+U
+a
+"}
+(5,1,1) = {"
+h
+W
+U
+X
+a
+"}
+(6,1,1) = {"
+a
+a
+v
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/old_satellite.dmm b/maps/submaps/pois_vr/debris_field/old_satellite.dmm
new file mode 100644
index 00000000000..eda87facc6c
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/old_satellite.dmm
@@ -0,0 +1,224 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"c" = (
+/obj/machinery/doppler_array,
+/obj/structure/lattice,
+/turf/space,
+/area/submap/debrisfield/old_sat)
+"d" = (
+/obj/structure/window/phoronbasic{
+ dir = 1
+ },
+/obj/structure/window/phoronbasic{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_sat)
+"e" = (
+/obj/structure/window/phoronbasic{
+ dir = 1
+ },
+/obj/structure/salvageable/server,
+/turf/simulated/floor/bluegrid/airless,
+/area/submap/debrisfield/old_sat)
+"f" = (
+/obj/structure/window/phoronbasic{
+ dir = 1
+ },
+/obj/structure/window/phoronbasic{
+ dir = 4
+ },
+/obj/random/tech_supply/component,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_sat)
+"g" = (
+/obj/item/weapon/material/shard,
+/turf/template_noop,
+/area/space)
+"h" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar/fake{
+ adir = 135
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_sat)
+"i" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar/fake{
+ adir = 135
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_sat)
+"j" = (
+/obj/structure/window/phoronbasic{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/random/tech_supply/component,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_sat)
+"k" = (
+/obj/structure/AIcore{
+ anchored = 1;
+ icon_state = "3";
+ state = 3
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/bluegrid/airless,
+/area/submap/debrisfield/old_sat)
+"l" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/random/tech_supply/component,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_sat)
+"m" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar/fake{
+ stat = 1
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_sat)
+"n" = (
+/obj/structure/window/phoronbasic{
+ dir = 8
+ },
+/obj/structure/window/phoronbasic,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_sat)
+"o" = (
+/obj/structure/lattice,
+/obj/item/weapon/material/shard,
+/turf/space,
+/area/space)
+"p" = (
+/obj/structure/window/phoronbasic,
+/obj/machinery/telecomms/broadcaster,
+/turf/simulated/floor/bluegrid/airless,
+/area/submap/debrisfield/old_sat)
+"q" = (
+/obj/item/weapon/material/shard/phoron,
+/obj/item/weapon/ore/iron,
+/obj/random/tech_supply/component,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_sat)
+"r" = (
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/turf/template_noop,
+/area/space)
+"s" = (
+/obj/item/weapon/ore/glass,
+/turf/template_noop,
+/area/space)
+"t" = (
+/obj/item/stack/cable_coil/cut,
+/turf/template_noop,
+/area/space)
+
+(1,1,1) = {"
+a
+a
+a
+h
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+i
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+i
+a
+a
+"}
+(4,1,1) = {"
+a
+c
+d
+j
+n
+a
+"}
+(5,1,1) = {"
+a
+a
+e
+k
+p
+a
+"}
+(6,1,1) = {"
+b
+b
+f
+l
+q
+a
+"}
+(7,1,1) = {"
+a
+a
+t
+m
+r
+s
+"}
+(8,1,1) = {"
+a
+a
+a
+o
+t
+a
+"}
+(9,1,1) = {"
+a
+a
+g
+t
+s
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+g
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/old_teleporter.dmm b/maps/submaps/pois_vr/debris_field/old_teleporter.dmm
new file mode 100644
index 00000000000..c0d8c77ca89
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/old_teleporter.dmm
@@ -0,0 +1,267 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/space)
+"b" = (
+/turf/simulated/wall/r_wall,
+/area/submap/debrisfield/old_tele)
+"c" = (
+/obj/structure/frame/computer,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"d" = (
+/obj/machinery/teleport/station{
+ icon = 'icons/obj/stationobjs.dmi'
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"e" = (
+/obj/machinery/teleport/hub{
+ icon = 'icons/obj/stationobjs.dmi'
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"f" = (
+/obj/machinery/power/apc/alarms_hidden{
+ cell_type = null;
+ coverlocked = 0;
+ dir = 1;
+ locked = 0;
+ opened = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"g" = (
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"h" = (
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"i" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/fyellow,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"j" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"k" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"l" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"m" = (
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"n" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"o" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"p" = (
+/obj/structure/lattice,
+/obj/item/stack/cable_coil/cut,
+/turf/space,
+/area/submap/debrisfield/old_tele)
+"q" = (
+/obj/structure/closet/malf/suits,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"r" = (
+/obj/structure/lattice,
+/turf/space,
+/area/submap/debrisfield/old_tele)
+"s" = (
+/turf/space,
+/area/submap/debrisfield/old_tele)
+"t" = (
+/obj/item/stack/cable_coil/cut,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"u" = (
+/obj/structure/girder,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/old_tele)
+"v" = (
+/obj/structure/lattice,
+/turf/template_noop,
+/area/space)
+
+(1,1,1) = {"
+a
+a
+a
+v
+a
+a
+a
+v
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+v
+a
+a
+a
+v
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+j
+j
+a
+a
+a
+j
+j
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+j
+b
+b
+l
+b
+b
+j
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+b
+b
+h
+h
+h
+b
+b
+a
+a
+"}
+(6,1,1) = {"
+a
+b
+b
+f
+k
+k
+n
+h
+b
+b
+j
+"}
+(7,1,1) = {"
+a
+b
+c
+g
+h
+m
+o
+r
+t
+b
+a
+"}
+(8,1,1) = {"
+a
+b
+d
+h
+h
+h
+p
+s
+r
+u
+a
+"}
+(9,1,1) = {"
+j
+b
+e
+h
+h
+g
+h
+p
+h
+b
+j
+"}
+(10,1,1) = {"
+j
+b
+b
+i
+h
+h
+h
+h
+b
+b
+j
+"}
+(11,1,1) = {"
+a
+a
+b
+b
+h
+h
+q
+b
+b
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+j
+b
+b
+b
+b
+b
+a
+a
+a
+"}
diff --git a/maps/submaps/pois_vr/debris_field/oldshuttle.dmm b/maps/submaps/pois_vr/debris_field/oldshuttle.dmm
index f44d8e4ace7..7c9eefd8f1e 100644
--- a/maps/submaps/pois_vr/debris_field/oldshuttle.dmm
+++ b/maps/submaps/pois_vr/debris_field/oldshuttle.dmm
@@ -1,63 +1,92 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
/turf/space,
-/area/tether_away/debrisfield/explored)
+/area/space)
"ab" = (
/obj/item/weapon/material/twohanded/spear,
/turf/space,
-/area/tether_away/debrisfield/explored)
+/area/space)
"ac" = (
-/turf/simulated/shuttle/wall/voidcraft,
-/area/tether_away/debrisfield/explored)
-"ad" = (
-/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"ae" = (
-/obj/structure/table/steel,
-/obj/item/clothing/head/pilot,
-/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"af" = (
-/turf/simulated/shuttle/wall/voidcraft/hard_corner,
-/area/tether_away/debrisfield/explored)
-"ag" = (
-/obj/structure/frame/computer,
-/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"ah" = (
-/obj/structure/bed/chair/comfy/blue{
- icon_state = "comfychair_preview";
- dir = 1
- },
-/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"ai" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 1
},
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"aj" = (
+/area/submap/debrisfield/misc_debris)
+"ad" = (
+/turf/simulated/shuttle/wall/voidcraft,
+/area/submap/debrisfield/misc_debris)
+"ae" = (
/obj/item/weapon/material/shard,
/obj/item/weapon/material/shard,
/obj/structure/grille/broken,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
+"ag" = (
+/obj/structure/lattice,
+/turf/space,
+/area/submap/debrisfield/misc_debris)
+"ah" = (
+/turf/space,
+/area/submap/debrisfield/misc_debris)
+"ai" = (
+/turf/simulated/shuttle/floor/black/airless,
+/area/submap/debrisfield/misc_debris)
+"aj" = (
+/obj/structure/table/steel,
+/obj/item/clothing/head/pilot,
+/obj/random/unidentified_medicine/drug_den,
+/turf/simulated/shuttle/floor/black/airless,
+/area/submap/debrisfield/misc_debris)
"ak" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/submap/debrisfield/misc_debris)
+"al" = (
+/obj/structure/table/steel,
+/obj/item/clothing/head/pilot,
+/turf/simulated/shuttle/floor/black/airless,
+/area/submap/debrisfield/misc_debris)
+"am" = (
+/obj/structure/frame/computer,
+/turf/simulated/shuttle/floor/black/airless,
+/area/submap/debrisfield/misc_debris)
+"an" = (
+/obj/tether_away_spawner/debrisfield/carp/hard,
+/turf/space,
+/area/submap/debrisfield/misc_debris)
+"ao" = (
+/obj/structure/bed/chair/comfy/blue{
+ icon_state = "comfychair_preview";
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black/airless,
+/area/submap/debrisfield/misc_debris)
+"ap" = (
/obj/machinery/light{
dir = 1
},
/obj/structure/table/rack/shelf,
/obj/item/device/suit_cooling_unit,
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"al" = (
-/obj/structure/lattice,
-/turf/space,
-/area/tether_away/debrisfield/explored)
-"am" = (
+/area/submap/debrisfield/misc_debris)
+"aq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"ar" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"as" = (
/obj/machinery/light{
dir = 1
},
@@ -69,16 +98,17 @@
/obj/item/clothing/suit/space/void/pilot,
/obj/item/clothing/head/helmet/space/void/pilot,
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"an" = (
+/area/submap/debrisfield/misc_debris)
+"at" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"au" = (
/obj/machinery/door/airlock/voidcraft,
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"ao" = (
-/obj/effect/floor_decal/industrial/outline/blue,
-/turf/simulated/shuttle/floor/darkred/airless,
-/area/tether_away/debrisfield/explored)
-"ap" = (
+/area/submap/debrisfield/misc_debris)
+"av" = (
/obj/structure/table/rack/shelf,
/obj/item/clothing/mask/breath,
/obj/item/clothing/mask/breath,
@@ -89,12 +119,12 @@
/obj/item/weapon/tank/emergency/oxygen/engi,
/obj/item/weapon/tank/emergency/oxygen/engi,
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aq" = (
+/area/submap/debrisfield/misc_debris)
+"aw" = (
/obj/structure/bed/chair/shuttle,
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"ar" = (
+/area/submap/debrisfield/misc_debris)
+"ax" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -103,8 +133,8 @@
pixel_x = -32
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"as" = (
+/area/submap/debrisfield/misc_debris)
+"ay" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -113,49 +143,45 @@
pixel_x = 32
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"at" = (
+/area/submap/debrisfield/misc_debris)
+"az" = (
/obj/machinery/sleeper{
dir = 8
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"au" = (
+/area/submap/debrisfield/misc_debris)
+"aA" = (
/obj/machinery/sleep_console,
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"av" = (
+/area/submap/debrisfield/misc_debris)
+"aB" = (
/obj/structure/bed/chair/shuttle{
dir = 1
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aw" = (
+/area/submap/debrisfield/misc_debris)
+"aC" = (
/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/shuttle/floor/darkred/airless,
-/area/tether_away/debrisfield/explored)
-"ax" = (
+/area/submap/debrisfield/misc_debris)
+"aD" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/space_heater,
/turf/simulated/shuttle/floor/darkred/airless,
-/area/tether_away/debrisfield/explored)
-"ay" = (
-/obj/structure/table/steel,
-/obj/item/clothing/head/pilot,
-/obj/random/unidentified_medicine/drug_den,
-/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"az" = (
-/obj/structure/closet/crate/medical,
-/obj/random/unidentified_medicine/old_medicine,
-/obj/random/unidentified_medicine/old_medicine,
-/obj/random/unidentified_medicine/old_medicine,
-/obj/random/unidentified_medicine/fresh_medicine,
-/obj/random/unidentified_medicine/fresh_medicine,
-/obj/random/unidentified_medicine/combat_medicine,
+/area/submap/debrisfield/misc_debris)
+"aE" = (
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/shuttle/floor/darkred/airless,
-/area/tether_away/debrisfield/explored)
-"aA" = (
+/area/submap/debrisfield/misc_debris)
+"aF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"aG" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 9
@@ -166,21 +192,15 @@
id_tag = "expshuttle_docker_pump_out_internal"
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aB" = (
+/area/submap/debrisfield/misc_debris)
+"aH" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 1
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aC" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 10
- },
-/turf/simulated/shuttle/wall/voidcraft,
-/area/tether_away/debrisfield/explored)
-"aD" = (
+/area/submap/debrisfield/misc_debris)
+"aI" = (
/obj/effect/floor_decal/industrial/warning{
dir = 5
},
@@ -190,15 +210,21 @@
id_tag = "expshuttle_vent"
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aE" = (
+/area/submap/debrisfield/misc_debris)
+"aJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10
+ },
+/turf/simulated/shuttle/wall/voidcraft,
+/area/submap/debrisfield/misc_debris)
+"aK" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
dir = 8
},
/obj/machinery/door/airlock/voidcraft/vertical,
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aF" = (
+/area/submap/debrisfield/misc_debris)
+"aL" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 8
@@ -209,8 +235,8 @@
id_tag = "expshuttle_docker_pump_out_internal"
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aG" = (
+/area/submap/debrisfield/misc_debris)
+"aM" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 4
@@ -221,28 +247,28 @@
id_tag = "expshuttle_vent"
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aH" = (
+/area/submap/debrisfield/misc_debris)
+"aN" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 4
},
/obj/machinery/door/airlock/voidcraft/vertical,
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aI" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8
- },
-/turf/simulated/shuttle/wall/voidcraft,
-/area/tether_away/debrisfield/explored)
-"aJ" = (
+/area/submap/debrisfield/misc_debris)
+"aO" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 8
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aK" = (
+/area/submap/debrisfield/misc_debris)
+"aP" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 8
+ },
+/turf/simulated/shuttle/wall/voidcraft,
+/area/submap/debrisfield/misc_debris)
+"aQ" = (
/obj/effect/floor_decal/industrial/warning{
dir = 10
},
@@ -252,22 +278,12 @@
id_tag = "expshuttle_docker_pump_out_internal"
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aL" = (
+/area/submap/debrisfield/misc_debris)
+"aR" = (
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aM" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 4
- },
-/turf/simulated/shuttle/wall/voidcraft,
-/area/tether_away/debrisfield/explored)
-"aN" = (
-/obj/machinery/door/airlock/voidcraft/vertical,
-/turf/simulated/shuttle/floor/black,
-/area/tether_away/debrisfield/explored)
-"aO" = (
+/area/submap/debrisfield/misc_debris)
+"aS" = (
/obj/effect/floor_decal/industrial/warning{
dir = 6
},
@@ -281,39 +297,57 @@
id_tag = "expshuttle_vent"
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aP" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10
+/area/submap/debrisfield/misc_debris)
+"aT" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 4
},
-/turf/simulated/shuttle/wall/voidcraft/hard_corner,
-/area/tether_away/debrisfield/explored)
-"aQ" = (
+/turf/simulated/shuttle/wall/voidcraft,
+/area/submap/debrisfield/misc_debris)
+"aU" = (
+/obj/machinery/door/airlock/voidcraft/vertical,
+/turf/simulated/shuttle/floor/black,
+/area/submap/debrisfield/misc_debris)
+"aV" = (
/obj/effect/floor_decal/industrial/warning/corner{
icon_state = "warningcorner";
dir = 1
},
/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aR" = (
+/area/submap/debrisfield/misc_debris)
+"aW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 10
+ },
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/submap/debrisfield/misc_debris)
+"aX" = (
/obj/machinery/atmospherics/pipe/tank/air{
dir = 4
},
/turf/simulated/shuttle/floor/darkred/airless,
-/area/tether_away/debrisfield/explored)
-"aS" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 9
- },
-/turf/simulated/shuttle/wall/voidcraft,
-/area/tether_away/debrisfield/explored)
-"aT" = (
+/area/submap/debrisfield/misc_debris)
+"aY" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4
},
/turf/simulated/shuttle/floor/darkred/airless,
-/area/tether_away/debrisfield/explored)
-"aU" = (
+/area/submap/debrisfield/misc_debris)
+"aZ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9
+ },
+/turf/simulated/shuttle/wall/voidcraft,
+/area/submap/debrisfield/misc_debris)
+"ba" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black/airless,
+/area/submap/debrisfield/misc_debris)
+"bb" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume/wall_mounted{
dir = 1;
frequency = 1380;
@@ -321,64 +355,18 @@
power_rating = 20000
},
/turf/simulated/shuttle/wall/voidcraft,
-/area/tether_away/debrisfield/explored)
-"aV" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aW" = (
-/obj/tether_away_spawner/debrisfield/carp/hard,
-/turf/space,
-/area/tether_away/debrisfield/explored)
-"aX" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"aY" = (
-/obj/machinery/door/airlock/multi_tile/metal,
-/turf/simulated/shuttle/floor/black/airless,
-/area/tether_away/debrisfield/explored)
-"aZ" = (
-/turf/simulated/mineral/floor/vacuum,
-/area/tether_away/debrisfield/explored)
-"ba" = (
-/obj/effect/immovablerod,
-/turf/simulated/mineral/floor/vacuum,
-/area/tether_away/debrisfield/explored)
-"bb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
"bc" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
+/obj/structure/closet/crate/medical,
+/obj/random/unidentified_medicine/old_medicine,
+/obj/random/unidentified_medicine/old_medicine,
+/obj/random/unidentified_medicine/old_medicine,
+/obj/random/unidentified_medicine/fresh_medicine,
+/obj/random/unidentified_medicine/fresh_medicine,
+/obj/random/unidentified_medicine/combat_medicine,
+/turf/simulated/shuttle/floor/darkred/airless,
+/area/submap/debrisfield/misc_debris)
"bd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"be" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6
- },
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"bg" = (
/obj/item/weapon/storage/mre/random,
/obj/item/weapon/storage/mre/random,
/obj/item/weapon/storage/mre/random,
@@ -387,493 +375,395 @@
/obj/item/weapon/storage/mre/random,
/obj/structure/closet/crate,
/turf/simulated/shuttle/floor/darkred/airless,
-/area/tether_away/debrisfield/explored)
-"bh" = (
+/area/submap/debrisfield/misc_debris)
+"be" = (
/obj/tether_away_spawner/debrisfield/carp,
/turf/space,
-/area/tether_away/debrisfield/explored)
+/area/space)
+"bf" = (
+/turf/template_noop,
+/area/space)
+"bg" = (
+/obj/structure/lattice,
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
+"bh" = (
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
"bi" = (
+/obj/machinery/door/airlock/multi_tile/metal,
+/turf/simulated/shuttle/floor/black/airless,
+/area/submap/debrisfield/misc_debris)
+"bj" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"bk" = (
+/turf/simulated/mineral/floor/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+"bl" = (
+/obj/effect/immovablerod,
+/turf/simulated/mineral/floor/vacuum,
+/area/tether_away/debrisfield/shuttle_buffer)
+"bm" = (
/obj/structure/loot_pile/mecha/durand,
/turf/simulated/mineral/floor/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+ad
+ad
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
"}
(2,1,1) = {"
+ab
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ad
+ar
+ad
+ar
+ad
+ad
+ad
+aC
+ah
+ag
+aU
+ad
+ad
+ak
+bj
+bf
+bf
"}
(3,1,1) = {"
aa
-ab
-aa
-ac
+ad
+ak
+as
+ad
+ai
+ax
+az
+ad
+aD
+ah
+ah
+aH
+aR
bc
-ac
-bc
-ac
-ac
-ac
-aw
-aa
-al
-aN
-ac
-ac
-af
-aX
-aa
-aa
-aa
-aa
+ad
+bj
+bf
+bf
"}
(4,1,1) = {"
-aa
-aa
+bf
ac
-af
-am
-ac
-ad
-ar
-at
-ac
-ax
-aa
-aa
-aB
-aL
-az
-ac
-aX
-aa
-aa
-aa
-aa
-"}
-(5,1,1) = {"
-aa
-aa
-ai
-ae
-ad
-ac
-ap
-ad
-au
-ac
-ao
al
-al
-aB
-aL
-bg
-ac
-aX
-aa
-aa
-aa
-aa
-"}
-(6,1,1) = {"
-aa
-aa
ai
-ag
-ah
-bd
-aq
ad
av
-aa
-aa
-al
-aa
-aB
-aV
-af
-ac
-aa
-aa
-aa
-aa
-aa
-"}
-(7,1,1) = {"
-aa
-aa
-aj
-ad
-ad
-an
-ad
-ad
-ad
-aa
-aa
-bd
-aJ
-aQ
-aL
-aY
-aa
-aa
-bh
-aa
-aa
-aa
-"}
-(8,1,1) = {"
-aa
-aa
-al
-aa
-aa
-al
-aa
-al
-al
-aa
-aa
-an
-ad
-ad
-aL
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(9,1,1) = {"
-aa
-aa
-aa
-aW
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-al
-aa
-aa
-al
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(10,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-al
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(11,1,1) = {"
-aa
-aa
-al
-al
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aZ
-ba
-aa
-aa
-"}
-(12,1,1) = {"
-aa
ai
+aA
ad
-ah
+aE
+ag
+ag
+aH
+aR
bd
-aa
ad
+bj
+bf
+bf
+"}
+(5,1,1) = {"
+bf
+ac
+am
+ao
+at
+aw
+ai
+aB
+ah
+ah
+ag
+ah
+aH
+ba
+ak
ad
-aa
-aa
-aa
-aa
-al
-aa
-aa
-aa
-aa
-aa
-aa
+bf
+bf
+bf
+"}
+(6,1,1) = {"
+bf
+ae
+ai
+ai
+au
+ai
+ai
+ai
+ah
+ah
+at
+aO
+aV
+aR
bi
aa
aa
-"}
-(13,1,1) = {"
-aa
-ai
-ay
-ad
-ac
-aa
-aq
-al
-al
-al
-aa
-al
-al
-aa
-al
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(14,1,1) = {"
-aa
-ac
-af
-ak
-ac
-aa
-al
-al
-av
-ac
be
-aE
-aI
-aI
-aU
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+bf
"}
-(15,1,1) = {"
+(7,1,1) = {"
+bf
+ag
+ah
+ah
+ag
+ah
+ag
+ag
+ah
+ah
+au
+ai
+ai
+aR
+ai
aa
aa
-ac
-bb
-ac
-aa
-aa
-ad
-av
-ac
-aA
-aF
-aK
-aP
-aU
aa
+bf
+"}
+(8,1,1) = {"
+bf
+ah
+an
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+ah
+ah
+bg
bh
aa
aa
-aa
-aa
-aa
+bf
"}
-(16,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-as
-av
+(9,1,1) = {"
+bf
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+bg
+bh
+bh
+bh
+bh
+"}
+(10,1,1) = {"
+bf
+ag
+ag
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+bh
+bh
+bh
+bk
+bl
+"}
+(11,1,1) = {"
ac
+ai
+ao
+at
+ah
+ai
+ai
+ah
+ah
+ah
+ah
+ag
+ah
+ah
+bh
+bh
+bh
+bh
+bm
+"}
+(12,1,1) = {"
+ac
+aj
+ai
+ad
+ah
+aw
+ag
+ag
+ag
+ah
+ag
+ag
+ah
+ag
+bh
+bh
+aa
+aa
+bf
+"}
+(13,1,1) = {"
+ad
+ak
+ap
+ad
+ah
+ag
+ag
aB
ad
-aL
-aR
-ac
-aX
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(17,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
+aF
+aK
+aP
+aP
bb
-ac
-ac
-ac
-aD
-aG
-aO
-aT
-ac
-aX
-aa
-aa
-aa
-aa
aa
aa
+bf
+bf
+bf
"}
-(18,1,1) = {"
+(14,1,1) = {"
+bf
+ad
+aq
+ad
+ah
+ah
+ai
+aB
+ad
+aG
+aL
+aQ
+aW
+bb
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aC
+be
+bf
+bf
+bf
+"}
+(15,1,1) = {"
+bf
+bf
+bf
+bf
+bf
+aw
+ay
+aB
+ad
aH
+ai
+aR
+aX
+ad
+bj
+bf
+bf
+bf
+bf
+"}
+(16,1,1) = {"
+bf
+bf
+bf
+bf
+bf
+aq
+ad
+ad
+ad
+aI
aM
aS
-af
-aX
-aa
-aa
-aa
-aa
-aa
-aa
+aY
+ad
+bj
+bf
+bf
+bf
+bf
"}
-(19,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(20,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+(17,1,1) = {"
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+bf
+ad
+aJ
+aN
+aT
+aZ
+ak
+bj
+bf
+bf
+bf
+bf
"}
diff --git a/maps/submaps/pois_vr/debris_field/ship_med_crashed.dmm b/maps/submaps/pois_vr/debris_field/ship_med_crashed.dmm
index b0ae668a84e..f47ee1ea039 100644
--- a/maps/submaps/pois_vr/debris_field/ship_med_crashed.dmm
+++ b/maps/submaps/pois_vr/debris_field/ship_med_crashed.dmm
@@ -1,184 +1,187 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
"b" = (
/turf/simulated/mineral/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/space)
"c" = (
-/turf/simulated/shuttle/wall,
-/area/tether_away/debrisfield/explored)
+/obj/tether_away_spawner/debrisfield/carp,
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
"d" = (
-/turf/simulated/mineral/floor/vacuum,
-/area/tether_away/debrisfield/explored)
+/turf/simulated/mineral/vacuum,
+/area/submap/debrisfield/misc_debris)
"e" = (
+/turf/simulated/shuttle/wall,
+/area/submap/debrisfield/misc_debris)
+"f" = (
/obj/structure/shuttle/window,
/obj/structure/grille,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"f" = (
-/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
"g" = (
/obj/effect/decal/cleanable/generic,
/turf/simulated/mineral/floor/vacuum,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
"h" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/salvageable/personal,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
"i" = (
/obj/structure/salvageable/implant_container,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
"j" = (
+/turf/simulated/shuttle/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"k" = (
/obj/structure/closet/secure_closet/sar{
name = "sar locker";
req_access = list()
},
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"k" = (
+/area/submap/debrisfield/misc_debris)
+"l" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4
},
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"l" = (
+/area/submap/debrisfield/misc_debris)
+"m" = (
+/obj/item/weapon/material/shard/shrapnel,
+/turf/simulated/mineral/floor/vacuum,
+/area/submap/debrisfield/misc_debris)
+"n" = (
/obj/effect/decal/cleanable/dirt,
/mob/living/bot/medbot{
name = "Dr. Crusty"
},
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"m" = (
+/area/submap/debrisfield/misc_debris)
+"o" = (
/obj/structure/table/standard,
/obj/random/unidentified_medicine/fresh_medicine,
/obj/random/unidentified_medicine/fresh_medicine,
/obj/random/unidentified_medicine/old_medicine,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"n" = (
+/area/submap/debrisfield/misc_debris)
+"p" = (
+/obj/item/stack/material/steel,
+/turf/simulated/mineral/floor/vacuum,
+/area/submap/debrisfield/misc_debris)
+"q" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/generic,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"o" = (
+/area/submap/debrisfield/misc_debris)
+"r" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/firstaid,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"s" = (
/obj/structure/table/standard,
/obj/random/unidentified_medicine/fresh_medicine,
/obj/random/unidentified_medicine/fresh_medicine,
/obj/random/unidentified_medicine/viral,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"p" = (
+/area/submap/debrisfield/misc_debris)
+"t" = (
/obj/structure/closet/secure_closet/medical3{
name = "medical locker";
req_access = list()
},
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"q" = (
+/area/submap/debrisfield/misc_debris)
+"u" = (
+/obj/item/stack/rods,
+/turf/simulated/mineral/floor/vacuum,
+/area/submap/debrisfield/misc_debris)
+"v" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/molten_item,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"r" = (
+/area/submap/debrisfield/misc_debris)
+"w" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/shuttle/wall,
+/area/submap/debrisfield/misc_debris)
+"x" = (
+/turf/simulated/shuttle/wall/hard_corner,
+/area/submap/debrisfield/misc_debris)
+"y" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"s" = (
+/area/submap/debrisfield/misc_debris)
+"z" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/remains/posi,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"t" = (
+/area/submap/debrisfield/misc_debris)
+"A" = (
/obj/machinery/door/unpowered/shuttle,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"u" = (
+/area/submap/debrisfield/misc_debris)
+"B" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/material/steel,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"C" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/storage/firstaid/adv,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"D" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/rods,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"E" = (
/obj/structure/closet/emcloset,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"v" = (
+/area/submap/debrisfield/misc_debris)
+"F" = (
/obj/structure/table/rack,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"w" = (
+/area/submap/debrisfield/misc_debris)
+"G" = (
+/turf/simulated/mineral/floor/vacuum,
+/area/submap/debrisfield/misc_debris)
+"H" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/material/shard/shrapnel,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"I" = (
/obj/effect/decal/cleanable/generic,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"x" = (
+/area/submap/debrisfield/misc_debris)
+"J" = (
+/obj/item/weapon/material/shard/shrapnel,
+/turf/simulated/shuttle/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"K" = (
/obj/structure/dispenser/oxygen{
oxygentanks = 7
},
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"y" = (
+/area/submap/debrisfield/misc_debris)
+"L" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"z" = (
+/area/submap/debrisfield/misc_debris)
+"M" = (
/obj/structure/salvageable/data,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"A" = (
+/area/submap/debrisfield/misc_debris)
+"N" = (
/obj/machinery/suit_cycler/medical,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"C" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/firstaid,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"D" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/storage/firstaid/adv,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"E" = (
-/obj/item/weapon/material/shard/shrapnel,
-/turf/simulated/mineral/floor/vacuum,
-/area/tether_away/debrisfield/explored)
-"F" = (
-/obj/item/stack/material/steel,
-/turf/simulated/mineral/floor/vacuum,
-/area/tether_away/debrisfield/explored)
-"G" = (
-/obj/item/stack/rods,
-/turf/simulated/mineral/floor/vacuum,
-/area/tether_away/debrisfield/explored)
-"H" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/material/steel,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"I" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/rods,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"J" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/material/shard/shrapnel,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"K" = (
-/obj/item/weapon/material/shard/shrapnel,
-/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"L" = (
-/obj/tether_away_spawner/debrisfield/carp,
-/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"M" = (
-/turf/simulated/shuttle/wall/hard_corner,
-/area/tether_away/debrisfield/explored)
-"Q" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/shuttle/wall,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
(1,1,1) = {"
a
@@ -187,16 +190,14 @@ a
a
a
a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
+b
+b
+b
+b
+b
+b
+b
+b
a
a
a
@@ -206,239 +207,217 @@ a
a
a
a
-a
-a
-a
-a
b
b
b
b
+d
+d
+d
+d
+d
+d
b
b
b
b
a
-a
-a
-a
-a
"}
(3,1,1) = {"
a
-a
-a
-a
b
b
b
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
b
b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
"}
(4,1,1) = {"
-a
-a
b
b
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
"}
(5,1,1) = {"
-a
b
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
"}
(6,1,1) = {"
-a
b
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
"}
(7,1,1) = {"
-a
b
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
"}
(8,1,1) = {"
-a
b
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
"}
(9,1,1) = {"
-a
b
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
"}
(10,1,1) = {"
-a
b
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
"}
(11,1,1) = {"
-a
+b
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
b
b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
"}
(12,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
b
b
+d
+d
+d
+d
+p
+u
+m
+m
+u
+G
+d
+d
b
b
b
@@ -448,41 +427,37 @@ a
a
b
b
+e
+g
+m
+q
+v
+y
+B
+C
+H
+g
+e
b
-b
-b
-b
-F
-G
-E
-E
-G
-d
-b
-b
-b
-b
-b
+a
a
a
"}
(14,1,1) = {"
a
a
-b
-b
-c
-g
-E
+a
+e
+h
n
-q
r
-H
+w
+z
+q
D
-J
-g
-c
-b
+I
+L
+e
a
a
a
@@ -492,19 +467,17 @@ a
a
a
a
-a
-c
-h
-l
-C
-Q
-s
-n
-I
-w
-y
-c
-a
+e
+e
+e
+e
+x
+j
+j
+j
+J
+M
+e
a
a
a
@@ -514,19 +487,17 @@ a
a
a
a
-a
-c
-c
-c
-c
-M
-f
-f
-f
-K
-z
-c
-a
+e
+i
+o
+s
+e
+j
+j
+e
+e
+e
+e
a
a
a
@@ -536,19 +507,17 @@ a
a
a
a
-a
-c
-i
-m
-o
-c
-f
-f
-c
-c
-c
-c
-a
+e
+j
+j
+j
+j
+j
+j
+E
+K
+N
+e
a
a
a
@@ -558,19 +527,17 @@ a
a
a
a
-a
-c
f
+j
+j
+j
+e
+j
+j
+j
+j
+j
f
-f
-f
-f
-f
-u
-x
-A
-c
-a
a
a
a
@@ -580,19 +547,17 @@ a
a
a
a
-a
+f
+j
+j
+j
e
+j
+j
+j
+j
+j
f
-f
-f
-c
-f
-f
-f
-f
-f
-e
-a
a
a
a
@@ -602,19 +567,17 @@ a
a
a
a
-a
e
-f
-f
-f
-c
-f
-f
-f
-f
-f
+k
+k
+t
+e
+A
+e
+F
+F
+F
e
-a
a
a
a
@@ -624,109 +587,39 @@ a
a
a
a
-a
-c
+e
+e
+e
+e
+e
j
-j
-p
-c
-t
-c
-v
-v
-v
-c
-a
+e
+e
+e
+e
+e
a
a
a
a
"}
(22,1,1) = {"
-a
-a
-a
-a
-c
-c
-c
-c
-c
-f
-c
-c
-c
-c
c
a
a
+e
+l
+l
+l
+x
+A
+x
+l
+l
+l
+e
a
a
a
-"}
-(23,1,1) = {"
-a
-L
-a
-a
-c
-k
-k
-k
-M
-t
-M
-k
-k
-k
-c
-a
-a
-a
-L
-a
-"}
-(24,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(25,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
+c
"}
diff --git a/maps/submaps/pois_vr/debris_field/ship_mining_drone.dmm b/maps/submaps/pois_vr/debris_field/ship_mining_drone.dmm
new file mode 100644
index 00000000000..bb029e9daab
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/ship_mining_drone.dmm
@@ -0,0 +1,752 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/template_noop,
+/area/space)
+"ab" = (
+/turf/simulated/wall/rthull,
+/area/submap/debrisfield/mining_drone_ship)
+"ac" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"ad" = (
+/obj/machinery/power/emitter/gyrotron/anchored{
+ active = 1;
+ desc = "A heavy beam emitter modified for use in breaking apart ore-rich asteroids.";
+ dir = 1;
+ locked = 1;
+ mega_energy = 0.2;
+ name = "modified emitter";
+ rate = 5;
+ req_access = list(-1)
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"ae" = (
+/turf/simulated/mineral/vacuum,
+/area/submap/debrisfield/mining_drone_ship)
+"af" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"ag" = (
+/obj/structure/girder/reinforced,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"ah" = (
+/obj/structure/prop{
+ desc = "An array of conventional power storage units, for when the added charge longivity and cost of a SMES unit is unneded or impractical.";
+ icon = 'icons/obj/power.dmi';
+ icon_state = "gridchecker_off";
+ name = "capacitor bank"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"ai" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aj" = (
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "drone_toggle"
+ },
+/obj/machinery/conveyor{
+ operating = 1
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"ak" = (
+/obj/structure/prop{
+ desc = "There are a number of what seem to be error messages on these screens, none intelligible.";
+ icon = 'icons/obj/mainframe.dmi';
+ icon_state = "leftb";
+ name = "console"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"al" = (
+/obj/structure/prop{
+ desc = "This isn't going to be fixable.";
+ icon = 'icons/obj/mainframe.dmi';
+ icon_state = "aimainframeb";
+ name = "broken console"
+ },
+/obj/effect/map_effect/interval/effect_emitter/sparks,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"am" = (
+/turf/simulated/mineral/vacuum,
+/area/space)
+"an" = (
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"ao" = (
+/obj/machinery/conveyor{
+ operating = 1
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"ap" = (
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aq" = (
+/mob/living/simple_mob/mechanical/hivebot/swarm,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"ar" = (
+/obj/machinery/power/rtg/fake_gen{
+ desc = "An array of conventional power storage units, for when the added charge longivity and cost of a SMES unit is unneded or impractical.";
+ icon = 'icons/obj/power.dmi';
+ icon_state = "gridchecker_off";
+ name = "capacitor bank";
+ power_gen = 12000
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"as" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"at" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"au" = (
+/obj/machinery/door/blast/regular{
+ id = "miner_poi_toggle"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"av" = (
+/obj/machinery/conveyor{
+ operating = 1
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ plane = -45
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"ax" = (
+/obj/machinery/button/remote/blast_door{
+ id = "miner_poi_toggle";
+ name = "Power Compartment Access";
+ pixel_y = -24
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"ay" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/wall/rthull,
+/area/submap/debrisfield/mining_drone_ship)
+"az" = (
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "miner_poi_toggle"
+ },
+/obj/machinery/conveyor{
+ operating = 1
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aA" = (
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aB" = (
+/obj/item/weapon/ore,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aC" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/machinery/artifact,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aD" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/phoron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aE" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/iron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aF" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/coal,
+/obj/item/weapon/ore/phoron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aG" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/coal,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/gold,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aH" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/phoron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aI" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/iron,
+/mob/living/simple_mob/mechanical/hivebot/support/commander,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aJ" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/phoron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aK" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/coal,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/phoron,
+/obj/item/weapon/ore/phoron,
+/obj/item/weapon/ore/phoron,
+/obj/item/weapon/ore/phoron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aL" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/phoron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aM" = (
+/obj/item/weapon/ore,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/coal,
+/obj/item/weapon/ore/coal,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/phoron,
+/obj/item/weapon/ore/phoron,
+/obj/item/weapon/ore,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aN" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/phoron,
+/obj/item/weapon/ore/phoron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aO" = (
+/obj/item/weapon/ore,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/phoron,
+/obj/item/weapon/ore/phoron,
+/obj/item/weapon/ore/phoron,
+/obj/item/weapon/ore/phoron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aP" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aQ" = (
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/structure/mob_spawner{
+ density = 1;
+ desc = "A bizarre mess of robotic limbs, glowing microrefineries, and nanoassemblers gradually converting the pile of raw materials into active hivebots.";
+ destructible = 1;
+ icon = 'icons/obj/recycling.dmi';
+ icon_state = "grinder-b1";
+ name = "hivebot assembler";
+ simultaneous_spawns = 6;
+ spawn_delay = 300;
+ spawn_types = list(/mob/living/simple_mob/mechanical/hivebot/swarm = 200, /mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic = 50, /mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser = 25, /mob/living/simple_mob/mechanical/hivebot/ranged_damage/ion = 10, /mob/living/simple_mob/mechanical/hivebot/tank/meatshield = 10)
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aR" = (
+/obj/structure/shuttle/engine/heater{
+ pixel_y = 8
+ },
+/turf/space,
+/area/submap/debrisfield/mining_drone_ship)
+"aS" = (
+/obj/item/weapon/ore/gold,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aT" = (
+/obj/item/weapon/ore,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aU" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/coal,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aV" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/phoron,
+/obj/item/weapon/ore/phoron,
+/obj/machinery/light/poi,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aW" = (
+/obj/item/weapon/ore,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/phoron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aX" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/iron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aY" = (
+/obj/item/weapon/ore/diamond,
+/obj/item/weapon/ore/iron,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"aZ" = (
+/obj/structure/shuttle/engine/propulsion{
+ pixel_y = 8
+ },
+/turf/space,
+/area/submap/debrisfield/mining_drone_ship)
+"ba" = (
+/obj/structure/prop{
+ desc = "An array of conventional power storage units, for when the added charge longivity and cost of a SMES unit is unneded or impractical.";
+ icon = 'icons/obj/power.dmi';
+ icon_state = "gridchecker_off";
+ name = "capacitor bank"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/light/small/poi{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+"bb" = (
+/obj/machinery/light/small/flicker{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/mining_drone_ship)
+
+(1,1,1) = {"
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aR
+aZ
+"}
+(2,1,1) = {"
+aa
+ab
+ab
+ab
+ah
+ba
+ar
+ab
+aA
+aA
+ab
+ab
+aa
+"}
+(3,1,1) = {"
+aa
+ac
+ad
+af
+ai
+ai
+as
+ab
+aB
+aJ
+aS
+ab
+aa
+"}
+(4,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+an
+at
+ab
+aC
+aK
+aT
+ab
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+aa
+aa
+ab
+ab
+au
+ab
+aD
+aL
+aU
+ab
+aa
+"}
+(6,1,1) = {"
+aa
+aa
+aa
+aa
+aj
+ao
+av
+az
+aE
+aM
+aV
+ab
+aa
+"}
+(7,1,1) = {"
+aa
+am
+aa
+aa
+ab
+ab
+au
+ab
+aF
+aN
+aW
+ab
+aa
+"}
+(8,1,1) = {"
+am
+am
+am
+ab
+ab
+ap
+aw
+ab
+aG
+aO
+aX
+ab
+aa
+"}
+(9,1,1) = {"
+am
+am
+ae
+ag
+ak
+aq
+ax
+ab
+aH
+aP
+aY
+ab
+aa
+"}
+(10,1,1) = {"
+am
+am
+ae
+ae
+al
+bb
+an
+ab
+aI
+aQ
+ab
+ab
+aa
+"}
+(11,1,1) = {"
+aa
+am
+am
+ab
+ab
+ab
+ay
+ab
+ab
+ab
+ab
+aR
+aZ
+"}
diff --git a/maps/submaps/pois_vr/debris_field/ship_sci_overrun.dmm b/maps/submaps/pois_vr/debris_field/ship_sci_overrun.dmm
index 9d0965fe152..4ba38479681 100644
--- a/maps/submaps/pois_vr/debris_field/ship_sci_overrun.dmm
+++ b/maps/submaps/pois_vr/debris_field/ship_sci_overrun.dmm
@@ -1,182 +1,194 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
"ab" = (
/turf/simulated/wall/thull,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/sci_overrun)
"ac" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/sci_overrun)
"ad" = (
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"ae" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"af" = (
-/obj/machinery/botany/editor,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"ag" = (
-/obj/machinery/vending/hydronutrients,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"ah" = (
-/obj/machinery/seed_extractor,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"ai" = (
-/obj/machinery/seed_storage/xenobotany,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aj" = (
-/obj/machinery/botany/extractor,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"ak" = (
-/obj/item/seeds/killertomatoseed,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"al" = (
-/obj/structure/railing,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"am" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"an" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"ao" = (
-/obj/structure/railing{
+/obj/structure/shuttle/engine/propulsion{
dir = 8
},
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"ap" = (
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/sci_overrun)
+"ae" = (
/obj/structure/table/rack,
-/obj/item/weapon/shovel/spade,
-/obj/item/weapon/shovel/spade,
-/obj/item/weapon/material/minihoe,
-/obj/item/weapon/material/minihoe,
-/obj/item/weapon/material/knife/machete/hatchet,
-/obj/item/weapon/material/knife/machete/hatchet,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/device/analyzer/plant_analyzer,
-/obj/item/device/analyzer/plant_analyzer,
+/obj/random/tool,
+/obj/random/tool,
+/obj/random/tool,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/sci_overrun)
+"af" = (
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/sci_overrun)
+"ag" = (
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aq" = (
-/obj/structure/railing{
- dir = 1
+/area/submap/debrisfield/sci_overrun)
+"ah" = (
+/obj/structure/closet/secure_closet/scientist{
+ name = "scientist locker";
+ req_access = list(0)
},
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/sci_overrun)
+"ai" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/blue,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aj" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"ak" = (
+/obj/machinery/botany/editor,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"al" = (
+/obj/machinery/vending/hydronutrients,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"am" = (
+/obj/machinery/seed_extractor,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"an" = (
+/obj/machinery/seed_storage/xenobotany,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"ao" = (
+/obj/machinery/botany/extractor,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"ap" = (
+/obj/item/weapon/reagent_containers/spray/plantbgone,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aq" = (
+/obj/item/seeds/killertomatoseed,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
"ar" = (
/mob/living/simple_mob/tomato/space,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/sci_overrun)
"as" = (
-/obj/structure/table/rack,
-/obj/random/tool,
-/obj/random/tool,
-/obj/random/tool,
-/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/obj/structure/railing,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
"at" = (
-/obj/machinery/door/airlock/science{
- req_one_access = list(0)
- },
+/obj/item/weapon/reagent_containers/spray/chemsprayer,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/sci_overrun)
"au" = (
-/obj/item/clothing/head/collectable/slime,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
+/obj/structure/salvageable/autolathe,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/sci_overrun)
"av" = (
-/obj/structure/sign/hydro,
-/turf/simulated/wall/thull,
-/area/tether_away/debrisfield/explored)
-"aw" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"ax" = (
/obj/machinery/door/airlock/maintenance/rnd{
name = "Research Airlock";
req_one_access = list(0)
},
/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/sci_overrun)
+"aw" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/green,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"ax" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
"ay" = (
-/obj/structure/sign/xenobio,
-/turf/simulated/wall/thull,
-/area/tether_away/debrisfield/explored)
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
"az" = (
-/obj/item/device/slime_scanner,
-/obj/item/device/slime_scanner,
-/obj/structure/table/reinforced,
+/obj/structure/railing{
+ dir = 8
+ },
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/sci_overrun)
"aA" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/gun/energy/taser/xeno,
-/obj/item/weapon/melee/baton/slime/loaded,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aB" = (
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aC" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/food/snacks/monkeycube,
-/obj/item/weapon/reagent_containers/food/snacks/monkeycube/farwacube,
-/obj/item/weapon/reagent_containers/food/snacks/monkeycube/neaeracube,
-/obj/item/weapon/reagent_containers/food/snacks/monkeycube/sarucube,
-/obj/item/weapon/reagent_containers/food/snacks/monkeycube/sobakacube,
-/obj/item/weapon/reagent_containers/food/snacks/monkeycube/sparracube,
-/obj/item/weapon/reagent_containers/food/snacks/monkeycube/stokcube,
-/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wolpincube,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aD" = (
-/obj/machinery/processor,
-/obj/item/slime_extract/dark_blue,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
-"aF" = (
-/obj/item/weapon/reagent_containers/spray/plantbgone,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aG" = (
-/obj/item/weapon/reagent_containers/spray/chemsprayer,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aH" = (
-/obj/tether_away_spawner/debrisfield/carp,
-/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"aI" = (
/obj/effect/decal/remains,
/obj/item/clothing/under/rank/hydroponics,
/obj/item/clothing/suit/storage/toggle/labcoat/green,
/obj/item/clothing/head/greenbandana,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/sci_overrun)
+"aB" = (
+/obj/structure/table/rack,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/material/minihoe,
+/obj/item/weapon/material/minihoe,
+/obj/item/weapon/material/knife/machete/hatchet,
+/obj/item/weapon/material/knife/machete/hatchet,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/device/analyzer/plant_analyzer,
+/obj/item/device/analyzer/plant_analyzer,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aC" = (
+/obj/structure/table/rack,
+/obj/random/firstaid,
+/obj/random/firstaid,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/sci_overrun)
+"aD" = (
+/mob/living/simple_mob/slime/feral/dark_blue,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/sci_overrun)
+"aE" = (
+/obj/machinery/door/airlock/science{
+ req_one_access = list(0)
+ },
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aF" = (
+/obj/item/clothing/head/collectable/slime,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aG" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aH" = (
+/obj/tether_away_spawner/debrisfield/carp,
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
+"aI" = (
+/obj/structure/table/rack,
+/obj/random/unidentified_medicine/scientific,
+/obj/random/unidentified_medicine/scientific,
+/obj/random/unidentified_medicine/scientific,
+/obj/random/unidentified_medicine/scientific,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/sci_overrun)
"aJ" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aK" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/rd,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aL" = (
/obj/structure/table/rack,
/obj/item/slime_extract/rainbow,
/obj/structure/window/reinforced{
@@ -187,8 +199,12 @@
},
/obj/structure/window/reinforced,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aK" = (
+/area/submap/debrisfield/sci_overrun)
+"aM" = (
+/obj/structure/sign/hydro,
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/sci_overrun)
+"aN" = (
/obj/item/weapon/gun/energy/temperature,
/obj/structure/table/rack,
/obj/structure/window/reinforced,
@@ -199,25 +215,52 @@
dir = 4
},
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aL" = (
+/area/submap/debrisfield/sci_overrun)
+"aO" = (
/obj/structure/window/reinforced/full,
/obj/structure/grille,
/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
-"aM" = (
+/area/submap/debrisfield/sci_overrun)
+"aP" = (
+/obj/item/weapon/tool/prybar/red,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/sci_overrun)
+"aQ" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aR" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aS" = (
/obj/machinery/computer/shuttle{
dir = 8
},
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aN" = (
+/area/submap/debrisfield/sci_overrun)
+"aT" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aU" = (
+/obj/machinery/door/airlock/command{
+ name = "Research Airlock";
+ req_one_access = list(0)
+ },
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aV" = (
/obj/structure/bed/chair/comfy/purp{
dir = 4
},
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aO" = (
+/area/submap/debrisfield/sci_overrun)
+"aW" = (
+/obj/structure/sign/xenobio,
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/sci_overrun)
+"aX" = (
/obj/item/weapon/gun/energy/decloner,
/obj/structure/table/rack,
/obj/structure/window/reinforced,
@@ -228,35 +271,60 @@
dir = 4
},
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aP" = (
+/area/submap/debrisfield/sci_overrun)
+"aY" = (
+/obj/item/clothing/suit/storage/toggle/labcoat/purple,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"aZ" = (
+/obj/structure/closet/crate,
+/obj/item/stack/material/uranium{
+ amount = 11
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/sci_overrun)
+"ba" = (
+/obj/structure/closet/crate,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/sci_overrun)
+"bb" = (
/obj/structure/filingcabinet/filingcabinet,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aQ" = (
+/area/submap/debrisfield/sci_overrun)
+"bc" = (
/obj/structure/table/reinforced,
/obj/item/stack/material/phoron{
amount = 10
},
/obj/item/device/flashlight/pen,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aR" = (
+/area/submap/debrisfield/sci_overrun)
+"bd" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen/blue,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aS" = (
+/area/submap/debrisfield/sci_overrun)
+"be" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aT" = (
-/mob/living/simple_mob/slime/feral/dark_blue,
+/area/submap/debrisfield/sci_overrun)
+"bf" = (
+/obj/structure/table/reinforced,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aU" = (
+/area/submap/debrisfield/sci_overrun)
+"bg" = (
+/obj/structure/salvageable/machine,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"bh" = (
+/obj/item/device/slime_scanner,
+/obj/item/device/slime_scanner,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"bi" = (
/obj/structure/table/rack,
/obj/structure/window/reinforced{
dir = 4
@@ -267,111 +335,38 @@
/obj/item/weapon/material/shard,
/obj/item/clothing/mask/breath,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aV" = (
+/area/submap/debrisfield/sci_overrun)
+"bj" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aW" = (
-/obj/item/weapon/airlock_electronics,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aX" = (
-/obj/item/weapon/material/shard,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aY" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"aZ" = (
-/obj/machinery/door/unpowered/shuttle,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"ba" = (
-/obj/item/clothing/suit/storage/toggle/labcoat/purple,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"bb" = (
+/area/submap/debrisfield/sci_overrun)
+"bk" = (
/obj/effect/decal/remains,
/obj/item/clothing/under/rank/scientist,
/obj/item/clothing/suit/storage/toggle/labcoat/blue,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"bc" = (
-/obj/structure/closet/secure_closet/scientist{
- name = "scientist locker";
- req_access = list(0)
- },
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"bd" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/blue,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"be" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/green,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"bf" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/rd,
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"bg" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12
- },
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"bh" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
- },
-/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
-"bi" = (
-/obj/structure/table/rack,
-/obj/random/firstaid,
-/obj/random/firstaid,
-/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
-"bj" = (
-/obj/structure/table/rack,
-/obj/random/unidentified_medicine/scientific,
-/obj/random/unidentified_medicine/scientific,
-/obj/random/unidentified_medicine/scientific,
-/obj/random/unidentified_medicine/scientific,
-/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
-"bk" = (
-/obj/machinery/door/airlock/command{
- name = "Research Airlock";
- req_one_access = list(0)
- },
-/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/sci_overrun)
"bl" = (
-/obj/structure/closet/crate,
-/obj/item/stack/material/uranium{
- amount = 11
- },
-/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/obj/structure/table/reinforced,
+/obj/item/weapon/gun/energy/taser/xeno,
+/obj/item/weapon/melee/baton/slime/loaded,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
"bm" = (
-/obj/structure/closet/crate,
-/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/obj/item/weapon/airlock_electronics,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
"bn" = (
-/obj/machinery/power/port_gen/pacman/super,
-/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/mob/living/simple_mob/slime/feral/dark_blue,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
"bo" = (
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
+"bp" = (
/obj/structure/table/reinforced,
/obj/random/slimecore,
/obj/random/slimecore,
@@ -379,699 +374,554 @@
/obj/random/slimecore,
/obj/random/slimecore,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"bp" = (
-/obj/item/weapon/tool/prybar/red,
-/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/sci_overrun)
"bq" = (
-/mob/living/simple_mob/slime/feral/dark_blue,
-/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
-"rR" = (
-/obj/structure/salvageable/autolathe,
-/turf/simulated/floor/airless,
-/area/tether_away/debrisfield/explored)
-"Hf" = (
-/obj/structure/salvageable/machine,
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/snacks/monkeycube,
+/obj/item/weapon/reagent_containers/food/snacks/monkeycube/farwacube,
+/obj/item/weapon/reagent_containers/food/snacks/monkeycube/neaeracube,
+/obj/item/weapon/reagent_containers/food/snacks/monkeycube/sarucube,
+/obj/item/weapon/reagent_containers/food/snacks/monkeycube/sobakacube,
+/obj/item/weapon/reagent_containers/food/snacks/monkeycube/sparracube,
+/obj/item/weapon/reagent_containers/food/snacks/monkeycube/stokcube,
+/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wolpincube,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
-"Ow" = (
+/area/submap/debrisfield/sci_overrun)
+"br" = (
+/obj/machinery/power/port_gen/pacman/super,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/sci_overrun)
+"bs" = (
/obj/structure/salvageable/implant_container,
/turf/simulated/floor/tiled/white/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/sci_overrun)
+"bt" = (
+/obj/machinery/processor,
+/obj/item/slime_extract/dark_blue,
+/turf/simulated/floor/tiled/white/airless,
+/area/submap/debrisfield/sci_overrun)
(1,1,1) = {"
+ab
+ad
+ad
+ab
+ab
+ad
+ad
+ab
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ad
+ad
+ab
+ab
+ad
+ad
+ab
"}
(2,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(3,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(4,1,1) = {"
-aa
-aa
-aa
ab
-bh
-bh
ab
ab
-bh
-bh
ab
-aa
-aa
-aa
ab
-bh
-bh
ab
ab
-bh
-bh
-ab
-aa
-aa
-aa
-"}
-(5,1,1) = {"
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-bp
-ac
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-aa
-aa
-"}
-(6,1,1) = {"
-aa
-aa
-aa
-ab
-as
-as
-rR
-ac
-bi
-bj
-ab
-ab
-aZ
-ab
-ab
-bl
-ac
-ac
-ac
-ac
-bm
-ab
-aa
-aa
-aa
-"}
-(7,1,1) = {"
-aa
-aa
-aa
-ab
-ac
-ac
-ac
-ac
-bq
-ac
-ab
-aY
-ad
-aY
-ab
-bm
-ac
-ac
-ac
-ac
-bn
-ab
-aa
-aa
-aa
-"}
-(8,1,1) = {"
-aa
-aa
-aa
-ab
-ab
-ab
-ax
-ab
-ab
-ab
-ab
-ab
-aZ
-ab
-ab
-ab
-ab
-ab
-ax
-ab
-ab
-ab
-aa
-aa
-aa
-"}
-(9,1,1) = {"
-aa
-aa
-aa
-ab
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ab
-aa
-aa
-aa
-"}
-(10,1,1) = {"
-aa
-aa
-aa
-ab
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ab
-aa
-aa
-aa
-"}
-(11,1,1) = {"
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-at
-ab
-ab
-ad
-ad
-ad
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-aa
-aa
-"}
-(12,1,1) = {"
-aa
-aa
-aa
-ab
-bc
-bc
-bc
-ad
-ad
-bg
-ab
-ad
-ad
-ad
ab
aP
-ad
-ad
+af
+af
+ab
+ab
+ab
+ab
+ab
+ab
ab
-ad
-ad
ab
-aa
-aa
-aa
"}
-(13,1,1) = {"
-aa
-aa
-aa
-aE
-ad
-ad
-ad
-ad
+(3,1,1) = {"
+ab
+ae
+ae
au
-ad
-ab
-ad
-ad
-ad
-ab
-aQ
-ad
-aW
-aX
-ad
-ad
-ab
-aa
-aa
-aa
-"}
-(14,1,1) = {"
-aa
-aa
-aa
-aE
-ad
-ad
-ad
-ad
-ad
-ad
-ab
-ad
-ad
-ad
-ab
-aR
-aV
-ad
+af
+aC
+aI
ab
ab
-ab
-ab
-aa
-aa
-aa
-"}
-(15,1,1) = {"
-aa
-aa
-aa
-ab
-bd
-ad
-be
-ad
-ad
-bf
-ab
-ad
-ad
-ad
-ab
-aS
-ad
-ad
-ab
-ad
-ad
-ab
-aa
-aa
-aa
-"}
-(16,1,1) = {"
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ad
-ad
-ad
-ab
-aB
-ad
aT
-aX
-ad
-ad
ab
-aa
-aa
-aa
+ab
+aZ
+af
+af
+af
+af
+ba
+ab
"}
-(17,1,1) = {"
-aa
-aa
-aa
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ad
-ad
-ad
-ab
-Hf
-ad
-ad
-ab
-ab
-ab
-ab
-aa
-aa
-aa
-"}
-(18,1,1) = {"
-aa
-aa
-aa
-ab
-ad
-ak
-ad
-ad
-ar
-ad
-ab
-ad
-ad
-ad
-ab
-Hf
-ad
-aX
-ab
-ad
-ad
-ab
-aa
-aa
-aa
-"}
-(19,1,1) = {"
-aa
-aa
-aa
+(4,1,1) = {"
ab
af
-ar
-ad
-ad
-ad
-ad
+af
+af
+af
+aD
+af
ab
-ad
-ad
-ad
+aQ
+ag
+aQ
ab
-ad
-ad
-aW
-ad
-ad
-ad
+ba
+af
+af
+af
+af
+br
ab
-aa
-aa
-aa
"}
-(20,1,1) = {"
-aa
-aa
-aa
+(5,1,1) = {"
+ab
+ab
+ab
+av
+ab
+ab
+ab
+ab
+ab
+aT
+ab
+ab
+ab
+ab
+ab
+av
+ab
+ab
+ab
+"}
+(6,1,1) = {"
ab
ag
-ad
-am
-am
-ad
-ar
-av
-ad
-ad
-ad
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
ab
-ad
-ad
-ad
-ab
-ab
-ab
-ab
-aa
-aa
-aa
"}
-(21,1,1) = {"
-aa
-aa
-aa
+(7,1,1) = {"
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+"}
+(8,1,1) = {"
+ab
+ab
+ab
+ab
+ab
+aE
+ab
+ab
+ag
+ag
+ag
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+"}
+(9,1,1) = {"
ab
ah
-al
-an
-ap
-aq
-ad
-at
-ad
-ad
-ad
+ah
+ah
+ag
+ag
+aJ
ab
-ad
-ad
-ad
-aw
-aw
-aw
+ag
+ag
+ag
+ab
+bb
+ag
+ag
+ab
+ag
+ag
ab
-aa
-aa
-aa
"}
-(22,1,1) = {"
-aa
-aa
-aa
+(10,1,1) = {"
+ac
+ag
+ag
+ag
+ag
+aF
+ag
+ab
+ag
+ag
+ag
+ab
+bc
+ag
+bm
+bo
+ag
+ag
+ab
+"}
+(11,1,1) = {"
+ac
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ab
+bd
+bj
+ag
+ab
+ab
+ab
+ab
+"}
+(12,1,1) = {"
ab
ai
-ad
-ao
-ao
-ad
-ad
+ag
+aw
+ag
+ag
+aK
ab
-ad
-ad
-ad
-ay
-ad
-bb
-ad
-ad
-ad
-ad
+ag
+ag
+ag
+ab
+be
+ag
+ag
+ab
+ag
+ag
ab
-aa
-aa
-aa
"}
-(23,1,1) = {"
-aa
-aa
-aa
+(13,1,1) = {"
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ag
+ag
+ag
+ab
+bf
+ag
+bn
+bo
+ag
+ag
+ab
+"}
+(14,1,1) = {"
ab
aj
-aF
+aj
+aj
+aj
+aj
+aj
+ab
+ag
+ag
+ag
+ab
+bg
+ag
+ag
+ab
+ab
+ab
+ab
+"}
+(15,1,1) = {"
+ab
+ag
+aq
+ag
+ag
ar
-ad
-ad
-ad
+ag
ab
-ad
-ad
-ad
+ag
+ag
+ag
+ab
+bg
+ag
+bo
+ab
+ag
+ag
+ab
+"}
+(16,1,1) = {"
+ab
+ak
+ar
+ag
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ab
+ag
+ag
+bm
+ag
+ag
+ag
+ab
+"}
+(17,1,1) = {"
+ab
+al
+ag
+ax
+ax
+ag
+ar
+aM
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ab
+ab
+ab
+ab
+"}
+(18,1,1) = {"
+ab
+am
+as
+ay
+aB
+aG
+ag
+aE
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+aR
+aR
+aR
+ab
+"}
+(19,1,1) = {"
+ab
+an
+ag
+az
+az
+ag
+ag
+ab
+ag
+ag
+ag
+aW
+ag
+bk
+ag
+ag
+ag
+ag
+ab
+"}
+(20,1,1) = {"
+ab
+ao
+ap
+ar
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+aE
+ag
+ag
+ag
+ag
+ag
+bs
+ab
+"}
+(21,1,1) = {"
+ab
+ap
at
-ad
-ad
-ad
-ad
-ad
-Ow
+aA
+ag
+ar
+aq
+ab
+ag
+ag
+ag
+ab
+ag
+ag
+ag
+ag
+ag
+ag
+ab
+"}
+(22,1,1) = {"
+ab
+aj
+aj
+aj
+aj
+aj
+aj
+ab
+aR
+ag
+aR
+ab
+bh
+bl
+bp
+bp
+bq
+bt
+ab
+"}
+(23,1,1) = {"
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aU
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
ab
-aa
-aa
-aa
"}
(24,1,1) = {"
aa
aa
aa
+aa
+aa
ab
-aF
-aG
-aI
-ad
-ar
-ak
-ab
-ad
-ad
-ad
-ab
-ad
-ad
-ad
-ad
-ad
-ad
+ag
+aN
+ag
+ag
+ag
+aX
+ag
ab
aa
aa
aa
+aa
+aa
"}
(25,1,1) = {"
aa
aa
aa
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-aw
-ad
-aw
-ab
-az
-aA
-bo
-bo
-aC
-aD
-ab
+aa
+aa
+ac
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ac
+aa
+aa
aa
aa
aa
@@ -1080,25 +930,19 @@ aa
aa
aa
aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-bk
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
+aa
+aa
+ac
+aL
+ag
+ag
+aV
+ag
+aY
+bi
+ac
+aa
+aa
aa
aa
aa
@@ -1106,29 +950,23 @@ aa
(27,1,1) = {"
aa
aa
-aa
-aa
-aa
-aa
+aH
aa
aa
ab
-ad
-aK
-ad
-ad
-ad
-aO
-ad
+ag
+ag
+aS
+aS
+aS
+ag
+ag
ab
aa
aa
aa
aa
aa
-aa
-aa
-aa
"}
(28,1,1) = {"
aa
@@ -1136,129 +974,15 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aE
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-aE
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(29,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aE
-aJ
-ad
-ad
-aN
-ad
-ba
-aU
-aE
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(30,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aH
-aa
-aa
-ab
-ad
-ad
-aM
-aM
-aM
-ad
-ad
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(31,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-aL
-aE
-aE
-aE
-aE
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(32,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
+aO
+ac
+ac
+ac
+ac
+ab
+ab
aa
aa
aa
diff --git a/maps/submaps/pois_vr/debris_field/ship_sup_exploded.dmm b/maps/submaps/pois_vr/debris_field/ship_sup_exploded.dmm
index 21b9216c43a..09ce52b84c4 100644
--- a/maps/submaps/pois_vr/debris_field/ship_sup_exploded.dmm
+++ b/maps/submaps/pois_vr/debris_field/ship_sup_exploded.dmm
@@ -1,17 +1,46 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
+/area/space)
"ab" = (
/turf/simulated/shuttle/wall,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
"ac" = (
/obj/structure/shuttle/engine/propulsion{
dir = 1
},
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
"ad" = (
+/turf/template_noop,
+/area/submap/debrisfield/misc_debris)
+"ae" = (
+/turf/simulated/shuttle/wall/hard_corner,
+/area/submap/debrisfield/misc_debris)
+"af" = (
+/obj/structure/girder,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"ag" = (
+/obj/structure/closet/crate/trashcart,
+/turf/template_noop,
+/area/submap/debrisfield/misc_debris)
+"ah" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"ai" = (
+/obj/structure/lattice,
+/obj/structure/girder/displaced,
+/turf/template_noop,
+/area/submap/debrisfield/misc_debris)
+"aj" = (
+/obj/structure/girder/displaced,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"ak" = (
/obj/structure/closet/crate/secure/engineering,
/obj/item/weapon/tool/screwdriver/power,
/obj/item/weapon/tool/crowbar/power,
@@ -19,186 +48,182 @@
/obj/item/weapon/tool/crowbar/power,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"ae" = (
-/obj/structure/closet/crate/trashcart,
-/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"af" = (
-/obj/structure/lattice,
-/obj/structure/girder/displaced,
-/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"ag" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"ah" = (
-/obj/structure/lattice,
-/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"ai" = (
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"aj" = (
-/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"ak" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/material/shard/shrapnel,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
"al" = (
-/obj/structure/ghost_pod/manual/lost_drone/dogborg,
-/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"am" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"an" = (
-/obj/structure/girder/displaced,
+/area/submap/debrisfield/misc_debris)
+"am" = (
+/obj/structure/lattice,
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"ao" = (
-/obj/structure/girder/displaced,
-/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"ap" = (
+/area/submap/debrisfield/misc_debris)
+"an" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/generic,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"aq" = (
+/area/submap/debrisfield/misc_debris)
+"ao" = (
/obj/item/stack/material/steel,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
+"ap" = (
+/turf/simulated/shuttle/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"aq" = (
+/obj/structure/salvageable/bliss,
+/turf/simulated/shuttle/floor/airless,
+/area/submap/debrisfield/misc_debris)
"ar" = (
-/obj/item/inflatable/torn,
-/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"as" = (
-/obj/structure/shuttle/window,
-/obj/structure/grille,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"at" = (
-/obj/item/inflatable/door/torn,
-/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"au" = (
-/obj/structure/inflatable,
-/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"av" = (
-/obj/structure/door_assembly/door_assembly_com,
-/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"aw" = (
-/obj/structure/lattice,
-/obj/item/stack/material/steel,
-/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"ax" = (
/obj/structure/lattice,
/obj/item/stack/material/steel,
/obj/item/weapon/material/shard/shrapnel,
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"ay" = (
-/obj/item/stack/rods,
+/area/submap/debrisfield/misc_debris)
+"as" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/material/shard/shrapnel,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"at" = (
+/obj/structure/lattice,
+/obj/item/weapon/material/shard/shrapnel,
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"az" = (
-/obj/structure/girder,
-/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"aA" = (
-/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"aB" = (
-/obj/structure/girder,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"aD" = (
-/obj/structure/girder/displaced,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"aE" = (
+/area/submap/debrisfield/misc_debris)
+"au" = (
+/obj/structure/lattice,
+/obj/item/stack/material/steel,
+/turf/template_noop,
+/area/submap/debrisfield/misc_debris)
+"av" = (
+/obj/item/weapon/material/shard/shrapnel,
+/turf/template_noop,
+/area/submap/debrisfield/misc_debris)
+"aw" = (
/obj/structure/lattice,
/obj/effect/decal/cleanable/molten_item,
+/obj/item/weapon/material/shard/shrapnel,
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"aF" = (
+/area/submap/debrisfield/misc_debris)
+"ax" = (
/obj/structure/closet/crate/secure/engineering,
/obj/item/weapon/weldingtool/experimental,
/obj/item/weapon/weldingtool/electric,
/obj/item/weapon/weldingtool/electric,
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"aG" = (
-/obj/item/weapon/material/shard/shrapnel,
+/area/submap/debrisfield/misc_debris)
+"ay" = (
+/obj/item/stack/rods,
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"aH" = (
+/area/submap/debrisfield/misc_debris)
+"az" = (
+/obj/structure/girder/displaced,
+/turf/template_noop,
+/area/submap/debrisfield/misc_debris)
+"aA" = (
+/obj/structure/lattice,
+/obj/effect/decal/cleanable/molten_item,
+/turf/template_noop,
+/area/submap/debrisfield/misc_debris)
+"aB" = (
/obj/structure/lattice,
/obj/structure/closet/crate/secure/engineering,
/obj/fiftyspawner/plasteel,
/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"aJ" = (
+/area/submap/debrisfield/misc_debris)
+"aC" = (
+/turf/simulated/shuttle/floor/white/airless,
+/area/submap/debrisfield/misc_debris)
+"aD" = (
+/obj/structure/girder/displaced,
+/turf/simulated/shuttle/floor/white/airless,
+/area/submap/debrisfield/misc_debris)
+"aE" = (
+/obj/structure/ghost_pod/manual/lost_drone/dogborg,
+/turf/simulated/shuttle/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"aF" = (
/obj/structure/grille,
/obj/item/weapon/material/shard,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"aK" = (
+/area/submap/debrisfield/misc_debris)
+"aG" = (
/obj/item/weapon/material/shard,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/shuttle/plating/airless,
-/area/tether_away/debrisfield/explored)
-"aL" = (
+/area/submap/debrisfield/misc_debris)
+"aH" = (
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"aI" = (
+/obj/item/inflatable/torn,
+/turf/simulated/shuttle/floor/white/airless,
+/area/submap/debrisfield/misc_debris)
+"aJ" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/shuttle/plating/airless,
+/area/submap/debrisfield/misc_debris)
+"aK" = (
/obj/item/inflatable/torn,
/obj/effect/decal/remains,
/obj/item/clothing/under/rank/cargotech,
/obj/item/clothing/head/soft,
/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
+"aL" = (
+/obj/item/inflatable/door/torn,
+/turf/simulated/shuttle/floor/white/airless,
+/area/submap/debrisfield/misc_debris)
"aM" = (
+/obj/structure/inflatable,
+/turf/simulated/shuttle/floor/white/airless,
+/area/submap/debrisfield/misc_debris)
+"aN" = (
+/obj/structure/girder,
+/turf/simulated/shuttle/floor/white/airless,
+/area/submap/debrisfield/misc_debris)
+"aO" = (
/obj/structure/closet/secure_closet/cargotech{
name = "cargotech locker";
req_access = list()
},
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"aN" = (
+/area/submap/debrisfield/misc_debris)
+"aP" = (
/obj/structure/closet/emcloset,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"aO" = (
+/area/submap/debrisfield/misc_debris)
+"aQ" = (
+/obj/structure/salvageable/server,
+/turf/simulated/shuttle/floor/white/airless,
+/area/submap/debrisfield/misc_debris)
+"aR" = (
/obj/item/inflatable/door/torn,
/obj/effect/decal/remains,
/obj/item/clothing/under/rank/cargotech,
/obj/item/clothing/head/soft,
/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"aP" = (
+/area/submap/debrisfield/misc_debris)
+"aS" = (
+/obj/structure/door_assembly/door_assembly_com,
+/turf/simulated/shuttle/floor/white/airless,
+/area/submap/debrisfield/misc_debris)
+"aT" = (
/obj/machinery/computer/shuttle{
dir = 4
},
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"aQ" = (
+/area/submap/debrisfield/misc_debris)
+"aU" = (
/obj/structure/bed/chair{
dir = 8
},
/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"aR" = (
+/area/submap/debrisfield/misc_debris)
+"aV" = (
/obj/structure/closet/secure_closet/quartermaster{
name = "quartermaster locker";
req_access = list()
@@ -206,519 +231,398 @@
/obj/item/clothing/under/mbill,
/obj/item/clothing/head/soft/mbill,
/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"aS" = (
+/area/submap/debrisfield/misc_debris)
+"aW" = (
/obj/structure/closet/crate/secure/bin,
/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"aT" = (
+/area/submap/debrisfield/misc_debris)
+"aX" = (
/obj/structure/closet/emcloset,
/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"aU" = (
+/area/submap/debrisfield/misc_debris)
+"aY" = (
/obj/structure/bed/chair{
dir = 4
},
/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"aV" = (
+/area/submap/debrisfield/misc_debris)
+"aZ" = (
/obj/machinery/computer/shuttle{
dir = 8
},
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"aW" = (
+/area/submap/debrisfield/misc_debris)
+"ba" = (
+/obj/structure/salvageable/data,
+/turf/simulated/shuttle/floor/airless,
+/area/submap/debrisfield/misc_debris)
+"bb" = (
/obj/effect/decal/remains,
/obj/item/clothing/under/mbill,
/obj/item/clothing/head/soft/mbill,
/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"aX" = (
+/area/submap/debrisfield/misc_debris)
+"bc" = (
/obj/structure/bed/chair,
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"aY" = (
+/area/submap/debrisfield/misc_debris)
+"bd" = (
/obj/structure/bed/chair/comfy/teal,
/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"aZ" = (
+/area/submap/debrisfield/misc_debris)
+"be" = (
/obj/machinery/computer/shuttle{
dir = 1
},
/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"bb" = (
-/obj/structure/lattice,
-/obj/item/weapon/material/shard/shrapnel,
-/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"bc" = (
-/obj/structure/lattice,
-/obj/effect/decal/cleanable/molten_item,
-/obj/item/weapon/material/shard/shrapnel,
-/turf/template_noop,
-/area/tether_away/debrisfield/explored)
-"bd" = (
-/turf/simulated/shuttle/wall/hard_corner,
-/area/tether_away/debrisfield/explored)
-"jq" = (
-/obj/structure/salvageable/data,
-/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
-"KY" = (
-/obj/structure/salvageable/server,
-/turf/simulated/shuttle/floor/white/airless,
-/area/tether_away/debrisfield/explored)
-"Mm" = (
-/obj/structure/salvageable/bliss,
-/turf/simulated/shuttle/floor/airless,
-/area/tether_away/debrisfield/explored)
+/area/submap/debrisfield/misc_debris)
(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
+ab
+ab
+ah
+as
+ad
+ad
+ad
+am
+at
+am
+am
+af
+aF
+aJ
+ab
+ab
+aJ
+aJ
+ab
aa
aa
aa
aa
"}
(2,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ag
+ac
+ae
+ah
ak
-aa
-aa
-aa
-ah
-bb
-ah
-ah
-aB
-aJ
-as
+al
+at
+ad
+ad
+am
+am
+am
+am
+am
+an
+aG
+ap
+aP
+ab
+aT
+aT
ab
ab
-as
-as
-ab
-aa
-aa
-aa
aa
aa
aa
"}
(3,1,1) = {"
-aa
-ac
-bd
-ag
ad
+af
+ah
+al
am
-bb
-aa
-aa
-ah
-ah
-ah
-ah
-ah
-ap
-aK
-aA
-aN
+au
+aw
+ad
+ad
+ad
+ad
+aB
+am
+am
+aH
+aC
+aQ
ab
-aP
-aP
+aU
+aU
+ba
ab
ab
aa
aa
-aa
-aa
-aa
"}
(4,1,1) = {"
-aa
-aa
-aB
-ag
+ad
+ad
+ai
+ad
+ad
+ad
+ad
+ad
+ad
+av
+ad
+ay
am
ah
-aw
-bc
-aa
-aa
-aa
-aa
-aH
-ah
-ah
-ai
-aj
-KY
-ab
-aQ
-aQ
-jq
+af
ab
ab
-aa
-aa
-aa
-aa
+ab
+aC
+aC
+aC
+ba
+ab
+aJ
+ab
"}
(5,1,1) = {"
-aa
-aa
-aa
-af
-aa
-aa
-aa
-aa
-aa
-aa
-aG
-aa
-ay
+ad
+ac
+ae
+al
+am
+ad
+au
+ad
+ad
+ad
+ad
+at
+am
ah
-ag
-aB
+ah
+aI
+aM
ab
-ab
-ab
-aj
-aj
-aj
-jq
-ab
-as
-ab
-aa
-aa
+aV
+aC
+aC
+aC
+bc
+be
+aJ
"}
(6,1,1) = {"
-aa
-aa
-ac
-bd
-am
-ah
-aa
-aw
-aa
-aa
-aa
-aa
-bb
-ah
+ad
ag
-ag
-ar
-au
ab
-aR
-aj
-aj
-aj
-aX
-aZ
-as
-aa
-aa
+al
+ar
+am
+am
+ad
+ad
+az
+am
+am
+al
+ah
+aI
+aK
+aM
+ab
+aC
+aC
+aC
+aC
+aC
+be
+aJ
"}
(7,1,1) = {"
-aa
-aa
-ae
-ab
+ad
+ad
+aj
+am
+ad
+ad
+ad
+ad
+ad
+ad
+am
am
-ax
ah
-ah
-aa
-aa
an
-ah
-ah
-am
-ag
-ar
+aC
aL
-au
-ab
-aj
-aj
-aj
-aj
-aj
-aZ
-as
-aa
-aa
+aR
+aS
+aC
+aC
+aC
+bb
+bd
+be
+aJ
"}
(8,1,1) = {"
-aa
-aa
-aa
-aD
-ah
-aa
-aa
-aa
-aa
-aa
-aa
+ad
+ad
+ab
+am
+am
+ad
+ad
+ad
+ad
+ad
+am
ah
ah
-ag
-ap
-aj
-at
-aO
-av
-aj
-aj
-aj
+aC
+aI
+aM
+aM
+ab
aW
-aY
-aZ
-as
-aa
-aa
+aC
+aC
+aC
+aC
+be
+aJ
"}
(9,1,1) = {"
-aa
-aa
-aa
+ad
+ac
ab
+an
+am
+av
+ax
+ad
+ad
+av
+aA
+an
ah
-ah
-aa
-aa
-aa
-aa
-aa
-ah
-ag
-ag
-aj
-ar
-au
-au
+aD
+aC
+aI
+aM
ab
-aS
-aj
-aj
-aj
-aj
-aZ
-as
-aa
-aa
+aX
+aC
+aC
+aC
+bc
+be
+aJ
"}
(10,1,1) = {"
-aa
-aa
+ad
ac
ab
-ap
-ah
-aG
-aF
-aa
-aa
-aG
-aE
-ap
-ag
ao
-aj
-ar
-au
+ah
+at
+ad
+ad
+ad
+av
+ah
+ao
+ah
+aD
+aC
+aN
+ab
+ab
+aC
+aC
+aC
+ba
+ab
+aJ
ab
-aT
-aj
-aj
-aj
-aX
-aZ
-as
-aa
-aa
"}
(11,1,1) = {"
-aa
-aa
+ad
ac
ab
-aq
-ag
-bb
-aa
-aa
-aa
-aG
-ag
-aq
-ag
-ao
+ap
aj
-az
+am
+ad
+ay
+ad
+ah
+ah
+ah
ab
+aC
+aC
+aC
+aC
ab
-aj
-aj
-aj
-jq
+aY
+aY
+ba
ab
-as
ab
aa
aa
"}
(12,1,1) = {"
-aa
-aa
+ad
ac
ab
-aA
-aD
+aq
+ap
ah
-aa
-ay
-aa
-ag
-ag
-ag
+ah
+am
+am
+ah
+ah
+al
ab
-aj
-aj
-aj
-aj
+aE
+ap
+aO
+aO
ab
-aU
-aU
-jq
+aZ
+aZ
ab
ab
aa
aa
aa
-aa
"}
(13,1,1) = {"
-aa
-aa
-ac
+ad
ab
-Mm
-aA
-ag
-ag
+ae
+af
+af
+aj
ah
ah
-ag
-ag
-am
-ab
-al
-aA
-aM
-aM
-ab
-aV
-aV
+af
+af
+af
ab
ab
-aa
-aa
-aa
-aa
-aa
-"}
-(14,1,1) = {"
-aa
-aa
-ab
-bd
-aB
-aB
-aD
-ag
-ag
-aB
-aB
-aB
-ab
-ab
-ab
-as
-as
-ab
-ab
-as
-as
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(15,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+aJ
+aJ
+ab
+ab
+aJ
+aJ
+ab
aa
aa
aa
diff --git a/maps/submaps/pois_vr/debris_field/tinycarrier.dmm b/maps/submaps/pois_vr/debris_field/tinycarrier.dmm
new file mode 100644
index 00000000000..5be1f1456bb
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/tinycarrier.dmm
@@ -0,0 +1,1508 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/space,
+/area/space)
+"ab" = (
+/obj/machinery/porta_turret/stationary/CIWS{
+ dir = 8;
+ icon_state = "destroyed_target_prism_industrial";
+ stat = 1
+ },
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ac" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ad" = (
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/crew)
+"ae" = (
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "tinycarrier_bridge"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/crew)
+"af" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/monofloor,
+/area/submap/debrisfield/tinyshuttle/crew)
+"ag" = (
+/obj/structure/lattice,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ah" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 8
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/engine)
+"ai" = (
+/obj/machinery/airlock_sensor/airlock_exterior/shuttle{
+ dir = 9;
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aj" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"ak" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"al" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_external/public,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/monofloor{
+ dir = 4
+ },
+/area/submap/debrisfield/tinyshuttle/crew)
+"am" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ id_tag = "temp"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "debris_carrier_docker";
+ pixel_x = 24;
+ pixel_y = -6
+ },
+/obj/effect/shuttle_landmark/shuttle_initializer/tinycarrier,
+/obj/machinery/airlock_sensor{
+ pixel_x = 26;
+ pixel_y = 6
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/overmap/visitable/ship/landable/tinycarrier,
+/turf/simulated/floor/tiled/monotile,
+/area/submap/debrisfield/tinyshuttle/crew)
+"an" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/crew)
+"ao" = (
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ap" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "tinycarrier_bridge"
+ },
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aq" = (
+/obj/structure/girder,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ar" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/door/window{
+ dir = 2;
+ name = "Airlock Canister Access"
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"as" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"at" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/airlock_sensor/airlock_interior{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"au" = (
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular/open{
+ id = "tinycarrier_bridge"
+ },
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"av" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 6
+ },
+/turf/simulated/floor/bluegrid/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aw" = (
+/obj/machinery/computer/ship/engines,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ax" = (
+/obj/machinery/computer/shuttle_control/explore/tinycarrier,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled/airless{
+ broken = 1
+ },
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ay" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 24;
+ req_one_access = list()
+ },
+/obj/effect/decal/cleanable/generic,
+/obj/machinery/atmospherics/unary/vent_scrubber,
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/airless{
+ broken = 2
+ },
+/area/submap/debrisfield/tinyshuttle/bridge)
+"az" = (
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aA" = (
+/obj/item/modular_computer/laptop/preset/custom_loadout/rugged,
+/obj/structure/table/steel,
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aB" = (
+/obj/item/clothing/head/service,
+/obj/item/clothing/head/service,
+/obj/item/clothing/under/solgov/utility/fleet/combat,
+/obj/item/clothing/under/solgov/utility/fleet/combat,
+/obj/item/clothing/suit/storage/solgov/service/fleet,
+/obj/item/clothing/suit/storage/solgov/service/fleet,
+/obj/structure/closet/wardrobe/black{
+ starts_with = list()
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
+ },
+/obj/item/clothing/shoes/boots/duty,
+/obj/item/clothing/shoes/boots/duty,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aC" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/structure/handrail,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aF" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aG" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aH" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/obj/machinery/computer/ship/helm{
+ dir = 4;
+ req_one_access = list()
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aI" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 1;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aJ" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aK" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aL" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aM" = (
+/obj/item/trash/coffee,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aN" = (
+/obj/structure/prop{
+ desc = "A man-sized pod for entering suspended animation. This one is room temperature.";
+ dir = 8;
+ icon = 'icons/obj/Cryogenic2_vr.dmi';
+ icon_state = "cryopod_0";
+ name = "cryogenic freezer"
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aO" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aP" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ icon_state = "intact"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aQ" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aR" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aT" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6;
+ icon_state = "intact-fuel"
+ },
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"aV" = (
+/obj/machinery/porta_turret/stationary/CIWS{
+ dir = 10;
+ icon_state = "destroyed_target_prism_industrial";
+ stat = 1
+ },
+/obj/structure/lattice,
+/obj/structure/cable/green,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aW" = (
+/obj/machinery/computer/ship/sensors{
+ icon_state = "computer";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/effect/floor_decal/corner/blue/full,
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aX" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "tinycarrier_bridge";
+ name = "Bridge Blast Doors";
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "tinycarrier_hangar";
+ name = "Hangar Blast Doors";
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "tinycarrier_sensors";
+ name = "Sensor Shroud";
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aY" = (
+/obj/machinery/turretid/lethal{
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access = list()
+ },
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/corner/blue{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aZ" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 22;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 4;
+ icon_state = "corner_white_full"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ba" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bc" = (
+/obj/machinery/sleeper{
+ controls_inside = 1;
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/obj/structure/closet/secure_closet/guncabinet/sidearm{
+ anchored = 1;
+ starts_with = list()
+ },
+/obj/item/weapon/gun/projectile/p92x/large,
+/obj/item/weapon/gun/projectile/p92x/large,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/obj/effect/floor_decal/corner/brown/full,
+/obj/item/ammo_magazine/m9mm/large,
+/obj/item/ammo_magazine/m9mm/large,
+/obj/item/ammo_magazine/m9mm/large,
+/obj/item/ammo_magazine/m9mm/large,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"be" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bf" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bg" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 8;
+ icon_state = "map-fuel"
+ },
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bi" = (
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bj" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bk" = (
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bl" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4;
+ icon_state = "map"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bn" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/machinery/shipsensors{
+ dir = 8;
+ use_power = 0
+ },
+/turf/simulated/floor/greengrid/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"bo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "9-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ id = "tinycarrier_sensors"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"bq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/item/clothing/shoes/magboots,
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"br" = (
+/obj/machinery/mecha_part_fabricator{
+ req_access = list()
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bs" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ icon_state = "extinguisher_closed";
+ pixel_y = 32
+ },
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4
+ },
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/tool/screwdriver{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bt" = (
+/obj/structure/cable/green{
+ icon_state = "5-6"
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ icon_state = "extinguisher_closed";
+ pixel_x = -30
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/floor_decal/corner/orange/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bu" = (
+/obj/machinery/power/smes/buildable/outpost_substation{
+ charge = 3e+006;
+ input_attempt = 1;
+ input_level = 200000
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bw" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4;
+ icon_state = "map"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bx" = (
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular/open{
+ id = "tinycarrier_bridge"
+ },
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"by" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bz" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9;
+ icon_state = "intact"
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 26;
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bA" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bB" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/toolbox/mechanical{
+ starts_with = list(/obj/item/weapon/tool/screwdriver,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar,/obj/item/device/analyzer,/obj/item/weapon/tool/wirecutters)
+ },
+/obj/item/device/t_scanner,
+/obj/effect/floor_decal/corner/orange{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bC" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/orange/full{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bD" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 8
+ },
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bF" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "tinycarrier_bridge"
+ },
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"bG" = (
+/obj/item/clothing/shoes/magboots,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bH" = (
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bI" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bJ" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bK" = (
+/obj/machinery/atmospherics/portables_connector/fuel{
+ icon_state = "map_connector-fuel";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/liquid_fuel,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bL" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bM" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10;
+ icon_state = "intact-fuel"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/obj/effect/decal/cleanable/liquid_fuel,
+/obj/item/device/multitool,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bO" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 24;
+ req_one_access = list()
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bP" = (
+/obj/structure/fans/hardlight,
+/obj/machinery/door/blast/regular{
+ id = "tinycarrier_hangar"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bQ" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bR" = (
+/obj/machinery/atmospherics/portables_connector/fuel{
+ icon_state = "map_connector-fuel";
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/empty/phoron{
+ destroyed = 1;
+ health = 0;
+ icon_state = "orangeps-1"
+ },
+/obj/effect/decal/cleanable/liquid_fuel,
+/obj/effect/floor_decal/corner/orange/full,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/decal/cleanable/liquid_fuel,
+/obj/effect/floor_decal/corner/orange{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bT" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bU" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/vent{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bV" = (
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bW" = (
+/obj/mecha/combat/fighter/baron/loaded/busted{
+ dir = 8;
+ dir_in = 8
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bX" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5;
+ icon_state = "intact-fuel"
+ },
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bZ" = (
+/obj/machinery/mech_recharger,
+/obj/machinery/light,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"ca" = (
+/obj/effect/decal/cleanable/blood/gibs/robot,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cb" = (
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cc" = (
+/obj/structure/lattice,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cd" = (
+/obj/structure/loot_pile/surface/drone{
+ density = 1;
+ dir = 8;
+ icon = 'icons/mob/animal_vr64x64.dmi';
+ icon_state = "drone";
+ pixel_x = -16;
+ pixel_y = -16
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"ce" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8;
+ icon_state = "intact-fuel"
+ },
+/obj/machinery/meter,
+/obj/machinery/light_switch{
+ dir = 1;
+ on = 0;
+ pixel_x = -10;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/corner/orange/full{
+ dir = 4
+ },
+/obj/structure/fuel_port/empty_tank{
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/submap/debrisfield/tinyshuttle/engine)
+"cf" = (
+/obj/item/weapon/material/shard/titaniumglass,
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cg" = (
+/obj/structure/girder,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"ch" = (
+/obj/machinery/atmospherics/binary/pump/fuel{
+ icon_state = "map_off-fuel";
+ dir = 4
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/item/weapon/weldingtool/electric,
+/obj/effect/floor_decal/corner/orange{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/submap/debrisfield/tinyshuttle/engine)
+"ci" = (
+/obj/structure/lattice,
+/mob/living/simple_mob/mechanical/combat_drone/lesser,
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cj" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"ck" = (
+/obj/structure/prop{
+ desc = "A man-sized pod for entering suspended animation. This one is room temperature.";
+ dir = 8;
+ icon = 'icons/obj/Cryogenic2_vr.dmi';
+ icon_state = "cryopod_0";
+ name = "cryogenic freezer"
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"cl" = (
+/obj/effect/decal/mecha_wreckage/baron,
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cm" = (
+/obj/structure/lattice,
+/obj/item/weapon/material/shard/titaniumglass,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+
+(1,1,1) = {"
+aa
+aa
+ao
+bx
+au
+au
+ao
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+ab
+ac
+ap
+av
+aH
+aW
+bF
+ac
+aV
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+ao
+aw
+aI
+aX
+ao
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aq
+ax
+aJ
+aY
+ao
+bp
+ao
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+ag
+aq
+ay
+aK
+aZ
+ao
+bn
+ao
+bi
+bP
+bP
+bi
+bi
+aa
+"}
+(6,1,1) = {"
+ad
+ad
+ad
+ad
+aO
+ad
+bi
+bi
+bi
+bG
+bH
+bH
+bH
+bi
+bi
+"}
+(7,1,1) = {"
+ad
+aj
+as
+aC
+aP
+bd
+bi
+br
+bA
+bW
+bH
+bX
+bH
+bZ
+bi
+"}
+(8,1,1) = {"
+ae
+ak
+at
+aD
+aQ
+be
+bi
+bs
+by
+bH
+bH
+bH
+bH
+ca
+cm
+"}
+(9,1,1) = {"
+ad
+al
+ad
+aE
+aR
+bf
+bj
+bq
+bz
+bI
+bO
+bV
+bH
+cc
+cl
+"}
+(10,1,1) = {"
+af
+am
+az
+aF
+aS
+bg
+bk
+bk
+bk
+bk
+bk
+bk
+cc
+cb
+cb
+"}
+(11,1,1) = {"
+ai
+an
+ad
+aG
+aT
+bl
+bk
+bt
+bB
+bK
+bR
+bk
+cc
+cf
+cb
+"}
+(12,1,1) = {"
+ad
+ar
+aA
+aL
+ba
+bm
+bo
+bw
+bD
+bN
+bS
+bk
+cc
+ci
+cf
+"}
+(13,1,1) = {"
+ad
+ad
+aB
+aM
+bb
+cj
+bk
+bC
+bJ
+bL
+ch
+bk
+bH
+cc
+cb
+"}
+(14,1,1) = {"
+aa
+ad
+ad
+aN
+bc
+ck
+bk
+bu
+bM
+bQ
+ce
+bi
+cd
+bH
+cc
+"}
+(15,1,1) = {"
+aa
+aa
+ad
+ad
+aU
+bh
+bh
+bv
+bE
+bv
+bT
+bh
+bY
+bi
+cg
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+ad
+ah
+ah
+ah
+bk
+bU
+bk
+ah
+ah
+ah
+bi
+aa
+"}
diff --git a/maps/submaps/space_submaps/debrisfield/debrisfield.dm b/maps/submaps/space_submaps/debrisfield/debrisfield.dm
index f6f628e219c..6520107209f 100644
--- a/maps/submaps/space_submaps/debrisfield/debrisfield.dm
+++ b/maps/submaps/space_submaps/debrisfield/debrisfield.dm
@@ -1,5 +1,5 @@
// This causes PoI maps to get 'checked' and compiled, when undergoing a unit test.
-// This is so Travis can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
+// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
// When adding a new PoI, please add it to this list.
#if MAP_TEST
// #define "your_map_here.dmm"
diff --git a/maps/submaps/space_submaps/space.dm b/maps/submaps/space_submaps/space.dm
index 0bd12a3c718..374f046f51d 100644
--- a/maps/submaps/space_submaps/space.dm
+++ b/maps/submaps/space_submaps/space.dm
@@ -1,5 +1,5 @@
// This causes PoI maps to get 'checked' and compiled, when undergoing a unit test.
-// This is so Travis can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
+// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
// When adding a new PoI, please add it to this list.
#if MAP_TEST
// #define "your_map_here.dmm"
diff --git a/maps/submaps/surface_submaps/mountains/mountains.dm b/maps/submaps/surface_submaps/mountains/mountains.dm
index 83447b714c2..a7ac3cc3bb4 100644
--- a/maps/submaps/surface_submaps/mountains/mountains.dm
+++ b/maps/submaps/surface_submaps/mountains/mountains.dm
@@ -1,5 +1,5 @@
// This causes PoI maps to get 'checked' and compiled, when undergoing a unit test.
-// This is so Travis can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
+// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
// When adding a new PoI, please add it to this list.
#if MAP_TEST
#include "deadBeacon.dmm"
diff --git a/maps/submaps/surface_submaps/plains/Thiefc_vr.dmm b/maps/submaps/surface_submaps/plains/Thiefc_vr.dmm
index aab0b0eb080..412b6c8739b 100644
--- a/maps/submaps/surface_submaps/plains/Thiefc_vr.dmm
+++ b/maps/submaps/surface_submaps/plains/Thiefc_vr.dmm
@@ -75,7 +75,6 @@
/obj/random/firstaid,
/obj/random/firstaid,
/obj/random/firstaid,
-/obj/random/firstaid,
/turf/simulated/floor/outdoors/dirt{
outdoors = 0
},
@@ -103,7 +102,6 @@
/obj/vehicle/train/trolley,
/obj/random/multiple/voidsuit,
/obj/random/multiple/voidsuit,
-/obj/random/multiple/voidsuit,
/turf/simulated/floor/outdoors/dirt{
outdoors = 0
},
@@ -121,15 +119,13 @@
/area/submap/Thiefc)
"p" = (
/obj/structure/closet/crate,
-/obj/item/weapon/storage/box/shotgunammo,
/obj/item/weapon/storage/box/practiceshells,
-/obj/item/weapon/grenade/spawnergrenade/manhacks/station,
/turf/simulated/floor/outdoors/dirt{
outdoors = 0
},
/area/submap/Thiefc)
-"u" = (
-/mob/living/simple_mob/humanoid/merc/ranged/virgo,
+"B" = (
+/mob/living/simple_mob/animal/giant_spider/phorogenic,
/turf/simulated/floor/outdoors/dirt{
outdoors = 0
},
@@ -322,7 +318,7 @@ a
c
c
c
-u
+h
h
h
h
@@ -346,7 +342,7 @@ c
f
h
h
-h
+B
h
h
c
@@ -387,12 +383,12 @@ a
a
c
e
-h
-u
+B
h
h
h
h
+B
h
h
c
@@ -414,7 +410,7 @@ i
h
h
h
-u
+h
c
c
c
diff --git a/maps/submaps/surface_submaps/plains/VRDen.dmm b/maps/submaps/surface_submaps/plains/VRDen.dmm
new file mode 100644
index 00000000000..d516c66413f
--- /dev/null
+++ b/maps/submaps/surface_submaps/plains/VRDen.dmm
@@ -0,0 +1,72 @@
+"a" = (/turf/template_noop,/area/template_noop)
+"b" = (/turf/template_noop,/area/submap/VRDen)
+"c" = (/turf/simulated/wall,/area/submap/VRDen)
+"d" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"e" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; operating = 0; pixel_x = 0; pixel_y = 24},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/submap/VRDen)
+"f" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"g" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/submap/VRDen)
+"h" = (/obj/effect/decal/cleanable/dirt,/obj/fiftyspawner/phoron,/turf/simulated/floor,/area/submap/VRDen)
+"i" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/integrated_circuit/memory,/obj/item/weapon/paper{info = "To: Whoever reads it\[br]From: Simulant\[br]Went away to grab some spare parts, won't return for couple weeks. Can't support larger scale sims without machines I lost yesterday. Please don't touch my stuff, while I'm gone."; name = "note"},/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"j" = (/turf/simulated/floor,/area/submap/VRDen)
+"k" = (/obj/effect/decal/cleanable/blood/oil,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"l" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen)
+"m" = (/obj/machinery/power/smes/buildable/point_of_interest,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen)
+"n" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/greengrid,/area/submap/VRDen)
+"o" = (/obj/machinery/vr_sleeper,/turf/simulated/floor/greengrid,/area/submap/VRDen)
+"p" = (/obj/structure/cryofeed,/turf/simulated/floor/greengrid,/area/submap/VRDen)
+"q" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair{dir = 4},/obj/machinery/light/small{brightness_color = "#DA0205"; brightness_power = 1; brightness_range = 5; dir = 8},/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"r" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/paper{info = "your maps suck"; name = "dissatisfied letter"},/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen)
+"s" = (/obj/effect/decal/cleanable/dirt,/obj/item/integrated_circuit/logic/binary,/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"t" = (/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"u" = (/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen)
+"v" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"w" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/greengrid,/area/submap/VRDen)
+"x" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen)
+"y" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/broken_device/random,/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"z" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"A" = (/turf/simulated/floor/greengrid,/area/submap/VRDen)
+"B" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/greengrid,/area/submap/VRDen)
+"C" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/submap/VRDen)
+"D" = (/obj/effect/decal/cleanable/dirt,/obj/item/frame,/obj/item/integrated_circuit/logic/unary/not,/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"E" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/telecomms/server{name = "Server"},/obj/item/device/gps/internal/poi,/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"F" = (/obj/item/integrated_circuit/logic/binary,/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"G" = (/obj/machinery/light/small/flicker,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen)
+"H" = (/obj/machinery/telecomms/processor,/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"I" = (/obj/effect/decal/cleanable/blood/oil/streak,/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"J" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"K" = (/obj/effect/decal/remains/posi,/obj/item/weapon/paper{info = "pain sim on your hardware is top-notch, 10/10, would be burned alive again"; name = "satisfied letter"},/obj/machinery/light/small,/turf/simulated/floor,/area/submap/VRDen)
+"L" = (/obj/structure/closet/toolcloset,/turf/simulated/floor,/area/submap/VRDen)
+"M" = (/obj/item/integrated_circuit/smart/basic_pathfinder,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen)
+"N" = (/obj/structure/girder/displaced,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen)
+"O" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor,/area/submap/VRDen)
+"P" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/tiled/steel,/area/submap/VRDen)
+"Q" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen)
+"R" = (/obj/structure/loot_pile/maint/junk,/turf/template_noop,/area/submap/VRDen)
+"S" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/submap/VRDen)
+"T" = (/obj/structure/toilet{dir = 8},/obj/item/device/integrated_electronics/debugger,/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor,/area/submap/VRDen)
+"U" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen)
+"V" = (/obj/effect/decal/remains/robot,/turf/template_noop,/area/submap/VRDen)
+"W" = (/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/template_noop,/area/submap/VRDen)
+
+(1,1,1) = {"
+aaaaaaaaaaaaaaaaaaaa
+abbbbbbbbbbbbbbbbbba
+abbbbbbbbbbbbbbbbbba
+abbbbbccccccccbbbbba
+abbbcccdefgcccccbbba
+abbbchijklmcnopcbbba
+abbbcqrstuvcwopcbbba
+abbbcxyzutuzAopcbbba
+abbbczxtuxttBopcbbba
+abbbcCuDuuEcAopcbbba
+abbbcjFtGuHcAopcbbba
+abbbcIcccJccwopcbbba
+abbbcKcLttMNBopcbbba
+abbbcccOPQccccccbbba
+abbbbRccjCSTccbbbbba
+abbbbbbccUcccbbVbbba
+abbbbbbbWbWbbbbbbbba
+abbbbbbbbbbbbbbbbbba
+abbbbbbbbbbbbbbbbbba
+aaaaaaaaaaaaaaaaaaaa
+"}
diff --git a/maps/submaps/surface_submaps/plains/lonehome_vr.dmm b/maps/submaps/surface_submaps/plains/lonehome_vr.dmm
new file mode 100644
index 00000000000..673b4e1d5c7
--- /dev/null
+++ b/maps/submaps/surface_submaps/plains/lonehome_vr.dmm
@@ -0,0 +1,1590 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/template_noop,
+/area/submap/lonehome)
+"ab" = (
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/lonehome)
+"ac" = (
+/obj/structure/flora/tree/sif,
+/turf/template_noop,
+/area/submap/lonehome)
+"ad" = (
+/turf/simulated/wall/wood,
+/area/submap/lonehome)
+"ae" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"af" = (
+/obj/structure/loot_pile/maint/trash,
+/turf/template_noop,
+/area/submap/lonehome)
+"ag" = (
+/obj/structure/girder,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"ah" = (
+/obj/machinery/button/windowtint{
+ id = "h_living"
+ },
+/turf/simulated/wall/wood,
+/area/submap/lonehome)
+"ai" = (
+/obj/structure/coatrack,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"aj" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood/broken,
+/area/submap/lonehome)
+"ak" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"al" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"am" = (
+/obj/machinery/appliance/cooker/oven,
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"an" = (
+/obj/structure/table/marble,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/microwave,
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"ao" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_alc/full,
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"ap" = (
+/obj/structure/table/bench/marble,
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "h_living"
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"aq" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"ar" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"as" = (
+/turf/simulated/floor/wood/broken,
+/area/submap/lonehome)
+"at" = (
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"au" = (
+/obj/item/device/tape,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"av" = (
+/obj/item/weapon/extinguisher{
+ pixel_x = 8;
+ pixel_y = 1
+ },
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/medical/lite,
+/obj/random/medical/lite,
+/obj/structure/mopbucket{
+ pixel_x = -8;
+ pixel_y = -4
+ },
+/obj/item/weapon/mop,
+/obj/item/device/multitool,
+/obj/item/device/flashlight{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/random/unidentified_medicine,
+/obj/random/unidentified_medicine,
+/obj/random/unidentified_medicine,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled,
+/area/submap/lonehome)
+"aw" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"ax" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"ay" = (
+/obj/item/clothing/suit/storage/apron/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"az" = (
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 8
+ },
+/obj/item/weapon/storage/box/glasses/square{
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/glass_extras/sticks{
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/glass_extras/straws{
+ pixel_y = 7
+ },
+/obj/item/weapon/packageWrap,
+/obj/structure/curtain/open/bed,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/obj/item/weapon/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"aA" = (
+/obj/machinery/button/windowtint{
+ id = "h_kitchen"
+ },
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/weapon/storage/box/condimentbottles,
+/obj/item/weapon/reagent_containers/food/condiment/sugar,
+/obj/structure/curtain/open/bed,
+/obj/structure/table/rack,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "h_kitchen"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"aB" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/template_noop,
+/area/submap/lonehome)
+"aC" = (
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "h_living"
+ },
+/obj/structure/bed/chair/sofa/black/corner{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"aD" = (
+/obj/structure/bed/chair/sofa/black,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"aE" = (
+/obj/structure/bed/chair/sofa/black/left,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"aF" = (
+/obj/random/trash,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"aG" = (
+/obj/structure/table/marble,
+/obj/item/weapon/material/knife/butch,
+/obj/item/weapon/material/kitchen/rollingpin,
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"aH" = (
+/obj/structure/table/marble,
+/obj/item/weapon/material/kitchen/utensil/spoon,
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"aI" = (
+/obj/structure/table/marble,
+/obj/item/weapon/material/sharpeningkit,
+/obj/item/weapon/reagent_containers/dropper,
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"aJ" = (
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"aK" = (
+/obj/machinery/button/windowtint{
+ id = "h_kitchen"
+ },
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "h_kitchen"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/lonehome)
+"aL" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/lonehome)
+"aM" = (
+/obj/item/weapon/material/shard,
+/turf/template_noop,
+/area/submap/lonehome)
+"aN" = (
+/obj/item/weapon/material/shard,
+/obj/item/weapon/material/shard{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/lonehome)
+"aO" = (
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "h_living"
+ },
+/obj/structure/bed/chair/sofa/black{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"aP" = (
+/obj/structure/table/bench/glass,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/submap/lonehome)
+"aQ" = (
+/turf/simulated/floor/carpet/sblucarpet,
+/area/submap/lonehome)
+"aR" = (
+/obj/random/junk,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/submap/lonehome)
+"aS" = (
+/obj/random/junk,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"aT" = (
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"aU" = (
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"aV" = (
+/obj/structure/bed/chair/wood,
+/obj/machinery/button/windowtint{
+ id = "h_kitchen"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "h_kitchen"
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"aW" = (
+/obj/item/weapon/material/shard{
+ pixel_x = 6
+ },
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/lonehome)
+"aX" = (
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/lonehome)
+"aY" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/lonehome)
+"aZ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/submap/lonehome)
+"ba" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bb" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bc" = (
+/obj/item/stack/cable_coil,
+/turf/simulated/floor/wood/broken,
+/area/submap/lonehome)
+"bd" = (
+/obj/item/trash/plate,
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,
+/obj/structure/table/sifwooden_reinforced,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"be" = (
+/obj/machinery/button/windowtint{
+ id = "h_kitchen"
+ },
+/obj/item/weapon/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/obj/structure/table/sifwooden_reinforced,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "h_kitchen"
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bf" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/floor/outdoors/dirt,
+/area/submap/lonehome)
+"bg" = (
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "h_living"
+ },
+/obj/structure/bed/chair/sofa/black/corner{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bh" = (
+/obj/structure/bed/chair/sofa/black{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bi" = (
+/obj/structure/bed/chair/sofa/black/right{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bj" = (
+/obj/item/weapon/module/power_control,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bk" = (
+/obj/structure/flora/pottedplant/bamboo{
+ pixel_y = 12
+ },
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bl" = (
+/obj/item/weapon/material/shard,
+/obj/item/weapon/material/shard{
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bm" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/flora/pottedplant/fern{
+ pixel_y = 12
+ },
+/obj/structure/table/bench/wooden,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bn" = (
+/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood/broken,
+/area/submap/lonehome)
+"bo" = (
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/random/trash,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bp" = (
+/obj/item/weapon/reagent_containers/food/snacks/ghostmuffin/poison,
+/obj/structure/table/sifwooden_reinforced,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bq" = (
+/obj/machinery/button/windowtint{
+ id = "h_kitchen"
+ },
+/obj/item/trash/plate,
+/obj/structure/table/sifwooden_reinforced,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "h_kitchen"
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"br" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood/broken,
+/area/submap/lonehome)
+"bs" = (
+/obj/item/weapon/pen,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bt" = (
+/obj/item/weapon/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bu" = (
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,
+/obj/item/weapon/pen,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bv" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bw" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "h_kitchen"
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bx" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/template_noop,
+/area/submap/lonehome)
+"by" = (
+/obj/structure/table/rack,
+/obj/item/weapon/makeover,
+/obj/structure/curtain/open/bed,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bz" = (
+/obj/structure/table/rack,
+/obj/item/weapon/material/knife/ritual,
+/obj/structure/curtain/open/bed,
+/obj/item/clothing/under/suit_jacket/really_black,
+/obj/item/clothing/under/suit_jacket/navy,
+/obj/item/clothing/head/soft/solgov/veteranhat,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bA" = (
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 8
+ },
+/obj/structure/table/wooden_reinforced,
+/obj/item/weapon/book/tome,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bB" = (
+/obj/item/weapon/paper{
+ info = "Seems to be filled with odd runes drawn with blood";
+ name = "Blood stained paper"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood/broken,
+/area/submap/lonehome)
+"bC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/inflatable/door,
+/turf/simulated/floor/wood/broken,
+/area/submap/lonehome)
+"bD" = (
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/machinery/space_heater,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bE" = (
+/obj/item/seeds/random,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bF" = (
+/obj/machinery/light/small,
+/obj/item/weapon/ore/diamond,
+/obj/structure/sign/goldenplaque{
+ desc = "Done No Harm.";
+ name = "Best Doctor 2552";
+ pixel_y = -32
+ },
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bG" = (
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/item/clothing/gloves/ring/engagement,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bH" = (
+/obj/machinery/button/windowtint{
+ id = "h_kitchen"
+ },
+/turf/simulated/wall/wood,
+/area/submap/lonehome)
+"bI" = (
+/obj/structure/closet/cabinet,
+/obj/item/weapon/storage/wallet/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/melee/umbrella/random,
+/obj/random/carp_plushie,
+/obj/random/curseditem,
+/obj/random/junk,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bJ" = (
+/obj/item/weapon/paper{
+ info = "Seems to be filled with odd runes drawn with blood";
+ name = "Blood stained paper"
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bK" = (
+/obj/item/weapon/cell/high/empty,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/submap/lonehome)
+"bL" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 1
+ },
+/obj/effect/gibspawner/human,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/submap/lonehome)
+"bM" = (
+/obj/item/weapon/paper{
+ info = "F%$K this detective, I swear I can see them peeking from behind the window, these tinted glasses help but I swear I can still see them snooping around. His days are counted... I am so close to figuring this out, just need a few more days. Then Shepiffany will be part of the family once again, then our two kids and I can go back on having a normal life... a normal life...";
+ name = "Stained sheet of paper"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/submap/lonehome)
+"bN" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bO" = (
+/obj/effect/decal/cleanable/blood/gibs,
+/obj/structure/kitchenspike,
+/obj/effect/rune,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"bP" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/weapon/paper/courtroom,
+/obj/item/weapon/paper/courtroom,
+/obj/item/weapon/paper_bin,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bQ" = (
+/obj/item/weapon/pen/fountain,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bR" = (
+/obj/item/weapon/paper{
+ info = "Seems to be filled with odd runes drawn with blood";
+ name = "Blood stained paper"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/submap/lonehome)
+"bS" = (
+/obj/random/trash,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/submap/lonehome)
+"bT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/submap/lonehome)
+"bU" = (
+/obj/item/weapon/photo,
+/obj/item/weapon/photo{
+ pixel_x = 4
+ },
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bV" = (
+/obj/item/weapon/storage/box/characters,
+/obj/structure/curtain/open/bed,
+/obj/structure/table/rack,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bW" = (
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bX" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart,
+/obj/item/weapon/bedsheet/clown,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bY" = (
+/obj/structure/closet/cabinet,
+/obj/random/multiple,
+/obj/random/multiple,
+/obj/random/multiple,
+/obj/random/multiple,
+/obj/random/multiple,
+/obj/random/toy,
+/obj/random/toy,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"bZ" = (
+/obj/item/clothing/suit/straight_jacket,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"ca" = (
+/obj/machinery/gibber/autogibber{
+ emagged = 1
+ },
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cb" = (
+/obj/structure/closet/cabinet,
+/obj/item/weapon/storage/wallet/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/melee/umbrella/random,
+/obj/random/ammo,
+/obj/random/cigarettes,
+/obj/random/contraband,
+/obj/random/junk,
+/obj/random/maintenance/security,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"cc" = (
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_mob/animal/passive/cat/bones{
+ desc = "A very odd behaved cat, their scratched name tag reads 'Felix'. They look very malnourished.";
+ name = "Felix"
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"cd" = (
+/obj/structure/bed/double/padded,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"ce" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/carpet/bcarpet,
+/area/submap/lonehome)
+"cf" = (
+/obj/item/weapon/pack/cardemon,
+/turf/simulated/floor/carpet/bcarpet,
+/area/submap/lonehome)
+"cg" = (
+/obj/item/weapon/reagent_containers/blood,
+/obj/item/weapon/pack/cardemon,
+/obj/item/weapon/pack/cardemon,
+/obj/item/weapon/deck/tarot,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"ch" = (
+/obj/item/organ/internal/liver,
+/obj/random/trash,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"ci" = (
+/obj/effect/decal/cleanable/blood/gibs,
+/obj/structure/table/marble,
+/obj/item/organ/internal/intestine/unathi,
+/obj/item/weapon/surgical/bonesetter,
+/obj/item/weapon/bone/ribs,
+/obj/item/weapon/bone/skull{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cj" = (
+/obj/structure/sign/periodic,
+/turf/simulated/wall/wood,
+/area/submap/lonehome)
+"ck" = (
+/obj/item/weapon/bedsheet/rddouble,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"cl" = (
+/obj/item/weapon/phone,
+/obj/structure/table/bench/wooden,
+/obj/item/weapon/paper{
+ info = "Seems to be filled with odd runes drawn with blood";
+ name = "Blood stained paper"
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"cm" = (
+/obj/item/weapon/pack/cardemon,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"cn" = (
+/obj/structure/bed/padded,
+/obj/random/trash,
+/obj/random/trash,
+/obj/random/trash,
+/obj/random/trash,
+/obj/random/trash,
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/junk,
+/obj/item/weapon/bedsheet/ian,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"co" = (
+/obj/structure/closet/cabinet,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/toolbox,
+/obj/random/toolbox,
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"cp" = (
+/obj/item/clothing/mask/muzzle,
+/obj/random/trash,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cq" = (
+/obj/structure/table/marble,
+/obj/item/organ/internal/brain/grey,
+/obj/item/weapon/material/knife/plastic,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cr" = (
+/obj/structure/table/bench/marble,
+/obj/structure/window/reinforced/polarized{
+ id = "h_master"
+ },
+/obj/structure/flora/pottedplant/overgrown{
+ pixel_y = 7
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"cs" = (
+/obj/structure/table/bench/marble,
+/obj/structure/window/reinforced/polarized{
+ id = "h_master"
+ },
+/obj/structure/flora/pottedplant/bamboo{
+ pixel_y = 7
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"ct" = (
+/obj/structure/table/bench/marble,
+/obj/structure/window/reinforced/polarized{
+ id = "h_master"
+ },
+/obj/structure/flora/pottedplant/dead{
+ pixel_y = 7
+ },
+/turf/simulated/floor/wood,
+/area/submap/lonehome)
+"cu" = (
+/obj/machinery/button/windowtint{
+ id = "h_master"
+ },
+/turf/simulated/wall/wood,
+/area/submap/lonehome)
+"cv" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cw" = (
+/obj/effect/decal/cleanable/blood/gibs,
+/obj/item/clothing/gloves/yellow,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cx" = (
+/obj/structure/table/marble,
+/obj/item/weapon/material/knife/hook,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cy" = (
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cz" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cA" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cB" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cC" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cD" = (
+/obj/item/frame/apc,
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 22
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cE" = (
+/obj/structure/table/steel,
+/obj/item/stack/material/phoron{
+ amount = 5
+ },
+/obj/item/stack/material/phoron{
+ amount = 5
+ },
+/obj/fiftyspawner/wood,
+/obj/fiftyspawner/steel,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cF" = (
+/obj/item/weapon/chainsaw,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/extinguisher,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/structure/table/rack,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cG" = (
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cH" = (
+/obj/structure/table/marble,
+/obj/item/organ/internal/intestine/unathi{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/obj/item/organ/internal/lungs,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cI" = (
+/obj/structure/fence,
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cJ" = (
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cK" = (
+/obj/item/weapon/material/minihoe,
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cL" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cN" = (
+/obj/item/device/flashlight{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cO" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cP" = (
+/obj/item/organ/internal/lungs/vox,
+/obj/item/weapon/beartrap/hunting{
+ anchored = 1;
+ deployed = 1
+ },
+/obj/structure/curtain/black,
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/junk,
+/turf/simulated/floor,
+/area/submap/lonehome)
+"cQ" = (
+/obj/structure/fence/cut/medium,
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cR" = (
+/obj/structure/loot_pile/maint/trash,
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cS" = (
+/obj/structure/fence/corner{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cT" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/template_noop,
+/area/submap/lonehome)
+"cU" = (
+/obj/structure/fence/cut/large{
+ dir = 8
+ },
+/turf/template_noop,
+/area/submap/lonehome)
+"cV" = (
+/obj/structure/fence/cut/medium{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cW" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"cX" = (
+/obj/structure/fence/door/opened,
+/turf/template_noop,
+/area/submap/lonehome)
+"cY" = (
+/obj/structure/fence/cut/medium{
+ dir = 4
+ },
+/turf/template_noop,
+/area/submap/lonehome)
+"cZ" = (
+/obj/structure/fence/cut/large{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/grass/heavy,
+/area/submap/lonehome)
+"da" = (
+/obj/structure/fence/corner,
+/turf/template_noop,
+/area/submap/lonehome)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aM
+aa
+aM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+cy
+aa
+aa
+aa
+aa
+cy
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ad
+aa
+aB
+aN
+aY
+aY
+ag
+ad
+ad
+ad
+ad
+ad
+af
+aa
+cy
+cy
+aa
+cy
+cy
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+ab
+ad
+ah
+ap
+aC
+aO
+aO
+bg
+ad
+ad
+bI
+bP
+cb
+cj
+ad
+ad
+cI
+cQ
+cI
+cS
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+ad
+ad
+ai
+aq
+aD
+aP
+aP
+bh
+ad
+by
+bJ
+bQ
+cc
+ak
+ad
+cz
+cy
+cy
+cy
+cT
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+ab
+ab
+ab
+ae
+aj
+ar
+aE
+aQ
+aQ
+bi
+ad
+bz
+bK
+bR
+bS
+as
+cr
+cA
+cy
+cy
+cy
+cU
+aa
+aa
+"}
+(6,1,1) = {"
+ab
+ab
+aa
+ad
+ad
+ak
+as
+aj
+aQ
+aZ
+at
+ad
+bA
+bL
+bS
+aQ
+at
+cs
+cz
+cJ
+cy
+cy
+cV
+aa
+aa
+"}
+(7,1,1) = {"
+aa
+ab
+aa
+aa
+ad
+ag
+at
+as
+aR
+aZ
+ar
+ad
+aq
+bM
+bT
+aZ
+ck
+ct
+cB
+cy
+cy
+cy
+cW
+aa
+aa
+"}
+(8,1,1) = {"
+ab
+aa
+aa
+aa
+af
+ad
+au
+aF
+at
+ba
+bj
+ad
+bB
+br
+bU
+cd
+cl
+cu
+cA
+cy
+cy
+cy
+cW
+aa
+aa
+"}
+(9,1,1) = {"
+aa
+aa
+ac
+aa
+aa
+ad
+ad
+ag
+ae
+ad
+bk
+ad
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+cK
+cy
+cy
+cU
+aa
+aa
+"}
+(10,1,1) = {"
+aa
+aa
+aa
+aa
+af
+ad
+av
+ae
+ar
+ar
+bl
+br
+bC
+bN
+ar
+ar
+aq
+as
+ae
+cy
+cR
+cy
+cX
+aa
+aa
+"}
+(11,1,1) = {"
+aa
+aa
+aa
+aa
+ad
+ad
+ad
+ad
+ae
+ad
+bm
+ag
+ad
+ad
+ad
+ae
+ad
+ad
+ad
+cL
+ad
+cy
+cT
+aa
+ac
+"}
+(12,1,1) = {"
+aa
+aa
+aa
+aa
+ad
+al
+aw
+aG
+at
+bb
+aq
+bs
+bD
+ad
+bV
+aj
+ak
+cv
+cC
+cM
+ad
+cy
+cU
+aa
+aa
+"}
+(13,1,1) = {"
+aa
+aa
+aa
+aa
+ag
+am
+ax
+aH
+aq
+bc
+aq
+bt
+bE
+ag
+bW
+ce
+cm
+ad
+cD
+cM
+ad
+cy
+cT
+aa
+aa
+"}
+(14,1,1) = {"
+aa
+aa
+aa
+aa
+ag
+an
+ay
+aI
+aS
+as
+bn
+at
+bF
+ad
+bX
+cf
+cn
+ad
+cE
+cN
+ag
+cy
+cY
+aa
+aa
+"}
+(15,1,1) = {"
+aa
+aa
+aa
+aa
+ad
+ao
+ax
+aw
+aT
+as
+bo
+bu
+bG
+ad
+bY
+cg
+co
+ad
+cF
+cO
+ad
+cy
+cT
+aa
+aa
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+aa
+ad
+ad
+az
+aJ
+aU
+bd
+bp
+bv
+bH
+ad
+ad
+ad
+ad
+ad
+ad
+ag
+ad
+cy
+cT
+aa
+aa
+"}
+(17,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ad
+aA
+aK
+aV
+be
+bq
+bw
+ad
+bO
+bZ
+ch
+cp
+cw
+cG
+cP
+ag
+cy
+cZ
+aa
+aa
+"}
+(18,1,1) = {"
+aa
+ac
+aa
+aa
+aa
+ad
+ab
+aL
+aW
+bf
+aM
+bx
+ad
+ad
+ca
+ci
+cq
+cx
+cH
+ad
+ad
+cI
+da
+cy
+aa
+"}
+(19,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+aa
+aX
+aa
+aa
+ab
+aa
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+"}
+(20,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
diff --git a/maps/submaps/surface_submaps/plains/plains.dm b/maps/submaps/surface_submaps/plains/plains.dm
index 3f51385c1c0..472e1b035e7 100644
--- a/maps/submaps/surface_submaps/plains/plains.dm
+++ b/maps/submaps/surface_submaps/plains/plains.dm
@@ -1,5 +1,5 @@
// This causes PoI maps to get 'checked' and compiled, when undergoing a unit test.
-// This is so Travis can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
+// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
// When adding a new PoI, please add it to this list.
#if MAP_TEST
#include "farm1.dmm"
@@ -37,6 +37,7 @@
#include "lonehome.dmm"
#include "priderock.dmm"
#include "oldhotel.dmm"
+#include "VRDen.dmm"
#endif
@@ -267,7 +268,7 @@
/datum/map_template/surface/plains/lonehome
name = "Lone Home"
desc = "A quite inoffensive looking home, damaged but still holding up."
- mappath = 'maps/submaps/surface_submaps/plains/lonehome.dmm'
+ mappath = 'maps/submaps/surface_submaps/plains/lonehome_vr.dmm' //VOREStation Edit
cost = 15
/datum/map_template/surface/plains/hotspring
@@ -280,4 +281,10 @@
name = "Meth Lab"
desc = "A broken down greenhouse lab?, this does not look safe."
mappath = 'maps/submaps/surface_submaps/plains/methlab.dmm'
- cost = 15
\ No newline at end of file
+ cost = 15
+
+/datum/map_template/surface/plains/VRDen
+ name = "VR Den"
+ desc = "A temporarily abandoned VR den, still functional."
+ mappath = 'maps/submaps/surface_submaps/plains/VRDen.dmm'
+ cost = 10
diff --git a/maps/submaps/surface_submaps/plains/plains_areas.dm b/maps/submaps/surface_submaps/plains/plains_areas.dm
index 90903e17ddc..30af091b84b 100644
--- a/maps/submaps/surface_submaps/plains/plains_areas.dm
+++ b/maps/submaps/surface_submaps/plains/plains_areas.dm
@@ -130,3 +130,7 @@
/area/submap/methlab
name = "POI - Meth Lab"
ambience = AMBIENCE_TECH_RUINS
+
+/area/submap/VRDen
+ name = "POI - VR Den"
+ ambience = AMBIENCE_TECH_RUINS
diff --git a/maps/submaps/surface_submaps/wilderness/wilderness.dm b/maps/submaps/surface_submaps/wilderness/wilderness.dm
index 25ad4821d65..707dc9feaf6 100644
--- a/maps/submaps/surface_submaps/wilderness/wilderness.dm
+++ b/maps/submaps/surface_submaps/wilderness/wilderness.dm
@@ -1,5 +1,5 @@
// This causes PoI maps to get 'checked' and compiled, when undergoing a unit test.
-// This is so Travis can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
+// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
// When adding a new PoI, please add it to this list.
#if MAP_TEST
#include "spider1.dmm"
diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm
index 21d93661978..639d56f1214 100644
--- a/maps/tether/submaps/_tether_submaps.dm
+++ b/maps/tether/submaps/_tether_submaps.dm
@@ -1,5 +1,5 @@
// This causes tether submap maps to get 'checked' and compiled, when undergoing a unit test.
-// This is so Travis can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
+// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors.
//////////////////////////////////////////////////////////////////////////////
/// Static Load
@@ -258,7 +258,7 @@
/datum/map_template/tether_lateload/away_debrisfield/on_map_loaded(z)
. = ..()
//Commented out until we actually get POIs
- seed_submaps(list(Z_LEVEL_DEBRISFIELD), 200, /area/tether_away/debrisfield/unexplored, /datum/map_template/debrisfield)
+ seed_submaps(list(Z_LEVEL_DEBRISFIELD), 400, /area/space, /datum/map_template/debrisfield)
/datum/map_z_level/tether_lateload/away_debrisfield
name = "Away Mission - Debris Field"
@@ -538,6 +538,8 @@
#include "../../offmap_vr/om_ships/mercenarybase.dm"
#include "../../offmap_vr/om_ships/mercship.dm"
#include "../../offmap_vr/om_ships/curashuttle.dm"
+#include "../../offmap_vr/om_ships/itglight.dm"
+#include "../../offmap_vr/om_ships/abductor.dm"
//////////////////////////////////////////////////////////////////////////////
//Capsule deployed ships
diff --git a/maps/tether/submaps/tether_misc.dmm b/maps/tether/submaps/tether_misc.dmm
index 4ec9ca9d3a2..efed63f2c1f 100644
--- a/maps/tether/submaps/tether_misc.dmm
+++ b/maps/tether/submaps/tether_misc.dmm
@@ -28,10 +28,6 @@
"ae" = (
/turf/unsimulated/mineral/virgo3b,
/area/space)
-"af" = (
-/obj/structure/sign/warning/docking_area,
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
"ag" = (
/obj/structure/flora/ausbushes/brflowers,
/obj/effect/floor_decal/spline/fancy/wood{
@@ -58,12 +54,6 @@
},
/turf/simulated/floor/holofloor/carpet,
/area/holodeck/source_courtroom)
-"ai" = (
-/obj/machinery/door/blast/regular{
- dir = 4
- },
-/turf/unsimulated/floor/techfloor_grid,
-/area/centcom/simulated/terminal)
"aj" = (
/obj/structure/sign/warning{
name = "\improper STAND AWAY FROM TRACK EDGE"
@@ -100,7 +90,6 @@
"ao" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
dir = 9
},
/turf/simulated/floor/holofloor/grass,
@@ -134,7 +123,6 @@
dir = 8
},
/obj/effect/floor_decal/carpet/corners{
- icon_state = "carpet_corners";
dir = 5
},
/turf/simulated/floor/holofloor/carpet,
@@ -189,7 +177,6 @@
"aA" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
dir = 10
},
/turf/simulated/floor/holofloor/grass,
@@ -477,9 +464,7 @@
/area/holodeck/source_boxingcourt)
"by" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
+ dir = 8
},
/turf/simulated/shuttle/floor,
/area/shuttle/supply)
@@ -755,7 +740,6 @@
/area/ai_multicam_room)
"cj" = (
/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
dir = 9
},
/turf/simulated/floor/tiled/steel,
@@ -787,6 +771,12 @@
/obj/item/toy/chess/pawn_white,
/turf/simulated/floor/holofloor/wmarble,
/area/holodeck/source_chess)
+"cq" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"cs" = (
/obj/machinery/door/airlock/glass_external{
frequency = 1380;
@@ -848,20 +838,11 @@
},
/turf/simulated/floor/holofloor/tiled,
/area/holodeck/source_emptycourt)
-"cC" = (
-/obj/effect/step_trigger/lost_in_space/tram,
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
- },
-/area/space)
"cO" = (
/obj/machinery/embedded_controller/radio/simple_docking_controller{
frequency = 1380;
id_tag = "supply_shuttle";
pixel_x = -25;
- pixel_y = 0;
req_one_access = list(13,31);
tag_door = "supply_shuttle_hatch"
},
@@ -1063,27 +1044,6 @@
},
/turf/simulated/floor/holofloor/tiled,
/area/holodeck/source_emptycourt)
-"dz" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/obj/effect/transit/light{
- dir = 8
- },
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- direction = 2;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
- },
-/area/space)
"dA" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -1098,6 +1058,22 @@
/obj/structure/window/reinforced,
/turf/unsimulated/wall,
/area/space)
+"dD" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_station";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"dE" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
@@ -1164,9 +1140,7 @@
/area/holodeck/source_thunderdomecourt)
"dU" = (
/obj/structure/table/holotable,
-/obj/machinery/readybutton{
- pixel_y = 0
- },
+/obj/machinery/readybutton,
/obj/effect/floor_decal/corner/red/full{
dir = 8
},
@@ -1603,9 +1577,7 @@
/area/holodeck/source_thunderdomecourt)
"fX" = (
/obj/structure/table/holotable,
-/obj/machinery/readybutton{
- pixel_y = 0
- },
+/obj/machinery/readybutton,
/obj/effect/floor_decal/corner/green/full{
dir = 4
},
@@ -1706,6 +1678,18 @@
/obj/structure/flora/grass/both,
/turf/simulated/floor/holofloor/snow,
/area/holodeck/holodorm/source_snow)
+"gE" = (
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"gN" = (
/obj/structure/flora/ausbushes/fullgrass,
/turf/simulated/floor/holofloor/desert,
@@ -1854,6 +1838,56 @@
},
/turf/simulated/floor/holofloor/tiled/dark,
/area/holodeck/holodorm/source_boxing)
+"ig" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/obj/effect/transit/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"ih" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ii" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"in" = (
+/obj/effect/step_trigger/lost_in_space/tram,
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"ix" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"iO" = (
/obj/effect/step_trigger/teleporter/random{
affect_ghosts = 1;
@@ -1867,16 +1901,25 @@
},
/turf/space/transit/west,
/area/space)
-"iY" = (
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
- },
-/area/space)
+"iU" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"jf" = (
/turf/space/transit/north,
/area/space)
+"jr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"jL" = (
+/obj/effect/step_trigger/lost_in_space/tram,
+/turf/simulated/floor/maglev{
+ icon = 'icons/turf/transit_vr.dmi'
+ },
+/area/space)
"jQ" = (
/obj/effect/shuttle_landmark/transit{
base_area = /area/space;
@@ -1904,34 +1947,76 @@
/obj/effect/floor_decal/sign/small_5,
/turf/simulated/floor/holofloor/wood,
/area/holodeck/source_chess)
-"le" = (
-/obj/effect/floor_decal/transit/orange{
+"lf" = (
+/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"li" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"lE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"mb" = (
/obj/effect/step_trigger/lost_in_space/tram,
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor/grid{
icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
+ initial_flooring = null
},
/area/space)
-"mZ" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- direction = 4;
- name = "thrower_escapeshuttletop(right)";
- tiles = 0
+"mF" = (
+/obj/effect/shuttle_landmark{
+ base_area = null;
+ base_turf = null;
+ docking_controller = null;
+ landmark_tag = "escape_transit";
+ name = "Escape Transit"
},
/turf/simulated/floor/tiled/techfloor/grid{
icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
+ initial_flooring = null
},
/area/space)
"nj" = (
/obj/item/toy/chess/rook_white,
/turf/simulated/floor/holofloor/wmarble,
/area/holodeck/source_chess)
+"nn" = (
+/obj/machinery/telecomms/allinone/antag{
+ intercept = 1
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"nB" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"nC" = (
+/obj/structure/table/standard,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 32
+ },
+/obj/item/clothing/head/beret/nanotrasen,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"nV" = (
/obj/item/toy/chess/rook_black,
/turf/simulated/floor/holofloor/wmarble,
@@ -1955,19 +2040,28 @@
/obj/effect/floor_decal/sign/small_8,
/turf/simulated/floor/holofloor/wood,
/area/holodeck/source_chess)
-"pu" = (
-/obj/effect/floor_decal/transit/orange{
+"pk" = (
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/obj/effect/transit/light{
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"pv" = (
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/area/space)
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_offsite";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"pF" = (
/obj/effect/shuttle_landmark/transit{
base_area = /area/space;
@@ -1980,6 +2074,24 @@
"pT" = (
/turf/simulated/floor/holofloor/bmarble,
/area/holodeck/source_chess)
+"pX" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
+"qc" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"qn" = (
/turf/space/transit/east,
/area/space)
@@ -1991,20 +2103,22 @@
/turf/space,
/turf/space/internal_edge/bottomright,
/area/space)
-"qH" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
- },
-/area/space)
"qV" = (
/obj/effect/floor_decal/sign/small_6,
/turf/simulated/floor/holofloor/wood,
/area/holodeck/source_chess)
+"qY" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"rh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"ru" = (
/obj/item/toy/chess/pawn_black,
/turf/simulated/floor/holofloor/bmarble,
@@ -2020,10 +2134,94 @@
"sl" = (
/turf/space/internal_edge/top,
/area/space)
+"sp" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"sx" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
"sF" = (
/obj/effect/overmap/bluespace_rift,
/turf/unsimulated/map,
/area/overmap)
+"sN" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/obj/effect/transit/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"sT" = (
+/obj/structure/closet/hydrant{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ti" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"tp" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"tu" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
"tC" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -2033,7 +2231,6 @@
"tD" = (
/obj/effect/step_trigger/thrower{
affect_ghosts = 1;
- direction = 2;
name = "thrower_throwdown";
stopper = 0;
tiles = 0
@@ -2044,24 +2241,28 @@
/obj/effect/floor_decal/transit/orange{
dir = 8
},
-/obj/effect/step_trigger/lost_in_space/tram,
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
+/obj/effect/transit/light{
+ dir = 8
},
-/area/space)
-"tJ" = (
/obj/effect/step_trigger/thrower{
affect_ghosts = 1;
- direction = 4;
- name = "thrower_escapeshuttletop(right)";
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
tiles = 0
},
-/turf/simulated/floor/maglev{
- icon = 'icons/turf/transit_vr.dmi'
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
},
/area/space)
+"tS" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"uc" = (
/turf/unsimulated/wall,
/area/centcom/suppy)
@@ -2072,8 +2273,8 @@
"ue" = (
/obj/structure/closet/crate,
/turf/unsimulated/floor{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/centcom/suppy)
"uf" = (
@@ -2090,44 +2291,27 @@
icon_state = "dark"
},
/area/centcom/suppy)
+"uG" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"uM" = (
/obj/item/toy/chess/knight_black,
/turf/simulated/floor/holofloor/wmarble,
/area/holodeck/source_chess)
-"vi" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- direction = 2;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/maglev{
- icon = 'icons/turf/transit_vr.dmi'
- },
-/area/space)
-"vG" = (
-/obj/effect/step_trigger/lost_in_space/tram,
-/turf/simulated/floor/maglev{
- icon = 'icons/turf/transit_vr.dmi'
- },
-/area/space)
-"vR" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- direction = 2;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
- },
-/area/space)
+"vu" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"vz" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"vW" = (
/obj/effect/floor_decal/sign/small_a,
/turf/simulated/floor/holofloor/wood,
@@ -2156,19 +2340,6 @@
},
/turf/simulated/floor/tiled/steel,
/area/centcom/simulated/main_hall)
-"wr" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- direction = 8;
- name = "thrower_escapeshuttletop(left)";
- tiles = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
- },
-/area/space)
"wy" = (
/turf/unsimulated/wall,
/area/centcom/control)
@@ -2184,9 +2355,21 @@
},
/turf/unsimulated/floor/steel,
/area/centcom/control)
+"xi" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"xl" = (
+/obj/structure/table/standard,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"xM" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/tiled/steel,
@@ -2210,16 +2393,6 @@
/obj/machinery/telecomms/receiver/preset_cent,
/turf/unsimulated/floor/steel,
/area/centcom/control)
-"yF" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
- },
-/area/space)
"yK" = (
/obj/machinery/door/airlock/multi_tile/metal,
/obj/effect/floor_decal/industrial/warning{
@@ -2227,45 +2400,73 @@
},
/turf/simulated/floor/tiled/steel,
/area/centcom/simulated/main_hall)
+"yU" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"zb" = (
/obj/effect/step_trigger/thrower{
direction = 1;
name = "thrower_throwup";
- nostop = 0;
tiles = 0
},
/turf/space/transit/east,
/area/space)
"zv" = (
-/obj/effect/floor_decal/transit/orange{
+/obj/effect/transit/light{
dir = 8
},
-/obj/effect/transit/light{
+/obj/effect/floor_decal/transit/orange{
dir = 8
},
/turf/simulated/floor/tiled/techfloor/grid{
icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
+ initial_flooring = null
},
/area/space)
-"zK" = (
-/obj/machinery/door/blast/regular{
+"zw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/turf/simulated/floor/maglev,
-/area/centcom/simulated/terminal)
-"Al" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_offsite";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"zH" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 8
},
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor/grid,
/area/centcom/simulated/terminal)
+"zK" = (
+/obj/machinery/door/blast/regular{
+ dir = 4
+ },
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"Al" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"Av" = (
/obj/effect/step_trigger/thrower{
affect_ghosts = 1;
- direction = 8;
- name = "thrower_escapeshuttletop(left)";
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
tiles = 0
},
/turf/simulated/floor/maglev{
@@ -2281,10 +2482,30 @@
"Az" = (
/turf/unsimulated/beach/coastline,
/area/beach)
+"AD" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"Bm" = (
/obj/item/toy/chess/bishop_black,
/turf/simulated/floor/holofloor/bmarble,
/area/holodeck/source_chess)
+"Bs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_station";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"Bw" = (
/turf/unsimulated/beach/water,
/area/beach)
@@ -2300,9 +2521,30 @@
/turf/space,
/turf/space/internal_edge/bottomleft,
/area/space)
+"Cd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"Cn" = (
/turf/simulated/sky/virgo3b/south,
/area/space)
+"Cp" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/shuttle_landmark{
+ base_area = /area/centcom/simulated/terminal;
+ base_turf = /turf/simulated/floor/tiled/techfloor/grid;
+ docking_controller = null;
+ landmark_tag = "escape_cc";
+ name = "Escape Centcom"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
"Ct" = (
/obj/machinery/ntnet_relay,
/turf/unsimulated/floor/steel,
@@ -2317,6 +2559,15 @@
},
/turf/simulated/floor/tiled/steel,
/area/centcom/simulated/main_hall)
+"CG" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"CJ" = (
/obj/item/toy/chess/pawn_white,
/turf/simulated/floor/holofloor/bmarble,
@@ -2334,6 +2585,19 @@
},
/turf/simulated/floor/tiled/steel,
/area/space)
+"Dm" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Dn" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"Dw" = (
/obj/structure/table/standard,
/obj/item/weapon/reagent_containers/food/snacks/chips,
@@ -2343,6 +2607,12 @@
/turf/space,
/turf/space/internal_edge/topright,
/area/space)
+"DI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"DL" = (
/obj/effect/floor_decal/sign/small_b,
/turf/simulated/floor/holofloor/wood,
@@ -2354,6 +2624,18 @@
/obj/effect/floor_decal/sign/small_g,
/turf/simulated/floor/holofloor/wood,
/area/holodeck/source_chess)
+"Et" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"ET" = (
/turf/simulated/floor/tiled/techfloor/grid,
/area/centcom/simulated/terminal)
@@ -2365,25 +2647,27 @@
/obj/structure/table/standard,
/turf/unsimulated/beach/sand,
/area/beach)
+"Fe" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
"Fp" = (
/turf/simulated/floor/maglev,
/area/centcom/simulated/terminal)
-"Fr" = (
+"Ft" = (
+/obj/effect/transit/light{
+ dir = 4
+ },
/obj/effect/floor_decal/transit/orange{
dir = 4
},
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- direction = 2;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
/turf/simulated/floor/tiled/techfloor/grid{
icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
+ initial_flooring = null
},
/area/space)
"FH" = (
@@ -2397,20 +2681,39 @@
},
/turf/unsimulated/beach/sand,
/area/beach)
+"FJ" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"FT" = (
-/obj/effect/shuttle_landmark{
- base_area = null;
- base_turf = null;
- docking_controller = null;
- landmark_tag = "escape_transit";
- name = "Escape Transit"
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"FX" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/obj/effect/transit/light{
+ dir = 4
},
/turf/simulated/floor/tiled/techfloor/grid{
icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
+ initial_flooring = null
},
/area/space)
+"FY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"Ga" = (
/turf/unsimulated/floor/steel,
/area/centcom/control)
@@ -2460,6 +2763,27 @@
/obj/machinery/telecomms/broadcaster/preset_cent,
/turf/unsimulated/floor/steel,
/area/centcom/control)
+"HW" = (
+/obj/machinery/status_display{
+ pixel_y = -30
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"HX" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
+ },
+/obj/random/maintenance/clean,
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Ic" = (
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"Ik" = (
/obj/structure/table/standard,
/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
@@ -2489,7 +2813,6 @@
},
/obj/effect/step_trigger/thrower{
affect_ghosts = 1;
- direction = 2;
name = "thrower_throwdownside";
nostop = 1;
stopper = 0;
@@ -2497,14 +2820,12 @@
},
/turf/simulated/floor/tiled/techfloor/grid{
icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
+ initial_flooring = null
},
/area/space)
"IR" = (
/obj/effect/step_trigger/thrower{
affect_ghosts = 1;
- direction = 2;
name = "thrower_throwdown";
stopper = 0;
tiles = 0
@@ -2515,6 +2836,19 @@
/obj/item/toy/chess/bishop_white,
/turf/simulated/floor/holofloor/bmarble,
/area/holodeck/source_chess)
+"Jq" = (
+/obj/structure/sign/warning/docking_area,
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"Jw" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"Jx" = (
/obj/effect/floor_decal/corner_steel_grid/diagonal,
/obj/effect/floor_decal/corner_steel_grid/diagonal{
@@ -2545,7 +2879,6 @@
"JL" = (
/obj/effect/step_trigger/thrower{
affect_ghosts = 1;
- direction = 2;
name = "thrower_throwdown";
nostop = 1;
stopper = 0;
@@ -2596,7 +2929,6 @@
/area/holodeck/source_chess)
"Lg" = (
/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
dir = 5
},
/turf/simulated/floor/tiled/steel,
@@ -2605,33 +2937,52 @@
/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
/turf/simulated/sky/virgo3b/south,
/area/space)
-"Mb" = (
-/obj/effect/transit/light{
+"LD" = (
+/obj/machinery/light{
dir = 8
},
-/turf/unsimulated/mineral{
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Mb" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
icon = 'icons/turf/transit_vr.dmi';
- icon_state = "rock"
+ initial_flooring = null
+ },
+/area/space)
+"Mf" = (
+/obj/effect/step_trigger/lost_in_space/tram,
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
},
/area/space)
"Mi" = (
/obj/item/toy/chess/bishop_white,
/turf/simulated/floor/holofloor/wmarble,
/area/holodeck/source_chess)
+"Mq" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"ME" = (
/obj/machinery/computer/rdservercontrol{
- name = "Master R&D Server Controller";
- icon_state = "computer";
+ badmin = 1;
dir = 1;
- badmin = 1
+ name = "Master R&D Server Controller"
},
/turf/unsimulated/floor/steel,
/area/centcom/control)
"MK" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/tiled/steel,
/area/centcom/simulated/main_hall)
@@ -2656,7 +3007,6 @@
"Nr" = (
/obj/machinery/cryopod/robot/door/gateway,
/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
dir = 8
},
/turf/simulated/floor/tiled/steel,
@@ -2667,6 +3017,24 @@
opacity = 1
},
/area/beach)
+"NA" = (
+/obj/structure/closet/hydrant{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"NW" = (
+/obj/structure/table/standard,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 32
+ },
+/obj/random/maintenance/clean,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"Oj" = (
/obj/effect/step_trigger/thrower{
affect_ghosts = 1;
@@ -2680,16 +3048,16 @@
/obj/item/toy/chess/knight_white,
/turf/simulated/floor/holofloor/bmarble,
/area/holodeck/source_chess)
-"OR" = (
-/turf/simulated/shuttle/wall,
-/area/shuttle/escape)
"OY" = (
/turf/unsimulated/map,
/area/overmap)
"Pe" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/obj/structure/grille,
-/obj/structure/shuttle/window,
-/turf/simulated/shuttle/plating,
+/turf/simulated/floor/plating/eris/under,
/area/shuttle/escape)
"Pf" = (
/obj/structure/table/woodentable{
@@ -2701,12 +3069,14 @@
/turf/simulated/floor/tiled,
/area/centcom/simulated/terminal)
"Pg" = (
-/turf/simulated/shuttle/wall/hard_corner,
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
/area/shuttle/escape)
"Pi" = (
/obj/effect/step_trigger/thrower{
affect_ghosts = 1;
- direction = 2;
name = "thrower_throwdown";
nostop = 1;
stopper = 0;
@@ -2719,38 +3089,40 @@
icon = 'icons/turf/transit_vr.dmi'
},
/area/space)
+"Py" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"PU" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
"Qa" = (
-/obj/structure/closet/hydrant{
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/item/weapon/storage/firstaid/o2{
- layer = 2.8;
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/toxin,
-/obj/structure/bed/chair/shuttle,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
+/obj/structure/table/standard,
+/obj/random/soap,
+/turf/simulated/floor/tiled/techfloor,
/area/shuttle/escape)
"Qs" = (
/obj/item/toy/chess/queen_black,
/turf/simulated/floor/holofloor/bmarble,
/area/holodeck/source_chess)
-"QW" = (
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
-/area/shuttle/escape)
-"QX" = (
-/obj/structure/bed/chair/shuttle,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
-/area/shuttle/escape)
"QY" = (
/obj/structure/flora/pottedplant{
icon_state = "plant-21"
@@ -2764,100 +3136,47 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/centcom/simulated/terminal)
"Rd" = (
-/obj/structure/table/standard,
-/obj/random/maintenance/clean,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
},
+/turf/simulated/floor/tiled/steel,
/area/shuttle/escape)
"Re" = (
-/obj/structure/table/standard,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
-/area/shuttle/escape)
-"Rf" = (
-/obj/machinery/status_display{
- pixel_y = 30
- },
-/obj/structure/table/standard,
-/obj/machinery/light{
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
+/turf/simulated/floor/tiled/steel,
/area/shuttle/escape)
"Rg" = (
-/obj/structure/bed/chair/shuttle{
+/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
+/turf/simulated/floor/tiled/steel,
/area/shuttle/escape)
-"Rh" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
"Ri" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "escape_shuttle_hatch_station";
- locked = 1;
- name = "Shuttle Hatch"
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/turf/simulated/shuttle/floor/yellow,
-/area/shuttle/escape)
-"Rj" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "escape_shuttle_hatch_offsite";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/turf/simulated/shuttle/floor/yellow,
+/turf/simulated/floor/tiled/steel,
/area/shuttle/escape)
"Rk" = (
/obj/structure/bed/chair/shuttle,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -28
- },
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
-/area/shuttle/escape)
-"Rl" = (
-/obj/structure/bed/chair/shuttle,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = 28
- },
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
+/turf/simulated/floor/tiled/steel,
/area/shuttle/escape)
"Rm" = (
-/obj/structure/table/standard,
-/obj/random/junk,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
+/turf/simulated/floor/tiled/steel,
/area/shuttle/escape)
"Ro" = (
-/obj/structure/table/standard,
-/obj/random/maintenance/clean,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
+/obj/structure/closet/hydrant{
+ pixel_y = 32
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
/area/shuttle/escape)
"Rq" = (
/obj/machinery/door/blast/regular{
@@ -2879,19 +3198,11 @@
/turf/simulated/floor/tiled/steel,
/area/centcom/simulated/main_hall)
"Rs" = (
-/obj/structure/sign/nanotrasen,
-/obj/effect/shuttle_landmark{
- base_area = /area/centcom/simulated/terminal;
- base_turf = /turf/simulated/floor/tiled/techfloor/grid;
- docking_controller = null;
- landmark_tag = "escape_cc";
- name = "Escape Centcom"
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
-/turf/simulated/shuttle/wall,
-/area/shuttle/escape)
-"Rt" = (
-/obj/structure/sign/nanotrasen,
-/turf/simulated/shuttle/wall,
+/turf/simulated/floor/tiled/techfloor,
/area/shuttle/escape)
"Ru" = (
/turf/simulated/floor/tiled/steel,
@@ -2911,83 +3222,44 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/steel,
/area/centcom/simulated/living)
-"Rw" = (
-/obj/structure/table/standard,
-/obj/item/clothing/head/beret/nanotrasen,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
-/area/shuttle/escape)
-"Rx" = (
-/obj/structure/table/standard,
-/obj/random/plushie,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
-/area/shuttle/escape)
-"Ry" = (
-/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -28
- },
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
-/area/shuttle/escape)
"Rz" = (
-/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = 28
- },
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
},
+/turf/simulated/floor/tiled/steel,
/area/shuttle/escape)
"RA" = (
-/obj/structure/grille,
-/obj/structure/shuttle/window,
-/turf/simulated/shuttle/floor/white,
+/turf/simulated/floor/tiled/techfloor,
/area/shuttle/escape)
"RC" = (
-/obj/effect/floor_decal/industrial/outline/blue,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
},
+/turf/simulated/floor/tiled/steel,
/area/shuttle/escape)
"RD" = (
/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
+ dir = 8
},
+/turf/simulated/floor/tiled/techfloor,
/area/shuttle/escape)
"RE" = (
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/machinery/light,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
+/obj/machinery/light{
+ dir = 4
},
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
/area/shuttle/escape)
"RF" = (
-/obj/random/junk,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
/area/shuttle/escape)
"RG" = (
-/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/obj/random/soap,
-/turf/simulated/shuttle/floor/white{
- color = "#cccccc"
- },
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
/area/shuttle/escape)
"RV" = (
/obj/effect/step_trigger/teleporter/random{
@@ -3002,16 +3274,16 @@
},
/turf/simulated/sky/virgo3b/south,
/area/space)
+"RY" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"Sh" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/obj/effect/transit/light{
- dir = 4
- },
/obj/effect/step_trigger/thrower{
affect_ghosts = 1;
- direction = 2;
name = "thrower_throwdownside";
nostop = 1;
stopper = 0;
@@ -3019,19 +3291,13 @@
},
/turf/simulated/floor/tiled/techfloor/grid{
icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null;
- icon_state = "techfloor_grid"
+ initial_flooring = null
},
/area/space)
"Sl" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/machinery/camera/network/crescent{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/thull,
+/area/shuttle/escape)
"Sm" = (
/turf/simulated/shuttle/wall/alien/blue/hard_corner,
/area/unknown/dorm4)
@@ -3074,6 +3340,13 @@
/obj/structure/fans,
/turf/simulated/shuttle/floor/alien,
/area/unknown/dorm4)
+"Sy" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
"Sz" = (
/obj/machinery/smartfridge/survival_pod,
/obj/item/weapon/storage/mre/menu11,
@@ -3127,11 +3400,13 @@
/turf/simulated/shuttle/floor/alien,
/area/unknown/dorm4)
"SG" = (
-/obj/machinery/door/blast/regular{
- dir = 4
+/obj/structure/table/standard,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
+/obj/item/clothing/head/beret/nanotrasen,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"SH" = (
/obj/structure/bed/chair{
dir = 8
@@ -3237,7 +3512,6 @@
/area/centcom/simulated/living)
"Th" = (
/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
dir = 8
},
/turf/simulated/floor/tiled/steel,
@@ -3323,6 +3597,15 @@
},
/turf/simulated/shuttle/floor/alien,
/area/unknown/dorm3)
+"Tv" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"Tx" = (
/obj/structure/prop/alien/dispenser,
/turf/simulated/shuttle/floor/alien,
@@ -3776,9 +4059,7 @@
/turf/simulated/floor/tiled/steel,
/area/centcom/simulated/evac)
"Vo" = (
-/obj/machinery/door/blast/regular{
- dir = 1
- },
+/obj/machinery/door/blast/regular,
/turf/simulated/floor/tiled/steel,
/area/centcom/simulated/evac)
"Vp" = (
@@ -3828,8 +4109,7 @@
/area/centcom/simulated/bathroom)
"Vz" = (
/obj/machinery/light/small{
- dir = 8;
- pixel_y = 0
+ dir = 8
},
/turf/simulated/floor/tiled/white,
/area/centcom/simulated/bathroom)
@@ -3949,7 +4229,6 @@
/area/centcom/simulated/restaurant)
"VZ" = (
/obj/structure/bed/chair/wood/wings{
- icon_state = "wooden_chair_wings";
dir = 4
},
/turf/simulated/floor/wood,
@@ -3966,7 +4245,6 @@
/area/centcom/simulated/restaurant)
"Wd" = (
/obj/structure/bed/chair/wood/wings{
- icon_state = "wooden_chair_wings";
dir = 8
},
/turf/simulated/floor/wood,
@@ -4040,7 +4318,6 @@
},
/obj/machinery/computer/cryopod/dorms{
name = "Company Property Retention System";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/tiled/steel,
@@ -4076,7 +4353,6 @@
})
"Wz" = (
/obj/structure/bed/chair/wood/wings{
- icon_state = "wooden_chair_wings";
dir = 1
},
/turf/simulated/floor/wood,
@@ -4182,7 +4458,6 @@
/area/centcom/simulated/restaurant)
"WN" = (
/obj/structure/bed/chair/wood/wings{
- icon_state = "wooden_chair_wings";
dir = 4
},
/obj/machinery/light{
@@ -4208,8 +4483,6 @@
"WR" = (
/obj/structure/table/woodentable,
/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich{
- pixel_w = 0;
- pixel_x = 0;
pixel_y = 10
},
/turf/simulated/floor/wood,
@@ -4325,13 +4598,9 @@
dir = 4
},
/obj/item/device/radio/intercom{
- broadcasting = 0;
dir = 1;
frequency = 1475;
- icon_state = "intercom";
- listening = 1;
name = "Station Intercom (Security)";
- pixel_x = 0;
pixel_y = 27
},
/turf/simulated/floor/tiled,
@@ -4387,7 +4656,6 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 12;
pixel_y = 8
},
@@ -4407,20 +4675,13 @@
name = "\improper CentCom Security Arrivals"
})
"XE" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
+/turf/simulated/wall/thull,
+/area/shuttle/escape)
"XH" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/tiled,
@@ -4456,13 +4717,12 @@
/area/beach)
"XP" = (
/obj/machinery/oxygen_pump/anesthetic,
-/turf/simulated/floor/tiled/white,
+/turf/unsimulated/wall,
/area/centcom/simulated/medical)
"XQ" = (
/obj/machinery/optable,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/white,
@@ -4495,8 +4755,6 @@
check_access = 0;
check_anomalies = 0;
check_records = 0;
- check_synth = 0;
- check_weapons = 0;
control_area = "\improper CentCom Security Arrivals";
pixel_x = 32;
req_access = list(101);
@@ -4506,6 +4764,15 @@
/area/centcom/simulated/security{
name = "\improper CentCom Security Arrivals"
})
+"XW" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
"XX" = (
/obj/machinery/computer/crew{
dir = 4
@@ -4558,7 +4825,6 @@
"Yk" = (
/obj/structure/medical_stand,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/tiled/white,
@@ -4629,7 +4895,6 @@
/area/centcom/simulated/medical)
"Yx" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/tiled,
@@ -4648,10 +4913,7 @@
pixel_x = 5;
pixel_y = 5
},
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
pixel_x = 7;
pixel_y = 1
@@ -4680,7 +4942,6 @@
/area/centcom/simulated/medical)
"YG" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/tiled/steel,
@@ -4724,8 +4985,7 @@
/area/centcom/simulated/medical)
"YN" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/tiled/white,
/area/centcom/simulated/medical)
@@ -4867,7 +5127,6 @@
/area/centcom/simulated/medical)
"Zn" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/tiled/white,
@@ -4877,8 +5136,7 @@
/obj/item/weapon/book/manual/security_space_law,
/obj/item/weapon/book/manual/security_space_law,
/obj/machinery/light/small{
- dir = 8;
- pixel_y = 0
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/centcom/simulated/security{
@@ -4917,8 +5175,7 @@
/obj/item/weapon/storage/box/donkpockets,
/obj/item/weapon/storage/box/donkpockets,
/obj/machinery/light/small{
- dir = 8;
- pixel_y = 0
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/centcom/simulated/security{
@@ -4956,14 +5213,12 @@
pixel_y = 5
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/centcom/simulated/medical)
"ZC" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/wood,
@@ -8820,7 +9075,6 @@ OY
Xl
"}
(28,1,1) = {"
-ap
Hy
Hy
Hy
@@ -8853,17 +9107,18 @@ Hy
Hy
Hy
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
ap
ap
ap
@@ -8962,7 +9217,6 @@ OY
Xl
"}
(29,1,1) = {"
-ap
Hy
Hy
Hy
@@ -8995,17 +9249,18 @@ Hy
Hy
Hy
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
ap
ap
ap
@@ -9104,7 +9359,6 @@ OY
Xl
"}
(30,1,1) = {"
-ap
Hy
Hy
Hy
@@ -9137,17 +9391,18 @@ Hy
Hy
Hy
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
ap
ap
ap
@@ -9246,7 +9501,6 @@ OY
Xl
"}
(31,1,1) = {"
-ap
Hy
Hy
Hy
@@ -9279,17 +9533,18 @@ Hy
Hy
Hy
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
ap
ap
ap
@@ -9388,7 +9643,7 @@ OY
Xl
"}
(32,1,1) = {"
-ap
+Hy
Hy
dg
dg
@@ -9420,6 +9675,17 @@ dg
dg
dg
dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
Hy
ap
ap
@@ -9482,17 +9748,6 @@ ap
ap
ap
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
Xl
OY
OY
@@ -9530,50 +9785,50 @@ OY
Xl
"}
(33,1,1) = {"
-ap
Hy
-qH
-qH
+Hy
+Mb
+Mb
zv
-qH
-qH
-qH
-dz
+Mb
+Mb
+sN
IN
IN
IN
-dz
+tH
IN
IN
IN
-dz
+tH
IN
IN
IN
-dz
+tH
+sp
+IN
+IN
+tH
IN
IN
IN
-dz
+tH
+IN
+IN
IN
-qH
-qH
-zv
-qH
-qH
tH
Mb
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+Mb
+Mb
+zv
+Mb
+Mb
+sN
+Mb
+mb
+sN
+dg
+Hy
ap
ap
ap
@@ -9672,38 +9927,49 @@ OY
Xl
"}
(34,1,1) = {"
-ap
Hy
-iY
-iY
-iY
-iY
-iY
-iY
-wr
-wr
-iY
-iY
-iY
-iY
-iY
-iY
+Hy
FT
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-vR
-vR
-iY
-iY
-iY
-iY
-iY
-cC
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+mF
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
Hy
ap
ap
@@ -9766,17 +10032,6 @@ ap
ap
ap
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
Xl
OY
OY
@@ -9814,7 +10069,7 @@ OY
Xl
"}
(35,1,1) = {"
-ap
+Hy
Hy
Pq
Pq
@@ -9823,6 +10078,8 @@ Pq
Pq
Pq
Av
+Av
+Av
Pq
Pq
Pq
@@ -9839,13 +10096,22 @@ Pq
Pq
Pq
Pq
-vi
+Pq
+Pq
+Av
+Av
+Av
Pq
Pq
Pq
Pq
Pq
-vG
+Pq
+Pq
+Pq
+jL
+Pq
+dg
Hy
ap
ap
@@ -9908,17 +10174,6 @@ ap
ap
ap
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
Xl
Xl
Xl
@@ -9956,50 +10211,50 @@ Xl
Xl
"}
(36,1,1) = {"
-ap
Hy
-iY
-iY
-iY
-iY
-iY
-iY
-wr
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-vR
-iY
-iY
-iY
-iY
-iY
-cC
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
ap
ap
ap
@@ -10098,50 +10353,50 @@ ap
ap
"}
(37,1,1) = {"
-ap
Hy
-iY
-iY
-iY
-iY
-iY
-iY
-wr
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-vR
-iY
-iY
-iY
-iY
-iY
-cC
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
ap
ap
ap
@@ -10240,50 +10495,50 @@ ap
ap
"}
(38,1,1) = {"
-ap
Hy
-iY
-iY
-iY
-iY
-iY
-iY
-mZ
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-vR
-iY
-iY
-iY
-iY
-iY
-cC
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
ap
ap
ap
@@ -10382,50 +10637,50 @@ ap
ap
"}
(39,1,1) = {"
-ap
Hy
-iY
-iY
-iY
-iY
-iY
-iY
-mZ
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-vR
-iY
-iY
-iY
-iY
-iY
-cC
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
ap
ap
ap
@@ -10524,50 +10779,50 @@ ap
ap
"}
(40,1,1) = {"
-ap
Hy
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-tJ
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-vi
-Pq
-Pq
-Pq
-Pq
-Pq
-vG
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
ap
ap
ap
@@ -10666,50 +10921,50 @@ ap
ap
"}
(41,1,1) = {"
-ap
Hy
-iY
-iY
-iY
-iY
-iY
-iY
-mZ
-mZ
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-iY
-vR
-vR
-iY
-iY
-iY
-iY
-iY
-cC
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
ap
ap
ap
@@ -10808,50 +11063,50 @@ ap
ap
"}
(42,1,1) = {"
-ap
Hy
-yF
-yF
-yF
-pu
-yF
-yF
-Fr
-Sh
-Fr
-Fr
-Fr
-Sh
-Fr
-Fr
-Fr
-Sh
-Fr
-Fr
-Fr
-Sh
-Fr
-Fr
-Fr
-Sh
-yF
-yF
-yF
-pu
-yF
-le
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
ap
ap
ap
@@ -10950,37 +11205,48 @@ ap
ap
"}
(43,1,1) = {"
-ap
Hy
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
+Hy
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Av
+Av
+Av
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Av
+Av
+Av
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+jL
+Pq
dg
Hy
ap
@@ -11079,63 +11345,52 @@ ap
ap
ap
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
"}
(44,1,1) = {"
-ap
Hy
Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
ap
ap
ap
@@ -11234,50 +11489,50 @@ ap
ap
"}
(45,1,1) = {"
-ap
Hy
Hy
+PU
+PU
+Ft
+PU
+PU
+FX
+Py
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+tu
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+PU
+PU
+PU
+Ft
+PU
+PU
+FX
+PU
+in
+FX
+dg
Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
ap
ap
ap
@@ -11376,50 +11631,50 @@ ap
ap
"}
(46,1,1) = {"
-ap
Hy
Hy
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
ap
ap
ap
@@ -11518,7 +11773,6 @@ ap
ap
"}
(47,1,1) = {"
-ap
Hy
Hy
Hy
@@ -11551,17 +11805,18 @@ Hy
Hy
Hy
Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
ap
ap
ap
@@ -11660,50 +11915,50 @@ ap
ap
"}
(48,1,1) = {"
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
ap
ap
ap
@@ -11802,50 +12057,50 @@ ap
ap
"}
(49,1,1) = {"
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
ap
ap
ap
@@ -11944,50 +12199,50 @@ ap
ap
"}
(50,1,1) = {"
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
ap
ap
ap
@@ -15680,33 +15935,33 @@ ae
ae
ae
ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
ap
ap
ap
@@ -15822,33 +16077,33 @@ ae
ae
ae
ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
ap
ap
ap
@@ -15964,33 +16219,33 @@ ae
ae
ae
ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
ap
ap
ap
@@ -16106,33 +16361,33 @@ ae
ae
ae
ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+Jq
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+xi
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+xi
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+aj
ap
ap
ap
@@ -16248,33 +16503,33 @@ ae
ae
ae
ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+zK
+sx
+sx
+zH
+sx
+sx
+sx
+zH
+sx
+sx
+sx
+sx
+zH
+sx
+zH
+sx
+sx
+sx
+sx
+zH
+sx
+sx
+sx
+zH
+sx
+sx
+zK
ap
ap
ap
@@ -16390,33 +16645,33 @@ ae
ae
ae
ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+zK
+ET
+ET
+ET
+ET
+ET
+XE
+XE
+dD
+XE
+Sl
+Bs
+Cp
+li
+Bs
+Sl
+XE
+dD
+XE
+XE
+ET
+ET
+ET
+ET
+ET
+ET
+zK
ap
ap
ap
@@ -16532,33 +16787,33 @@ ae
ae
ae
ae
-af
-dZ
-dZ
-dZ
-dZ
-dZ
-Rh
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-Rh
-dZ
-dZ
-dZ
-dZ
-dZ
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+zK
+Fp
+Fp
+Fp
+XE
+XE
+XE
+XE
+gE
+yU
+LD
+ix
+yU
+Mq
+ix
+ih
+Mq
+NA
+XE
+XE
+XE
+XE
+Fp
+Fp
+Fp
+Fp
+zK
ap
ap
ap
@@ -16674,33 +16929,33 @@ ae
ae
ae
ae
-ai
-Al
-Al
+zK
+ET
+ET
XE
Sl
Al
-Al
-XE
-Al
-Al
-Al
-Al
-XE
-Al
-Al
-Sl
-XE
-Al
+HX
+cq
+Re
+Jw
+XW
+FY
+XW
+XW
+FY
+XW
+FJ
+Ic
Al
SG
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+HW
+XE
+XE
+ET
+ET
+ET
+zK
ap
ap
ap
@@ -16816,33 +17071,33 @@ ae
ae
ae
ae
-ai
+zK
ET
-ET
-OR
-Pe
-Pe
+XE
+XE
+XE
+ti
Ri
-OR
-Pe
+Ri
+Rg
Rs
-Rt
-Pe
-OR
+iU
+RA
+iU
+iU
+RA
+iU
+RG
+qY
Ri
-RA
-RA
-OR
+Ri
+RY
+Sl
+XE
+XE
ET
ET
-SG
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+zK
ap
ap
ap
@@ -16959,32 +17214,32 @@ ae
ae
ae
zK
-Fp
-OR
+ET
+Pe
Pg
Rd
Rg
-QW
Rk
-Re
-Rg
-QX
-Rw
-Ry
-QW
-Rg
+Rk
+Rm
+Tv
RD
+RA
+RD
+RD
+RA
+RD
+tS
+Rm
+ii
+ii
+qY
+lE
Pg
-OR
-Fp
+vu
+ET
+ET
zK
-ae
-ae
-ae
-ae
-ae
-ae
-ae
ap
ap
ap
@@ -17100,33 +17355,33 @@ ae
ae
ae
ae
-ai
+zK
ET
Pe
Qa
Re
-Rg
-QW
-QX
Rm
-Rg
-QX
-Re
-Rg
-QW
-QW
-QW
+vz
+vz
+Rm
+DI
+RA
+RA
+RA
+RA
+RA
+RA
RF
-Pe
+Rm
+vz
+vz
+Rm
+Ic
+xl
+vu
ET
-SG
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+ET
+zK
ap
ap
ap
@@ -17242,33 +17497,33 @@ ae
ae
ae
ae
-ai
+zK
ET
Pe
-QW
-QW
-QW
-QW
-QW
-QW
-QW
-QW
-QW
-QW
-QW
-QX
-QX
-Rg
-Pe
+RD
+jr
+lf
+Rk
+Rk
+Rm
+CG
+Pg
+RA
+Pg
+Pg
+RA
+Pg
+tp
+Rm
+ii
+ii
+AD
+Cd
+RD
+vu
ET
-SG
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+ET
+zK
ap
ap
ap
@@ -17384,33 +17639,33 @@ ae
ae
ae
ae
-ai
+zK
ET
-Pe
-QW
-QW
-QW
-QW
-QW
-QW
-QW
-QW
-QW
-QW
-QW
-QX
-QX
+XE
+XE
+XE
+Et
+rh
+rh
+lf
+Rs
+iU
+RA
+iU
+iU
+RA
+iU
RG
-Pe
+AD
+rh
+rh
+Sy
+Sl
+XE
+XE
ET
-SG
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+ET
+zK
ap
ap
ap
@@ -17526,33 +17781,33 @@ ae
ae
ae
ae
-ai
+zK
ET
-Pe
-QX
-Re
-Rg
-QW
-QX
-Re
-Rg
-QX
-Re
-Rg
-QW
-QW
-QW
-QW
-Pe
ET
-SG
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+XE
+Sl
+Al
+nC
+cq
+Re
+qc
+nB
+pk
+nB
+nB
+pk
+nB
+Dn
+Ic
+Al
+NW
+HW
+XE
+XE
+ET
+ET
+ET
+zK
ap
ap
ap
@@ -17670,31 +17925,31 @@ ae
ae
zK
Fp
-OR
-Pg
-Rf
-Rg
-QW
-Rl
+Fp
+Fp
+XE
+XE
+XE
+XE
Ro
-Rg
-QX
-Rx
Rz
-QW
+uG
+RC
+Rz
+Dm
RC
RE
-Pg
-OR
+Dm
+sT
+XE
+XE
+XE
+XE
+Fp
+Fp
+Fp
Fp
zK
-ae
-ae
-ae
-ae
-ae
-ae
-ae
ap
ap
ap
@@ -17810,33 +18065,33 @@ ae
ae
ae
ae
-ai
+zK
ET
ET
-OR
-Pe
-Pe
-Rj
-OR
-Pe
-Rt
-Rt
-Pe
-OR
-Rj
-RA
-RA
-OR
ET
ET
-SG
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+ET
+XE
+XE
+zw
+XE
+Sl
+zw
+Fe
+Fe
+zw
+Sl
+XE
+pv
+XE
+XE
+ET
+ET
+ET
+ET
+ET
+ET
+zK
ap
ap
ap
@@ -17952,7 +18207,7 @@ ae
ae
ae
ae
-ai
+zK
Rc
Rc
Rc
@@ -17971,14 +18226,14 @@ Rc
Rc
Rc
Rc
-SG
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+pX
+Rc
+Rc
+Rc
+pX
+Rc
+Rc
+zK
ap
ap
ap
@@ -18114,13 +18369,13 @@ Jx
Jx
Zt
aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+aj
ap
ap
ap
@@ -19086,7 +19341,7 @@ ae
wy
HQ
Ga
-Ga
+nn
wl
Up
Vj
@@ -19653,7 +19908,7 @@ ae
ae
wy
wy
-wy
+Ga
wy
wl
Up
@@ -19794,9 +20049,9 @@ ae
ae
ae
ae
-ae
-ae
-ae
+wy
+wy
+wy
wl
Up
Vj
diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm
index 04ae672b7e6..45df6fec18d 100644
--- a/maps/tether/tether-01-surface1.dmm
+++ b/maps/tether/tether-01-surface1.dmm
@@ -10,34 +10,32 @@
/area/tether/surfacebase/outside/outside1)
"aac" = (
/obj/effect/map_effect/portal/master/side_a{
- dir = 2;
portal_id = "surfacemine"
},
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/mining_main/external)
+/area/tether/surfacebase/lowernortheva/external)
"aad" = (
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside1)
"aae" = (
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/mining_main/external)
+/area/tether/surfacebase/lowernortheva/external)
"aaf" = (
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/mining_main/external)
+/area/tether/surfacebase/lowernortheva/external)
"aag" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/mining_main/external)
+/area/tether/surfacebase/lowernortheva/external)
"aah" = (
/turf/simulated/mineral,
/area/tether/surfacebase/outside/outside1)
"aai" = (
/obj/machinery/camera/network/outside{
- dir = 1;
- icon_state = "camera"
+ dir = 1
},
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/mining_main/external)
+/area/tether/surfacebase/lowernortheva/external)
"aaj" = (
/obj/structure/railing{
dir = 8
@@ -52,7 +50,6 @@
/area/tether/surfacebase/outside/outside1)
"aak" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -28
},
@@ -61,72 +58,213 @@
icon_state = "0-4"
},
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/mining_main/external)
+/area/tether/surfacebase/lowernortheva/external)
"aal" = (
/obj/structure/cable{
icon_state = "2-8"
},
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/mining_main/external)
+/area/tether/surfacebase/lowernortheva/external)
"aam" = (
/obj/machinery/light,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/mining_main/external)
+/area/tether/surfacebase/lowernortheva/external)
"aan" = (
/turf/simulated/wall,
-/area/tether/surfacebase/cargo/mining/airlock)
+/area/tether/surfacebase/medical/mentalhealth)
"aao" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "mining_airlock_outer";
- locked = 1
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/paramed)
+"aap" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
},
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/paramed)
+"aaq" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/lowernortheva)
+"aar" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "psych_office"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/mentalhealth)
+"aas" = (
/obj/effect/map_helper/airlock/door/ext_door,
/obj/structure/cable{
icon_state = "1-2"
},
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aap" = (
/obj/machinery/door/airlock/glass_external{
frequency = 1379;
icon_state = "door_locked";
- id_tag = "mining_airlock_outer";
+ id_tag = "northciv_airlock_outer";
locked = 1
},
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/lowernortheva)
+"aat" = (
/obj/machinery/access_button/airlock_exterior{
- master_tag = "mining_airlock";
+ master_tag = "northciv_airlock";
pixel_x = 25;
pixel_y = 8
},
/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "northciv_airlock_outer";
+ locked = 1
+ },
/turf/simulated/floor/tiled/steel_grid,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aaq" = (
+/area/tether/surfacebase/lowernortheva)
+"aau" = (
+/obj/machinery/suit_cycler/medical,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aav" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aaw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aax" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aay" = (
+/obj/structure/table/rack,
+/obj/item/device/gps/medical{
+ pixel_y = 3
+ },
+/obj/item/device/gps/medical{
+ pixel_x = -3
+ },
+/obj/item/device/radio{
+ pixel_x = 2
+ },
+/obj/item/device/radio{
+ pixel_x = -1;
+ pixel_y = -3
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aaz" = (
/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
frequency = 1379;
- scrub_id = "mining_airlock_scrubber"
+ scrub_id = "northciv_airlock_scrubber"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aar" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/cargo/mining)
-"aas" = (
+/area/tether/surfacebase/lowernortheva)
+"aaA" = (
/obj/structure/grille,
/obj/structure/railing{
dir = 4
},
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 4;
frequency = 1379;
- id_tag = "mining_airlock_pump"
+ id_tag = "northciv_airlock_pump"
},
-/obj/effect/map_helper/airlock/atmos/chamber_pump,
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aat" = (
+/area/tether/surfacebase/lowernortheva)
+"aaB" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
@@ -140,12 +278,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10;
- icon_state = "intact"
- },
-/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 25
+ dir = 10
},
/obj/structure/cable{
icon_state = "1-2"
@@ -154,8 +287,8 @@
icon_state = "2-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aau" = (
+/area/tether/surfacebase/lowernortheva)
+"aaC" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 9
},
@@ -171,77 +304,121 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aav" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
- frequency = 1379;
- scrub_id = "mining_airlock_scrubber"
+/area/tether/surfacebase/lowernortheva)
+"aaD" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/light{
+ dir = 1
},
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
+"aaE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
+"aaF" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical/emt,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/medical/emt,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aaG" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aaH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aaJ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/folder/white,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
+"aaK" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aaL" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/device/multitool,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aaM" = (
/obj/structure/sign/nosmoking_2{
pixel_x = -32
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aaw" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aax" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aay" = (
/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
frequency = 1379;
- scrub_id = "mining_airlock_scrubber"
- },
-/obj/structure/sign/fire{
- pixel_x = -32
+ scrub_id = "northciv_airlock_scrubber"
},
/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aaz" = (
+/area/tether/surfacebase/lowernortheva)
+"aaN" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
@@ -255,21 +432,14 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aaA" = (
-/obj/machinery/embedded_controller/radio/airlock/phoron{
- dir = 8;
- id_tag = "mining_airlock";
- pixel_x = 25
- },
-/obj/machinery/airlock_sensor/phoron{
- id_tag = "mining_airlock_sensor";
- pixel_x = 25;
- pixel_y = 11
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
+/area/tether/surfacebase/lowernortheva)
+"aaO" = (
+/obj/structure/filingcabinet/chestdrawer{
+ name = "Medical Forms"
},
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
+"aaP" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
@@ -283,225 +453,21 @@
dir = 9
},
/obj/effect/map_helper/airlock/sensor/chamber_sensor,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aaB" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "mining_airlock_inner";
- locked = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/effect/map_helper/airlock/door/int_door,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aaC" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "mining_airlock_inner";
- locked = 1
- },
-/obj/effect/map_helper/airlock/door/int_door,
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/surfacebase/cargo/mining/airlock)
-"aaD" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor{
- dir = 5
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/closet,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/obj/random/tool,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"aaE" = (
-/turf/simulated/wall,
-/area/construction/vacant_mining_ops)
-"aaF" = (
-/obj/machinery/washing_machine,
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/cargo/mining)
-"aaG" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
-"aaH" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 6
- },
-/obj/machinery/access_button/airlock_interior{
- master_tag = "mining_airlock";
+/obj/machinery/embedded_controller/radio/airlock/phoron{
+ id_tag = "northciv_airlock";
pixel_x = 25;
- pixel_y = -8
+ pixel_y = -25
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
+/obj/machinery/airlock_sensor/phoron{
+ id_tag = "northciv_airlock_sensor";
+ pixel_x = 59;
+ pixel_y = 11
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
-"aaI" = (
-/obj/machinery/door/airlock/maintenance/common{
- name = "Trash Pit Access";
- req_one_access = list(48)
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_grid,
-/area/maintenance/lower/trash_pit)
-"aaJ" = (
-/obj/effect/floor_decal/techfloor{
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"aaK" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = -32
- },
-/obj/machinery/washing_machine,
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/cargo/mining)
-"aaL" = (
-/turf/simulated/floor/plating,
-/area/construction/vacant_mining_ops)
-"aaM" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/structure/cable{
- icon_state = "1-2"
- },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
-"aaN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/machinery/camera/network/cargo{
- dir = 8;
- icon_state = "camera"
- },
-/obj/structure/closet/hydrant{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
-"aaO" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"aaP" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/machinery/vending/wallmed_airlock{
- pixel_x = -32
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/area/tether/surfacebase/lowernortheva)
"aaQ" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -523,36 +489,51 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_one)
"aaR" = (
-/obj/effect/floor_decal/techfloor,
-/obj/structure/railing{
+/obj/structure/filingcabinet/medical{
+ desc = "A large cabinet with hard copy medical records.";
+ name = "Medical Records"
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
+"aaS" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical/emt,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/medical/emt,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 1
},
-/obj/structure/railing{
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"aaS" = (
-/obj/effect/floor_decal/borderfloor/corner{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/bordercorner{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
"aaT" = (
/obj/structure/cable{
d1 = 4;
@@ -560,8 +541,7 @@
icon_state = "4-8"
},
/obj/machinery/alarm{
- pixel_y = 22;
- target_temperature = 293.15
+ pixel_y = 22
},
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
@@ -569,15 +549,14 @@
/turf/simulated/wall,
/area/maintenance/lower/trash_pit)
"aaV" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
+/obj/structure/table/woodentable,
+/obj/structure/plushie/ian{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ pixel_y = 6
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"aaW" = (
/obj/structure/cable{
d1 = 2;
@@ -590,77 +569,59 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/vacant_site)
"aaX" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 1
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
"aaY" = (
-/obj/item/device/radio/intercom{
+/obj/effect/landmark/start{
+ name = "Paramedic"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aaZ" = (
+/obj/machinery/mech_recharger,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aba" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
-"aaZ" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
-"aba" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown/bordercorner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"abb" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 6
@@ -692,48 +653,57 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"abd" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/structure/table/rack,
+/obj/item/weapon/rig/medical/equipped,
+/obj/structure/fireaxecabinet{
+ pixel_x = -32
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 1
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
-"abe" = (
-/obj/machinery/light{
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 8
},
-/obj/effect/floor_decal/borderfloor{
- dir = 10
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 10
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_x = 0;
- pixel_y = -32
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"abe" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
},
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -13;
- pixel_y = -30
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
},
-/obj/structure/cable,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
-"abf" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/green{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"abf" = (
+/obj/structure/table/woodentable,
+/obj/item/toy/plushie/therapy/blue,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"abg" = (
/obj/machinery/light{
dir = 1
@@ -779,24 +749,29 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"abi" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start{
+ name = "Paramedic"
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
"abj" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/obj/structure/table/woodentable,
+/obj/random/plushie,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"abk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -811,8 +786,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -827,84 +801,70 @@
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
"abo" = (
-/obj/effect/floor_decal/borderfloor{
+/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/border{
+/obj/effect/floor_decal/corner/paleblue/border{
dir = 4
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
-"abp" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance/common{
- name = "Trash Pit Access";
- req_one_access = list(48,12)
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"abq" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"abr" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/cargo,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"abs" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/cigarettes,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"abt" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/random/junk,
-/obj/structure/cable{
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"abu" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/obj/random/maintenance/clean,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"abp" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
+"abq" = (
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
+"abr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
+"abs" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/public_garden_maintenence)
+"abt" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/public_garden_maintenence)
+"abu" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/public_garden_maintenence)
"abv" = (
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
@@ -928,22 +888,28 @@
},
/area/security/checkpoint)
"aby" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/obj/random/junk,
-/obj/random/maintenance/clean,
-/obj/random/tool,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/railing{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/public_garden_maintenence)
"abz" = (
/obj/structure/table/woodentable,
/obj/machinery/light_construct{
- dir = 1;
- icon_state = "tube-construct-stage1"
+ dir = 1
},
/obj/item/glass_jar,
/turf/simulated/floor/wood,
@@ -969,15 +935,13 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
"abC" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
-/obj/random/junk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
+/obj/structure/closet/crate,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/drinkbottle,
/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/area/maintenance/lower/public_garden_maintenence)
"abD" = (
/obj/machinery/light/small{
dir = 1
@@ -985,61 +949,30 @@
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
"abE" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/random/junk,
-/obj/random/junk,
-/obj/random/maintenance/cargo,
-/obj/structure/cable{
- icon_state = "1-4"
- },
/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/area/maintenance/lower/public_garden_maintenence)
"abF" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{
- pixel_y = 13
- },
-/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{
- pixel_x = 9
- },
-/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{
- pixel_x = -7;
- pixel_y = -7
- },
-/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{
- pixel_x = -10;
- pixel_y = 5
- },
-/obj/item/trash/raisins{
- desc = "This trash looks like it's had one too many.";
- name = "Wasted waste"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"abG" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/cigarettes,
/obj/random/junk,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence)
+"abG" = (
+/obj/effect/floor_decal/rust,
+/obj/random/cutout,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence)
+"abH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"abH" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/area/maintenance/lower/mining_eva)
"abI" = (
/obj/structure/closet/crate/plastic,
/turf/simulated/floor/tiled,
@@ -1064,14 +997,8 @@
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/public_garden_one)
"abL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/construction/vacant_mining_ops)
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
"abM" = (
/obj/structure/catwalk,
/obj/random/junk,
@@ -1084,31 +1011,27 @@
/turf/simulated/wall/r_wall,
/area/rnd/testingroom)
"abO" = (
-/obj/machinery/door/airlock/maintenance/common{
- name = "Trash Pit Access";
- req_one_access = list(26,48,12)
- },
/obj/structure/catwalk,
/obj/machinery/door/firedoor/glass,
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"abP" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"abQ" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -1141,22 +1064,24 @@
/turf/simulated/wall,
/area/maintenance/lower/mining_eva)
"abU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_y = 4
},
-/turf/simulated/floor/plating,
-/area/construction/vacant_mining_ops)
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
"abV" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
+/obj/effect/landmark/start{
+ name = "Psychiatrist"
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
"abW" = (
/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
name = "Research Testing Scrubber";
@@ -1165,87 +1090,141 @@
/turf/simulated/floor/tiled,
/area/rnd/testingroom)
"abX" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"abY" = (
-/obj/machinery/door/airlock/maintenance/cargo{
- name = "Mining Maintenance Access";
- req_one_access = list(48)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "psych_birdcage"
+ },
/turf/simulated/floor/plating,
-/area/tether/surfacebase/cargo/mining)
+/area/tether/surfacebase/medical/mentalhealth)
+"abY" = (
+/obj/machinery/door/airlock/medical{
+ name = "EMT Bay"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/paramed)
"abZ" = (
-/obj/structure/closet/crate,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"aca" = (
-/obj/machinery/light{
- dir = 1
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"acb" = (
-/turf/simulated/mineral,
-/area/rnd/testingroom)
-"acc" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/cargo/warehouse)
-"acd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"ace" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+ dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aca" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"acb" = (
+/turf/simulated/mineral,
+/area/rnd/testingroom)
+"acc" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/grass,
+/area/tether/surfacebase/medical/mentalhealth)
+"acd" = (
+/obj/structure/table/rack,
+/obj/item/device/suit_cooling_unit{
+ pixel_y = -5
+ },
+/obj/item/device/suit_cooling_unit{
+ pixel_y = -5
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"ace" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/grass,
+/area/tether/surfacebase/medical/mentalhealth)
"acf" = (
-/obj/machinery/light_switch{
- pixel_x = 25
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
},
-/obj/machinery/camera/network/cargo,
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
},
-/obj/machinery/conveyor_switch/oneway{
- convdir = 1;
- id = "gloriouscargopipeline";
- name = "Mining Ops conveyor switch";
- pixel_x = 10;
- pixel_y = 5;
- req_access = list(48);
- req_one_access = list(48)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
"acg" = (
/obj/random/maintenance/cargo,
/obj/random/maintenance/cargo,
@@ -1253,72 +1232,73 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"ach" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark/start{
+ name = "Paramedic"
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
"aci" = (
/turf/simulated/mineral,
/area/storage/surface_eva/external)
"acj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 6;
- icon_state = "intact"
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/public_garden_maintenence)
+"ack" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ use_power = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- pixel_y = 22;
- target_temperature = 293.15
+/turf/simulated/floor/virgo3b,
+/area/tether/surfacebase/lowernortheva/external)
+"acl" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/meter,
-/obj/effect/floor_decal/industrial/warning/corner{
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
+"acm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
+"acn" = (
+/obj/structure/table/rack,
+/obj/item/device/defib_kit/compact/loaded,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 8
},
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"aco" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 5
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
-"ack" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"acl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/cargo)
-"acm" = (
-/obj/structure/window/reinforced,
-/obj/structure/closet/crate,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"acn" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"aco" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
"acp" = (
/obj/structure/grille,
/obj/structure/railing,
@@ -1333,15 +1313,9 @@
/turf/simulated/floor/tiled,
/area/rnd/testingroom)
"acq" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"acr" = (
/obj/structure/table/marble,
/obj/machinery/door/window{
@@ -1401,13 +1375,10 @@
/area/engineering/atmos)
"acw" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/vending/loadout/clothing,
/turf/simulated/floor/tiled,
@@ -1420,148 +1391,131 @@
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
"acy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/obj/structure/cable{
icon_state = "1-2"
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"acz" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/vending/loadout,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
-"acA" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 1
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 1
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
"acB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/machinery/vending/wallmed_airlock{
+ pixel_x = 32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/area/tether/surfacebase/lowernorthhall)
"acC" = (
-/obj/structure/table/rack,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining_eva)
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/machinery/button/windowtint{
+ id = "psych_office";
+ pixel_x = 6;
+ pixel_y = 10;
+ range = 12
+ },
+/obj/machinery/button/windowtint{
+ id = "psych_office_inside";
+ pixel_x = 6;
+ range = 12
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
"acD" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
"acE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/structure/dispenser{
+ phorontanks = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"acF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"acG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"acH" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 8
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"acI" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/shutters{
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"acF" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
+"acG" = (
+/obj/machinery/door/window{
dir = 8;
- id = "mine_warehouse";
- name = "Warehouse Shutters"
+ name = "Birdcage";
+ req_one_access = list(64)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
+"acH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/warehouse)
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"acI" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass,
+/area/tether/surfacebase/medical/mentalhealth)
"acJ" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -1571,55 +1525,21 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"acK" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/light/small{
+ dir = 4
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 10
- },
-/obj/machinery/status_display{
- pixel_y = 30
- },
-/obj/machinery/button/remote/blast_door{
- id = "mine_warehouse";
- name = "Warehouse Door Control";
- pixel_x = -26;
- pixel_y = 0;
- req_access = list(31)
- },
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/turf/simulated/floor/grass,
+/area/tether/surfacebase/medical/mentalhealth)
"acL" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
"acM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/virgo3b,
+/area/tether/surfacebase/lowernortheva/external)
"acN" = (
/obj/structure/cable/ender{
icon_state = "1-2";
@@ -1634,65 +1554,55 @@
/turf/simulated/floor/virgo3b,
/area/tether/surfacebase/outside/outside1)
"acO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/obj/machinery/alarm{
- alarm_id = "anomaly_testing";
- breach_detection = 0;
- dir = 8;
- frequency = 1439;
- pixel_x = 22;
- pixel_y = 0;
- report_danger_level = 0
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"acP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ pixel_x = -23
},
-/obj/structure/cable{
- icon_state = "2-8"
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
+"acP" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"acQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10;
- icon_state = "intact"
+ dir = 10
},
/obj/machinery/floodlight,
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"acR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
+/obj/structure/cable/green{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"acS" = (
/obj/machinery/atmospherics/pipe/tank/air{
dir = 4
@@ -1721,13 +1631,12 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"acU" = (
-/obj/structure/railing,
-/obj/machinery/conveyor{
- dir = 8;
- id = "surfacecargo"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"acV" = (
/obj/structure/cable/green{
d1 = 4;
@@ -1758,27 +1667,24 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"acY" = (
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"acZ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
+/obj/structure/bed/chair{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 4
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 2
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"ada" = (
/obj/structure/cable/green{
d1 = 4;
@@ -1793,29 +1699,37 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"adb" = (
-/obj/structure/table/glass,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/light{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/paramed)
"adc" = (
-/obj/structure/table/glass,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/structure/bed/chair{
+ dir = 8
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 1
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
},
-/obj/machinery/camera/network/cargo,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"add" = (
/obj/structure/cable/green{
d1 = 4;
@@ -1826,36 +1740,23 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"ade" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 5
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"adf" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/cargo)
-"adg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/bed/chair{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"adf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"adh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -1929,20 +1830,12 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"adm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/bed/chair/bay/chair/padded/red/bignest{
+ name = "Tweeter's Bed"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/mob/living/simple_mob/animal/passive/bird/azure_tit/tweeter,
+/turf/simulated/floor/grass,
+/area/tether/surfacebase/medical/mentalhealth)
"adn" = (
/turf/simulated/wall/r_wall,
/area/rnd/tankstorage)
@@ -1951,71 +1844,41 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"adp" = (
-/obj/machinery/atmospherics/pipe/tank/air{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
-"adq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"adr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"ads" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
+/obj/structure/table/rack,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/structure/cable/green{
+ d1 = 2;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "2-8"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"adt" = (
-/obj/machinery/space_heater,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/mining_eva)
+"adq" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/tether/surfacebase/medical/mentalhealth)
+"adr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/xenoflora)
+"ads" = (
+/obj/structure/table/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/lowernorthhall)
+"adt" = (
+/turf/simulated/wall,
+/area/maintenance/substation/cargostoresubstation)
"adu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -2037,27 +1900,81 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"adv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/area/tether/surfacebase/lowernorthhall)
"adw" = (
-/obj/machinery/atmospherics/pipe/cap/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/construction/vacant_mining_ops)
+/obj/structure/flora/pottedplant/fern,
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"adx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/cap/visible/supply,
-/turf/simulated/floor/plating,
-/area/construction/vacant_mining_ops)
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"ady" = (
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining_eva)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 8;
+ frequency = 1379;
+ master_tag = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = -24;
+ pixel_y = 25;
+ req_access = list(39)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyaccess)
"adz" = (
/obj/structure/cable/green{
d1 = 2;
@@ -2067,67 +1984,70 @@
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
"adA" = (
-/obj/structure/disposaloutlet{
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -8;
+ pixel_y = -26
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
+"adB" = (
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/anomaly_spectroscopy,
+/obj/item/weapon/book/manual/anomaly_testing,
+/obj/item/weapon/book/manual/materials_chemistry_analysis,
+/obj/item/weapon/book/manual/resleeving,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
+"adC" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 8
},
-/obj/structure/disposalpipe/trunk{
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
},
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"adB" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"adC" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Warehouse"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
"adD" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
"adE" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/window/northright{
- dir = 2;
- name = "Mailing Room";
- req_access = list(50)
- },
-/obj/structure/noticeboard{
- pixel_x = 32
- },
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "surfcargooffice";
- layer = 3.3;
- name = "Cargo Office Shutters"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"adF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -2148,9 +2068,40 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"adG" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 8;
+ frequency = 1379;
+ master_tag = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = 24;
+ pixel_y = 25;
+ req_access = list(39)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyaccess)
"adH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -2159,7 +2110,6 @@
dir = 4
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -28
},
@@ -2194,7 +2144,6 @@
},
/obj/structure/extinguisher_cabinet{
dir = 1;
- icon_state = "extinguisher_closed";
pixel_y = -32
},
/obj/structure/disposalpipe/segment{
@@ -2243,8 +2192,7 @@
"adN" = (
/obj/machinery/power/apc/high{
dir = 4;
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/structure/cable/green{
d2 = 8;
@@ -2271,75 +2219,80 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"adP" = (
-/obj/structure/table/glass,
-/obj/effect/floor_decal/borderfloor{
+/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/border{
+/obj/effect/floor_decal/corner/paleblue/border{
dir = 4
},
-/obj/machinery/computer/guestpass{
- dir = 8;
- pixel_x = 25
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
"adQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/closet/secure_closet/paramedic,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
-"adR" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
},
-/obj/structure/bed/chair/sofa/brown/left{
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
},
-/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
},
-/obj/effect/floor_decal/corner/brown/border{
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 8
},
-/obj/effect/floor_decal/borderfloor/corner2{
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/obj/effect/floor_decal/corner/brown/bordercorner2{
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"adR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"adS" = (
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"adT" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "mine_warehouse";
- name = "Warehouse Shutters"
+/obj/structure/flora/pottedplant/fern,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/warehouse)
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/mentalhealth)
"adU" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Mental Health";
+ req_one_access = list()
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"adV" = (
/obj/structure/table/glass,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -2383,76 +2336,79 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"adX" = (
-/obj/structure/table/standard,
-/obj/item/weapon/stamp/cargo,
-/obj/item/weapon/stamp/denied{
- pixel_x = 4;
- pixel_y = -2
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/weapon/clipboard,
-/obj/item/weapon/folder/yellow,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
-"adY" = (
-/obj/machinery/button/remote/blast_door{
- id = "mine_warehouse";
- name = "Warehouse Door Control";
- pixel_x = -26;
- pixel_y = 24;
- req_access = list(31)
- },
-/obj/machinery/button/remote/blast_door{
- id = "surfcargooffice";
- name = "Office Shutters";
- pixel_x = -34;
- pixel_y = 24;
- req_access = list(31)
- },
-/obj/effect/landmark/start{
- name = "Cargo Technician"
- },
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
-"adZ" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"aea" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay recovery room door.";
+ id = "Psych";
+ name = "Exit Button";
+ pixel_x = -26;
+ pixel_y = -26
},
-/obj/structure/cable{
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"adY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "Psych";
+ name = "Mental Health"
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"adZ" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"aea" = (
+/obj/structure/closet/secure_closet/chemical{
+ req_access = list(64);
+ req_one_access = list(5)
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
"aeb" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -2495,59 +2451,80 @@
/turf/simulated/floor/plating,
/area/engineering/atmos)
"aed" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/vending/medical{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"aee" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"aef" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/lowernorthhall)
+"aeg" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -32
+ },
+/obj/machinery/washing_machine,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/lowernorthhall)
+"aeh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
-"aee" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"aef" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"aeg" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
-"aeh" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/area/tether/surfacebase/lowernorthhall)
"aei" = (
-/obj/effect/floor_decal/techfloor{
- dir = 10
- },
-/obj/structure/railing{
+/obj/structure/bed/chair/comfy/brown{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/table/rack,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
"aej" = (
/obj/machinery/door/airlock/maintenance/engi{
name = "Atmospherics";
@@ -2569,49 +2546,28 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aek" = (
-/obj/effect/floor_decal/techfloor,
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/obj/structure/bed/psych,
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
"ael" = (
-/obj/effect/floor_decal/techfloor,
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash_pile,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/obj/structure/table/woodentable,
+/obj/item/weapon/clipboard,
+/obj/machinery/light,
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/medical/mentalhealth)
"aem" = (
-/obj/effect/floor_decal/techfloor,
-/obj/structure/railing{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aen" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/random/trash_pile,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/wall/r_wall,
+/area/medical/virology)
"aeo" = (
/turf/simulated/floor/virgo3b,
/area/tether/surfacebase/outside/outside1)
@@ -2659,16 +2615,26 @@
/turf/simulated/floor/plating,
/area/engineering/atmos)
"aes" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/machinery/camera/network/cargo{
dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/structure/closet/hydrant{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/area/tether/surfacebase/lowernorthhall)
"aet" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -2698,7 +2664,6 @@
},
/obj/machinery/door/blast/regular{
density = 0;
- dir = 1;
icon_state = "pdoor0";
id = "atmoslockdown";
layer = 1;
@@ -2710,11 +2675,25 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aev" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "EMT Bay"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
"aew" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -2748,7 +2727,6 @@
/obj/machinery/computer/security/telescreen/entertainment{
desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?";
icon_state = "frame";
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/tiled,
@@ -2812,46 +2790,43 @@
/obj/random/maintenance/cargo,
/obj/random/maintenance/clean,
/obj/random/tool,
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/mining_eva)
"aeC" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"aeD" = (
-/obj/structure/table/glass,
-/obj/effect/floor_decal/borderfloor{
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"aeE" = (
-/obj/structure/railing,
-/obj/machinery/conveyor{
- dir = 8;
- id = "surfacecargo"
- },
-/obj/structure/plasticflaps,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"aeF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 30
},
/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/area/tether/surfacebase/cargostore/warehouse)
+"aeD" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aeE" = (
+/turf/simulated/wall/r_wall,
+/area/medical/virology)
+"aeF" = (
+/obj/random/junk,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
"aeG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -2897,18 +2872,19 @@
/obj/machinery/computer/security/telescreen/entertainment{
desc = "Looks like its set to the kek-centeral. I wonder what else is on?";
icon_state = "frame";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
"aeJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/structure/bed/chair/wheelchair{
+ dir = 8
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
"aeK" = (
/obj/machinery/light/small,
/obj/effect/floor_decal/industrial/warning/corner{
@@ -2937,7 +2913,6 @@
/obj/machinery/computer/security/telescreen/entertainment{
desc = "Looks like it's on MTV. Now you can't blame that demi-cowgirl for working her money maker. I wonder what else is on?";
icon_state = "frame";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/lino,
@@ -2946,19 +2921,31 @@
/obj/machinery/computer/security/telescreen/entertainment{
desc = "Looks like it's on the fishing channel. I wonder what else is on?";
icon_state = "frame";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aeN" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "gloriouscargopipeline"
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/obj/structure/plasticflaps,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aeO" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock{
@@ -2986,7 +2973,6 @@
},
/obj/structure/extinguisher_cabinet{
dir = 1;
- icon_state = "extinguisher_closed";
pixel_y = -32
},
/obj/structure/disposalpipe/segment{
@@ -2995,41 +2981,36 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_one)
"aeQ" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Surface Cargo"
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
},
-/obj/machinery/door/firedoor/glass,
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 8
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/monofloor{
- dir = 8
+/obj/effect/floor_decal/corner/lightgrey/bordercorner{
+ dir = 4
},
-/area/tether/surfacebase/surface_one_hall)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aeR" = (
/turf/simulated/floor/reinforced,
/area/rnd/testingroom)
"aeS" = (
/obj/effect/floor_decal/borderfloor{
- dir = 10
+ dir = 1
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 10
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 8
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/area/tether/surfacebase/lowernorthhall)
"aeT" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 1
@@ -3047,17 +3028,8 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden)
"aeU" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/lowerhall)
"aeV" = (
/obj/structure/stairs/north,
/turf/simulated/floor/virgo3b,
@@ -3070,7 +3042,6 @@
icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -28
},
@@ -3092,28 +3063,42 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_one)
"aeY" = (
-/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/medical{
+ id_tag = "mentaldoor";
+ name = "Mental Health";
+ req_access = list(64)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/mentalhealth)
"aeZ" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 9
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/area/tether/surfacebase/lowernorthhall)
"afa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -3135,22 +3120,18 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_one)
"afb" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/machinery/computer/supplycomp{
- dir = 1;
- icon_state = "computer"
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "psych_office_inside"
},
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/brown/bordercorner2,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/mentalhealth)
"afc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -3190,18 +3171,11 @@
/turf/simulated/floor/reinforced,
/area/rnd/testingroom)
"aff" = (
-/obj/machinery/door/firedoor/glass,
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 4
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 4
- },
-/area/tether/surfacebase/cargo)
+/turf/simulated/wall,
+/area/medical/virologyaccess)
"afg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- icon_state = "intact-supply"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
@@ -3213,8 +3187,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -3233,107 +3206,95 @@
/turf/simulated/floor/tiled/monofloor,
/area/tether/surfacebase/surface_one_hall)
"afi" = (
-/obj/structure/bed/chair{
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/brown/bordercorner2,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/area/tether/surfacebase/lowernorthhall)
"afj" = (
-/obj/structure/bed/chair{
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"afk" = (
-/obj/structure/reagent_dispensers/water_cooler/full,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"afl" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 6
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
-"afm" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Warehouse"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/surfacebase/cargo/warehouse)
-"afn" = (
-/obj/machinery/door/firedoor/glass,
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 8
- },
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Surface Cargo"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/monofloor{
- dir = 8
- },
-/area/tether/surfacebase/cargo)
-"afo" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
+ dir = 1
},
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 6
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"afk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 9
},
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"afl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/machinery/camera/network/cargo{
- dir = 8;
- icon_state = "camera"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/area/tether/surfacebase/lowernorthhall)
+"afm" = (
+/turf/simulated/wall/r_wall,
+/area/medical/virologyaccess)
+"afn" = (
+/obj/machinery/disease2/diseaseanalyser,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"afo" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"afp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -3348,7 +3309,9 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"afq" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
/turf/simulated/floor/virgo3b,
/area/tether/surfacebase/outside/outside1)
"afr" = (
@@ -3361,37 +3324,27 @@
/area/storage/primary)
"afs" = (
/obj/effect/floor_decal/borderfloor{
- dir = 8
+ dir = 5
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 8
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
+ dir = 5
},
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 5
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/area/tether/surfacebase/lowernorthhall)
"aft" = (
-/obj/machinery/camera/network/civilian{
- dir = 2
- },
+/obj/machinery/camera/network/civilian,
/obj/machinery/lapvend,
/turf/simulated/floor/tiled,
/area/storage/primary)
@@ -3420,41 +3373,25 @@
/turf/simulated/floor/tiled,
/area/storage/primary)
"afx" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+/obj/machinery/computer/diseasesplicer,
+/obj/machinery/light{
+ dir = 1
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 8
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/structure/sign/nosmoking_2{
- pixel_x = -32
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"afy" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/obj/item/weapon/pen/red{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/junction/yjunction,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
"afz" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -3479,136 +3416,116 @@
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
"afB" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+/obj/machinery/disease2/incubator,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 8
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"afC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/tiled/techfloor,
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"afD" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 4
- },
+/obj/machinery/computer/centrifuge,
/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ pixel_y = 22
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"afE" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/lowernorthhall)
"afF" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/area/tether/surfacebase/lowernorthhall)
"afG" = (
/obj/structure/bed/chair,
/obj/machinery/camera/network/civilian,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"afH" = (
-/obj/effect/floor_decal/techfloor/orange{
+/obj/effect/floor_decal/industrial/danger{
dir = 4
},
-/obj/machinery/camera/network/civilian{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/tram)
-"afI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "surfcargooffice";
- layer = 3.3;
- name = "Cargo Office Shutters"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/cargo/office)
-"afJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 4
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 4
- },
-/area/tether/surfacebase/surface_one_hall)
-"afK" = (
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/light{
dir = 1
},
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/tram)
+"afI" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"afJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"afK" = (
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -3618,50 +3535,53 @@
/obj/structure/disposalpipe/junction{
dir = 8
},
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"afL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"afM" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- icon_state = "extinguisher_closed";
- pixel_y = -32
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"afN" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "gloriouscargopipeline"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"afO" = (
-/obj/structure/railing{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 8
},
-/obj/structure/sign/warning{
- desc = "A warning sign. It has great big words saying 'Surface Cargo Deliveries. Stay behind the railings when active!' on it.";
- name = "Surface Cargo Delivery";
- pixel_y = 32
- },
-/obj/effect/floor_decal/industrial/loading,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/area/tether/surfacebase/lowernorthhall)
+"afO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"afP" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -3681,54 +3601,34 @@
/turf/simulated/floor/tiled,
/area/rnd/hardstorage)
"afQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/structure/sign/warning/moving_parts{
- desc = "A warning sign for moving parts. This one states 'Put your gathered ore here for processing!' on it.";
- name = "To Mining Operations Processing";
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
-"afR" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/virgo3b,
-/area/tether/surfacebase/outside/outside1)
-"afS" = (
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 1
- },
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 10;
- pixel_y = 32
- },
-/obj/machinery/conveyor_switch{
- id = "surfacecargo";
- name = "Surface Cargo Delivery conveyor switch";
- pixel_x = 0;
- pixel_y = 0
- },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/area/tether/surfacebase/lowernorthhall)
+"afR" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining_eva)
+"afS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"afT" = (
/turf/simulated/floor/tiled,
/area/storage/primary)
@@ -3775,13 +3675,10 @@
/area/tether/surfacebase/tram)
"afZ" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/vending/loadout/overwear,
/turf/simulated/floor/tiled,
@@ -3791,15 +3688,13 @@
dir = 4
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/obj/machinery/camera/network/civilian{
dir = 9
},
/obj/machinery/vending/coffee{
- dir = 8;
- icon_state = "coffee"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -3812,38 +3707,34 @@
/turf/simulated/floor/holofloor/tiled/dark,
/area/tether/elevator)
"agd" = (
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining_eva)
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "CargoShop Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/cargostoresubstation)
"age" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"agf" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- name = "Surface Cargo";
- sortType = "Surface Cargo"
+/obj/structure/disposalpipe/junction{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"agg" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 4
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "gloriouscargopipeline"
- },
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"agh" = (
/obj/turbolift_map_holder/tether{
dir = 4
@@ -3857,15 +3748,12 @@
},
/area/tether/elevator)
"agj" = (
-/obj/machinery/button/remote/blast_door{
- id = "mine_warehouse";
- name = "Warehouse Door Control";
- pixel_x = 0;
- pixel_y = -22;
- req_access = list(31)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/tether/surfacebase/cargo/warehouse)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"agk" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/tiled,
@@ -3877,7 +3765,6 @@
"agm" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/tiled,
@@ -3904,26 +3791,20 @@
"agp" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/suspension_gen,
/turf/simulated/floor/tiled,
/area/rnd/xenoarch_storage)
"agq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/tvalve/bypass{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo)
+/turf/simulated/floor/plating,
+/area/medical/virology)
"agr" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/tiled,
@@ -4022,7 +3903,6 @@
/area/rnd/xenoarch_storage)
"agD" = (
/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
dir = 8;
name = "west bump";
pixel_x = -28
@@ -4052,21 +3932,24 @@
/area/rnd/testingroom)
"agG" = (
/obj/structure/disposaloutlet{
- dir = 1;
- icon_state = "outlet"
+ dir = 1
},
/obj/structure/disposalpipe/trunk,
/obj/effect/floor_decal/industrial/warning/dust,
/turf/simulated/floor/reinforced,
/area/rnd/testingroom)
"agH" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/area/maintenance/lower/mining_eva)
"agI" = (
/obj/machinery/newscaster{
pixel_x = -30
@@ -4112,12 +3995,10 @@
/obj/structure/table/glass,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/mauve/border{
dir = 1
@@ -4136,28 +4017,29 @@
dir = 4;
icon_state = "pdoor0";
id = "gogogo";
- name = "Blast Door";
opacity = 0
},
/turf/simulated/floor/tiled,
/area/rnd/testingroom)
"agQ" = (
-/obj/structure/railing{
- dir = 8
+/obj/structure/catwalk,
+/obj/random/cigarettes,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/structure/railing{
- dir = 1
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
},
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash_pile,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"agR" = (
/obj/structure/table/glass,
/obj/item/weapon/tool/screwdriver,
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/mauve/border{
dir = 1
@@ -4165,20 +4047,15 @@
/turf/simulated/floor/tiled/white,
/area/rnd/chemistry_lab)
"agS" = (
-/obj/structure/railing{
+/obj/structure/catwalk,
+/obj/machinery/light/small{
dir = 1
},
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
+/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"agT" = (
/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
/obj/random/junk,
/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
@@ -4203,7 +4080,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/obj/effect/floor_decal/borderfloor{
@@ -4269,7 +4145,6 @@
dir = 4;
icon_state = "pdoor0";
id = "gogogo";
- name = "Blast Door";
opacity = 0
},
/turf/simulated/floor/tiled,
@@ -4289,7 +4164,6 @@
dir = 4;
icon_state = "pdoor0";
id = "gogogo";
- name = "Blast Door";
opacity = 0
},
/turf/simulated/floor/tiled,
@@ -4301,14 +4175,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_one_hall)
"ahd" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "shuttle blast";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
/obj/machinery/door/window/northleft{
req_access = list(47)
},
@@ -4321,7 +4187,6 @@
dir = 4;
icon_state = "pdoor0";
id = "gogogo";
- name = "Blast Door";
opacity = 0
},
/turf/simulated/floor/tiled,
@@ -4342,7 +4207,6 @@
dir = 4;
icon_state = "pdoor0";
id = "gogogo";
- name = "Blast Door";
opacity = 0
},
/turf/simulated/floor/tiled,
@@ -4360,12 +4224,10 @@
/turf/simulated/floor/tiled/white,
/area/rnd/chemistry_lab)
"ahg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/random/cigarettes,
-/obj/random/junk,
-/obj/random/junk,
-/obj/random/tool,
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"ahh" = (
@@ -4406,17 +4268,15 @@
/turf/simulated/floor/plating,
/area/storage/surface_eva)
"ahk" = (
-/obj/machinery/atmospherics/pipe/tank/air,
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
-/area/storage/surface_eva)
+/area/maintenance/lower/trash_pit)
"ahl" = (
/turf/simulated/wall,
/area/hallway/lower/first_west)
"ahm" = (
/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/structure/cable/green{
d1 = 4;
@@ -4441,33 +4301,36 @@
/turf/simulated/floor/tiled/steel_grid,
/area/storage/primary)
"ahp" = (
-/obj/structure/railing{
- dir = 1
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/maintenance/clean,
+/obj/random/tool,
+/obj/structure/cable{
+ icon_state = "1-2"
},
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
+"ahq" = (
/obj/structure/railing{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/cargo,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining_eva)
-"ahq" = (
/obj/structure/railing{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining_eva)
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"ahr" = (
-/obj/structure/railing{
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
+/obj/random/junk,
+/obj/random/junk,
/obj/random/maintenance/clean,
-/obj/random/maintenance/cargo,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining_eva)
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"ahs" = (
/obj/structure/railing{
dir = 1
@@ -4529,38 +4392,39 @@
/area/rnd/testingroom)
"ahz" = (
/obj/structure/railing{
- dir = 8
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
},
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
+"ahA" = (
+/obj/structure/catwalk,
/obj/random/junk,
/obj/random/junk,
/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
-"ahA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/warning,
-/obj/random/junk,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
"ahB" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining_eva)
+"ahC" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
-"ahC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/storage/surface_eva)
"ahD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
/obj/effect/floor_decal/industrial/warning{
@@ -4599,8 +4463,7 @@
dir = 8
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/tiled/white,
/area/rnd/chemistry_lab)
@@ -4714,7 +4577,6 @@
"ahQ" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/floor_decal/borderfloor{
@@ -4867,50 +4729,38 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aid" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/status_display{
- pixel_y = 30
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aie" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Cargo Shop";
+ sortType = "Cargo Shop"
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
@@ -4922,31 +4772,28 @@
dir = 4
},
/obj/machinery/camera/network/tether,
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aig" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 9
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_one_hall)
+/obj/machinery/smartfridge/secure/virology,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"aih" = (
/obj/machinery/button/remote/blast_door{
id = "gogogo";
@@ -4973,13 +4820,13 @@
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aij" = (
@@ -5015,7 +4862,6 @@
/obj/machinery/button/remote/blast_door{
id = "suckysucky";
name = "Scrubber Blast Door-Controller";
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/cable/green{
@@ -5036,15 +4882,13 @@
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/tiled/white,
/area/rnd/chemistry_lab)
"aio" = (
/obj/machinery/camera/network/research{
- dir = 5;
- icon_state = "camera"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/rnd/testingroom)
@@ -5081,8 +4925,7 @@
/area/maintenance/lower/mining_eva)
"ais" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/tiled/white,
/area/rnd/chemistry_lab)
@@ -5111,8 +4954,7 @@
/area/rnd/testingroom)
"aiw" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/structure/cable/green{
d1 = 4;
@@ -5129,7 +4971,6 @@
alarm_id = "pen_nine";
breach_detection = 0;
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/tiled,
@@ -5243,7 +5084,6 @@
/obj/item/weapon/reagent_containers/dropper,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -25
},
/obj/effect/floor_decal/borderfloor,
@@ -5310,8 +5150,7 @@
/area/rnd/testingroom)
"aiR" = (
/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- name = "Research Testing Scrubber";
- use_power = 1
+ name = "Research Testing Scrubber"
},
/turf/simulated/floor/tiled,
/area/rnd/testingroom)
@@ -5374,8 +5213,16 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_one)
"aiW" = (
-/turf/simulated/mineral,
-/area/engineering/engine_room)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/xenoflora)
"aiX" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/disposalpipe/segment{
@@ -5454,14 +5301,17 @@
},
/area/tether/surfacebase/surface_one_hall)
"ajb" = (
-/obj/machinery/door/airlock/maintenance/cargo{
- name = "Mining Maintenance Access";
- req_one_access = list(48)
+/obj/machinery/computer/arcade{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/cargo/warehouse)
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
"ajc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4
@@ -5538,7 +5388,6 @@
/obj/machinery/alarm{
breach_detection = 0;
dir = 8;
- icon_state = "alarm0";
pixel_x = 25;
rcon_setting = 3;
report_danger_level = 0
@@ -5564,8 +5413,7 @@
/area/engineering/atmos_intake)
"aji" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/reinforced,
/area/rnd/testingroom)
@@ -5595,8 +5443,7 @@
/area/crew_quarters/sleep/Dorm_7)
"ajm" = (
/obj/machinery/vending/tool{
- dir = 1;
- icon_state = "tool"
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -5862,8 +5709,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
@@ -5922,18 +5768,13 @@
/turf/simulated/wall,
/area/holodeck_control)
"ajP" = (
-/obj/structure/railing{
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/public_garden_maintenence)
+/obj/random/junk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"ajQ" = (
/obj/structure/railing{
dir = 1
@@ -5941,15 +5782,14 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/public_garden_maintenence)
"ajR" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/public_garden_maintenence)
+/obj/effect/floor_decal/rust,
+/obj/random/cigarettes,
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/tool,
+/obj/effect/landmark/teleplumb_exit,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"ajS" = (
/turf/simulated/wall,
/area/tether/surfacebase/public_garden_one)
@@ -6029,12 +5869,12 @@
/turf/simulated/floor/plating,
/area/tether/surfacebase/public_garden_one)
"ajZ" = (
-/obj/structure/railing{
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/public_garden_maintenence)
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"aka" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -6043,7 +5883,6 @@
dir = 1
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -6161,8 +6000,7 @@
/area/maintenance/lower/public_garden_maintenence)
"akj" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/closet/hydrant{
pixel_x = -32
@@ -6191,24 +6029,22 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/public_garden_maintenence)
"akm" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/public_garden_maintenence)
+/obj/machinery/atmospherics/pipe/tank/air,
+/turf/simulated/floor/plating,
+/area/storage/surface_eva)
"akn" = (
/turf/simulated/mineral,
/area/maintenance/lower/public_garden_maintenence)
"ako" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/obj/random/drinkbottle,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence)
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining_eva)
"akp" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -6242,14 +6078,20 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/public_garden_maintenence)
"akt" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence)
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining_eva)
"aku" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence)
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining_eva)
"akv" = (
/obj/effect/floor_decal/techfloor{
dir = 9
@@ -6285,29 +6127,31 @@
dir = 4
},
/obj/structure/table/rack,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/public_garden_maintenence)
"akA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence)
+/area/maintenance/lowmedbaymaint)
"akB" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/cutout,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence)
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/security/weaponsrange)
"akC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
@@ -6326,9 +6170,7 @@
/area/tether/surfacebase/public_garden_one)
"akE" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 1
@@ -6366,30 +6208,33 @@
d2 = 0;
icon_state = "16-0"
},
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/zpipe/up/supply{
dir = 4
},
+/obj/structure/disposalpipe/up{
+ dir = 4
+ },
+/obj/structure/cable/green,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/public_garden_maintenence)
"akH" = (
/obj/machinery/camera/network/outside{
- dir = 9;
- icon_state = "camera"
+ dir = 9
},
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/holodeck_control)
"akI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/public_garden_maintenence)
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/obj/random/junk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"akJ" = (
/obj/structure/table/rack,
/obj/random/maintenance/research,
@@ -6397,10 +6242,8 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/public_garden_maintenence)
"akK" = (
-/obj/effect/floor_decal/rust,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence)
+/turf/simulated/wall,
+/area/tether/surfacebase/lowernortheva/external)
"akL" = (
/turf/simulated/floor/reinforced{
name = "Holodeck Projector Floor"
@@ -6465,6 +6308,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/tether/surfacebase/public_garden)
"akT" = (
@@ -6483,6 +6327,11 @@
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 9
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
"akV" = (
@@ -6505,15 +6354,16 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
"akY" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/railing{
+ dir = 8
},
+/obj/structure/railing,
+/obj/effect/floor_decal/rust,
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence)
+/area/maintenance/lower/trash_pit)
"akZ" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
@@ -6548,31 +6398,31 @@
/area/tether/surfacebase/public_garden_one)
"ald" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 1
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden)
"ale" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 1
@@ -6581,6 +6431,14 @@
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden)
"alf" = (
@@ -6618,12 +6476,29 @@
dir = 5
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden)
"alh" = (
/obj/effect/floor_decal/techfloor{
dir = 5
},
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/public_garden)
"ali" = (
@@ -6634,6 +6509,11 @@
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 10
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
"alj" = (
@@ -6736,9 +6616,6 @@
/turf/simulated/floor/tiled/monofloor,
/area/tether/surfacebase/public_garden_one)
"alo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/structure/cable/green{
@@ -6746,11 +6623,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -6759,6 +6631,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden)
"alp" = (
@@ -6791,9 +6667,6 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden)
"alq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -6804,9 +6677,6 @@
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -6818,6 +6688,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden)
"alr" = (
@@ -6839,6 +6713,21 @@
/obj/effect/floor_decal/techfloor{
dir = 6
},
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/public_garden)
"alt" = (
@@ -6851,12 +6740,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
"alu" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
+/obj/effect/floor_decal/industrial/warning,
+/obj/random/junk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"alv" = (
/obj/structure/railing{
dir = 8
@@ -6972,30 +6860,18 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
"alD" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
},
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"alE" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
+/turf/simulated/floor/plating,
+/area/storage/surface_eva)
"alF" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -7125,8 +7001,7 @@
dir = 8
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
@@ -7253,8 +7128,7 @@
/area/rnd/tankstorage)
"ama" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 8;
- icon_state = "warning"
+ dir = 8
},
/obj/machinery/computer/area_atmos/tag{
dir = 4;
@@ -7265,8 +7139,7 @@
/area/rnd/tankstorage)
"amb" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -7290,8 +7163,17 @@
/turf/simulated/floor/tiled,
/area/rnd/tankstorage)
"amc" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/cargo/office)
+/obj/structure/sink{
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
"amd" = (
/obj/structure/sign/warning/nosmoking_2,
/turf/simulated/wall/r_wall,
@@ -7378,7 +7260,6 @@
/obj/random/tech_supply,
/obj/machinery/requests_console{
department = "Tool Storage";
- departmentType = 0;
pixel_y = 30
},
/turf/simulated/floor/tiled,
@@ -7387,8 +7268,7 @@
/obj/machinery/hologram/holopad,
/obj/item/device/radio/intercom{
dir = 1;
- pixel_y = 24;
- req_access = list()
+ pixel_y = 24
},
/turf/simulated/floor/tiled,
/area/storage/primary)
@@ -7421,8 +7301,12 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/mining_eva)
@@ -7489,9 +7373,17 @@
/turf/simulated/floor/tiled/steel_dirty,
/area/rnd/tankstorage)
"amw" = (
-/obj/structure/sign/department/cargo,
-/turf/simulated/wall,
-/area/tether/surfacebase/cargo/office)
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"amx" = (
/obj/effect/floor_decal/industrial/warning/dust,
/obj/structure/cable/green{
@@ -7592,9 +7484,7 @@
/obj/random/tech_supply,
/obj/random/tech_supply,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/storage/primary)
@@ -7615,7 +7505,6 @@
/obj/effect/floor_decal/industrial/warning/dust,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/tiled/steel_dirty,
@@ -7660,9 +7549,23 @@
/turf/simulated/floor/tiled/steel_dirty,
/area/rnd/tankstorage)
"amP" = (
-/obj/machinery/camera/network/cargo,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
"amQ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -7699,7 +7602,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/disposalpipe/segment,
@@ -7725,8 +7627,7 @@
"amU" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/ai_status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/tiled,
/area/storage/primary)
@@ -7736,8 +7637,7 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/tiled,
/area/storage/primary)
@@ -7878,15 +7778,14 @@
/turf/simulated/floor/reinforced,
/area/rnd/testingroom)
"anf" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/maintenance/cargo,
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/obj/random/junk,
-/obj/random/junk,
-/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"ang" = (
@@ -7900,9 +7799,7 @@
dir = 8
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
+ dir = 10
},
/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
dir = 10
@@ -7959,7 +7856,6 @@
pixel_y = -24
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -28
},
@@ -7998,7 +7894,6 @@
/obj/machinery/disposal,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/structure/disposalpipe/trunk{
@@ -8022,22 +7917,45 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"anq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8;
- icon_state = "warning"
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{
+ pixel_y = 13
+ },
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{
+ pixel_x = 9
+ },
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{
+ pixel_x = -7;
+ pixel_y = -7
+ },
+/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{
+ pixel_x = -10;
+ pixel_y = 5
+ },
+/obj/item/trash/raisins{
+ desc = "This trash looks like it's had one too many.";
+ name = "Wasted waste"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/random/junk,
-/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"anr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4;
- icon_state = "warning"
+/obj/structure/catwalk,
+/obj/random/cigarettes,
+/obj/random/junk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/random/trash_pile,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
"ans" = (
@@ -8097,12 +8015,10 @@
"anw" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10;
- icon_state = "intact"
+ dir = 10
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/floor_decal/rust,
@@ -8138,8 +8054,7 @@
/area/hallway/lower/first_west)
"anA" = (
/obj/machinery/alarm{
- pixel_y = 22;
- target_temperature = 293.15
+ pixel_y = 22
},
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -8165,9 +8080,7 @@
dir = 4
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/turf/simulated/floor/tiled,
@@ -8195,13 +8108,16 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/effect/floor_decal/corner/lightgrey/border{
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
dir = 9
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 10
},
-/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+/obj/effect/floor_decal/corner/brown/bordercorner2{
dir = 10
},
/turf/simulated/floor/tiled,
@@ -8210,21 +8126,12 @@
/turf/simulated/wall/r_wall,
/area/crew_quarters/sleep/Dorm_1)
"anF" = (
-/obj/machinery/door/airlock/glass_mining{
- id_tag = "cargodoor";
- name = "Cargo Office";
- req_access = list();
- req_one_access = list(48,50)
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
"anG" = (
/obj/machinery/door/airlock/maintenance/rnd{
req_one_access = list(47,24)
@@ -8272,7 +8179,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/tiled/techfloor,
@@ -8282,7 +8188,6 @@
/obj/effect/floor_decal/industrial/outline/grey,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/tiled/techfloor,
@@ -8294,17 +8199,15 @@
},
/area/maintenance/lower/atmos)
"anL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/machinery/atmospherics/binary/passive_gate/on{
- dir = 4
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/storage/surface_eva)
+/area/maintenance/lower/trash_pit)
"anM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/floodlight,
/turf/simulated/floor/plating,
@@ -8336,8 +8239,6 @@
/area/hallway/lower/first_west)
"anQ" = (
/obj/machinery/computer/guestpass{
- dir = 2;
- icon_state = "guest";
pixel_y = 28
},
/obj/structure/disposalpipe/segment{
@@ -8357,9 +8258,7 @@
/area/tether/surfacebase/north_stairs_one)
"anR" = (
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/obj/structure/disposalpipe/segment{
@@ -8395,14 +8294,12 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/item/device/radio/intercom{
dir = 1;
- pixel_y = 24;
- req_access = list()
+ pixel_y = 24
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_one)
"anT" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/disposalpipe/segment{
@@ -8426,7 +8323,6 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 2;
- icon_state = "pipe-j1s";
name = "Primary Tool Storage";
sortType = "Primary Tool Storage"
},
@@ -8444,8 +8340,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
@@ -8453,8 +8348,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
@@ -8463,8 +8357,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
@@ -8476,8 +8369,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 4
@@ -8495,12 +8387,10 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance/int{
- name = "Emergency Storage";
- req_one_access = list()
+ name = "Emergency Storage"
},
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/surface_one_hall)
@@ -8513,8 +8403,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/emergency_storage/atrium)
@@ -8530,8 +8419,7 @@
/obj/machinery/floodlight,
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/emergency_storage/atrium)
@@ -8553,7 +8441,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/obj/structure/cable/green{
@@ -8588,8 +8475,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
@@ -8635,8 +8521,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/emergency_storage/atrium)
@@ -8648,15 +8533,15 @@
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/emergency_storage/atrium)
"aop" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/action_figure,
-/obj/random/action_figure,
-/obj/random/action_figure,
-/obj/structure/closet/wardrobe/grey{
- starts_with = list(/obj/structure/barricade/cutout/viva, /obj/item/clothing/under/color/grey = 3, /obj/item/clothing/shoes/black = 3, /obj/item/clothing/head/soft/grey = 3, /obj/item/clothing/mask/gas/wwii = 3, /obj/item/weapon/storage/toolbox/mechanical = 3, /obj/item/clothing/gloves/fyellow = 3, /obj/item/weapon/card/id/gold/captain/spare/fakespare = 3, /obj/item/weapon/soap/syndie = 3, /obj/item/weapon/storage/box/mousetraps = 3)
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/maintenance/clean,
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
+/area/maintenance/lower/trash_pit)
"aoq" = (
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside1)
@@ -8670,7 +8555,6 @@
/obj/structure/railing,
/obj/structure/grille,
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
frequency = 1379;
id_tag = "civ_airlock_pump"
},
@@ -8686,7 +8570,6 @@
},
/obj/structure/grille,
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
frequency = 1379;
id_tag = "civ_airlock_pump"
},
@@ -8717,7 +8600,6 @@
dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/tiled/dark,
@@ -8742,8 +8624,7 @@
dir = 1
},
/obj/effect/floor_decal/industrial/warning{
- dir = 9;
- icon_state = "warning"
+ dir = 9
},
/obj/machinery/door/window/southleft,
/obj/item/clothing/mask/gas,
@@ -8763,8 +8644,7 @@
dir = 1
},
/obj/effect/floor_decal/industrial/warning{
- dir = 5;
- icon_state = "warning"
+ dir = 5
},
/obj/machinery/door/window/southright,
/obj/item/clothing/mask/gas,
@@ -8786,8 +8666,7 @@
/obj/item/weapon/soap,
/obj/item/device/radio/intercom{
dir = 1;
- pixel_y = 24;
- req_access = list()
+ pixel_y = 24
},
/turf/simulated/floor/tiled/dark,
/area/storage/surface_eva)
@@ -8913,22 +8792,18 @@
"aoN" = (
/obj/structure/sign/directions/medical{
dir = 1;
- icon_state = "direction_med";
pixel_y = 8
},
/obj/structure/sign/directions/science{
dir = 1;
- icon_state = "direction_sci";
pixel_y = 3
},
/obj/structure/sign/directions/security{
dir = 1;
- icon_state = "direction_sec";
pixel_y = -4
},
/obj/structure/sign/directions/engineering{
dir = 1;
- icon_state = "direction_eng";
pixel_y = -10
},
/turf/simulated/wall,
@@ -8942,8 +8817,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- icon_state = "intact-supply"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_one)
@@ -8975,8 +8849,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
@@ -9012,8 +8885,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/emergency_storage/atrium)
@@ -9038,8 +8910,7 @@
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/storage/surface_eva/external)
@@ -9110,8 +8981,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
@@ -9286,7 +9156,6 @@
/obj/random/maintenance/research,
/obj/random/drinkbottle,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plating,
@@ -9295,11 +9164,12 @@
/turf/simulated/floor/plating,
/area/vacant/vacant_site)
"apm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/vacant/vacant_site)
+/area/storage/surface_eva)
"apn" = (
/obj/structure/cable/green{
d1 = 1;
@@ -9430,8 +9300,7 @@
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 4
@@ -9615,7 +9484,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/floor_decal/borderfloor{
@@ -9641,9 +9509,9 @@
/turf/simulated/floor/plating,
/area/vacant/vacant_site)
"apW" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/vacant/vacant_site)
+/area/maintenance/lower/xenoflora)
"apX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -9660,9 +9528,7 @@
pixel_y = 2
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/storage/art)
@@ -9693,7 +9559,6 @@
"aqc" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/landmark{
@@ -9830,7 +9695,6 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -9865,7 +9729,6 @@
pixel_y = -1
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -9893,9 +9756,7 @@
/obj/structure/table/reinforced,
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/tiled/dark,
@@ -9952,7 +9813,6 @@
/obj/item/device/radio/off,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/camera/network/civilian{
@@ -10004,9 +9864,7 @@
dir = 10
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
@@ -10015,18 +9873,17 @@
/turf/simulated/floor/plating,
/area/vacant/vacant_site)
"aqz" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/xenoflora)
+"aqA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/cap/visible/supply{
dir = 1
},
/turf/simulated/floor/plating,
/area/vacant/vacant_site)
-"aqA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_site)
"aqB" = (
/obj/structure/table/standard,
/obj/item/device/camera,
@@ -10168,8 +10025,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
@@ -10178,18 +10034,15 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
"aqR" = (
-/obj/effect/map_effect/portal/line/side_a{
- dir = 2
- },
+/obj/effect/map_effect/portal/line/side_a,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/mining_main/external)
+/area/tether/surfacebase/lowernortheva/external)
"aqS" = (
/obj/structure/cable/green{
d1 = 4;
@@ -10253,8 +10106,7 @@
icon_state = "1-2"
},
/obj/machinery/camera/network/tether{
- dir = 8;
- icon_state = "camera"
+ dir = 8
},
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -10279,8 +10131,7 @@
"ara" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/camera/network/civilian{
dir = 1
@@ -10317,9 +10168,9 @@
/turf/simulated/floor/tiled,
/area/storage/art)
"are" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/lower/xenoflora)
+/obj/structure/cable/green,
+/turf/simulated/floor/plating,
+/area/vacant/vacant_site)
"arf" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -10347,36 +10198,31 @@
/turf/simulated/floor/water/pool,
/area/tether/surfacebase/surface_one_hall)
"arh" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/vacant_site)
-"ari" = (
-/obj/structure/railing{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/lower/vacant_site)
+/area/maintenance/lower/xenoflora)
+"ari" = (
+/turf/simulated/floor,
+/area/maintenance/lower/xenoflora)
"arj" = (
/obj/structure/railing{
dir = 1
},
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -28
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
"ark" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
"arl" = (
@@ -10387,13 +10233,10 @@
/area/maintenance/lower/vacant_site)
"arm" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/vending/loadout/accessory,
/turf/simulated/floor/tiled,
@@ -10498,7 +10341,6 @@
/obj/structure/table/standard,
/obj/machinery/recharger,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/tiled,
@@ -10507,9 +10349,7 @@
/obj/structure/catwalk,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/random/junk,
/turf/simulated/floor/tiled/techfloor,
@@ -10551,46 +10391,22 @@
/turf/simulated/floor/grass,
/area/tether/surfacebase/surface_one_hall)
"arB" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/machinery/camera/network/tether{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_one_hall)
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
"arC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+/obj/structure/railing{
+ dir = 1
},
-/obj/structure/cable/green{
- d1 = 16;
- d2 = 0;
- icon_state = "16-0"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/rust,
+/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
"arD" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/vending/loadout/gadget,
/turf/simulated/floor/tiled,
@@ -10600,8 +10416,7 @@
/obj/item/bodybag/cryobag,
/obj/item/weapon/tool/crowbar,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -10658,8 +10473,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 6
@@ -10709,12 +10523,18 @@
/turf/simulated/floor/plating,
/area/vacant/vacant_site)
"arL" = (
-/obj/structure/railing{
- dir = 1
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
+/obj/structure/cable/green{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/vacant_site)
"arM" = (
/obj/structure/railing{
dir = 4
@@ -10733,8 +10553,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/computer/guestpass{
dir = 4;
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/lightgrey/border{
@@ -10749,7 +10568,6 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"arO" = (
-/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/obj/structure/cable/green{
d1 = 1;
@@ -10768,14 +10586,12 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/first_aid_west)
"arQ" = (
/obj/item/device/radio/intercom{
- dir = 2;
pixel_y = -24
},
/obj/machinery/camera/network/medbay{
@@ -10799,7 +10615,6 @@
},
/obj/structure/bed/roller,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -10887,8 +10702,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
@@ -10896,8 +10710,7 @@
"asc" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/machinery/light/small{
- dir = 8;
- pixel_x = 0
+ dir = 8
},
/turf/simulated/floor/grass,
/area/tether/surfacebase/surface_one_hall)
@@ -10927,8 +10740,7 @@
dir = 9
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
@@ -10991,10 +10803,13 @@
/turf/simulated/floor/tiled/monofloor,
/area/hallway/lower/first_west)
"asn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_site)
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/random/cutout,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/xenoflora)
"aso" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
@@ -11046,7 +10861,6 @@
},
/obj/structure/extinguisher_cabinet{
dir = 8;
- icon_state = "extinguisher_closed";
pixel_x = 30
},
/obj/effect/floor_decal/borderfloor/corner2{
@@ -11103,8 +10917,7 @@
},
/obj/item/device/radio/intercom{
dir = 1;
- pixel_y = 24;
- req_access = list()
+ pixel_y = 24
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 1
@@ -11136,9 +10949,7 @@
dir = 5
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/obj/effect/floor_decal/borderfloor/corner2{
@@ -11201,7 +11012,6 @@
"asD" = (
/obj/structure/extinguisher_cabinet{
dir = 4;
- icon_state = "extinguisher_closed";
pixel_x = -30
},
/obj/effect/floor_decal/borderfloor{
@@ -11266,8 +11076,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/floor_decal/rust,
/obj/effect/floor_decal/rust,
@@ -11277,8 +11086,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -11290,9 +11098,7 @@
"asJ" = (
/obj/structure/catwalk,
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/turf/simulated/floor/tiled/techfloor,
@@ -11375,13 +11181,23 @@
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside1)
"asT" = (
-/obj/machinery/door/airlock/maintenance/cargo{
- name = "Mining Maintenance Access";
- req_one_access = list(48,50)
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/cargo/office)
+/area/maintenance/lowmedbaymaint)
"asU" = (
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
@@ -11449,15 +11265,21 @@
/turf/simulated/floor/plating,
/area/vacant/vacant_site)
"atc" = (
-/obj/machinery/door/airlock/maintenance/common{
- name = "Mining Maintenance Access"
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
},
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"atd" = (
/obj/machinery/door/airlock{
id_tag = "lg_1";
@@ -11530,12 +11352,14 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"atl" = (
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/water/pool,
-/area/tether/surfacebase/surface_one_hall)
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/xenoflora)
"atm" = (
/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -11548,8 +11372,7 @@
/area/crew_quarters/visitor_dining)
"atn" = (
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
@@ -11605,6 +11428,16 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
+"atq" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"atr" = (
/obj/structure/table/standard{
name = "plastic table frame"
@@ -11691,20 +11524,31 @@
/turf/simulated/wall,
/area/tether/surfacebase/tram)
"atz" = (
-/obj/machinery/door/blast/regular,
-/turf/simulated/wall,
-/area/tether/surfacebase/tram)
-"atA" = (
-/obj/machinery/door/blast/regular,
-/turf/simulated/floor/maglev,
-/area/tether/surfacebase/tram)
-"atB" = (
-/obj/machinery/door/blast/regular,
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor/grid,
/area/tether/surfacebase/tram)
+"atA" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/tram)
+"atB" = (
+/turf/simulated/floor/maglev,
+/area/tether/surfacebase/tram)
"atC" = (
-/obj/structure/sign/warning/docking_area,
-/turf/simulated/wall,
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
/area/tether/surfacebase/tram)
"atD" = (
/obj/structure/closet/excavation,
@@ -11714,8 +11558,7 @@
"atE" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -11768,10 +11611,36 @@
"atH" = (
/turf/simulated/wall,
/area/maintenance/substation/civ_west)
+"atI" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"atJ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"atK" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/random/trash_pile,
/turf/simulated/floor/tiled/techfloor,
@@ -11799,6 +11668,64 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"atN" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"atO" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"atP" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"atQ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"atR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -11826,8 +11753,7 @@
/area/crew_quarters/locker)
"atU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
@@ -11840,7 +11766,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/tiled,
@@ -11852,9 +11777,7 @@
"atX" = (
/obj/structure/bed/chair,
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/turf/simulated/floor/tiled,
@@ -11875,10 +11798,13 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"aua" = (
-/obj/machinery/light{
- dir = 1
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
},
-/turf/simulated/floor/tiled,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
/area/tether/surfacebase/tram)
"aub" = (
/obj/effect/floor_decal/industrial/danger{
@@ -11896,12 +11822,12 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/tether/surfacebase/tram)
"aue" = (
-/turf/simulated/floor/maglev,
-/area/tether/surfacebase/tram)
-"auf" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 4
},
+/obj/machinery/camera/network/civilian{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor/grid,
/area/tether/surfacebase/tram)
"aug" = (
@@ -11959,8 +11885,7 @@
dir = 6
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
@@ -12006,17 +11931,14 @@
name_tag = "Civ West Subgrid"
},
/obj/effect/floor_decal/industrial/warning{
- dir = 4;
- icon_state = "warning"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/substation/civ_west)
"aum" = (
/obj/machinery/power/smes/buildable{
RCon_tag = "Substation - Civ West";
- charge = 0;
- output_attempt = 0;
- outputting = 0
+ output_attempt = 0
},
/obj/structure/cable/green{
icon_state = "0-8"
@@ -12032,12 +11954,16 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/civ_west)
+"auo" = (
+/obj/structure/closet/l3closet/virology,
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyaccess)
"aup" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance/common{
name = "Mining Maintenance Access"
@@ -12046,6 +11972,22 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
+"auq" = (
+/obj/structure/closet/wardrobe/virology_white,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyaccess)
+"aur" = (
+/obj/structure/closet/l3closet/virology,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyaccess)
"aus" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -12063,7 +12005,6 @@
},
/obj/structure/extinguisher_cabinet{
dir = 4;
- icon_state = "extinguisher_closed";
pixel_x = -30
},
/turf/simulated/floor/tiled,
@@ -12182,8 +12123,7 @@
},
/obj/machinery/computer/guestpass{
dir = 4;
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
@@ -12195,15 +12135,8 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"auD" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid,
+/obj/machinery/door/blast/regular,
+/turf/simulated/wall,
/area/tether/surfacebase/tram)
"auE" = (
/turf/simulated/wall,
@@ -12253,14 +12186,12 @@
"auH" = (
/obj/structure/cable/green,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -28
},
/obj/effect/floor_decal/rust,
/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4;
- icon_state = "warningcorner"
+ dir = 4
},
/obj/machinery/camera/network/engineering{
dir = 4
@@ -12290,15 +12221,13 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plating,
@@ -12306,6 +12235,26 @@
"auK" = (
/turf/simulated/wall,
/area/maintenance/lower/solars)
+"auL" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/virusdish/random,
+/obj/item/weapon/virusdish/random,
+/obj/item/weapon/virusdish/random,
+/obj/item/weapon/virusdish/random,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"auM" = (
/obj/structure/table/rack,
/obj/random/junk,
@@ -12350,8 +12299,7 @@
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 4
@@ -12402,16 +12350,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/external)
-"auX" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/tether/surfacebase/tram;
- base_turf = /turf/simulated/floor/tiled/techfloor/grid;
- docking_controller = null;
- landmark_tag = "escape_station";
- name = "Tether Surface Base"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/tram)
"auY" = (
/obj/structure/cable/green{
d1 = 1;
@@ -12474,8 +12412,7 @@
dir = 10
},
/obj/machinery/camera/network/tether{
- dir = 8;
- icon_state = "camera"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
@@ -12491,8 +12428,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
name = "Civilian West Substation";
@@ -12517,8 +12453,7 @@
icon_state = "2-4"
},
/obj/machinery/alarm{
- pixel_y = 22;
- target_temperature = 293.15
+ pixel_y = 22
},
/obj/structure/catwalk,
/turf/simulated/floor/plating,
@@ -12533,15 +12468,16 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
"avi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ id_tag = "elevescaper";
+ name = "Elevator Maintenance"
},
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/area/maintenance/lower/xenoflora)
"avj" = (
/obj/machinery/door/airlock/maintenance/common{
name = "Solars Maintenance Access"
@@ -12555,6 +12491,30 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
+"avk" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"avl" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"avm" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -12733,7 +12693,6 @@
dir = 1
},
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
pixel_x = 10;
pixel_y = 36
@@ -12824,9 +12783,7 @@
dir = 4
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/obj/structure/cable/green{
@@ -12866,7 +12823,6 @@
},
/obj/structure/extinguisher_cabinet{
dir = 4;
- icon_state = "extinguisher_closed";
pixel_x = -30
},
/turf/simulated/floor/tiled,
@@ -13044,19 +13000,10 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
"avO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/xenoflora)
"avP" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -13069,6 +13016,28 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
+"avQ" = (
+/obj/structure/reagent_dispensers/virusfood{
+ density = 0;
+ pixel_y = 62
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"avR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"avS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"avT" = (
/turf/simulated/wall/r_wall,
/area/maintenance/lower/xenoflora)
@@ -13081,9 +13050,7 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -13130,6 +13097,20 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"avY" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/green,
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
"avZ" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
@@ -13178,8 +13159,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/red/bordercorner{
- dir = 8;
- icon_state = "bordercolorcorner"
+ dir = 8
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
@@ -13217,14 +13197,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
-"awk" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/simulated/wall,
-/area/tether/surfacebase/tram)
"awl" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -13333,19 +13305,21 @@
dir = 1
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/tiled/monotile,
/area/hallway/lower/first_west)
"awr" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/effect/floor_decal/rust,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing,
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
"aws" = (
@@ -13354,7 +13328,6 @@
/area/maintenance/lower/solars)
"awt" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -28
},
@@ -13362,12 +13335,156 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
+"awu" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"awv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"aww" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/camera/network/medbay{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"awx" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"awy" = (
+/obj/structure/closet/secure_closet/paramedic,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"awz" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"awA" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"awB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ id = "elevescaper";
+ name = "elevator escape button";
+ pixel_y = 32
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/xenoflora)
+"awC" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"awD" = (
/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
/obj/machinery/atmospherics/pipe/zpipe/up/supply,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/structure/cable{
icon_state = "16-0"
@@ -13380,6 +13497,57 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
+"awE" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"awF" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"awG" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"awH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13428,8 +13596,7 @@
dir = 4
},
/obj/machinery/camera/network/tether{
- dir = 8;
- icon_state = "camera"
+ dir = 8
},
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 4
@@ -13490,7 +13657,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/table/glass,
@@ -13499,8 +13665,7 @@
/area/security/checkpoint)
"awR" = (
/obj/machinery/vending/snack{
- dir = 4;
- icon_state = "snack"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
@@ -13556,6 +13721,258 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
+"awV" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"awW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ dir = 8;
+ frequency = 1379;
+ master_tag = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = 24;
+ pixel_y = 25;
+ req_access = list(39)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"awX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_exterior";
+ locked = 1;
+ name = "Virology Exterior Airlock";
+ req_access = list(39)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "virologyquar";
+ name = "Virology Emergency Quarantine Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyaccess)
+"awY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"awZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyaccess)
+"axa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/paramed)
+"axb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_interior";
+ locked = 1;
+ name = "Virology Interior Airlock";
+ req_access = list(39)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyaccess)
+"axc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ dir = 8;
+ frequency = 1379;
+ master_tag = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = -24;
+ pixel_y = 25;
+ req_access = list(39)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -38;
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"axd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"axe" = (
/obj/machinery/door/airlock/maintenance/engi{
name = "Elevator Maintenance"
@@ -13570,8 +13987,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13637,6 +14053,30 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"axj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"axk" = (
/obj/effect/floor_decal/borderfloor,
/obj/structure/cable{
@@ -13716,7 +14156,6 @@
dir = 8
},
/obj/item/device/radio/intercom{
- dir = 2;
pixel_y = -24
},
/turf/simulated/floor/tiled,
@@ -13724,7 +14163,6 @@
"axq" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -13776,7 +14214,6 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -13810,8 +14247,7 @@
/area/tether/surfacebase/tram)
"axz" = (
/obj/machinery/vending/cola{
- dir = 4;
- icon_state = "Soda_Machine"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
@@ -13869,19 +14305,14 @@
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"axC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/railing{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance/rnd{
- name = "Science Maintenance"
+/obj/structure/railing{
+ dir = 1
},
-/obj/machinery/door/firedoor/glass,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/xenoflora)
"axD" = (
/obj/effect/floor_decal/rust,
/obj/structure/cable{
@@ -13893,14 +14324,176 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
"axE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/cable{
- icon_state = "1-8"
- },
/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/xenoflora)
+"axF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/disease2/isolator,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"axG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"axH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"axI" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/solars)
+"axJ" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/green,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"axK" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"axL" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/lowerhall)
+"axM" = (
+/obj/machinery/vending/coffee{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"axN" = (
+/obj/machinery/vending/fitness{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"axO" = (
+/obj/machinery/vending/snack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"axP" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/centralstairwell)
+"axQ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"axR" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"axS" = (
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
@@ -13922,7 +14515,6 @@
dir = 1
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/floor_decal/corner/lightgrey/border{
@@ -13978,9 +14570,7 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/turf/simulated/floor/tiled,
@@ -14046,6 +14636,76 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"ayd" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/structure/curtain/open/shower/medical,
+/turf/simulated/floor/tiled/steel,
+/area/medical/virologyaccess)
+"aye" = (
+/obj/structure/table/standard,
+/obj/random/medical,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -32
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyaccess)
+"ayf" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyaccess)
+"ayg" = (
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ dir = 4;
+ id_tag = "virology_airlock_control";
+ name = "Virology Access Console";
+ pixel_x = -28;
+ pixel_y = -6;
+ tag_exterior_door = "virology_airlock_exterior";
+ tag_interior_door = "virology_airlock_interior"
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ dir = 4;
+ id = "virologyquar";
+ name = "Virology Emergency Lockdown Control";
+ pixel_x = -28;
+ pixel_y = 6;
+ req_access = list(5)
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"ayh" = (
/turf/simulated/wall,
/area/crew_quarters/locker/laundry_arrival)
@@ -14055,6 +14715,54 @@
},
/turf/simulated/wall,
/area/crew_quarters/locker/laundry_arrival)
+"ayj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"ayk" = (
+/obj/structure/table/glass,
+/obj/item/device/radio{
+ anchored = 1;
+ canhear_range = 7;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ name = "Virology Emergency Phone";
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 8
+ },
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/item/device/antibody_scanner,
+/obj/item/device/antibody_scanner{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"ayl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"aym" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
@@ -14143,6 +14851,216 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"ayt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"ayu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"ayv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"ayw" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Virology Laboratory";
+ req_access = list(39)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"ayx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"ayy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"ayz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"ayA" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/green,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"ayB" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ name = "package tagger - Void";
+ sort_tag = "Void"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"ayC" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"ayD" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/xenoflora)
+"ayE" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"ayF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"ayG" = (
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
@@ -14158,6 +15076,73 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"ayK" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"ayL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"ayM" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"ayN" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"ayO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"ayP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
"ayQ" = (
/obj/machinery/status_display{
pixel_y = 30
@@ -14170,9 +15155,7 @@
dir = 6
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
+ dir = 8
},
/turf/simulated/floor/tiled/monotile,
/area/crew_quarters/locker/laundry_arrival)
@@ -14237,9 +15220,7 @@
pixel_y = -1
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/obj/effect/floor_decal/borderfloor{
@@ -14257,6 +15238,60 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker/laundry_arrival)
+"ayX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"ayY" = (
+/obj/structure/stairs/east,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"ayZ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"aza" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"azb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/xenoflora)
"azc" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -14344,7 +15379,6 @@
dir = 1
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/floor_decal/corner/lightgrey/border{
@@ -14370,8 +15404,7 @@
},
/obj/item/device/radio/intercom{
dir = 1;
- pixel_y = 24;
- req_access = list()
+ pixel_y = 24
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
@@ -14380,9 +15413,7 @@
dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/obj/effect/floor_decal/corner/lightgrey/border{
@@ -14433,16 +15464,14 @@
/area/tether/surfacebase/tram)
"azn" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+ dir = 1
},
/obj/effect/landmark/tram,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"azo" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+ dir = 1
},
/obj/machinery/status_display{
pixel_y = 30
@@ -14467,15 +15496,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
-"azr" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/tram)
"azs" = (
/turf/simulated/wall/r_wall,
/area/maintenance/lower/solars)
@@ -14498,11 +15518,211 @@
icon_state = "1-2"
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"azu" = (
+/obj/item/device/radio{
+ pixel_x = -4
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Virology. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Virology Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/hand_labeler,
+/obj/structure/table/glass,
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"azv" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/fancy/vials,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/lime/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"azw" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/lockbox/vials,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/storage/secure/safe{
+ pixel_y = -28
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"azx" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/beakers,
+/obj/item/weapon/storage/box/syringes{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"azy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"azz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"azA" = (
+/obj/machinery/vending/snack{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"azB" = (
+/obj/structure/table/standard,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/weapon/storage/box/cups,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"azC" = (
+/obj/structure/reagent_dispensers/water_cooler/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"azD" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"azE" = (
+/obj/structure/railing,
+/obj/machinery/camera/network/medbay{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"azF" = (
+/obj/structure/stairs/east,
+/obj/structure/railing,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"azG" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'CRUSH WARNING'.";
+ name = "\improper CRUSH WARNING";
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/xenoflora)
+"azH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"azI" = (
+/obj/machinery/door/window/eastright{
+ dir = 1;
+ name = "Virology Isolation Room One";
+ req_one_access = list(39)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/lime{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"azJ" = (
+/obj/machinery/door/window/eastright{
+ dir = 1;
+ name = "Virology Isolation Room Two";
+ req_one_access = list(39)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/lime{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"azK" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/xenoflora)
"azL" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
@@ -14560,7 +15780,6 @@
dir = 4
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -14606,12 +15825,86 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"azT" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"azU" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'CRUSH WARNING'.";
+ name = "\improper CRUSH WARNING";
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/xenoflora)
+"azV" = (
+/turf/simulated/wall,
+/area/medical/virology)
+"azW" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"azX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"azY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"azZ" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/effect/floor_decal/borderfloor{
dir = 9
@@ -14621,6 +15914,119 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker/laundry_arrival)
+"aAa" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aAb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aAc" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"aAd" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28;
+ req_access = list(67)
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"aAe" = (
+/obj/structure/bed/padded,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"aAf" = (
/obj/machinery/door/firedoor/glass,
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
@@ -14630,6 +16036,129 @@
dir = 1
},
/area/crew_quarters/locker/laundry_arrival)
+"aAg" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/lime{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"aAh" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"aAi" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/medical{
+ name = "Medical Maintenance Access";
+ req_access = list(5)
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"aAj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance/rnd{
+ name = "Science Maintenance"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/solars)
+"aAk" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/solars)
+"aAl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/solars)
+"aAm" = (
+/obj/random/junk,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAn" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAo" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAp" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAq" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAr" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
"aAs" = (
/obj/structure/cable{
d1 = 2;
@@ -14641,17 +16170,16 @@
/area/maintenance/lower/solars)
"aAt" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/alarm{
- pixel_y = 22;
- target_temperature = 293.15
- },
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/area/maintenance/lower/research)
"aAu" = (
/obj/structure/cable{
d1 = 4;
@@ -14662,23 +16190,38 @@
/area/maintenance/lower/solars)
"aAv" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 5
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/area/maintenance/lower/research)
"aAw" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/area/maintenance/lower/research)
"aAx" = (
/obj/structure/cable{
d1 = 4;
@@ -14709,6 +16252,155 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aAz" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aAA" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aAB" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
+ frequency = 1379;
+ scrub_id = "northciv_airlock_scrubber"
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/lowernortheva)
+"aAC" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/green,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 5
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
+"aAD" = (
+/turf/simulated/wall,
+/area/maintenance/lowmedbaymaint)
+"aAE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAG" = (
+/turf/simulated/mineral,
+/area/maintenance/lowmedbaymaint)
+"aAH" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aAI" = (
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aAJ" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
+ frequency = 1379;
+ scrub_id = "northciv_airlock_scrubber"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/lowernortheva)
+"aAK" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAL" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
"aAM" = (
/obj/structure/closet/crate,
/obj/random/maintenance/engineering,
@@ -14743,8 +16435,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/supply,
@@ -14769,6 +16460,268 @@
/obj/random/contraband,
/turf/simulated/floor/plating,
/area/tether/surfacebase/surface_one_hall)
+"aAT" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAU" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAV" = (
+/obj/structure/railing,
+/obj/structure/table/rack,
+/obj/item/clothing/suit/suspenders,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAW" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/lowmedbaymaint)
+"aAX" = (
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aAY" = (
+/obj/structure/railing,
+/obj/structure/closet/crate,
+/obj/item/device/camera,
+/obj/item/device/tape/random,
+/obj/item/device/taperecorder/empty,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aAZ" = (
+/obj/structure/railing,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBa" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBc" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/closet/crate,
+/obj/random/cigarettes,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBd" = (
+/obj/random/trash_pile,
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBe" = (
+/obj/structure/railing,
+/obj/structure/table/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/tank/emergency,
+/obj/item/weapon/tank/emergency,
+/obj/item/weapon/tank/emergency,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/supply{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/visible/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBh" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aBi" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aBj" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBk" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/vacant/vacant_site/east)
+"aBl" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBm" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBn" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
+"aBo" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aBp" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aBq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"aBr" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aBs" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/plating,
+/area/vacant/vacant_site/east)
+"aBt" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
"aBu" = (
/obj/structure/cable/heavyduty{
icon_state = "0-2"
@@ -14795,69 +16748,231 @@
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
-"aBH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/obj/machinery/light/small{
+"aBx" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aBy" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aBz" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -32
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -13;
+ pixel_y = -30
+ },
+/obj/structure/cable,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aBA" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aBB" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aBC" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aBD" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aBE" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aBF" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aBG" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aBH" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/closet/crate,
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aBI" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/railing{
+ dir = 1
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/structure/table/rack,
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/weapon/tank/oxygen/red,
+/obj/item/clothing/mask/gas/wwii,
+/obj/item/clothing/head/hardhat/red,
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aBJ" = (
/turf/simulated/wall/r_wall,
/area/maintenance/lower/research)
"aBK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aBL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/light/small{
+/obj/structure/railing{
dir = 1
},
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 5
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
-"aBM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
+"aBL" = (
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 10
+ },
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
+"aBM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
"aBN" = (
-/obj/random/trash_pile,
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aBO" = (
/turf/simulated/wall,
/area/maintenance/lower/research)
"aBP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aBQ" = (
@@ -14916,6 +17031,21 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker/laundry_arrival)
+"aBW" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aBX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aBY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -14961,8 +17091,7 @@
},
/obj/machinery/computer/guestpass{
dir = 4;
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
@@ -15015,6 +17144,84 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aCg" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aCh" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aCi" = (
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aCj" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/surface_atmos)
+"aCk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/surface_atmos)
+"aCl" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/surface_atmos)
"aCm" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
@@ -15033,9 +17240,7 @@
dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -15057,6 +17262,31 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aCp" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aCq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Mining Maintenance Access"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/lowernorthhall)
+"aCr" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/cargostore/warehouse)
"aCs" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -15076,108 +17306,67 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aCu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 5
+/obj/structure/railing,
+/obj/structure/closet/crate,
+/obj/item/clothing/head/that,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/machinery/light/small{
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aCv" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aCw" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aCx" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Atmospherics Subgrid";
+ name_tag = "Atmospherics Subgrid"
},
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/maintenance/substation/surface_atmos)
"aCy" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
+ dir = 5
},
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aCz" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/random/junk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 4
},
+/obj/structure/catwalk,
+/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aCA" = (
@@ -15218,13 +17407,18 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aCC" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/railing{
- dir = 8
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/maintenance/asmaint2)
"aCD" = (
/obj/machinery/recharge_station,
/obj/structure/disposalpipe/segment,
@@ -15253,7 +17447,6 @@
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/tiled,
@@ -15287,9 +17480,40 @@
/turf/simulated/floor/plating,
/area/vacant/vacant_site/east)
"aCK" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
/turf/simulated/floor/plating,
-/area/vacant/vacant_site/east)
+/area/maintenance/asmaint2)
+"aCL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/mining,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/cargostore/warehouse)
+"aCM" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aCN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -15297,9 +17521,6 @@
/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
/obj/machinery/light{
dir = 1
},
@@ -15307,6 +17528,9 @@
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"aCO" = (
@@ -15334,8 +17558,7 @@
/area/crew_quarters/visitor_dining)
"aCT" = (
/obj/machinery/vending/fitness{
- dir = 4;
- icon_state = "fitness"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
@@ -15364,6 +17587,52 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aCW" = (
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aCX" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aCY" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aCZ" = (
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
+"aDa" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "gloriouscargopipeline"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aDb" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "gloriouscargopipeline"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
"aDc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -15396,7 +17665,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -15421,10 +17689,7 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aDk" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/bone/skull/unathi,
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aDl" = (
@@ -15474,7 +17739,6 @@
},
/obj/structure/extinguisher_cabinet{
dir = 8;
- icon_state = "extinguisher_closed";
pixel_x = 30
},
/obj/effect/floor_decal/borderfloor{
@@ -15491,8 +17755,7 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/machinery/alarm{
- pixel_y = 22;
- target_temperature = 293.15
+ pixel_y = 22
},
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
@@ -15502,31 +17765,40 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aDs" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aDt" = (
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
"aDu" = (
/turf/simulated/floor/lino,
/area/crew_quarters/visitor_dining)
"aDv" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/lino,
/area/crew_quarters/visitor_dining)
"aDw" = (
/obj/machinery/vending/coffee{
- dir = 4;
- icon_state = "coffee"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"aDx" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
/turf/simulated/floor/plating,
-/area/maintenance/lower/solars)
+/area/maintenance/lower/research)
"aDy" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
@@ -15565,6 +17837,93 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aDA" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aDB" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aDC" = (
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aDD" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aDE" = (
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aDF" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aDG" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aDH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aDI" = (
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
"aDJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
@@ -15593,6 +17952,11 @@
/obj/structure/stairs/north,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aDM" = (
+/obj/structure/ladder/up,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/research)
"aDN" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -15601,8 +17965,7 @@
dir = 4
},
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
@@ -15616,7 +17979,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/obj/structure/cable/green{
@@ -15636,15 +17998,9 @@
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/emergency_storage/rnd)
"aDR" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/maintenance/lower/atmos)
"aDS" = (
/obj/machinery/door/airlock/maintenance/common{
name = "Laundry Maintenance Access"
@@ -15664,6 +18020,51 @@
dir = 1
},
/area/tether/surfacebase/surface_one_hall)
+"aDU" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "gloriouscargopipeline"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aDV" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/conveyor_switch/oneway{
+ id = "gloriouscargopipeline";
+ name = "Mining Ops conveyor switch";
+ pixel_x = -5;
+ pixel_y = -3;
+ req_access = list(48);
+ req_one_access = list(48)
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aDW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
"aDX" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -15678,7 +18079,6 @@
/area/crew_quarters/visitor_dining)
"aDZ" = (
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
pixel_x = 10;
pixel_y = 36
@@ -15689,7 +18089,6 @@
name = "Cafe Shutters";
pixel_x = -10;
pixel_y = 36;
- req_access = list();
req_one_access = list(25)
},
/obj/structure/sink{
@@ -15713,7 +18112,6 @@
"aEb" = (
/obj/structure/extinguisher_cabinet{
dir = 4;
- icon_state = "extinguisher_closed";
pixel_x = -30
},
/turf/simulated/floor/tiled,
@@ -15724,10 +18122,18 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
+"aEd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
"aEe" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -15751,6 +18157,81 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aEf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aEg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aEh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aEi" = (
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aEj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/sign/warning/moving_parts{
+ desc = "A warning sign for moving parts. This one states 'Put your gathered ore here for processing!' on it.";
+ name = "To Mining Operations Processing";
+ pixel_x = -32
+ },
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aEk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aEl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
"aEm" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
@@ -15775,6 +18256,12 @@
/obj/effect/floor_decal/steeldecal/steel_decals9,
/turf/simulated/floor/tiled/monotile,
/area/rnd/hallway)
+"aEo" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
"aEp" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -15797,8 +18284,7 @@
/area/rnd/hallway)
"aEq" = (
/obj/machinery/door/airlock/maintenance/int{
- name = "Emergency Storage";
- req_one_access = list()
+ name = "Emergency Storage"
},
/obj/structure/cable/green{
d1 = 4;
@@ -15824,24 +18310,28 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/emergency_storage/rnd)
"aEu" = (
-/obj/structure/railing,
-/obj/structure/railing{
+/obj/machinery/atmospherics/pipe/manifold/visible/purple{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos/processing)
+"aEv" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/camera/network/engineering{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aEv" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/engineering/atmos/processing)
"aEw" = (
/obj/effect/floor_decal/rust,
/obj/structure/railing,
@@ -15851,81 +18341,63 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aEx" = (
-/obj/structure/railing,
-/obj/structure/table/rack,
-/obj/item/clothing/suit/suspenders,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/maintenance/lower/atmos)
"aEy" = (
-/obj/structure/railing,
-/obj/structure/closet/crate,
-/obj/item/device/camera,
-/obj/item/device/tape/random,
-/obj/item/device/taperecorder/empty,
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/maintenance/lower/atmos)
"aEz" = (
/obj/structure/railing,
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aEA" = (
-/obj/structure/railing,
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aEB" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aEC" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 9
},
-/obj/structure/closet/crate,
-/obj/random/cigarettes,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aED" = (
-/obj/random/trash_pile,
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
+/area/engineering/atmos/processing)
+"aEB" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aEE" = (
-/obj/structure/railing,
+/area/engineering/atmos/processing)
+"aEC" = (
/obj/structure/table/rack,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/weapon/tank/emergency,
-/obj/item/weapon/tank/emergency,
-/obj/item/weapon/tank/emergency,
-/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/maintenance/lower/atmos)
+"aED" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aEE" = (
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
"aEF" = (
/obj/machinery/door/firedoor/glass,
/obj/effect/floor_decal/steeldecal/steel_decals_central1,
/obj/machinery/door/airlock/multi_tile/glass{
- autoclose = 1;
dir = 2;
id_tag = null;
- name = "Construction Site";
- req_access = list()
+ name = "Construction Site"
},
/turf/simulated/floor/tiled/monofloor,
/area/tether/surfacebase/surface_one_hall)
+"aEG" = (
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
"aEH" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
@@ -16043,11 +18515,116 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aEU" = (
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aEV" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aEW" = (
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
+"aEX" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aEY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aEZ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aFa" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/camera/network/cargo,
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aFb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aFc" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/metal{
+ name = "Shop Warehouse";
+ req_one_access = list(48)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/cargostore/warehouse)
+"aFd" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/cargostore/warehouse)
"aFe" = (
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 1
@@ -16076,9 +18653,7 @@
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
@@ -16103,26 +18678,13 @@
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/emergency_storage/rnd)
"aFk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/alarm{
+ pixel_y = 22
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/supply{
- dir = 8
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/bench/steel,
+/obj/random/cigarettes,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/maintenance/lower/atmos)
"aFl" = (
/obj/structure/cable{
d1 = 4;
@@ -16139,21 +18701,26 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aFm" = (
-/obj/structure/cable{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
+/obj/machinery/holosign/bar{
+ id = "maintbar";
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/lower/atmos)
"aFn" = (
/obj/structure/cable{
d1 = 4;
@@ -16171,17 +18738,25 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aFo" = (
-/obj/structure/cable{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/visible/supply,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/lower/atmos)
"aFp" = (
/obj/structure/cable{
d1 = 4;
@@ -16228,15 +18803,40 @@
},
/turf/simulated/floor/plating,
/area/vacant/vacant_site/east)
+"aFt" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Warehouse"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/cargostore/warehouse)
+"aFu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aFv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aFw" = (
/obj/machinery/door/firedoor/glass,
/obj/effect/floor_decal/steeldecal/steel_decals_central1,
/obj/machinery/door/airlock/multi_tile/glass{
- autoclose = 1;
dir = 2;
id_tag = null;
- name = "Cafe";
- req_access = list()
+ name = "Cafe"
},
/obj/structure/cable/green{
d1 = 4;
@@ -16403,7 +19003,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/tiled,
@@ -16466,8 +19065,7 @@
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
@@ -16495,6 +19093,29 @@
},
/turf/simulated/wall,
/area/maintenance/lower/research)
+"aFO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aFP" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aFQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aFR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -16582,6 +19203,58 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aFZ" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/computer/guestpass{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aGa" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/cargostore)
+"aGb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 9
+ },
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGc" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = -4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aGd" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -16591,6 +19264,129 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aGe" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGf" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGg" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 5
+ },
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = -4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGi" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGj" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/cargostore/office)
+"aGk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aGl" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
"aGm" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -16661,23 +19457,70 @@
},
/obj/machinery/power/apc/high{
dir = 4;
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aGr" = (
+/obj/structure/bed/chair/sofa/brown/right,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aGs" = (
+/obj/structure/bed/chair/sofa/brown/corner,
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
"aGt" = (
/turf/simulated/wall,
/area/vacant/vacant_site/east)
"aGu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/plating,
-/area/vacant/vacant_site/east)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
+"aGv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aGw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aGx" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/super;
@@ -16707,7 +19550,6 @@
"aGA" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -25
},
/obj/structure/bed/chair/wood{
@@ -16787,23 +19629,220 @@
},
/turf/simulated/floor/virgo3b,
/area/tether/surfacebase/outside/outside1)
-"aGV" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+"aGJ" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/area/tether/surfacebase/lowernorthhall)
+"aGK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGP" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aGQ" = (
+/obj/machinery/door/airlock/glass_mining{
+ id_tag = "cargodoor";
+ name = "Cargo Office";
+ req_access = list(31);
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/cargostore/office)
+"aGR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
+"aGS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aGT" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ desc = "Looks like it's on MTV. Now you can't blame that demi-cowgirl for working her money maker. I wonder what else is on?";
+ icon_state = "frame";
+ pixel_x = 16;
+ pixel_y = 64
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aGU" = (
+/obj/structure/bed/chair/sofa/brown/left{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aGV" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/lightgrey/bordercorner,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aGW" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
/obj/machinery/computer/guestpass{
dir = 1;
- icon_state = "guest";
pixel_y = -28
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -16835,7 +19874,6 @@
dir = 8
},
/obj/item/device/radio/intercom{
- dir = 2;
pixel_y = -24
},
/turf/simulated/floor/tiled,
@@ -16887,35 +19925,28 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aHd" = (
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
"aHe" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/lower/atmos)
"aHf" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -16930,30 +19961,50 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aHg" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/random/action_figure,
+/obj/random/action_figure,
+/obj/random/action_figure,
+/obj/structure/closet/wardrobe/grey{
+ starts_with = list(/obj/structure/barricade/cutout/viva, /obj/item/clothing/under/color/grey = 3, /obj/item/clothing/shoes/black = 3, /obj/item/clothing/head/soft/grey = 3, /obj/item/clothing/mask/gas/wwii = 3, /obj/item/weapon/storage/toolbox/mechanical = 3, /obj/item/clothing/gloves/fyellow = 3, /obj/item/weapon/card/id/gold/captain/spare/fakespare = 3, /obj/item/weapon/soap/syndie = 3, /obj/item/weapon/storage/box/mousetraps = 3)
},
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aHh" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light/small{
+/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aHi" = (
+/obj/structure/bed/chair{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aHj" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
+/obj/effect/floor_decal/borderfloor,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/floor_decal/corner/lightgrey/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aHj" = (
+/obj/machinery/door/window/southright{
+ req_access = list(5)
},
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/vacant/vacant_site/east)
+/area/maintenance/lower/atmos)
+"aHk" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aHl" = (
/obj/machinery/camera/network/civilian{
dir = 4
@@ -17001,11 +20052,50 @@
dir = 10
},
/obj/structure/sign/nosmoking_2{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aHq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aHr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aHs" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = -4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aHt" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
@@ -17019,12 +20109,10 @@
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/hallway)
"aHu" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/window/reinforced,
+/obj/structure/closet/boxinggloves,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/maintenance/lower/atmos)
"aHv" = (
/turf/simulated/wall/r_wall,
/area/maintenance/substation/surface_atmos)
@@ -17032,45 +20120,52 @@
/obj/effect/floor_decal/rust,
/obj/random/trash_pile,
/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aHx" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/maintenance/lower/atmos)
"aHy" = (
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
},
-/obj/structure/table/rack,
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/weapon/tank/oxygen/red,
-/obj/item/clothing/mask/gas/wwii,
-/obj/item/clothing/head/hardhat/red,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/maintenance/lower/atmos)
+"aHz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aHA" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aHB" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
+/obj/effect/floor_decal/rust,
+/obj/structure/toilet{
+ pixel_y = 10
},
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/maintDorm3)
"aHC" = (
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 4
@@ -17093,16 +20188,44 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aHE" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 10
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 6
},
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/obj/machinery/button/remote/airlock{
+ id = "maintdorm2";
+ name = "Room 2 Lock";
+ pixel_x = 23;
+ pixel_y = -4;
+ specialfunctions = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm2)
+"aHF" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/westleft{
+ req_access = list(31)
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aHG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -17130,33 +20253,38 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/visitor_dining)
+"aHK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aHL" = (
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside1)
"aHM" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -25
+/obj/structure/disposalpipe/trunk,
+/obj/structure/disposaloutlet,
+/obj/machinery/conveyor{
+ id = "surfacecargo"
},
-/obj/structure/bed/chair/sofa/brown/corner{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 10
- },
-/obj/effect/landmark/start{
- name = "Cargo Technician"
- },
-/obj/machinery/light/small{
+/obj/structure/window/reinforced{
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/obj/structure/sign/warning{
+ desc = "A warning sign. It has great big words saying 'Surface Cargo Deliveries. Stay behind the railings when active!' on it.";
+ name = "Surface Cargo Delivery";
+ pixel_x = 32
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/cargostore)
"aHN" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -17173,60 +20301,148 @@
/turf/simulated/floor/tiled,
/area/rnd/hallway)
"aHO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 6
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+/obj/structure/toilet{
+ pixel_y = 10
},
/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
+/area/crew_quarters/sleep/maintDorm2)
"aHP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10;
- icon_state = "intact"
+ dir = 10
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aHW" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"aHQ" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aHR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aHS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aHT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aHU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aHV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Mining Maintenance Access"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aHX" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aHY" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
+/area/tether/surfacebase/cargostore)
+"aHW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 6
+ },
+/obj/machinery/button/remote/airlock{
+ id = "maintdorm1";
+ name = "Room 1 Lock";
+ pixel_x = 23;
+ pixel_y = -4;
+ specialfunctions = 4
},
/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm1)
+"aHX" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/sink{
+ pixel_y = 22
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/maintDorm1)
+"aHY" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
"aHZ" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/vacant/vacant_bar)
"aIa" = (
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
@@ -17247,34 +20463,24 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aId" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/woodentable,
+/obj/machinery/microwave,
/turf/simulated/floor/plating,
-/area/maintenance/substation/surface_atmos)
+/area/crew_quarters/sleep/maintDorm3)
"aIe" = (
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/substation/surface_atmos)
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm3)
"aIf" = (
/obj/structure/cable{
d1 = 4;
@@ -17289,39 +20495,36 @@
/turf/simulated/floor/plating,
/area/maintenance/substation/surface_atmos)
"aIg" = (
-/obj/structure/cable{
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/floor_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/floor/plating,
-/area/maintenance/substation/surface_atmos)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/maintDorm3)
"aIh" = (
/turf/simulated/wall/r_wall,
/area/engineering/atmos)
"aIi" = (
-/obj/structure/railing{
+/obj/structure/table,
+/obj/item/frame,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm2)
+"aIj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aIj" = (
-/obj/structure/railing,
-/obj/structure/closet/crate,
-/obj/item/clothing/head/that,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm2)
"aIk" = (
/obj/structure/railing,
/obj/structure/table/rack,
@@ -17352,6 +20555,29 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"aIq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aIr" = (
/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -17362,6 +20588,17 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/visitor_dining)
+"aIs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aIt" = (
/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -17429,13 +20666,19 @@
/turf/simulated/floor/lino,
/area/crew_quarters/visitor_dining)
"aIA" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aIB" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -17465,20 +20708,24 @@
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
"aIE" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aIF" = (
+/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/crew_quarters/sleep/maintDorm2)
+"aIF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/maintDorm2)
"aIG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -17489,26 +20736,23 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aIH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/obj/structure/table,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm1)
"aII" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/crew_quarters/sleep/maintDorm1)
"aIJ" = (
/obj/effect/floor_decal/rust,
/obj/structure/catwalk,
@@ -17540,26 +20784,15 @@
/turf/simulated/floor/plating,
/area/maintenance/substation/surface_atmos)
"aIM" = (
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/obj/structure/cable/cyan{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
},
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Atmospherics Subgrid";
- name_tag = "Atmospherics Subgrid"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4;
- icon_state = "warning"
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/substation/surface_atmos)
+/area/crew_quarters/sleep/maintDorm1)
"aIN" = (
/obj/structure/cable/cyan{
d2 = 8;
@@ -17586,8 +20819,7 @@
dir = 9
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 9;
- icon_state = "bordercolor"
+ dir = 9
},
/obj/machinery/space_heater,
/turf/simulated/floor/tiled/techmaint,
@@ -17597,13 +20829,10 @@
dir = 1
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/portable_atmospherics/powered/scrubber,
/turf/simulated/floor/tiled/techmaint,
@@ -17611,33 +20840,26 @@
"aIR" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/portable_atmospherics/powered/scrubber,
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
"aIS" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 1
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 1;
- icon_state = "bordercolorcorner2"
+ dir = 1
},
/obj/machinery/portable_atmospherics/powered/scrubber,
/turf/simulated/floor/tiled/techmaint,
@@ -17652,20 +20874,16 @@
/area/engineering/atmos)
"aIU" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 4;
- icon_state = "bordercolorcorner2"
+ dir = 4
},
/obj/machinery/camera/network/engineering,
/obj/machinery/portable_atmospherics/powered/pump/filled,
@@ -17674,13 +20892,10 @@
"aIV" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/portable_atmospherics/powered/pump/filled,
/turf/simulated/floor/tiled/techmaint,
@@ -17690,13 +20905,10 @@
dir = 1
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/portable_atmospherics/powered/pump/filled,
/turf/simulated/floor/tiled/techmaint,
@@ -17708,47 +20920,35 @@
dir = 5
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 5;
- icon_state = "bordercolor"
+ dir = 5
},
/obj/fiftyspawner/steel,
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
"aIY" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 5
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/vacant/vacant_bar)
"aIZ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/vacant/vacant_bar)
"aJa" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm3)
"aJb" = (
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 4
@@ -17770,8 +20970,7 @@
},
/obj/effect/floor_decal/industrial/warning/corner,
/obj/effect/floor_decal/steeldecal/steel_decals_central6{
- dir = 4;
- icon_state = "steel_decals_central6"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
@@ -17793,8 +20992,7 @@
dir = 4
},
/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8;
- icon_state = "warningcorner"
+ dir = 8
},
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -17857,6 +21055,47 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"aJj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aJk" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/window/westleft{
+ req_access = list(31)
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aJl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aJm" = (
/obj/structure/table/woodentable,
/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
@@ -17946,20 +21185,40 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"aJt" = (
+/obj/structure/railing,
+/obj/machinery/conveyor{
+ dir = 5;
+ id = "surfacecargo"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aJu" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/stack/material/wood{
+ amount = 10
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden,
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
+/obj/structure/table,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm2)
"aJv" = (
/obj/effect/floor_decal/rust,
/obj/structure/cable/green{
@@ -17971,49 +21230,116 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10;
- icon_state = "intact"
+ dir = 10
},
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
"aJw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
},
-/obj/effect/floor_decal/industrial/warning/corner{
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/maintDorm1)
+"aJx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/maintDorm1)
+"aJy" = (
+/obj/structure/table/standard,
+/obj/item/weapon/stamp/cargo,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/yellow,
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aJx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- icon_state = "16-0"
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
},
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aJz" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/red{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/device/retail_scanner/civilian,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aJA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aJD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"aJE" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aJB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aJC" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aJD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light_construct/small,
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/crew_quarters/sleep/maintDorm1)
+"aJE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
"aJF" = (
/turf/simulated/wall/r_wall,
/area/engineering/atmos/gas_storage)
@@ -18033,15 +21359,13 @@
"aJH" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/machinery/space_heater,
/turf/simulated/floor/tiled/techmaint,
@@ -18102,8 +21426,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/obj/item/taperoll/atmos,
/obj/item/stack/cable_coil/random_belt,
@@ -18140,6 +21463,50 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"aJS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aJT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"aJU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aJV" = (
/obj/structure/bed/chair/wood{
dir = 1
@@ -18210,18 +21577,46 @@
"aKa" = (
/turf/simulated/wall,
/area/maintenance/asmaint2)
-"aKg" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+"aKb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aKc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aKd" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aKe" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aKf" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aKg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
"aKh" = (
/obj/structure/table/rack,
/obj/item/clothing/suit/fire/firefighter,
@@ -18254,7 +21649,6 @@
department = "Atmospherics";
departmentType = 3;
name = "Atmos RC";
- pixel_x = 0;
pixel_y = 28
},
/obj/item/weapon/tool/wrench,
@@ -18285,8 +21679,6 @@
/obj/machinery/button/remote/blast_door{
id = "atmoslockdown";
name = "Atmospherics Lockdown";
- pixel_x = 0;
- pixel_y = 0;
req_one_access = list(10,24)
},
/turf/simulated/floor/tiled,
@@ -18349,8 +21741,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/machinery/space_heater,
/turf/simulated/floor/tiled/techmaint,
@@ -18396,8 +21787,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/obj/item/weapon/storage/box/lights/mixed,
/turf/simulated/floor/tiled/techmaint,
@@ -18411,8 +21801,7 @@
"aKy" = (
/obj/item/device/radio/intercom{
dir = 1;
- pixel_y = 24;
- req_access = list()
+ pixel_y = 24
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -18454,7 +21843,6 @@
/obj/random/plushie,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/tiled,
@@ -18504,6 +21892,25 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"aKG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/window/northright{
+ dir = 4;
+ name = "Mailing Room";
+ req_access = list(50)
+ },
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "surfcargooffice";
+ layer = 3.3;
+ name = "Cargo Office Shutters"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
"aKH" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
@@ -18517,6 +21924,28 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"aKI" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 10
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "surfcargooffice";
+ name = "Office Shutters";
+ pixel_x = -7;
+ pixel_y = 24;
+ req_access = list(31)
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
"aKJ" = (
/obj/machinery/light,
/turf/simulated/floor/lino,
@@ -18563,13 +21992,43 @@
/obj/effect/map_helper/airlock/door/int_door,
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/external)
+"aKO" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aKP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aKQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
+"aKR" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aKS" = (
-/obj/random/junk,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm1)
"aKT" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -18662,17 +22121,25 @@
/area/engineering/atmos)
"aLe" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"aLf" = (
-/obj/item/weapon/bone/skull/unathi,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
"aLg" = (
/turf/simulated/wall,
/area/crew_quarters/sleep/Dorm_7)
@@ -18743,8 +22210,7 @@
/area/rnd/external)
"aLo" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 8;
- icon_state = "warning"
+ dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals3{
dir = 6
@@ -18752,7 +22218,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals3,
/obj/machinery/embedded_controller/radio/airlock/phoron{
id_tag = "rnd_s_airlock";
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/airlock_sensor/phoron{
@@ -18797,15 +22262,13 @@
dir = 6
},
/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/rnd/external)
"aLr" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 4;
- icon_state = "warning"
+ dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals3{
dir = 4
@@ -18834,16 +22297,57 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/external)
+"aLt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 10
+ },
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"aLu" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 9
+ },
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_x = -4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aLv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
"aLw" = (
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
"aLx" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -18882,7 +22386,6 @@
"aLA" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -18925,8 +22428,7 @@
icon_state = "4-8"
},
/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+ dir = 1
},
/obj/machinery/atmospherics/binary/pump/on{
name = "Ports to Waste"
@@ -18964,8 +22466,7 @@
name = "Air to Ports"
},
/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -18979,9 +22480,9 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
"aLL" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/atmos)
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
"aLM" = (
/turf/simulated/floor/reinforced{
name = "Holodeck Projector Floor"
@@ -19004,13 +22505,11 @@
"aLO" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -19069,9 +22568,7 @@
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
- pixel_x = 0;
pixel_y = 26
},
/obj/random/drinkbottle,
@@ -19103,7 +22600,6 @@
},
/obj/structure/mirror{
dir = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/tiled/white,
@@ -19114,8 +22610,7 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/Dorm_8)
@@ -19126,6 +22621,12 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/external)
+"aLZ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aMa" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 6
@@ -19160,8 +22661,7 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/rnd/external)
@@ -19191,6 +22691,13 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/external)
+"aMe" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aMf" = (
/obj/effect/floor_decal/rust,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -19200,7 +22707,6 @@
"aMg" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/tiled/techmaint,
@@ -19277,8 +22783,7 @@
/area/engineering/atmos)
"aMo" = (
/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1;
- icon_state = "map"
+ dir = 1
},
/obj/machinery/meter,
/turf/simulated/floor/tiled,
@@ -19322,8 +22827,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -19479,8 +22983,7 @@
/area/crew_quarters/sleep/Dorm_8)
"aMI" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -19513,6 +23016,14 @@
/obj/effect/map_helper/airlock/door/ext_door,
/turf/simulated/floor/tiled/steel_grid,
/area/rnd/external)
+"aML" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/brown/bordercorner2,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aMM" = (
/obj/effect/floor_decal/rust,
/obj/structure/closet,
@@ -19588,8 +23099,7 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -19601,8 +23111,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 8;
- icon_state = "bordercolorcorner"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/visible/red{
dir = 4
@@ -19646,15 +23155,13 @@
/area/engineering/atmos)
"aNd" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 10;
- icon_state = "intact"
+ dir = 10
},
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
},
/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 8;
- icon_state = "bordercolorcorner"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -19711,7 +23218,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/wood,
@@ -19847,7 +23353,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/wood,
@@ -19858,7 +23363,6 @@
icon_state = "0-8"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -32
},
@@ -19866,8 +23370,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -19931,9 +23434,7 @@
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/rnd/external)
"aNx" = (
-/obj/machinery/camera/network/research{
- dir = 2
- },
+/obj/machinery/camera/network/research,
/obj/machinery/floodlight,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/rnd/external)
@@ -19971,8 +23472,7 @@
/area/engineering/atmos/gas_storage)
"aNC" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
@@ -19992,8 +23492,7 @@
/area/engineering/atmos)
"aNF" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
@@ -20005,8 +23504,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20028,8 +23526,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20048,8 +23545,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20128,8 +23624,7 @@
dir = 10
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
pixel_x = 25
@@ -20140,11 +23635,9 @@
/turf/simulated/wall,
/area/crew_quarters/sleep/Dorm_6)
"aNT" = (
-/obj/structure/ladder/up,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/obj/item/stack/material/steel,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm3)
"aNU" = (
/obj/machinery/portable_atmospherics/canister/phoron,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -20172,8 +23665,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- icon_state = "map-scrubbers"
+ dir = 4
},
/obj/structure/cable/cyan{
d1 = 1;
@@ -20187,8 +23679,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20210,8 +23701,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20224,8 +23714,7 @@
/area/engineering/atmos)
"aOd" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20237,8 +23726,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20255,8 +23743,7 @@
dir = 1
},
/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 1;
- icon_state = "bordercolorcorner"
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20294,13 +23781,11 @@
"aOm" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -20369,9 +23854,7 @@
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
- pixel_x = 0;
pixel_y = 26
},
/obj/random/carp_plushie,
@@ -20403,7 +23886,6 @@
},
/obj/structure/mirror{
dir = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/tiled/white,
@@ -20414,8 +23896,7 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/Dorm_6)
@@ -20446,8 +23927,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20460,8 +23940,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20488,8 +23967,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20497,9 +23975,7 @@
/obj/machinery/atmospherics/portables_connector,
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
@@ -20649,8 +24125,7 @@
/area/crew_quarters/sleep/Dorm_6)
"aOQ" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -20660,6 +24135,15 @@
"aOR" = (
/turf/simulated/wall/r_wall,
/area/engineering/atmos/processing)
+"aOS" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aOT" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -20707,8 +24191,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -20756,7 +24239,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/wood,
@@ -20897,7 +24379,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/wood,
@@ -20908,7 +24389,6 @@
icon_state = "0-8"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -32
},
@@ -20916,8 +24396,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -21115,8 +24594,7 @@
/area/engineering/atmos)
"aPx" = (
/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 4;
- icon_state = "map"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21128,8 +24606,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21146,22 +24623,19 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 8;
- icon_state = "bordercolorcorner"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
"aPB" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21173,8 +24647,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 8;
- icon_state = "bordercolorcorner"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21312,7 +24785,6 @@
"aPS" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -25
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -21344,7 +24816,6 @@
dir = 4
},
/obj/machinery/atmospherics/binary/pump/on{
- dir = 2;
name = "Waste Compresser"
},
/turf/simulated/floor/tiled,
@@ -21358,8 +24829,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21369,8 +24839,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21380,8 +24849,7 @@
/area/engineering/atmos)
"aQa" = (
/obj/machinery/atmospherics/pipe/tank/oxygen{
- dir = 1;
- icon_state = "o2_map"
+ dir = 1
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
@@ -21410,13 +24878,11 @@
"aQe" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -21505,9 +24971,7 @@
/obj/item/weapon/storage/box/donkpockets,
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
- pixel_x = 0;
pixel_y = 26
},
/turf/simulated/floor/wood,
@@ -21523,7 +24987,6 @@
},
/obj/structure/mirror{
dir = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/tiled/white,
@@ -21534,15 +24997,13 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/Dorm_4)
"aQo" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/processing)
@@ -21570,8 +25031,7 @@
/area/engineering/atmos/processing)
"aQt" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 10;
- icon_state = "intact"
+ dir = 10
},
/obj/machinery/light{
dir = 4
@@ -21592,8 +25052,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21608,8 +25067,7 @@
dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21621,8 +25079,7 @@
dir = 1
},
/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 1;
- icon_state = "bordercolorcorner"
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21640,8 +25097,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21653,8 +25109,7 @@
dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21666,8 +25121,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21679,8 +25133,7 @@
dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -21690,11 +25143,22 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
+"aQE" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/machinery/computer/supplycomp{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
"aQF" = (
/obj/machinery/light{
dir = 8
@@ -21845,8 +25309,7 @@
/area/crew_quarters/sleep/Dorm_4)
"aQQ" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -21948,8 +25411,7 @@
/area/engineering/atmos)
"aRf" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 4;
- icon_state = "map"
+ dir = 4
},
/obj/machinery/meter,
/turf/simulated/floor/tiled,
@@ -21998,7 +25460,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/wood,
@@ -22103,7 +25564,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/wood,
@@ -22114,7 +25574,6 @@
icon_state = "0-8"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -32
},
@@ -22122,8 +25581,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -22179,8 +25637,7 @@
/area/engineering/atmos/processing)
"aRv" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos/processing)
@@ -22195,15 +25652,13 @@
/area/engineering/atmos/processing)
"aRy" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 4;
- icon_state = "map"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos/processing)
"aRz" = (
/obj/machinery/atmospherics/pipe/manifold/visible/purple{
- dir = 8;
- icon_state = "map"
+ dir = 8
},
/obj/machinery/meter,
/turf/simulated/floor/tiled,
@@ -22255,8 +25710,7 @@
/area/engineering/atmos)
"aRG" = (
/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1;
- icon_state = "map"
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -22271,8 +25725,7 @@
/area/engineering/atmos)
"aRI" = (
/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 4;
- icon_state = "map"
+ dir = 4
},
/obj/machinery/meter,
/turf/simulated/floor/tiled,
@@ -22284,8 +25737,7 @@
/area/engineering/atmos)
"aRK" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -22329,8 +25781,7 @@
icon_state = "1-2"
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -22374,6 +25825,15 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos/processing)
+"aRR" = (
+/obj/machinery/computer/supplycomp/control{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
"aRS" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/visible/green{
@@ -22460,8 +25920,7 @@
name = "CO2 Filter";
tag_east = 2;
tag_north = 1;
- tag_south = 5;
- tag_west = 0
+ tag_south = 5
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -22509,15 +25968,13 @@
/area/engineering/atmos)
"aSg" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
"aSh" = (
/obj/machinery/atmospherics/pipe/tank/nitrogen{
- dir = 1;
- icon_state = "n2_map"
+ dir = 1
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
@@ -22546,13 +26003,11 @@
"aSl" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/obj/machinery/atmospherics/unary/vent_pump/on,
@@ -22587,9 +26042,7 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -22637,9 +26090,7 @@
/obj/item/weapon/storage/box/donkpockets,
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
- pixel_x = 0;
pixel_y = 26
},
/turf/simulated/floor/wood,
@@ -22655,7 +26106,6 @@
},
/obj/structure/mirror{
dir = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/tiled/white,
@@ -22666,8 +26116,7 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/Dorm_2)
@@ -22698,8 +26147,7 @@
/area/engineering/atmos/processing)
"aSB" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 10;
- icon_state = "intact"
+ dir = 10
},
/obj/structure/cable/cyan{
d1 = 1;
@@ -22785,8 +26233,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/red/bordercorner{
- dir = 8;
- icon_state = "bordercolorcorner"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -22804,8 +26251,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -22909,8 +26355,7 @@
/area/crew_quarters/sleep/Dorm_2)
"aTb" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -22984,7 +26429,6 @@
"aTl" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/atmospherics/unary/heat_exchanger{
@@ -23001,8 +26445,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/black/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
@@ -23048,7 +26491,6 @@
"aTs" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -25
},
/turf/simulated/floor/tiled,
@@ -23060,7 +26502,6 @@
"aTu" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/tiled,
@@ -23108,7 +26549,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/wood,
@@ -23176,13 +26616,10 @@
/area/crew_quarters/visitor_lodging)
"aTB" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/vending/loadout/loadout_misc,
/turf/simulated/floor/tiled,
@@ -23204,7 +26641,6 @@
},
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/turf/simulated/floor/wood,
@@ -23215,7 +26651,6 @@
icon_state = "0-8"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -32
},
@@ -23223,8 +26658,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -23274,8 +26708,7 @@
/area/crew_quarters/sleep/Dorm_2)
"aTJ" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 6;
- icon_state = "intact"
+ dir = 6
},
/obj/machinery/door/firedoor,
/obj/structure/grille,
@@ -23311,8 +26744,7 @@
/area/engineering/atmos/processing)
"aTL" = (
/obj/machinery/atmospherics/pipe/manifold/visible/black{
- dir = 4;
- icon_state = "map"
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/structure/grille,
@@ -23339,8 +26771,7 @@
/area/engineering/atmos/processing)
"aTN" = (
/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{
- dir = 4;
- icon_state = "co2_map"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
@@ -23353,8 +26784,7 @@
/area/engineering/atmos)
"aTP" = (
/obj/machinery/atmospherics/pipe/tank/phoron{
- dir = 4;
- icon_state = "phoron_map"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
@@ -23367,8 +26797,7 @@
/area/engineering/atmos)
"aTR" = (
/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{
- dir = 4;
- icon_state = "n2o_map"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
@@ -23379,6 +26808,21 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
+"aTT" = (
+/obj/machinery/conveyor_switch{
+ id = "surfacecargo";
+ name = "Surface Cargo Delivery conveyor switch";
+ pixel_x = -10;
+ pixel_y = 14
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
"aTU" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
@@ -23451,19 +26895,19 @@
/turf/simulated/wall,
/area/crew_quarters/showers)
"aUc" = (
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aUd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aUe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aUf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -23472,21 +26916,20 @@
/obj/machinery/alarm{
pixel_y = 22
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aUg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aUh" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
},
/obj/effect/floor_decal/corner/white/border{
- dir = 9;
- icon_state = "bordercolor"
+ dir = 9
},
/obj/structure/undies_wardrobe,
/obj/machinery/camera/network/civilian,
@@ -23497,8 +26940,7 @@
dir = 1
},
/obj/effect/floor_decal/corner/blue/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/structure/table/standard,
/obj/machinery/light{
@@ -23515,8 +26957,7 @@
dir = 5
},
/obj/effect/floor_decal/corner/white/border{
- dir = 5;
- icon_state = "bordercolor"
+ dir = 5
},
/obj/structure/table/standard,
/obj/item/device/communicator,
@@ -23569,14 +27010,11 @@
dir = 9
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 9;
- icon_state = "bordercolor"
+ dir = 9
},
/obj/structure/closet/emcloset,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -23585,13 +27023,10 @@
dir = 5
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 5;
- icon_state = "bordercolor"
+ dir = 5
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ dir = 4
},
/obj/machinery/gear_painter,
/turf/simulated/floor/tiled,
@@ -23601,20 +27036,17 @@
dir = 8
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 10
},
/obj/effect/floor_decal/corner/grey/bordercorner2{
- dir = 10;
- icon_state = "bordercolorcorner2"
+ dir = 10
},
-/obj/structure/extinguisher_cabinet{
+/obj/machinery/light_switch{
dir = 4;
- icon_state = "extinguisher_closed";
- pixel_x = -30
+ pixel_x = -24
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -23629,11 +27061,9 @@
/area/crew_quarters/visitor_laundry)
"aUr" = (
/obj/machinery/door/airlock/multi_tile/glass{
- autoclose = 1;
dir = 2;
id_tag = null;
- name = "Laundry";
- req_access = list()
+ name = "Laundry"
},
/obj/effect/floor_decal/steeldecal/steel_decals_central1,
/obj/structure/cable/green{
@@ -23665,6 +27095,12 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
+/obj/effect/floor_decal/corner/grey{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/grey{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aUt" = (
@@ -23672,8 +27108,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 8
@@ -23683,8 +27118,7 @@
dir = 1
},
/obj/effect/floor_decal/corner/grey/bordercorner2{
- dir = 8;
- icon_state = "bordercolorcorner2"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -23692,6 +27126,12 @@
/obj/machinery/washing_machine,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/grey{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/grey{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aUv" = (
@@ -23761,36 +27201,46 @@
/turf/simulated/floor/plating,
/area/engineering/atmos_intake)
"aUE" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/woodentable,
+/obj/item/clothing/mask/smokable/cigarette/joint{
+ desc = "Ever been to orbit?"
+ },
/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
+/area/crew_quarters/sleep/maintDorm3)
"aUF" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
"aUG" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 5
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aUH" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 6
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aUI" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/obj/machinery/light,
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aUJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aUK" = (
/obj/effect/floor_decal/borderfloor{
@@ -23871,12 +27321,11 @@
dir = 4
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
-/obj/machinery/light_switch{
+/obj/structure/extinguisher_cabinet{
dir = 8;
- pixel_x = 24
+ pixel_x = 30
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -23890,8 +27339,7 @@
"aUS" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
@@ -23899,10 +27347,15 @@
/turf/simulated/wall/r_wall,
/area/maintenance/lower/atmos)
"aUU" = (
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/table/woodentable,
+/obj/machinery/light_construct,
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
"aUV" = (
/obj/machinery/alarm{
pixel_y = 22
@@ -23911,21 +27364,15 @@
/area/maintenance/lower/atmos)
"aUW" = (
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- pixel_x = 0;
- pixel_y = 0
+ dir = 4
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aUX" = (
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- pixel_x = 0;
- pixel_y = 0
+ dir = 8
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aUY" = (
/obj/effect/floor_decal/borderfloor{
@@ -24016,34 +27463,45 @@
/area/crew_quarters/visitor_laundry)
"aVe" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVf" = (
/obj/machinery/washing_machine,
+/obj/effect/floor_decal/corner/grey{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/grey{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVg" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVh" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/visitor_laundry)
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/plating,
+/area/vacant/vacant_bar)
"aVi" = (
/obj/structure/bed/chair/comfy/black,
/obj/effect/floor_decal/borderfloor{
dir = 5
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 5;
- icon_state = "bordercolor"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -24073,7 +27531,6 @@
},
/obj/machinery/door/blast/regular{
density = 0;
- dir = 1;
icon_state = "pdoor0";
id = "atmoslockdown";
name = "Atmospherics Lockdown";
@@ -24082,39 +27539,42 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aVl" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/purple{
- dir = 4;
- icon_state = "map"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/turf/simulated/floor/plating,
-/area/engineering/atmos/processing)
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm3)
"aVm" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera/network/engineering{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plating,
-/area/engineering/atmos/processing)
+/area/crew_quarters/sleep/maintDorm3)
"aVn" = (
/turf/simulated/wall,
/area/maintenance/lower/atmos)
"aVo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
+/area/crew_quarters/sleep/maintDorm3)
"aVp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
+/area/crew_quarters/sleep/maintDorm2)
"aVq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -24122,7 +27582,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aVr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -24131,7 +27591,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aVs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -24144,7 +27604,7 @@
/obj/machinery/door/airlock{
name = "Unisex Showers"
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aVt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -24283,6 +27743,12 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVB" = (
@@ -24297,6 +27763,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/floor_decal/corner/grey{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/grey{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVC" = (
@@ -24311,6 +27783,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVD" = (
@@ -24319,8 +27797,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -24343,7 +27820,6 @@
},
/obj/machinery/door/blast/regular{
density = 0;
- dir = 1;
icon_state = "pdoor0";
id = "atmoslockdown";
name = "Atmospherics Lockdown";
@@ -24352,18 +27828,22 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aVG" = (
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 9;
- icon_state = "intact"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/engineering/atmos/processing)
+/area/crew_quarters/sleep/maintDorm1)
"aVH" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/atmos/processing)
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/structure/table,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm1)
"aVI" = (
/obj/machinery/light/small{
dir = 8
@@ -24372,7 +27852,7 @@
/area/maintenance/lower/atmos)
"aVJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aVK" = (
/obj/effect/floor_decal/borderfloor{
@@ -24483,6 +27963,12 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVR" = (
@@ -24494,6 +27980,12 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"aVS" = (
@@ -24509,8 +28001,7 @@
dir = 6
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 6;
- icon_state = "bordercolor"
+ dir = 6
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -24518,7 +28009,6 @@
/obj/machinery/atmospherics/unary/outlet_injector{
dir = 4;
frequency = 1441;
- icon_state = "map_injector";
id = "atmos_out";
use_power = 1
},
@@ -24536,7 +28026,6 @@
},
/obj/machinery/door/blast/regular{
density = 0;
- dir = 1;
icon_state = "pdoor0";
id = "atmoslockdown";
name = "Atmospherics Lockdown";
@@ -24545,19 +28034,22 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"aVW" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/engineering/atmos/processing)
+/area/crew_quarters/sleep/maintDorm3)
"aVX" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/double,
/turf/simulated/floor/plating,
-/area/engineering/atmos/processing)
+/area/crew_quarters/sleep/maintDorm3)
+"aVY" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
"aVZ" = (
/obj/machinery/vending/boozeomat,
/turf/simulated/floor/wood,
@@ -24590,20 +28082,20 @@
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 10
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aWg" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 9
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aWh" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/light{
dir = 1
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aWi" = (
/obj/effect/floor_decal/borderfloor{
@@ -24687,12 +28179,10 @@
dir = 8
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/machinery/vending/loadout/costume{
- dir = 4;
- icon_state = "theater"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -24731,22 +28221,19 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
"aWu" = (
-/obj/structure/table/rack,
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/engineering,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm2)
"aWv" = (
/obj/random/trash_pile,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
"aWw" = (
-/obj/structure/closet/crate,
-/obj/random/maintenance/engineering,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
+/obj/structure/table,
+/obj/item/stack/material/wood{
+ amount = 10
+ },
+/turf/simulated/floor/wood,
+/area/vacant/vacant_bar)
"aWx" = (
/obj/structure/closet,
/obj/random/maintenance/clean,
@@ -24780,31 +28267,30 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aWE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aWF" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aWG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/crew_quarters/showers)
"aWH" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
/obj/effect/floor_decal/corner/white/border{
- dir = 10;
- icon_state = "bordercolor"
+ dir = 10
},
/obj/structure/closet/secure_closet/personal,
/obj/item/clothing/under/bathrobe,
@@ -24816,7 +28302,6 @@
/obj/machinery/light,
/obj/structure/cable/green,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -32
},
@@ -24840,8 +28325,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/white/border{
- dir = 10;
- icon_state = "bordercolor"
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -24866,12 +28350,10 @@
dir = 8
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/machinery/vending/fitness{
- dir = 4;
- icon_state = "fitness"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -24880,12 +28362,10 @@
dir = 4
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/obj/machinery/vending/cola{
- dir = 8;
- icon_state = "Soda_Machine"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -24896,9 +28376,11 @@
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/engineering/atmos_intake)
"aWP" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/engineering/atmos/processing)
+/area/crew_quarters/sleep/maintDorm3)
"aWQ" = (
/obj/machinery/light{
dir = 8
@@ -24907,9 +28389,9 @@
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
"aWR" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
+/obj/structure/table,
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/maintDorm3)
"aWS" = (
/obj/structure/table,
/turf/simulated/floor/wood,
@@ -24917,8 +28399,7 @@
"aWT" = (
/obj/structure/table/bench/padded,
/obj/machinery/light_construct{
- dir = 4;
- icon_state = "tube-construct-stage1"
+ dir = 4
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
@@ -24940,17 +28421,13 @@
dir = 10
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 10;
- icon_state = "bordercolor"
+ dir = 10
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
+ dir = 8
},
/obj/machinery/vending/cigarette{
- dir = 4;
- icon_state = "cigs"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -25000,15 +28477,16 @@
/obj/effect/floor_decal/corner/grey/border,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 9
},
/obj/effect/floor_decal/corner/grey/bordercorner2{
- dir = 9;
- icon_state = "bordercolorcorner2"
+ dir = 9
+ },
+/obj/machinery/vending/nifsoft_shop{
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -25037,7 +28515,6 @@
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/grey/border,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -32
},
@@ -25049,19 +28526,15 @@
dir = 6
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 6;
- icon_state = "bordercolor"
+ dir = 6
},
/obj/structure/closet/crate,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -25076,14 +28549,11 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
"aXf" = (
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
},
-/obj/structure/table/bench/steel,
-/obj/random/cigarettes,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm2)
"aXg" = (
/obj/structure/ladder/up,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -25151,91 +28621,9 @@
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
"aXn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/holosign/bar{
- id = "maintbar";
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/lower/atmos)
-"aXo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/lower/atmos)
-"aXp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/lower/atmos)
-"aXq" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/lower/atmos)
+/obj/random/junk,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/maintDorm2)
"aXr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -25253,31 +28641,9 @@
},
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/lower/atmos)
-"aXs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/lower/atmos)
"aXt" = (
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
@@ -25308,8 +28674,7 @@
dir = 4
},
/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
+ dir = 1
},
/obj/structure/cable/green{
d1 = 4;
@@ -25342,8 +28707,7 @@
icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- icon_state = "map-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -25360,11 +28724,6 @@
},
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/lower/atmos)
-"aXx" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/lower/atmos)
"aXy" = (
/obj/random/cash,
/turf/simulated/floor/plating,
@@ -25380,21 +28739,6 @@
/obj/item/weapon/pen,
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
-"aXB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
"aXC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -25410,55 +28754,6 @@
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
-"aXD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/item/weapon/stool/padded,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
-"aXE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
-"aXF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
"aXG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -25476,8 +28771,7 @@
"aXH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- icon_state = "map-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -25500,15 +28794,6 @@
"aXJ" = (
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/lower/atmos)
-"aXK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/lower/atmos)
-"aXL" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/lower/atmos)
"aXM" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -25521,18 +28806,6 @@
},
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/lower/atmos)
-"aXN" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/lower/atmos)
"aXO" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -25548,6 +28821,19 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/lower/atmos)
+"aXQ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore/office)
"aXR" = (
/obj/structure/window/reinforced,
/obj/structure/closet/masks,
@@ -25558,42 +28844,10 @@
/obj/effect/decal/cleanable/vomit,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aXT" = (
-/obj/machinery/door/window/southright{
- req_access = list(5)
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aXU" = (
-/obj/structure/window/reinforced,
-/obj/structure/closet/boxinggloves,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aXV" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aXW" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
"aXX" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/structure/table/steel,
/turf/simulated/floor/wood,
@@ -25608,11 +28862,6 @@
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
-"aXZ" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
"aYa" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -25636,8 +28885,7 @@
dir = 8
},
/obj/machinery/light_construct{
- dir = 4;
- icon_state = "tube-construct-stage1"
+ dir = 4
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
@@ -25705,33 +28953,15 @@
/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aYl" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
"aYm" = (
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aYn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
"aYo" = (
/obj/machinery/light_construct{
- dir = 8;
- icon_state = "tube-construct-stage1"
+ dir = 8
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
@@ -25759,7 +28989,6 @@
},
/obj/structure/mirror{
dir = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/tiled/white,
@@ -25770,10 +28999,6 @@
},
/turf/simulated/floor/tiled/white,
/area/vacant/vacant_bar)
-"aYt" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm3)
"aYu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -25806,19 +29031,10 @@
},
/obj/structure/mirror{
dir = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/maintDorm3)
-"aYw" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/toilet{
- pixel_y = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/maintDorm3)
"aYx" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -25826,51 +29042,16 @@
/obj/machinery/disposal,
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm2)
-"aYy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24;
- pixel_y = 6
- },
-/obj/machinery/button/remote/airlock{
- id = "maintdorm2";
- name = "Room 2 Lock";
- pixel_x = 23;
- pixel_y = -4;
- specialfunctions = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm2)
"aYz" = (
/obj/structure/sink{
pixel_y = 22
},
/obj/structure/mirror{
dir = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm2)
-"aYA" = (
-/obj/structure/toilet{
- pixel_y = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm2)
"aYB" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -25878,46 +29059,6 @@
/obj/machinery/disposal,
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm1)
-"aYC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24;
- pixel_y = 6
- },
-/obj/machinery/button/remote/airlock{
- id = "maintdorm1";
- name = "Room 1 Lock";
- pixel_x = 23;
- pixel_y = -4;
- specialfunctions = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm1)
-"aYD" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/sink{
- pixel_y = 22
- },
-/obj/structure/mirror{
- dir = 4;
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/maintDorm1)
"aYE" = (
/obj/structure/toilet{
pixel_y = 10
@@ -25942,15 +29083,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aYH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
"aYI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -25966,19 +29098,6 @@
},
/turf/simulated/floor/plating,
/area/vacant/vacant_bar)
-"aYJ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_bar)
-"aYK" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_bar)
"aYL" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -26016,32 +29135,10 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/tiled/white,
/area/vacant/vacant_bar)
-"aYP" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm3)
-"aYQ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm3)
"aYR" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock{
@@ -26055,100 +29152,26 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/maintDorm3)
-"aYS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/maintDorm3)
"aYT" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/maintDorm3)
-"aYU" = (
-/obj/structure/table,
-/obj/item/frame,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm2)
-"aYV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm2)
-"aYW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm2)
-"aYX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm2)
"aYY" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/maintDorm2)
-"aYZ" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm1)
-"aZa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm1)
"aZb" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock{
@@ -26171,34 +29194,21 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm1)
-"aZd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+"aZg" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
},
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 10
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm1)
-"aZe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_bar)
-"aZf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_bar)
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"aZh" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -26224,7 +29234,6 @@
/area/vacant/vacant_bar)
"aZj" = (
/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
dir = 8;
name = "west bump";
pixel_x = -28
@@ -26234,17 +29243,6 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm3)
-"aZk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm3)
"aZl" = (
/obj/effect/floor_decal/rust,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -26268,24 +29266,6 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/sleep/maintDorm3)
-"aZn" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/item/stack/material/wood{
- amount = 10
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm2)
"aZo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -26320,39 +29300,6 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/sleep/maintDorm2)
-"aZr" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm1)
-"aZs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm1)
-"aZt" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light_construct/small,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm1)
"aZu" = (
/obj/machinery/shower{
dir = 1
@@ -26368,17 +29315,6 @@
/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/plating,
/area/vacant/vacant_bar)
-"aZx" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
-"aZy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
"aZz" = (
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/maintDorm3)
@@ -26387,11 +29323,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm3)
-"aZB" = (
-/obj/structure/table/woodentable,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm2)
"aZC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -26400,56 +29331,12 @@
"aZD" = (
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/maintDorm1)
-"aZE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm1)
-"aZF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/table/woodentable,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
-"aZG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/table/bench/padded,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
-"aZH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
"aZI" = (
/obj/machinery/light_construct{
- dir = 1;
- icon_state = "tube-construct-stage1"
+ dir = 1
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
-"aZJ" = (
-/obj/item/stack/material/steel,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm3)
"aZK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -26458,20 +29345,11 @@
"aZL" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light_construct{
- dir = 1;
- icon_state = "tube-construct-stage1"
+ dir = 1
},
/obj/structure/table,
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm3)
-"aZM" = (
-/obj/structure/table/woodentable,
-/obj/item/clothing/mask/smokable/cigarette/joint{
- desc = "Ever been to orbit?"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm3)
"aZN" = (
/obj/structure/table,
/obj/item/stack/material/wood{
@@ -26486,8 +29364,7 @@
"aZP" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light_construct{
- dir = 1;
- icon_state = "tube-construct-stage1"
+ dir = 1
},
/obj/structure/table,
/turf/simulated/floor/wood,
@@ -26503,46 +29380,16 @@
"aZS" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light_construct{
- dir = 1;
- icon_state = "tube-construct-stage1"
+ dir = 1
},
/obj/random/junk,
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/maintDorm1)
-"aZT" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm1)
"aZU" = (
/obj/structure/table/woodentable,
/obj/item/weapon/storage/fancy/markers,
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm1)
-"aZV" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/table/bench/padded,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
-"aZW" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/table/woodentable,
-/obj/machinery/light_construct,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
"aZX" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -26584,56 +29431,12 @@
/obj/structure/table/bench/padded,
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
-"bac" = (
-/obj/structure/table/bench/padded,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_bar)
"bad" = (
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm3)
-"bae" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm3)
-"baf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm3)
-"bag" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm3)
"bah" = (
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm2)
-"bai" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm2)
"baj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -26643,33 +29446,14 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/sleep/maintDorm2)
-"bak" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm2)
"bal" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/maintDorm2)
-"bam" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm1)
-"ban" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm1)
"bao" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -26679,16 +29463,6 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/maintDorm1)
-"bap" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm1)
"baq" = (
/obj/structure/sign/warning,
/turf/simulated/wall,
@@ -26715,32 +29489,6 @@
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
/area/vacant/vacant_bar)
-"bav" = (
-/obj/structure/table/bench/padded,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
-"baw" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm3)
-"bax" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm3)
-"bay" = (
-/obj/structure/bed/double/padded,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/bedsheet/double,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm3)
-"baz" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm2)
"baA" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -26774,48 +29522,16 @@
/obj/structure/stairs/west,
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside1)
-"baH" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/material/wood{
- amount = 10
- },
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar)
-"baI" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm3)
-"baJ" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/maintDorm3)
"baK" = (
/obj/structure/bed/chair/comfy/black{
dir = 8
},
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/maintDorm3)
-"baL" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm2)
"baM" = (
/obj/item/stack/material/steel,
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/maintDorm2)
-"baN" = (
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/crew_quarters/sleep/maintDorm2)
"baO" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
@@ -26866,20 +29582,63 @@
},
/turf/unsimulated/wall/planetary/virgo3b,
/area/tether/surfacebase/outside/outside1)
+"baX" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Cargo Shop"
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cargostore)
+"baY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "surfcargooffice";
+ layer = 3.3;
+ name = "Cargo Office Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/cargostore/office)
"baZ" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
+"bba" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "surfcargooffice";
+ layer = 3.3;
+ name = "Cargo Office Shutters"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/cargostore/office)
+"bbb" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Mental Health and North EVA"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/steeldecal/steel_decals_central1{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/monofloor{
+ dir = 8
+ },
+/area/tether/surfacebase/lowernorthhall)
"bbc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/rust,
@@ -26898,24 +29657,51 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"bbf" = (
-/obj/machinery/computer/supplycomp/control{
- dir = 8;
- icon_state = "computer"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/brown/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor/corner2{
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/steeldecal/steel_decals_central1{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/bordercorner2{
+/turf/simulated/floor/tiled/monofloor{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/area/tether/surfacebase/lowernorthhall)
+"bbg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/cargostoresubstation)
+"bbh" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/cargostoresubstation)
+"bbi" = (
+/obj/machinery/door/airlock/engineering{
+ name = "CargoShop Substation";
+ req_one_access = list(11,24,50)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/cargostoresubstation)
+"bbj" = (
+/turf/simulated/wall,
+/area/maintenance/substation/SurfMedsubstation)
"bbk" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -26923,19 +29709,17 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"bbl" = (
@@ -26943,7 +29727,6 @@
dir = 1
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 30
},
/obj/structure/disposalpipe/segment{
@@ -26953,7 +29736,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey/border{
+/obj/effect/floor_decal/corner/brown/border{
dir = 1
},
/turf/simulated/floor/tiled,
@@ -26969,7 +29752,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey/border{
+/obj/effect/floor_decal/corner/brown/border{
dir = 1
},
/turf/simulated/floor/tiled,
@@ -26990,7 +29773,6 @@
/area/tether/surfacebase/surface_one_hall)
"bbo" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -28
},
@@ -26998,8 +29780,7 @@
icon_state = "0-4"
},
/obj/effect/floor_decal/industrial/warning{
- dir = 8;
- icon_state = "warning"
+ dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals3,
/obj/effect/floor_decal/steeldecal/steel_decals3{
@@ -27020,10 +29801,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/item/device/radio/intercom{
dir = 1;
- pixel_y = 24;
- req_access = list()
+ pixel_y = 24
},
-/obj/effect/floor_decal/corner/lightgrey/border{
+/obj/effect/floor_decal/corner/brown/border{
dir = 1
},
/turf/simulated/floor/tiled,
@@ -27052,17 +29832,30 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
"bbr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "surfcargooffice";
- layer = 3.3;
- name = "Cargo Office Shutters"
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/cargo/office)
+/obj/machinery/door/airlock/engineering{
+ name = "Medbay Substation";
+ req_one_access = list(11,24,5)
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/SurfMedsubstation)
+"bbs" = (
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - CargoShop";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/cargostoresubstation)
"bbt" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -27071,20 +29864,42 @@
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/obj/effect/floor_decal/corner/brown/border{
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
dir = 5
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/bordercorner2{
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
dir = 4
},
-/obj/machinery/status_display{
- pixel_x = 32
- },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"bbu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/simulated/floor,
+/area/maintenance/substation/cargostoresubstation)
+"bbv" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/cargostoresubstation)
"bbw" = (
/obj/structure/table/rack,
/obj/random/maintenance/cargo,
@@ -27092,57 +29907,109 @@
/obj/random/maintenance/medical,
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
-"bbA" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+"bbx" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "SurfMed Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/SurfMedsubstation)
+"bby" = (
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/effect/floor_decal/borderfloor{
- dir = 4
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
-"bbB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
-"bbC" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/structure/bed/chair/sofa/brown/right{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/turf/simulated/floor,
+/area/maintenance/substation/SurfMedsubstation)
+"bbz" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/SurfMedsubstation)
+"bbA" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "Medbay Substation";
+ req_one_access = list(11,24,5)
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/SurfMedsubstation)
+"bbC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - CargoShop Subgrid";
+ name_tag = "CargoShop Subgrid"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/cargostoresubstation)
+"bbD" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/cargostoresubstation)
"bbE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/cargostoresubstation)
"bbF" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/floor_decal/borderfloor{
- dir = 6
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/brown/border{
- dir = 6
+/obj/machinery/door/airlock/engineering{
+ name = "CargoShop Substation";
+ req_one_access = list(11,24,50)
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/office)
+/turf/simulated/floor,
+/area/maintenance/substation/cargostoresubstation)
"bbG" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/structure/disposalpipe/segment,
@@ -27163,6 +30030,57 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
+"bbI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/SurfMedsubstation)
+"bbJ" = (
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - SurfMed";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/SurfMedsubstation)
+"bbK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/simulated/floor,
+/area/maintenance/substation/SurfMedsubstation)
+"bbL" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/SurfMedsubstation)
+"bbM" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/SurfMedsubstation)
"bbN" = (
/obj/structure/cable/green{
d1 = 4;
@@ -27199,8 +30117,9 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"bbQ" = (
-/turf/simulated/mineral,
-/area/tether/surfacebase/surface_one_hall)
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/plating,
+/area/tether/elevator)
"bbR" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27251,8 +30170,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/rust,
@@ -27267,44 +30185,131 @@
/obj/random/maintenance/medical,
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
-"bbW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "surfcargooffice";
- layer = 3.3;
- name = "Cargo Office Shutters"
+"bbV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/cargo/office)
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - SurfMed Subgrid";
+ name_tag = "SurfMed Subgrid"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/SurfMedsubstation)
+"bbW" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/SurfMedsubstation)
"bbX" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
+"bbY" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/SurfMedsubstation)
+"bbZ" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"bca" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"bcc" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay,
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"bcd" = (
/turf/simulated/mineral,
/area/maintenance/lower/xenoflora)
-"bce" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
"bcf" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
-"bcg" = (
-/obj/structure/table/rack,
-/obj/random/maintenance/cargo,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/masks,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/lime/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
"bch" = (
/obj/random/junk,
/turf/simulated/floor/plating,
@@ -27327,19 +30332,19 @@
/obj/effect/floor_decal/steeldecal/steel_decals5,
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
-"bck" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/xenoflora)
"bcl" = (
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcm" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
"bcn" = (
/obj/structure/closet/crate,
/obj/random/tool,
@@ -27353,98 +30358,59 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
-"bco" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/xenoflora)
"bcp" = (
/obj/machinery/alarm{
pixel_y = 22
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
"bcq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance/engi{
+ id_tag = "elevescapel";
+ name = "Elevator Maintenance"
+ },
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/remote/airlock{
+ id = "elevescapel";
+ name = "elevator escape button";
+ pixel_y = 32
+ },
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'CRUSH WARNING'.";
+ name = "\improper CRUSH WARNING";
+ pixel_y = 32
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
-"bct" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/xenoflora)
-"bcu" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
"bcv" = (
/obj/structure/disposalpipe/up{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/xenoflora)
-"bcw" = (
-/obj/structure/disposalpipe/segment,
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/xenoflora)
-"bcx" = (
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/xenoflora)
-"bcy" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcz" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash,
-/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcA" = (
@@ -27455,19 +30421,17 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcC" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate,
/obj/random/unidentified_medicine,
/obj/random/firstaid,
/obj/random/drinkbottle,
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
/turf/simulated/floor/plating,
/area/maintenance/lower/xenoflora)
"bcD" = (
@@ -27477,27 +30441,23 @@
dir = 9
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 9;
- icon_state = "bordercolor"
+ dir = 9
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
"bcE" = (
/obj/structure/closet/wardrobe/white,
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 1
},
/obj/effect/floor_decal/corner/grey/bordercorner2{
- dir = 1;
- icon_state = "bordercolorcorner2"
+ dir = 1
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -27506,8 +30466,7 @@
/area/crew_quarters/visitor_laundry)
"bcF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
@@ -27526,19 +30485,16 @@
"bcG" = (
/obj/structure/undies_wardrobe,
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
/obj/effect/floor_decal/corner/grey/bordercorner2{
- dir = 4;
- icon_state = "bordercolorcorner2"
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -27551,8 +30507,7 @@
dir = 5
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 5;
- icon_state = "bordercolor"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -27561,13 +30516,11 @@
dir = 8
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/effect/landmark{
name = "morphspawn"
@@ -27579,8 +30532,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -27590,8 +30542,7 @@
dir = 10
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 10;
- icon_state = "bordercolor"
+ dir = 10
},
/turf/simulated/floor/tiled,
/area/crew_quarters/visitor_laundry)
@@ -27613,8 +30564,7 @@
dir = 6
},
/obj/effect/floor_decal/corner/grey/border{
- dir = 6;
- icon_state = "bordercolor"
+ dir = 6
},
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled,
@@ -27623,24 +30573,37 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plating,
/area/engineering/atmos/processing)
"bcQ" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
+/obj/effect/floor_decal/corner/red{
+ dir = 9
},
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
-"bcR" = (
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/westleft{
+ req_access = list(2)
+ },
+/obj/machinery/door/window/brigdoor/eastright{
+ req_access = list(2)
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"bcS" = (
/obj/structure/closet/crate,
/obj/random/maintenance/cargo,
@@ -27654,8 +30617,7 @@
/area/crew_quarters/visitor_laundry)
"bcU" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 4;
- icon_state = "warning"
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8;
@@ -27677,20 +30639,6 @@
},
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside1)
-"bcW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark{
- name = "maint_pred"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
-"bcX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark{
- name = "maint_pred"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
"bcY" = (
/obj/structure/catwalk,
/obj/structure/cable/green{
@@ -27702,8 +30650,7 @@
/area/maintenance/lower/public_garden_maintenence)
"bcZ" = (
/obj/machinery/computer/HolodeckControl{
- dir = 4;
- icon_state = "computer"
+ dir = 4
},
/obj/effect/floor_decal/techfloor/orange{
dir = 8
@@ -27714,7 +30661,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable/green{
@@ -27722,8 +30668,12 @@
icon_state = "0-4"
},
/obj/effect/floor_decal/techfloor/orange/corner{
- dir = 8;
- icon_state = "techfloororange_corners"
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
@@ -27764,16 +30714,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/public_garden_maintenence)
-"bdf" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence)
"bdg" = (
/obj/machinery/door/airlock{
name = "Holodeck"
@@ -27791,15 +30731,18 @@
dir = 9
},
/obj/effect/floor_decal/techfloor/hole{
- dir = 4;
- icon_state = "techfloor_hole_left"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
"bdi" = (
/obj/effect/floor_decal/techfloor/orange/corner{
- dir = 1;
- icon_state = "techfloororange_corners"
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
@@ -27807,8 +30750,7 @@
/obj/structure/catwalk,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/structure/cable/green{
d1 = 1;
@@ -27833,6 +30775,11 @@
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
"bdm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
"bdn" = (
@@ -27849,13 +30796,17 @@
dir = 9
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
"bdp" = (
/obj/machinery/button/windowtint{
id = "holodeck";
pixel_x = 35;
- pixel_y = 0;
range = 14;
req_access = newlist()
},
@@ -27867,11 +30818,14 @@
alarm_id = "anomaly_testing";
breach_detection = 0;
dir = 8;
- frequency = 1439;
pixel_x = 22;
- pixel_y = 0;
report_danger_level = 0
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
"bdq" = (
@@ -27906,6 +30860,11 @@
"bdu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
"bdv" = (
@@ -27923,8 +30882,7 @@
dir = 10
},
/obj/effect/floor_decal/techfloor/hole/right{
- dir = 4;
- icon_state = "techfloor_hole_right"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
@@ -27932,8 +30890,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/techfloor/orange/corner{
- dir = 8;
- icon_state = "techfloororange_corners"
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
@@ -27945,16 +30907,19 @@
pixel_x = 28
},
/obj/effect/floor_decal/techfloor/orange/corner{
- dir = 1;
- icon_state = "techfloororange_corners"
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
"bdz" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 22;
- pixel_y = 0
+ pixel_x = 22
},
/obj/machinery/camera/network/civilian{
dir = 1
@@ -27973,15 +30938,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/holodeck_control)
"bdB" = (
/obj/structure/catwalk,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
@@ -27993,6 +30958,10 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/public_garden_maintenence)
"bdC" = (
@@ -28003,12 +30972,16 @@
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
"bdD" = (
@@ -28019,14 +30992,11 @@
dir = 9
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -28041,8 +31011,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -28051,8 +31020,7 @@
/area/tether/surfacebase/public_garden_one)
"bdF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -28061,16 +31029,14 @@
/area/tether/surfacebase/public_garden_one)
"bdG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
"bdH" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
@@ -28090,8 +31056,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
@@ -28114,28 +31079,9 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
-"beE" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/brown/bordercorner2{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+"bqI" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/brig/storage)
"byn" = (
/obj/effect/floor_decal/steeldecal/steel_decals6,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -28171,8 +31117,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -28188,6 +31133,48 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"bzb" = (
+/obj/machinery/camera/network/security{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
+"bHK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"bHR" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"bJz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
"bMs" = (
/obj/machinery/door/airlock/glass_external/public,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -28216,7 +31203,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -28227,6 +31213,20 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"bOd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/weaponsrange)
"bPt" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -28253,6 +31253,20 @@
"bZC" = (
/turf/simulated/floor/looking_glass,
/area/looking_glass/lg_1)
+"ccA" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"cdO" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
@@ -28277,8 +31291,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- icon_state = "intact-supply"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
@@ -28289,11 +31302,9 @@
},
/obj/effect/floor_decal/steeldecal/steel_decals_central1,
/obj/machinery/door/airlock/multi_tile/glass{
- autoclose = 1;
dir = 2;
id_tag = null;
- name = "Laundry";
- req_access = list()
+ name = "Laundry"
},
/obj/structure/cable/green{
d1 = 4;
@@ -28308,21 +31319,6 @@
},
/turf/simulated/floor/tiled/monofloor,
/area/crew_quarters/locker/laundry_arrival)
-"cpD" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
"cqZ" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -28331,17 +31327,13 @@
dir = 8
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
+ dir = 10
},
/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
dir = 10
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
+ dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
@@ -28360,22 +31352,38 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
+"csd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"cwS" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
"cAR" = (
/turf/simulated/floor/looking_glass/center,
/area/looking_glass/lg_1)
-"cBf" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
"cGJ" = (
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
+"cGU" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
"cHW" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
@@ -28444,8 +31452,7 @@
lg_id = "one"
},
/obj/effect/floor_decal/spline/plain{
- dir = 9;
- icon_state = "spline_plain"
+ dir = 9
},
/obj/structure/cable/green{
d2 = 2;
@@ -28458,6 +31465,25 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/looking_glass/lg_1)
+"cPX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"cWS" = (
/obj/item/device/radio/beacon,
/turf/simulated/floor/tiled,
@@ -28476,6 +31502,105 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker/laundry_arrival)
+"ddU" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"dfJ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/bag/trash,
+/obj/item/weapon/storage/bag/trash,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/weaponsrange)
+"diq" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"dju" = (
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ dir = 1
+ },
+/obj/structure/table/steel,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
+"dlB" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"doa" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_one_hall)
+"dxY" = (
+/obj/structure/table/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/lowernorthhall)
+"dyd" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
"dCc" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -28487,8 +31612,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/camera/network/northern_star{
dir = 1
@@ -28505,13 +31629,88 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
-"dYe" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"dCs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"dFD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"dJZ" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/area/tether/surfacebase/security/lowerhall)
+"dMu" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"dPC" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"dYd" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/tether/surfacebase/cargostore/warehouse)
"dZW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -28536,18 +31735,23 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
-"ecq" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"eby" = (
+/obj/machinery/door/window/brigdoor/southleft{
+ dir = 8;
+ id = "Cell 2";
+ name = "Cell 2";
+ req_access = list(2)
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
+"eeo" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/green{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"efV" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -28566,6 +31770,16 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker/laundry_arrival)
+"eku" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/target_stake,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"ekC" = (
+/obj/structure/table/steel,
+/obj/item/weapon/soap/nanotrasen,
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
"eow" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -28594,6 +31808,19 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"epD" = (
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/lowerhall)
+"erc" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 30
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/lowernorthhall)
"evF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -28611,32 +31838,116 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
-"eGO" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"exW" = (
+/obj/machinery/atmospherics/portables_connector{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
+"ezn" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
+"eAd" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
+"eBd" = (
+/obj/machinery/cryopod,
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
-"eIL" = (
-/obj/structure/cable{
- icon_state = "1-8"
+/area/tether/surfacebase/security/brig)
+"eDh" = (
+/obj/machinery/door/airlock{
+ name = "Brig Restroom"
},
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig/bathroom)
+"eEn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/weaponsrange)
+"eFp" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/gun/energy/laser/practice,
+/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice,
+/obj/item/ammo_magazine/clip/c762/practice,
+/obj/item/ammo_magazine/clip/c762/practice,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"eGp" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/visible/supply{
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"eJQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/area/tether/surfacebase/security/brig)
+"eQz" = (
+/turf/simulated/floor,
+/area/maintenance/lower/mining_eva)
"eQT" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
@@ -28664,16 +31975,40 @@
/area/tether/surfacebase/surface_one_hall)
"fcT" = (
/turf/simulated/floor/looking_glass{
- dir = 8;
- icon_state = "origin_arrow"
+ dir = 8
},
/area/looking_glass/lg_1)
"ffD" = (
/turf/simulated/floor/looking_glass{
- dir = 10;
- icon_state = "origin_arrow"
+ dir = 10
},
/area/looking_glass/lg_1)
+"fmY" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"fpU" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/hidden/green,
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
+"fqa" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/security/brig/bathroom)
+"frz" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"fvH" = (
+/obj/machinery/door/airlock{
+ name = "Brig Restroom"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
"fyp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
@@ -28695,7 +32030,6 @@
},
/obj/structure/extinguisher_cabinet{
dir = 4;
- icon_state = "extinguisher_closed";
pixel_x = -30
},
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -28703,31 +32037,84 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
-"fBN" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
-"fGP" = (
-/obj/structure/railing{
+"fCk" = (
+/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
+"fDx" = (
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Riot Control";
+ req_one_access = list(63,24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
+"fLB" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"fOy" = (
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/obj/structure/curtain/open/shower/security,
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig/bathroom)
+"fPf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"geO" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/industrial/warning{
dir = 1
},
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
-"fYi" = (
-/obj/random/cutout,
-/turf/simulated/floor/plating,
-/area/construction/vacant_mining_ops)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/weaponsrange)
"ghg" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 5
@@ -28756,8 +32143,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
icon_state = "1-8"
@@ -28774,6 +32160,14 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"gjD" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/weaponsrange)
"glc" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -28808,6 +32202,68 @@
/obj/effect/floor_decal/corner/mauve/border,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"gnt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"gnW" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "briginner";
+ name = "Brig";
+ req_access = list(2);
+ req_one_access = newlist()
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"goJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_one_hall)
+"gud" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/item/toy/stickhorse,
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/weapon/beach_ball/holoball,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
"guV" = (
/obj/structure/closet,
/obj/random/drinkbottle,
@@ -28855,23 +32311,51 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
-"gOA" = (
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+"gAn" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/railing{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"gCa" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/security/lowerhall)
+"gJK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"gVe" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -28879,8 +32363,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 4
@@ -28893,17 +32376,42 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"gYx" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
"gZN" = (
/turf/simulated/floor/looking_glass{
- dir = 9;
- icon_state = "origin_arrow"
+ dir = 9
},
/area/looking_glass/lg_1)
-"hcz" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+"hco" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
+"hdh" = (
+/obj/machinery/door/airlock/security{
+ name = "The Hole";
+ req_access = list(2)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/lowerhall)
"hmx" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -28955,6 +32463,22 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"hpB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "northciv_airlock_inner";
+ locked = 1
+ },
+/obj/machinery/access_button/airlock_interior{
+ master_tag = "northciv_airlock";
+ pixel_x = 25;
+ pixel_y = -8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/lowernortheva)
"huE" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -28971,33 +32495,133 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker/laundry_arrival)
+"hzx" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
"hAe" = (
/turf/simulated/floor/looking_glass{
- dir = 5;
- icon_state = "origin_arrow"
+ dir = 5
},
/area/looking_glass/lg_1)
-"hBE" = (
-/obj/structure/cable{
- icon_state = "1-2"
+"hDd" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Firing Range";
+ req_access = list(1)
},
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/research)
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/weaponsrange)
+"hFq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"hFG" = (
/obj/effect/landmark/looking_glass,
/turf/simulated/floor/looking_glass/center,
/area/looking_glass/lg_1)
+"hMu" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"hOA" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "Cell 2";
+ name = "Cell 2 Door";
+ pixel_x = 28;
+ req_access = list(1,2)
+ },
+/obj/machinery/door_timer/cell_3{
+ id = "Cell 2";
+ name = "Cell 2";
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"hPU" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining_eva)
+"hQg" = (
+/obj/machinery/vending/hydronutrients/brig{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"hQw" = (
+/obj/machinery/atmospherics/unary/outlet_injector,
+/obj/effect/floor_decal/corner/lightorange,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"hQP" = (
/obj/structure/catwalk,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
@@ -29009,6 +32633,16 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
+"hTw" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"hTz" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -29034,6 +32668,48 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"hTQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/brig)
+"hYh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "northciv_airlock_inner";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/lowernortheva)
"icB" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
@@ -29056,6 +32732,31 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"iee" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"igw" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"ilZ" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
"imW" = (
/obj/structure/railing{
dir = 4
@@ -29063,6 +32764,15 @@
/obj/random/trash_pile,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
+"iqO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"iti" = (
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -29072,8 +32782,7 @@
/area/tether/surfacebase/surface_one_hall)
"iue" = (
/turf/simulated/floor/looking_glass{
- dir = 1;
- icon_state = "origin_arrow"
+ dir = 1
},
/area/looking_glass/lg_1)
"iwE" = (
@@ -29085,6 +32794,98 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker/laundry_arrival)
+"ixF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"iEk" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "Cell 1";
+ name = "Cell 1 Door";
+ pixel_x = 28;
+ req_access = list(1,2)
+ },
+/obj/machinery/door_timer/cell_3{
+ id = "Cell 1";
+ name = "Cell 1";
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"iKy" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/lower/mining_eva)
+"iUF" = (
+/obj/structure/table/steel,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
+"iWx" = (
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ dir = 1
+ },
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/lowerhall)
+"jbU" = (
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/public_garden_maintenence)
+"jio" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/lowerhall)
"jkt" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
@@ -29137,6 +32938,25 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
+"jzW" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
+"jCD" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "briginner";
+ name = "Brig";
+ req_access = list(2);
+ req_one_access = newlist()
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"jDg" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -29162,16 +32982,38 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
-"jKO" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"jDI" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/area/tether/surfacebase/security/brig)
+"jIc" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"jKD" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"jPk" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
@@ -29183,6 +33025,26 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
+"jQL" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"jSU" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
@@ -29196,6 +33058,16 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"jTQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"kbZ" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
@@ -29215,6 +33087,43 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"kdi" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/public_garden_maintenence)
+"kfT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"kgk" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -29230,15 +33139,77 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
-"kxe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+"kjX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/area/tether/surfacebase/security/weaponsrange)
+"klO" = (
+/obj/machinery/door/window/northright,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"kmb" = (
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
+"kuB" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"kwN" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/lowerhall)
+"kxx" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"kyE" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -29272,6 +33243,28 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"kAm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"kAG" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -29317,6 +33310,30 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
+"kEs" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"kKl" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -29380,6 +33397,50 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"kUN" = (
+/obj/machinery/camera/network/security{
+ dir = 5
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
+"laR" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/visitor_laundry)
+"lbu" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"ldI" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -29402,6 +33463,14 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"lhM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ id = "Cell 2";
+ name = "Cell 2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
"loc" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
@@ -29412,19 +33481,30 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/research)
+"loj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"lpK" = (
/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 5
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"lry" = (
@@ -29436,6 +33516,16 @@
/obj/random/drinkbottle,
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
+"lwL" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "brigouter";
+ name = "Brig";
+ req_access = list(2);
+ req_one_access = newlist()
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"lwN" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -29471,6 +33561,15 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"lxo" = (
+/obj/machinery/door/window/northright,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/device/radio/intercom/department/security{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
"lxU" = (
/obj/machinery/holoposter,
/turf/simulated/wall,
@@ -29484,6 +33583,34 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
+"lEg" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"lIj" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"lLD" = (
+/obj/machinery/camera/network/security{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/lowerhall)
"lMf" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -29500,9 +33627,7 @@
icon_state = "4-8"
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/obj/structure/disposalpipe/segment{
@@ -29517,10 +33642,24 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"lMK" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virologyisolation)
"lNp" = (
/turf/simulated/floor/looking_glass/optional{
- dir = 4;
- icon_state = "origin_optional_arrow"
+ dir = 4
},
/area/looking_glass/lg_1)
"lNt" = (
@@ -29530,8 +33669,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/floor_decal/industrial/danger{
dir = 4
@@ -29544,12 +33682,93 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"lQu" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/structure/table/steel,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"lQQ" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 6
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"lSW" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/blanks{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/blanks{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/ammo_magazine/clip/c762/practice,
+/obj/item/ammo_magazine/clip/c762/practice,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -28
+ },
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m9mmt/practice,
+/obj/item/ammo_magazine/m9mmt/practice,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/weaponsrange)
+"lTn" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/gasstorage)
+"lTz" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"lUk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"lWT" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -29568,6 +33787,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
+"mhu" = (
+/obj/structure/closet/secure_closet/brig,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
"mon" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -29584,6 +33807,21 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"mrO" = (
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
"mrR" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -29606,6 +33844,46 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"mvM" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"mAR" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"mCe" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -29627,6 +33905,21 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"mGH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"mGP" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
@@ -29642,6 +33935,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"mHm" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/lowerhall)
"mHO" = (
/obj/structure/railing{
dir = 4
@@ -29649,6 +33949,15 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
+"mIw" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
"mOz" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
@@ -29676,6 +33985,12 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/tether/surfacebase/tram)
+"mRY" = (
+/obj/structure/catwalk,
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/vacant_site)
"mSz" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -29687,6 +34002,56 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"mTw" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
+"mYf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/brig)
+"mYO" = (
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"mZO" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -29719,6 +34084,36 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"naC" = (
+/turf/simulated/wall/r_wall,
+/area/medical/virologyisolation)
+"ndH" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining_eva)
+"neZ" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"nis" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
@@ -29751,6 +34146,15 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker/laundry_arrival)
+"njE" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
"nlo" = (
/obj/structure/railing{
dir = 1
@@ -29761,15 +34165,29 @@
/obj/random/trash_pile,
/turf/simulated/floor/plating,
/area/maintenance/lower/vacant_site)
-"nmh" = (
-/obj/structure/railing{
+"nmf" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing,
-/obj/random/cutout,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"nmD" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -29787,6 +34205,24 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker/laundry_arrival)
+"npK" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/weaponsrange)
"nsp" = (
/obj/structure/cable/green{
d1 = 2;
@@ -29801,6 +34237,50 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"ntZ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"nvD" = (
+/obj/machinery/seed_storage/brig{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 9
+ },
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"nwH" = (
+/obj/structure/closet/crate,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
"nBm" = (
/obj/structure/railing{
dir = 4
@@ -29815,12 +34295,22 @@
/obj/random/maintenance/research,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/xenoflora)
+"nBT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"nDD" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/structure/cable{
d1 = 1;
@@ -29832,6 +34322,63 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
+"nID" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -32
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"nKz" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "atrium"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/lower/vacant_site)
+"nOB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"ocx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ id = "Cell 1";
+ name = "Cell 1"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
+"odn" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/lowerhall)
"ofS" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
@@ -29846,11 +34393,18 @@
},
/obj/structure/extinguisher_cabinet{
dir = 1;
- icon_state = "extinguisher_closed";
pixel_y = -32
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"ofW" = (
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ name = "package tagger - Void";
+ sort_tag = "Void"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"ohi" = (
/obj/structure/catwalk,
/turf/simulated/floor/plating,
@@ -29881,6 +34435,14 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"okO" = (
+/obj/machinery/door/airlock{
+ name = "Visitation";
+ req_one_access = list(38,63)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
"oli" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
@@ -29893,10 +34455,44 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"oox" = (
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"orf" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/security{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"orF" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/structure/cable/green{
icon_state = "1-8"
@@ -29908,8 +34504,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -29965,6 +34560,32 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"owv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"ozx" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
"oKY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -30001,26 +34622,101 @@
/area/tether/surfacebase/surface_one_hall)
"oRz" = (
/turf/simulated/floor/looking_glass{
- dir = 4;
- icon_state = "origin_arrow"
+ dir = 4
},
/area/looking_glass/lg_1)
+"oTK" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"oVq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"oVr" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 8
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
-"poN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/obj/structure/cable{
+"paY" = (
+/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"pdo" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lowmedbaymaint)
+"pea" = (
+/obj/machinery/door/window/northright,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"pjs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"plW" = (
+/obj/machinery/computer/cryopod{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"pmr" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"pmV" = (
+/obj/machinery/atmospherics/unary/outlet_injector,
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"ptv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"pyD" = (
/obj/machinery/door/airlock/maintenance/common{
name = "Mining Maintenance Access"
@@ -30029,6 +34725,24 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/tether/surfacebase/north_stairs_one)
+"pCj" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/security/brig)
+"pKE" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"pZb" = (
+/obj/structure/closet/wardrobe/orange,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
"qfJ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -30049,10 +34763,60 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"qjE" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
+"qmc" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"qor" = (
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
+"qoK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"qsl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/lowerhall)
"qwm" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
@@ -30066,19 +34830,67 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"qwV" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/brig)
+"qDR" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/wall,
+/area/maintenance/substation/cargostoresubstation)
+"qJT" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/gglasses{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/glasses/gglasses{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/ears/earmuffs,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -28
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/weaponsrange)
"qKn" = (
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
dir = 8
},
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/multi_tile/glass{
- dir = 4;
name = "Dorms & Cafe"
},
/turf/simulated/floor/tiled/monofloor{
dir = 8
},
/area/tether/surfacebase/surface_one_hall)
+"qOa" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -32
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
"qOA" = (
/obj/structure/table/standard{
name = "plastic table frame"
@@ -30091,6 +34903,37 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
+"qPR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/green{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 26
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
"qRI" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -30131,6 +34974,46 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker/laundry_arrival)
+"qWW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"qYs" = (
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Riot Control";
+ req_one_access = list(63,24)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
"raS" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -30148,19 +35031,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
-"rtx" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+"rww" = (
+/obj/structure/stairs/south,
+/obj/structure/railing{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/area/tether/surfacebase/security/lowerhall)
"rxq" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -30185,15 +35062,89 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
-"rMk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"rxG" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"rzZ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/area/tether/surfacebase/security/brig)
+"rBG" = (
+/obj/structure/closet,
+/obj/item/weapon/material/minihoe,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
+"rDJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/weaponsrange)
+"rHb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"rOh" = (
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
+"rQe" = (
+/obj/structure/table/steel,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"rRC" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -30221,6 +35172,15 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"rSG" = (
+/obj/machinery/light/small,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
"rVb" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -30229,9 +35189,7 @@
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
@@ -30256,6 +35214,12 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"rVW" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
"rYl" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -30325,8 +35289,17 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_one)
+"scf" = (
+/obj/effect/floor_decal/corner/lightorange,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"svZ" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -30350,6 +35323,12 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"sxc" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
"sya" = (
/obj/structure/cable/green{
d1 = 1;
@@ -30416,8 +35395,7 @@
/area/tether/surfacebase/surface_one_hall)
"sIO" = (
/turf/simulated/floor/looking_glass{
- dir = 6;
- icon_state = "origin_arrow"
+ dir = 6
},
/area/looking_glass/lg_1)
"sLi" = (
@@ -30433,31 +35411,68 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
-"sNu" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
"sQB" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"sVX" = (
+/obj/structure/table/steel,
+/obj/item/weapon/material/twohanded/fireaxe/foam,
+/obj/item/toy/nanotrasenballoon,
+/obj/item/weapon/deck/cards,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
+"tak" = (
+/obj/structure/table/steel,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"tdh" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"tiJ" = (
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 1"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
+"trV" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/security/brig/storage)
"tvk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -30480,19 +35495,50 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"txZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"tCV" = (
/obj/structure/catwalk,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
+"tEo" = (
+/obj/random/trash_pile,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining_eva)
"tLx" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -30512,6 +35558,12 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/tram)
+"tMD" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
"tMP" = (
/obj/structure/railing,
/obj/structure/railing{
@@ -30546,10 +35598,38 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"tQH" = (
+/obj/machinery/camera/network/security{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"tRA" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
"tRJ" = (
/obj/effect/floor_decal/spline/plain{
- dir = 10;
- icon_state = "spline_plain"
+ dir = 10
},
/obj/machinery/button/remote/airlock{
dir = 8;
@@ -30566,6 +35646,25 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/looking_glass/lg_1)
+"tRX" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"tTC" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"tVd" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 4
@@ -30585,6 +35684,60 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"ubK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
+"ucv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Solitary Confinement";
+ req_access = list(2)
+ },
+/obj/machinery/computer/cryopod{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/lowerhall)
+"uge" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"uiK" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/weaponsrange)
"uqH" = (
/obj/structure/railing{
dir = 4
@@ -30616,6 +35769,25 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/locker)
+"uzs" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/green{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"uAv" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
"uAA" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/mauve/bordercorner,
@@ -30627,6 +35799,38 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"uDQ" = (
+/obj/machinery/button/remote/airlock{
+ id = "brigouter";
+ name = "Outer Brig Doors";
+ pixel_x = 24;
+ pixel_y = -4;
+ req_access = list(2)
+ },
+/obj/machinery/button/remote/airlock{
+ id = "briginner";
+ name = "Inner Brig Doors";
+ pixel_x = 34;
+ pixel_y = -4;
+ req_access = list(2)
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"uEK" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -30655,6 +35859,58 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"uFh" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/public_garden_maintenence)
+"uFs" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"uFS" = (
+/obj/machinery/door/airlock/security{
+ name = "Brig Recreation Storage";
+ req_one_access = list(63)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
+"uHS" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lowerhall)
"uKS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -30678,6 +35934,15 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"uOA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
"uUP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -30713,6 +35978,27 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"vhI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"vih" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"vlJ" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -30741,6 +36027,10 @@
},
/turf/simulated/floor/tiled,
/area/rnd/hallway)
+"vCb" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining_eva)
"vDb" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -30787,6 +36077,141 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"vHW" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining_eva)
+"vRL" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"vSS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"vTn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/gasstorage)
+"vVr" = (
+/obj/machinery/computer/arcade/orion_trail,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"waR" = (
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/weaponsrange)
+"wjq" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"wpZ" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "brigouter";
+ name = "Brig";
+ req_access = list(2);
+ req_one_access = newlist()
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"wtD" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"wwm" = (
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ dir = 1
+ },
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/lowerhall)
+"wwo" = (
+/obj/machinery/door/airlock{
+ id_tag = "visitdoor";
+ name = "Visitation Area";
+ req_access = list(1)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
"wxa" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -30816,6 +36241,24 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"wxV" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"wzA" = (
/obj/structure/catwalk,
/obj/machinery/alarm{
@@ -30824,14 +36267,26 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
+"wQS" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"wRe" = (
+/obj/structure/stairs/south,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
"wUW" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -30854,22 +36309,61 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
-"xbP" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/brown/border,
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- icon_state = "extinguisher_closed";
- pixel_y = -32
+"wVB" = (
+/obj/machinery/door/window/brigdoor/southleft{
+ dir = 8;
+ id = "Cell 1";
+ name = "Cell 1";
+ req_access = list(2)
},
-/obj/structure/cable{
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig)
+"wVI" = (
+/obj/structure/cable/green{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/cargo/mining)
+/area/tether/surfacebase/security/brig)
+"wXW" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/tether/surfacebase/tram;
+ base_turf = /turf/simulated/floor/tiled/techfloor/grid;
+ docking_controller = null;
+ landmark_tag = "escape_station";
+ name = "Tether Surface Base"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/tram)
+"xdV" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
"xgQ" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -30907,6 +36401,32 @@
/obj/machinery/holoposter,
/turf/simulated/wall,
/area/crew_quarters/visitor_laundry)
+"xpP" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"xtS" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/tether/surfacebase/security/brig/bathroom)
"xzn" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 9
@@ -30917,8 +36437,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -30931,6 +36450,11 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_one_hall)
+"xFG" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/brig/storage)
"xOH" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -30941,21 +36465,62 @@
icon_state = "1-2"
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/looking_glass/lg_1)
-"xYn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+"xVX" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lowerhall)
+"xYx" = (
+/obj/structure/table/steel,
+/obj/machinery/microwave,
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/security{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
+"yaU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 5
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/lowernorthhall)
+"ybc" = (
+/obj/structure/table/steel,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining_eva)
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig)
"ygY" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -32841,7 +38406,7 @@ aad
aad
aad
aad
-aad
+bcV
aad
aad
aad
@@ -33272,7 +38837,7 @@ aad
aad
aad
aad
-bcV
+aad
aad
aad
aad
@@ -34003,8 +39568,8 @@ adK
aeo
aeo
aeo
-afq
-afq
+aeo
+aeo
adK
aah
aah
@@ -34146,7 +39711,7 @@ aep
adK
aeV
aeo
-afR
+afq
adK
aah
aah
@@ -34180,7 +39745,7 @@ aAs
aBu
aCc
aCc
-aDx
+aCc
aCc
aER
aib
@@ -34318,7 +39883,7 @@ aah
aah
aah
auK
-aAt
+aaT
auK
auK
auK
@@ -35028,7 +40593,7 @@ aah
aah
aah
auK
-aAv
+aAl
auK
aah
aah
@@ -35170,7 +40735,7 @@ agv
agv
agv
azs
-aAw
+aAu
auK
aah
aah
@@ -35182,7 +40747,7 @@ aah
aah
aah
aah
-aiW
+aah
aah
aah
aah
@@ -35430,7 +40995,7 @@ ajS
aah
agU
ahi
-ahC
+alE
aiz
ajo
aov
@@ -35596,7 +41161,7 @@ ahP
aiH
aiL
azs
-aAw
+aAu
auK
aah
aah
@@ -35713,9 +41278,9 @@ aah
aah
aah
agU
-ahk
+akm
ahE
-anL
+apm
agU
aow
apd
@@ -35831,7 +41396,7 @@ aad
aad
aad
aad
-aad
+aah
aah
aah
ajO
@@ -35972,7 +41537,7 @@ aad
aad
aad
aad
-aad
+aah
aah
aah
aah
@@ -36114,8 +41679,8 @@ aad
aad
aad
aad
-aad
-aad
+aah
+aah
aah
ajL
ajL
@@ -36255,8 +41820,8 @@ aad
aad
aad
aad
-aad
-aad
+aah
+aah
aah
aah
ajL
@@ -36303,7 +41868,7 @@ aDr
avG
ahT
auK
-axC
+aAj
abN
abN
abN
@@ -36398,11 +41963,11 @@ aad
aad
aad
aad
-aad
+aah
aah
aah
ajL
-akY
+akZ
ajM
ajT
ajY
@@ -36539,13 +42104,13 @@ aad
aad
aad
aad
-aad
-aad
+aah
+aah
aah
aah
ajL
akZ
-ajP
+abs
ajS
ajS
ajS
@@ -36681,9 +42246,9 @@ aad
aad
aad
aad
-aad
-aad
-aad
+aah
+aah
+aah
aah
ajL
aLm
@@ -36820,19 +42385,19 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
aah
ajL
akZ
-ajR
+abt
ajU
-ajZ
-ajZ
+aki
+aki
aki
akl
aah
@@ -36961,22 +42526,22 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
aah
ajL
bcY
-bdf
+bdn
bdj
bdn
bdn
bds
-akm
+ajQ
aah
aah
ajS
@@ -37102,25 +42667,25 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aah
-ajL
-ajL
-ajL
-ajL
-akA
-ajL
-akZ
-akm
-akn
-akn
+aah
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+uiK
+uiK
+uiK
+bcY
+abu
+kdi
+uFh
ajL
ajS
alc
@@ -37145,7 +42710,7 @@ apj
apj
arK
apl
-asn
+apo
apl
ata
atH
@@ -37153,9 +42718,9 @@ aul
auH
auK
avK
-awr
+axI
awU
-axE
+aAk
abN
aeR
aeR
@@ -37169,9 +42734,9 @@ abN
ovG
jkt
awn
-aHO
+aBM
aIC
-aJu
+aCC
aJZ
aKL
aLs
@@ -37244,23 +42809,23 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aah
aah
-aah
-aah
-aah
-aah
-ajL
-akZ
-ajR
+akB
+akB
+akB
+eku
+fPf
+lIj
+eGp
+lIj
+rxG
+lxo
+npK
+qJT
+uiK
+ajM
+aby
aki
akz
akG
@@ -37287,7 +42852,7 @@ apl
apl
apl
apl
-apW
+apl
apl
apl
atH
@@ -37386,25 +42951,25 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aah
aah
-aah
-aah
-aah
-aah
-aah
-ajL
+akB
+akB
+akB
+waR
+dCs
+waR
+vhI
+waR
+nwH
+eFp
+bOd
+lSW
+uiK
+ajM
bcY
bdn
bdn
-bdn
bdB
akS
ald
@@ -37423,10 +42988,10 @@ anP
aju
aoE
apl
-apW
apl
apl
-apW
+apl
+apl
apo
apl
aqy
@@ -37455,7 +43020,7 @@ aGX
adn
adn
adn
-aJw
+aCK
aKa
aKL
aKL
@@ -37528,26 +43093,26 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aah
aah
-aah
-aah
-aah
-aah
-aah
-ajL
+akB
+akB
+akB
+eku
+uOA
+pmr
+gnt
+mIw
+kuB
+pea
+eEn
+gjD
+uiK
ajL
akl
aks
ajL
-akI
+acj
akR
ale
alp
@@ -37564,16 +43129,16 @@ any
anP
ajv
aoF
-apm
apX
-aqz
+apX
+aqA
aqZ
apl
apl
apl
apl
apl
-apW
+apl
atH
atH
atH
@@ -37597,7 +43162,7 @@ aGX
adn
alY
adn
-aJx
+aCW
aKa
aah
aah
@@ -37670,25 +43235,25 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
aah
aah
+akB
+akB
+akB
+waR
+vhI
+waR
+dCs
+waR
+tRX
+eFp
+kjX
+dfJ
+uiK
aah
akn
-akt
-aks
+abE
+jbU
akJ
akT
alg
@@ -37708,19 +43273,19 @@ adj
aoG
apn
apn
-aqA
-apW
+are
+apl
+apl
apl
apl
apl
apl
-apW
atb
apj
apj
auK
avf
-avO
+awr
aws
abN
abN
@@ -37812,26 +43377,26 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aah
aah
+akB
+akB
+akB
+eku
+rHb
+lIj
+dFD
+lIj
+dyd
+klO
+geO
+rDJ
+uiK
aah
-aah
-aah
-aah
-aah
-aah
-ako
-aku
-akt
-akK
+abC
+abF
+abG
+abF
akR
alh
als
@@ -37850,13 +43415,13 @@ adk
aoE
apo
apo
-apW
+apl
apl
aqy
apl
-apW
apl
-apW
+apl
+apl
apj
apj
apj
@@ -37954,30 +43519,30 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aah
aah
-aah
-aah
-aah
-aah
-aah
-aah
-akn
-akn
-akA
-akn
-akR
-akR
-akR
-akR
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+akB
+hDd
+uiK
+gCa
+gCa
+gCa
+gCa
+lTn
+lTn
+lTn
+qYs
+lTn
akR
akR
akR
@@ -38096,15 +43661,6 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
aah
aah
aah
@@ -38112,14 +43668,23 @@ aah
aah
aah
aah
-akn
-akn
-akB
-aku
-aah
-aah
-aah
-aah
+bqI
+pZb
+rBG
+mhu
+xFG
+bqI
+txZ
+uge
+gCa
+epD
+epD
+gCa
+fCk
+fCk
+exW
+bJz
+lTn
aah
aah
aah
@@ -38137,7 +43702,7 @@ apj
apj
apl
apl
-apW
+apl
apl
apl
apj
@@ -38145,7 +43710,7 @@ apj
apj
apj
auK
-avi
+avh
abm
abn
abn
@@ -38239,29 +43804,29 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
aah
aah
aah
aah
aah
aah
+bqI
+sxc
+ilZ
+njE
+qOa
+bqI
+kfT
+fmY
+gCa
+epD
+epD
+gCa
+vTn
+fpU
+rVW
+bJz
+lTn
aah
aah
aah
@@ -38279,7 +43844,7 @@ apj
apj
apj
apl
-apW
+apl
apl
aso
apj
@@ -38382,28 +43947,28 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
aah
aah
aah
aah
aah
+bqI
+sVX
+mTw
+rOh
+gud
+bqI
+nOB
+csd
+gCa
+epD
+mHm
+gCa
+ezn
+qPR
+hco
+ubK
+lTn
aah
aah
aah
@@ -38526,28 +44091,28 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
aah
aah
aah
+bqI
+bqI
+uFS
+trV
+bqI
+bqI
+paY
+tQH
+gCa
+odn
+hdh
+odn
+lTn
+fDx
+lTn
+lTn
+lTn
+odn
+odn
aah
aah
aah
@@ -38669,27 +44234,27 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
aah
aah
+gCa
+owv
+kxx
+kAm
+jKD
+jKD
+dJZ
+ntZ
+lTz
+gAn
+mAR
+orf
+ixF
+vSS
+tTC
+iqO
+xVX
+rww
+odn
aah
aah
aah
@@ -38812,26 +44377,26 @@ aad
aad
aad
aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
aah
+gCa
+jTQ
+nBT
+hFq
+hOA
+vRL
+hFq
+iEk
+vRL
+hFq
+neZ
+diq
+uDQ
+mvM
+fLB
+dMu
+jIc
+wRe
+odn
aah
aah
aah
@@ -38955,21 +44520,21 @@ aad
aad
aad
aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+gCa
+gCa
+ucv
+pCj
+eJQ
+eby
+pCj
+eJQ
+wVB
+pCj
+pCj
+okO
+qwV
+wpZ
+lwL
abT
abT
abT
@@ -39015,8 +44580,8 @@ aFf
aGp
aGZ
aHt
-aHW
-aHZ
+aBN
+aIa
aBO
aah
aah
@@ -39097,21 +44662,21 @@ aad
aad
aad
aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+gCa
+iWx
+qsl
+pCj
+mrO
+kmb
+pCj
+tiJ
+kmb
+pCj
+kUN
+cGU
+qwV
+nmf
+hMu
abT
bbd
auM
@@ -39157,8 +44722,8 @@ aFL
aGq
aHa
awn
-aHX
-aIE
+aBP
+aCv
aBO
aBO
aBO
@@ -39239,21 +44804,21 @@ aad
aad
aad
aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+gCa
+kwN
+lLD
+pCj
+qjE
+bzb
+pCj
+qjE
+bzb
+pCj
+bcQ
+hTQ
+qwV
+wVI
+oox
abT
amQ
bbe
@@ -39299,17 +44864,17 @@ awn
awn
awn
awn
-aHX
-aIF
-aJD
-aKg
-aKS
+aBP
+aCw
+aLv
+aCY
+aCZ
aLv
aMf
aLv
-aJD
-aJD
-aJD
+aLv
+aLv
+aLv
aej
aPm
aPN
@@ -39381,21 +44946,21 @@ aad
aad
aad
aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+gCa
+wwm
+jio
+pCj
+dju
+kmb
+pCj
+dju
+kmb
+pCj
+jzW
+hzx
+qwV
+wtD
+wQS
abT
anp
aeW
@@ -39422,16 +44987,16 @@ uqH
mHO
csb
nBm
-nmh
-poN
-fGP
+asn
+atl
+axC
kCz
csb
imW
tMP
alJ
apu
-aBH
+aAm
aCt
aDi
aDO
@@ -39441,17 +45006,17 @@ aDi
aah
aah
aBO
-aHX
+aBP
aIG
-aJE
-aHZ
-aHZ
-aHZ
-aHZ
-aHZ
-aHZ
+aCX
+aIa
+aIa
+aIa
+aIa
+aIa
+aIa
+aIa
aIa
-aHZ
aOR
aPn
aPO
@@ -39523,22 +45088,22 @@ aad
aad
aad
aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-abT
+gCa
+gCa
+gCa
+pCj
+pCj
+lhM
+pCj
+pCj
+ocx
+pCj
+pCj
+wwo
+qwV
+gnW
+jCD
+iKy
anp
aeW
amk
@@ -39552,12 +45117,12 @@ ahS
bbP
bbS
bbG
-bck
-bcw
-bck
-bcy
-bco
-bco
+apW
+aqz
+apW
+arh
+axS
+axS
bcl
apu
agy
@@ -39566,15 +45131,15 @@ alb
alb
alb
alC
-alD
-alE
+axE
+ayD
alF
alG
alH
alK
acW
-aBI
-aCu
+aAn
+aAv
aDi
aDP
aEs
@@ -39583,16 +45148,16 @@ aDi
aah
aah
aBO
-aHY
+aCh
aIG
aBO
aKh
-aHZ
-aLw
+aIa
+aDx
aBO
aMM
aNy
-aNT
+aDM
aIa
aOR
aPo
@@ -39663,24 +45228,24 @@ aad
aad
aad
aad
+adK
aad
aad
aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-abT
+pCj
+wjq
+wjq
+tdh
+lQu
+dPC
+tdh
+qmc
+ofW
+qoK
+uzs
+kEs
+hMu
+iKy
anp
aeW
aml
@@ -39695,16 +45260,16 @@ adh
adO
ahl
bcn
-bco
-bcx
-bct
-bck
-bck
-bck
+axS
+bcl
+azb
+apW
+apW
+apW
bbX
aiC
alt
-alu
+alv
alv
apu
bcq
@@ -39716,7 +45281,7 @@ avT
avT
avT
aBJ
-aCv
+aAw
aDi
aDQ
aEt
@@ -39725,7 +45290,7 @@ aDi
aah
aah
aBO
-aHZ
+aIa
aIG
aJF
aJF
@@ -39809,20 +45374,20 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-abT
+mYf
+rQe
+ybc
+rzZ
+hTw
+hTw
+hTw
+hTw
+hTw
+uFs
+ddU
+wxV
+nID
+iKy
anp
aeW
aft
@@ -39858,7 +45423,7 @@ axS
axS
aAM
aBJ
-aCw
+aAE
aDi
aDi
aDi
@@ -39868,7 +45433,7 @@ aah
aah
aBO
aIa
-aIH
+aIG
aJF
aKi
aKi
@@ -39951,20 +45516,20 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-abT
+pCj
+oTK
+oTK
+pKE
+hQw
+eeo
+oVq
+oVq
+pjs
+loj
+vih
+dlB
+xYx
+iKy
anp
aeW
amm
@@ -39991,7 +45556,7 @@ ate
apu
apu
apu
-bcr
+adr
avT
agb
agb
@@ -40000,7 +45565,7 @@ agb
agb
agb
aBJ
-aCw
+aAE
aBO
aah
aah
@@ -40009,7 +45574,7 @@ aah
aah
aah
aBO
-aHZ
+aIa
aIG
aJF
aKj
@@ -40033,11 +45598,11 @@ aTM
aTM
aUD
aTM
-aVl
-aVG
-aVW
+aEu
+aEA
aWq
-aWP
+aWq
+aQW
aOR
aah
aah
@@ -40093,20 +45658,20 @@ aad
aad
aad
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-abT
+pCj
+tdh
+tdh
+ccA
+jDI
+ptv
+vVr
+frz
+fqa
+fqa
+eDh
+fqa
+fqa
+fqa
anp
aeW
afv
@@ -40133,8 +45698,8 @@ ate
apu
bcd
apu
-bcr
-avT
+bcs
+azG
agb
agc
agc
@@ -40142,7 +45707,7 @@ agc
agh
agb
aBJ
-aCw
+aAE
aBO
aah
aah
@@ -40151,7 +45716,7 @@ aah
aah
aah
aBO
-bcW
+aCi
aHc
aJF
aKk
@@ -40175,9 +45740,9 @@ aSC
bcP
aSC
aUS
-aVm
-aVH
-aVX
+aEv
+aSC
+aEB
aWr
aQW
aOR
@@ -40235,20 +45800,20 @@ aad
aad
aad
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-abT
+pCj
+tdh
+tdh
+pKE
+jDI
+ptv
+pCj
+pCj
+fqa
+fOy
+xdV
+tMD
+ekC
+fqa
anp
aeW
afw
@@ -40271,20 +45836,20 @@ aoH
bcd
apu
aqb
-arL
+ate
apu
bcd
apu
bcB
-avT
-agb
+azK
+bbQ
agc
agc
agc
agc
agb
aBJ
-aCw
+aAE
aBO
aah
aah
@@ -40294,7 +45859,7 @@ aah
aah
aBO
aIb
-aII
+aHc
aJF
aJF
aJF
@@ -40377,20 +45942,20 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-abT
+pCj
+wjq
+wjq
+pKE
+pmV
+loj
+plW
+tdh
+fqa
+fOy
+eAd
+ozx
+iUF
+fqa
anp
aeW
afr
@@ -40413,12 +45978,12 @@ aoH
bcd
apu
aqb
-arL
+ate
apu
bcd
apu
bcs
-avT
+azU
agb
agc
agc
@@ -40426,7 +45991,7 @@ agc
agc
agb
aBJ
-aCw
+aAE
aBO
aah
aah
@@ -40461,7 +46026,7 @@ aah
aah
aah
aVn
-aUE
+aTZ
aWs
aVn
aah
@@ -40519,20 +46084,20 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-abT
+mYf
+rQe
+tak
+lEg
+scf
+mYO
+mYO
+mYO
+fqa
+fOy
+rSG
+fqa
+fqa
+fqa
anp
aeW
aeW
@@ -40555,11 +46120,11 @@ aoH
bcd
apu
aqb
-arL
+ate
apu
bcd
apu
-bcr
+aiW
avT
agb
agc
@@ -40568,7 +46133,7 @@ agc
agc
agb
aBJ
-aCw
+aAE
aBO
aah
aah
@@ -40576,8 +46141,8 @@ aah
aah
aBO
aHb
-aHu
-aHu
+aBt
+aBt
aIK
aIh
aKm
@@ -40661,20 +46226,20 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-abT
+pCj
+oTK
+oTK
+tdh
+hQg
+nvD
+eBd
+eBd
+fqa
+fOy
+xtS
+fvH
+uAv
+fqa
anp
adK
aah
@@ -40697,12 +46262,12 @@ apu
apu
apu
aqb
-arL
+ate
apu
bcd
apu
-bcr
-avU
+adr
+avT
agb
agb
agc
@@ -40710,7 +46275,7 @@ agc
agi
agb
avU
-aCw
+aAE
aBO
aah
aah
@@ -40745,16 +46310,16 @@ aah
aah
aah
aVn
-aUE
-aWu
+aTZ
+aEC
aVn
aXe
aXy
aXR
aYk
aTZ
-aUE
-aUE
+aTZ
+aTZ
aVn
aah
aah
@@ -40803,20 +46368,20 @@ aad
aad
aad
aad
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
-abT
+iKy
+iKy
+iKy
+iKy
+iKy
+iKy
+iKy
+iKy
+fqa
+fqa
+fqa
+fqa
+fqa
+fqa
anc
abT
abT
@@ -40835,7 +46400,7 @@ aqb
aqb
aqb
arw
-arL
+ate
arX
apu
aqb
@@ -40843,8 +46408,8 @@ atf
apu
bcd
apu
-bcr
-agM
+adr
+apu
agM
axg
axT
@@ -40852,7 +46417,7 @@ axT
azL
aAN
agM
-aCx
+aAF
aBO
aah
aah
@@ -40861,7 +46426,7 @@ aah
aBO
aHc
aHv
-aId
+aCj
aIL
aIh
aKo
@@ -40887,15 +46452,15 @@ aIh
aah
aah
aVn
-aUE
+aTZ
aWv
aVn
-aXf
+aFk
aTZ
aXS
-aUE
-aUE
-aYl
+aTZ
+aTZ
+aYk
aTZ
aVn
aah
@@ -40967,7 +46532,7 @@ bbT
bbc
aup
sLi
-ahp
+ako
ahX
anQ
aeG
@@ -40985,8 +46550,8 @@ atg
apu
bcd
apu
-bcr
-bbQ
+awB
+bcd
agM
axh
axU
@@ -40994,17 +46559,17 @@ ayG
azM
aAO
agM
-aCv
+aAw
aBO
aah
aah
aah
aah
aBO
-aHd
+aBl
aeb
-aIe
-aIM
+aCk
+aCx
aJG
aKp
aKW
@@ -41029,16 +46594,16 @@ aIh
aah
aah
aVn
-aUE
-aWw
+aTZ
+aED
aVn
aXe
-aUE
-aXT
-aYl
-aUE
aTZ
-aUE
+aHj
+aYk
+aTZ
+aTZ
+aTZ
aVn
aah
aah
@@ -41100,16 +46665,16 @@ abT
abT
abT
abT
-abT
-abT
-abT
-abT
-abT
+adt
+adt
+adt
+adt
+adt
abT
abT
abT
tCV
-ahq
+akt
ahX
aiS
aeH
@@ -41117,7 +46682,7 @@ aoM
apw
ahX
aqF
-are
+ari
aqb
aqb
arZ
@@ -41127,7 +46692,7 @@ apu
apu
apu
apu
-bcq
+avi
apu
agM
agM
@@ -41136,14 +46701,14 @@ ayH
azN
agM
agM
-aCv
+aAw
aBO
aah
aah
aah
aah
aBO
-aHe
+aHf
aHv
aIf
aIN
@@ -41175,12 +46740,12 @@ aTZ
aWx
aVn
aXg
-aUE
-aXU
-aYm
-aYl
aTZ
-aUE
+aHu
+aYm
+aYk
+aTZ
+aTZ
aVn
aah
aah
@@ -41238,20 +46803,20 @@ aah
aah
aah
abT
-cGJ
+vCb
acS
acS
-adp
-abT
-aah
-aah
-aah
-aah
-aah
-aah
+acS
+adt
+agd
+bbs
+bbC
+qDR
+eQz
+eQz
abT
wzA
-ahr
+aku
ahX
anR
aeH
@@ -41269,25 +46834,25 @@ ath
axS
apu
bcz
-bct
+azb
bcv
-bco
+axS
agM
axW
ayI
azO
agM
-aBK
-aCy
+aAo
+aAE
aBO
aah
aah
aah
aah
aBO
-aHe
+aHf
aHv
-aIg
+aCl
aIO
aIh
aKq
@@ -41314,7 +46879,7 @@ aUT
aVn
aVn
aTZ
-bcX
+aEE
aVn
aVn
aXz
@@ -41361,39 +46926,39 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
ajK
aad
aad
aad
aad
-aan
-aan
-aan
-aan
-aan
-aan
+adK
+adK
+aad
+aad
+aad
+aaq
+aaq
+aaq
+aaq
+aah
+aah
aah
aah
abT
-acj
+abH
acX
acX
adL
-abT
-aah
-aah
-aah
-aah
-aah
-aah
+adt
+bbg
+bbu
+bbD
+adt
+eQz
+eQz
abT
tCV
-ahq
+akt
ahX
anS
aeK
@@ -41411,7 +46976,7 @@ apu
axS
apu
bcA
-bco
+axS
apu
apu
agM
@@ -41419,8 +46984,8 @@ axX
ayG
azP
agM
-aBL
-aCz
+aAp
+aAK
aBO
aah
aah
@@ -41455,14 +47020,14 @@ aIh
aTZ
aTZ
aVI
-aUE
-aUE
+aTZ
+aTZ
aTZ
aXh
aTZ
-aXV
+aHx
+aTZ
aTZ
-aUE
aTZ
aZv
aVn
@@ -41508,31 +47073,31 @@ aae
aae
aae
aae
-aae
-aae
+akK
+akK
aae
aaf
aai
-aan
aaq
-aav
-aay
+aaz
+aaM
aaq
-aan
-aar
-aar
+aef
+aef
+aef
+aef
abT
acQ
adl
ado
-xYn
-abT
-abT
-abT
-abT
-abT
-abT
-aah
+aco
+adt
+bbh
+bbv
+bbE
+adt
+eQz
+eQz
abT
tCV
ahs
@@ -41553,7 +47118,7 @@ apu
axS
apu
bcC
-bco
+axS
apu
bcd
agM
@@ -41561,8 +47126,8 @@ axY
ayG
azQ
agM
-aBM
-aCw
+aAq
+aAE
aBO
aah
aah
@@ -41594,16 +47159,16 @@ aTn
aTP
aTP
aIh
-aUE
-aUU
+aTZ
+aWy
aTZ
aTZ
aWy
aTZ
aXi
-aUE
-aXW
-aYn
+aTZ
+aYm
+aHy
aYF
aTZ
aZv
@@ -41655,24 +47220,24 @@ aae
aae
aaf
aak
-aan
-aas
-aas
-aas
-aas
-aan
-aaF
-aaK
-aar
-aar
-aar
-abT
+aaq
+aaA
+aaA
+aaq
+erc
+dxY
+ads
+aeg
+aef
+aef
+aef
+aef
ajc
-abT
-agd
-acC
adt
-ady
+bbi
+adt
+bbF
+adt
abT
abT
abT
@@ -41695,7 +47260,7 @@ ati
apu
apu
apu
-bcu
+avO
agM
agM
agM
@@ -41703,16 +47268,16 @@ axZ
ayJ
azR
agM
-aBN
-aCw
+aAr
+aAE
aBO
aah
aah
aah
aah
aBO
-aHe
-aHx
+aHf
+aBH
aIh
aIQ
aJI
@@ -41736,7 +47301,7 @@ aRM
aPG
aTY
aIh
-aUU
+aWy
aTZ
aVn
aVn
@@ -41797,27 +47362,27 @@ aae
aae
aaf
aal
-aao
-aat
-aaw
-aaw
-aaz
+aas
aaB
-aaG
-aaM
-aaP
-aaY
-abY
-ecq
+aaN
+hYh
+abZ
+acy
+adv
+aeh
+aeN
+afI
+aBx
+aCq
nDD
jPk
lpK
lDW
+hPU
+afC
+lDW
+afR
lDW
-cpD
-fBN
-fBN
-cBf
hQP
anv
aia
@@ -41835,9 +47400,9 @@ apu
asL
atj
atL
-bcm
-bcm
-bcm
+atL
+atL
+atL
agM
ahc
ahu
@@ -41853,8 +47418,8 @@ aBO
aBO
aBO
aBO
-aHg
-aHy
+aBm
+aBI
aIh
aIR
aJJ
@@ -41878,7 +47443,7 @@ aTo
aTQ
aTQ
aIh
-aUE
+aTZ
aTZ
aVn
aVZ
@@ -41888,11 +47453,11 @@ aXj
aXA
aXX
aYo
-aYH
+aHY
aXk
aZw
aWc
-aZV
+aUF
bas
aad
aad
@@ -41939,28 +47504,28 @@ aae
aae
aaf
aaf
-aap
-aau
-aax
-aax
-aaA
+aat
aaC
-aaH
-aaN
-aaS
-aaZ
-aar
-abT
+aaP
+hpB
+aca
+acB
+adx
+aes
+aeQ
+afJ
+aBy
+aef
abT
abT
aeA
alX
amq
amM
-abT
-abT
-abT
-atc
+cGJ
+vHW
+vHW
+anp
abT
ahX
aiY
@@ -41978,8 +47543,8 @@ asL
apu
agM
agM
-bcm
-bcm
+atL
+atL
agM
agM
agM
@@ -41987,16 +47552,16 @@ ayb
ayG
rYl
aAQ
-aBP
+aAt
aCB
aDj
-aDR
-aDR
-aFk
+aAT
+aAT
+aBf
aFM
-hBE
-eIL
-gOA
+aBj
+aBr
+aBK
aIh
aIS
aJK
@@ -42020,21 +47585,21 @@ aTq
aIh
aIh
aIh
-aUE
-aUE
+aTZ
+aTZ
aVn
aWa
aWA
-aWR
-aWR
-aXB
+aWA
+aWA
+aGu
aXY
aXY
aYI
-aZe
+aIY
aXY
-aZF
-aZW
+aLf
+aUU
aYd
aad
aad
@@ -42081,28 +47646,28 @@ aaf
aaf
aaf
aam
-aan
-aan
-aan
-aan
-aan
-aan
-aar
-aar
-abi
-aba
-abe
-abT
+aaq
+aAB
+aAJ
+aaq
+aef
+aef
+aef
+aef
+aeS
+afM
+aBz
+aef
acg
abT
aeB
afd
-afC
-agd
-abT
-bbB
+adp
+tEo
+ndH
+agH
bbe
-bce
+ahB
bcS
ahX
aiZ
@@ -42121,8 +47686,8 @@ apu
ahc
agM
bcp
-bcm
-bcm
+atL
+atL
atL
atj
ayc
@@ -42130,14 +47695,14 @@ ayG
dCc
aAR
aBQ
-aCC
-aDk
-aDk
-aEu
+aAL
+aBQ
+aBQ
+aAU
aFl
aFN
ohi
-hcz
+ohi
loc
aec
aIT
@@ -42163,19 +47728,19 @@ aTR
aTR
aIh
aUV
-aUE
+aTZ
aVn
abz
aWB
aWS
aWB
aXC
-aXZ
+aWS
aWS
aWA
aXk
-aZx
-aZG
+aJE
+aLw
aZX
bas
aad
@@ -42223,29 +47788,29 @@ aaf
aaf
aaf
aaf
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aar
-aaX
-eGO
-jKO
-acc
-acc
-acc
-acc
-acc
-acc
-acc
-acc
-bbE
-abT
-abT
-agM
+aAD
+aAD
+aAD
+aAD
+aAI
+aAI
+aAI
+aef
+aeZ
+afN
+aBA
+aCr
+aCr
+aCr
+aCr
+aCr
+aGa
+aGa
+aGa
+aHV
+aGa
+aGa
+aGa
agM
aja
afh
@@ -42275,12 +47840,12 @@ aBO
aBO
aBO
aBO
-aEv
-aFm
+aEz
+aFl
aBO
aBO
aBO
-aHB
+aHC
aIh
aIU
aJM
@@ -42311,11 +47876,11 @@ aWb
aWC
aWC
aWC
-aXD
+aGR
aYa
aYp
aWA
-aYK
+aXk
aWA
aWA
aYd
@@ -42365,29 +47930,29 @@ aaf
aaf
aaf
aaf
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aar
-aaX
-rMk
-aGV
-acc
-abZ
-abZ
-abZ
-acm
-agg
-afQ
-acc
-age
-air
-bcg
-agM
+aAD
+aAI
+aAI
+aAI
+aAI
+aAI
+aAI
+aef
+aeS
+afO
+aBB
+aCr
+aDa
+aDU
+aEj
+aCr
+aGb
+aGK
+aHr
+aIq
+aJU
+aLt
+aGa
anD
anU
afp
@@ -42418,11 +47983,11 @@ aah
aah
aBO
aEw
-aFm
+aFl
aBO
aah
aBO
-aHB
+aHC
aIh
aIV
aJN
@@ -42446,18 +48011,18 @@ aTo
aTS
aTS
aIh
-aUE
-aVo
+aTZ
+aEx
aVn
aWc
aWc
aWc
aWA
-aXE
+aHd
aYb
aYb
-aYJ
-aYJ
+aHZ
+aHZ
aYb
aYb
aZY
@@ -42507,29 +48072,29 @@ aaf
aaf
aaf
aaf
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aar
-aaX
-rMk
-xbP
-acc
-adS
-adS
-adS
-acn
-aeN
-aeF
-acc
-age
-bcf
-bcg
-agM
+aAD
+aAI
+aAI
+aAI
+aAI
+aAI
+aAI
+aef
+aeS
+afO
+aBC
+aCr
+aDb
+aDV
+aEk
+aCr
+aGc
+aGL
+aHs
+aIs
+aKb
+aLu
+aGa
aic
anV
aoh
@@ -42559,12 +48124,12 @@ aah
aah
aah
aBO
-aEx
-aFm
+aAV
+aFl
aBO
aah
aBO
-aHB
+aHC
aIh
aIW
aJM
@@ -42589,17 +48154,17 @@ aIh
aIh
aIh
aTZ
-aVp
+aEy
aVn
aWd
aWd
aWc
aXk
-aXF
+aXG
aWA
aXk
-aYK
-aZf
+aXk
+aIZ
aWA
aWA
aZZ
@@ -42649,31 +48214,31 @@ aaf
aag
aaf
aaf
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aar
-abd
-dYe
-beE
-acc
-aca
-adS
-adS
-acn
-afN
-aeF
-acc
-age
-bcf
-bcR
-agM
+aAD
+aAI
+aAI
+aAI
+aAI
+aAI
+aAI
+aef
+afi
+afQ
+bca
+aCr
+aDs
+aDW
+aEl
+aFc
+aGe
+aGM
+aHz
+aIA
+aKc
+aLZ
+baX
aid
-anW
+goJ
aoi
aoj
aoj
@@ -42701,8 +48266,8 @@ aah
aah
aah
aBO
-aEy
-aFm
+aAY
+aFl
aBO
aah
aBO
@@ -42729,8 +48294,8 @@ aSO
aTr
aer
aTZ
-aUE
-aUE
+aTZ
+aTZ
aTZ
aVn
aWe
@@ -42741,8 +48306,8 @@ aXG
aXk
aWA
aWA
-aWR
-aWR
+aWA
+aWA
aXk
aWc
aWc
@@ -42790,30 +48355,30 @@ aae
aaf
aaf
aaf
-aaf
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aar
-aaX
-rMk
-rtx
-acc
-adS
-adS
-adS
-adS
-afN
-afL
-acc
-age
-bcQ
-air
-agM
+aao
+aao
+aao
+aao
+aao
+aao
+aao
+aao
+aao
+gJK
+afO
+aBE
+aCr
+aDt
+aEd
+aEo
+aFd
+aGf
+aGN
+aHA
+aJj
+aKd
+aMe
+aKd
aie
anW
aoj
@@ -42843,8 +48408,8 @@ agM
aah
aah
aBO
-aEv
-aFm
+aEz
+aFl
aBO
aah
aBO
@@ -42871,9 +48436,9 @@ aQy
aTs
aIh
aUa
-aUF
-aUE
-aUE
+aDR
+aTZ
+aTZ
aVn
aWd
aWd
@@ -42884,8 +48449,8 @@ aYc
aYq
aYL
aeI
-aZy
-aZy
+aKg
+aKg
baa
bat
aWB
@@ -42932,30 +48497,30 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aar
-aaX
-kxe
-sNu
-adC
-abP
+aao
+aau
+aaF
+aaS
+abd
acd
-acy
acE
-adS
-afM
-acc
-age
-agM
-agM
-agM
+adC
+aao
+bcc
+afS
+aBF
+aCL
+aeC
+aEf
+aEG
+aCr
+aGg
+aGN
+aHF
+aJk
+aKe
+aML
+aGa
aif
anW
aoj
@@ -42990,9 +48555,9 @@ aFn
aBO
aah
aBO
-aHE
-aEB
-aIY
+aBL
+aBb
+aCy
aIh
aKq
aJI
@@ -43027,7 +48592,7 @@ aYd
aYM
aYd
aYd
-aZH
+aLL
bab
bau
aWB
@@ -43073,32 +48638,32 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aar
-abj
-abo
-abV
-afm
-ace
-ach
+aad
+aap
+aav
+aaG
+aaX
+abe
+acf
acH
-acF
-adS
-aeJ
-ajb
-aIA
-agM
-ahc
-ahu
-aig
+adD
+aao
+afj
+age
+aBB
+aCr
+aDt
+aEg
+aEU
+aCr
+aGh
+aGO
+aHK
+aJl
+aHK
+aOS
+aGa
+bbm
anW
aoj
aoS
@@ -43127,14 +48692,14 @@ ayh
ayh
ayh
ayh
-aEA
+aAZ
aFl
aBO
aah
aBO
-aDk
-aIi
-aIZ
+aBQ
+aCp
+aCz
aIh
aKq
aJI
@@ -43162,7 +48727,7 @@ aUW
aWf
aUc
aUb
-aXn
+aFm
aXJ
aYd
aYr
@@ -43171,8 +48736,8 @@ aZh
aYd
aZI
aWc
-aXZ
-baH
+aWS
+aWw
bas
baU
baU
@@ -43215,31 +48780,31 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aaE
-aaE
-aar
-aar
-aar
-aar
-acc
-acf
-ack
-acO
-acG
-adS
-agj
-acc
-asT
-amc
-amc
-amc
+aad
+aap
+aaw
+aaH
+aaY
+abi
+ach
+acL
+axa
+aev
+afk
+agg
+aBB
+aCr
+aDB
+aEh
+aDC
+aCr
+aGi
+aGP
+aHM
+aJt
+aKf
+aQE
+aGa
bbk
anW
aoj
@@ -43269,14 +48834,14 @@ aBR
aCD
aDl
ayh
-aco
+aBa
aFl
aBO
aah
aBO
aBO
aEz
-aJa
+aHD
aIh
aKx
aKx
@@ -43304,16 +48869,16 @@ aUc
aUc
aUc
aUb
-aXo
-aXK
+aXu
+aHe
aYd
aYs
aYO
aZi
aYd
aWA
-bac
-bav
+aVh
+aWc
aWc
bas
aad
@@ -43357,31 +48922,31 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aaE
-aaL
-aaL
-aaL
-aaL
-aaL
-acc
-acc
-acc
-acc
-acI
-adT
-acc
-amc
-amP
-adR
-aHM
-amc
+aad
+aap
+aax
+aaK
+aaK
+abo
+aaK
+aaK
+adP
+aao
+cPX
+afO
+aBB
+aCr
+dYd
+aEh
+aDC
+aCr
+aGj
+aGQ
+aGj
+aGj
+aKG
+aGj
+aGj
aii
anW
aoj
@@ -43395,7 +48960,7 @@ arz
asc
arz
arz
-atl
+apC
aqf
aqf
arg
@@ -43411,13 +48976,13 @@ aBS
aCE
aDm
aDS
-aEB
-aFo
+aBb
+aBg
aBO
aah
aah
aBO
-aEv
+aEz
aHC
aIh
aKy
@@ -43446,8 +49011,8 @@ aUX
aWg
aUc
aUb
-aXp
-aXL
+aXr
+aXJ
aYd
aYd
aYd
@@ -43499,31 +49064,31 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aaE
+aad
+aao
+aay
aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-adf
-acK
-acM
-adZ
-aeS
-amw
-afS
-adU
-bbC
-amc
+aaZ
+adb
+acn
+awy
+adQ
+aao
+yaU
+afO
+aBB
+aCr
+aDC
+aEh
+aDt
+aCr
+aGk
+aDA
+aHQ
+aJy
+aKI
+aRR
+aGj
bbl
anX
aoj
@@ -43537,7 +49102,7 @@ arz
aoR
arz
asO
-atl
+apC
aqf
aqf
arg
@@ -43553,13 +49118,13 @@ aBT
aCF
aDn
ayh
-aEC
-aFm
+aBc
+aFl
aBO
aah
aah
aBO
-aIj
+aCu
aHC
aIh
aIh
@@ -43588,17 +49153,17 @@ aUb
aWh
aWD
aUb
-aXp
+aXr
aXJ
aYe
-aYt
-aYP
+bad
+aId
aZj
aZz
-aZJ
+aNT
bad
bad
-baI
+aWP
baR
aad
aad
@@ -43641,31 +49206,31 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aaE
-aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-adf
-acL
-acP
-adv
-adB
-anF
-adQ
-aea
-aeg
-bbW
+aad
+aao
+aao
+aao
+aao
+abY
+aao
+aao
+aao
+aao
+yaU
+afO
+aBB
+aCr
+aDC
+aEh
+aEV
+aFt
+aGl
+aGS
+aHR
+aJz
+aKO
+aTT
+baY
bbm
anW
aoj
@@ -43679,7 +49244,7 @@ arz
asd
arz
arz
-atl
+apC
aqf
aqf
arg
@@ -43695,14 +49260,14 @@ aBT
aCG
aDo
ayh
-aED
+aBd
aFl
aBO
aah
aah
aBO
aIk
-aHB
+aHC
aBO
aKz
aIa
@@ -43730,17 +49295,17 @@ aUW
aWf
aWE
aUb
-aXq
+aXt
aXM
aYf
aYu
-aYQ
-aZk
+aIe
+aJa
aZA
aZK
-bae
+aVl
bad
-baJ
+aWR
baR
baU
aad
@@ -43786,28 +49351,28 @@ aad
aah
aah
aah
-aah
-aah
-aah
-aah
-aaE
-aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-adf
-acA
-acR
-aee
-aeZ
-amc
-adX
-afy
-afE
-afI
+aeU
+atc
+awx
+aeU
+aAI
+aAI
+aef
+yaU
+afO
+aBB
+aCr
+aDD
+aEh
+aDD
+aCr
+aGr
+aGT
+aHS
+aJA
+aKP
+aVY
+bba
afK
anW
aoj
@@ -43837,8 +49402,8 @@ ayh
ayh
ayh
ayh
-aEE
-aFm
+aBe
+aFl
aBO
aah
aah
@@ -43846,9 +49411,9 @@ aBO
aBO
aJb
aBO
-aHZ
-aLf
-aLL
+aIa
+aDk
+aDI
aIh
aNh
aNP
@@ -43873,15 +49438,15 @@ aUc
aWE
aUb
aXr
-aXx
+aXP
aYe
aYe
aYR
aYe
aYe
aZL
-baf
-baw
+aVm
+aVW
baK
aYe
aad
@@ -43928,28 +49493,28 @@ aad
aah
aah
aah
-aah
-aah
-aah
-aah
-aaE
-aaL
-aaE
-aaL
-aaL
-aaL
-aaL
-aaL
-adf
-afO
-adg
-acY
-acY
-adE
-adY
-aed
-aeh
-amc
+aeU
+atq
+aww
+aeU
+aAI
+aAI
+aef
+afl
+agj
+aBG
+aCr
+aDE
+aEi
+aEW
+aCr
+aGs
+aGU
+aHT
+aJB
+aKQ
+aXQ
+aGj
aCN
anW
aoj
@@ -44018,13 +49583,13 @@ aXr
aXJ
aYe
aYv
-aYS
+aIg
aZl
aYe
-aZM
+aUE
+aZz
+aZz
aZz
-bax
-bax
baR
aad
aad
@@ -44065,33 +49630,33 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aaE
-aaL
-aaE
-aaE
-aaL
-aaL
-aaL
-aaL
-adf
-acU
-adm
-aef
-afb
-amc
-bbf
-bbA
-bbF
-amc
+aan
+aan
+aan
+aan
+aan
+aan
+atI
+awz
+aeU
+aeU
+aeU
+aeU
+aBD
+afO
+aBB
+aCr
+aCr
+aCr
+aCr
+aCr
+aGj
+aGj
+aGj
+aGj
+aGj
+aGj
+aGj
bbp
anW
aoj
@@ -44124,7 +49689,7 @@ ayh
aCJ
aFq
aCJ
-aGu
+aBk
aCJ
agM
ayG
@@ -44156,17 +49721,17 @@ aUb
aWh
aWF
aUb
-aXs
+aFo
aXJ
aYe
-aYw
+aHB
aYT
aZm
aYe
aZN
-bag
-bay
-aYt
+aVo
+aVX
+bad
baR
baU
baU
@@ -44207,33 +49772,33 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aaE
-aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-adf
-aeE
-adq
-acY
+aan
+aaV
+aba
+acO
+adw
+aan
+atJ
+awA
aeU
-amc
-bbr
-amc
-bbr
-amc
+acZ
+ade
+aeU
+jQL
+amw
+aBW
+aCM
+aDF
+aCM
+lUk
+aCM
+aCM
+aCM
+aCM
+aJC
+qWW
+aZg
+aef
bbq
anW
aoj
@@ -44263,11 +49828,11 @@ ayh
ayh
ayh
ayh
-aCK
+aCJ
aFr
-aCK
-aCK
-aCK
+aCJ
+aCJ
+aCJ
agM
aeM
aJd
@@ -44298,8 +49863,8 @@ aUW
aWf
aWE
aUb
-aXp
-aXL
+aXr
+aXJ
aYe
aYe
aYe
@@ -44349,33 +49914,33 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aaE
-aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-adf
-adA
-adr
-aes
+aan
+abf
+acl
+acR
+abP
aeY
-afn
-afs
-afx
-afB
-aeQ
+atN
+adX
+adY
+awY
+adR
+adU
+afo
+aem
+afF
+aBX
+aDG
+aBX
+aBX
+aFu
+aGv
+aBX
+aBX
+aJS
+aKR
+aKR
+bbb
agf
anW
aoi
@@ -44404,12 +49969,12 @@ ldI
agM
aCJ
aCJ
-aCK
+aCJ
aCJ
aFs
-aCK
-aCK
-aCK
+aCJ
+aCJ
+aCJ
agM
ayG
aJe
@@ -44441,16 +50006,16 @@ aVJ
aWG
aUb
aXr
-aXL
+aXJ
aYg
aYx
-aYU
-aZn
-aZB
+aIi
+aJu
+aZQ
aZO
bah
-baz
-baL
+aWu
+aXf
baS
baU
baU
@@ -44491,33 +50056,33 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aaE
-aaL
-aaL
-aaL
-adw
-adx
-abL
-abU
-acl
-acB
-ads
-agq
-acY
-aff
-afo
-afD
-afF
-afJ
+aan
+abj
+acm
+acU
+adA
+aan
+aBn
+lbu
+axL
+adc
+adS
+aeU
+afs
+aeD
+aCg
+mGH
+aDH
+mGH
+aEX
+aFv
+aGw
+aGV
+aHU
+aJT
+tRA
+igw
+bbf
ago
anY
aok
@@ -44544,14 +50109,14 @@ mSz
qhq
oib
agM
-aCK
-aCK
-aCK
-aCK
-aCK
aCJ
aCJ
-aCK
+aCJ
+aCJ
+aCJ
+aCJ
+aCJ
+aCJ
agM
aIm
aJf
@@ -44583,16 +50148,16 @@ aUc
aUc
aUb
aXt
-aXN
+aXO
aYh
-aYy
-aYV
+aHE
+aIj
aZo
aZC
aZC
-bai
-baz
-aZB
+aVp
+aWu
+aZQ
baS
baU
baU
@@ -44632,34 +50197,34 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aaE
-aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-aaL
-adf
-acZ
-adD
-aev
-afi
-adf
-adf
-adf
-adf
-agM
+aan
+aan
+abp
+abq
+acY
+adB
+aan
+atP
+awE
+aeU
+aeU
+aeU
+aeU
+aef
+aef
+afE
+aef
+aef
+aef
+aEY
+aFO
+aGw
+aHh
+aef
+aef
+aef
+aef
+aef
bbt
anZ
aol
@@ -44667,8 +50232,8 @@ aoT
apE
aqh
aqL
-aqh
-arB
+doa
+aqL
ajA
asf
ass
@@ -44687,13 +50252,13 @@ ayG
qRI
agM
aCJ
-aCK
aCJ
-aCK
-aCK
aCJ
-aCK
-aCK
+aCJ
+aCJ
+aCJ
+aCJ
+aCJ
agM
aIn
aJg
@@ -44728,7 +50293,7 @@ aXu
aXJ
aYg
aYg
-aYW
+aIE
aYg
aYg
aZP
@@ -44774,30 +50339,30 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
+aan
+aaD
+abq
+acq
+acY
+adE
+aan
+uHS
+awF
+axM
+aeU
aah
aah
aah
aah
+akA
+aAG
aah
-aaE
-aaL
-aaE
-aaE
-aaL
-aaL
-aaL
-aaE
-adf
-adb
-adG
-aeC
-afj
-adf
+aef
+aEZ
+aFP
+aGw
+aHi
+aef
aah
aah
aah
@@ -44810,7 +50375,7 @@ agM
agM
aqM
agM
-agM
+aqM
agM
asg
ash
@@ -44829,11 +50394,11 @@ oVr
mrR
agM
aCJ
-aCK
-aCK
aCJ
-aCK
-aCK
+aCJ
+aCJ
+aCJ
+aCJ
aCJ
aCJ
agM
@@ -44870,13 +50435,13 @@ aXv
aXJ
aYg
aYz
-aYX
+aIF
aZp
aYg
aZQ
-bak
-bak
-baN
+bah
+bah
+aXn
baS
baU
aad
@@ -44913,33 +50478,33 @@ aad
aad
aad
aad
+adK
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
+aar
aaE
-aaL
-aaE
-fYi
-aaL
-aaL
-aaL
-aaL
-adf
-adc
-acY
-acY
-afk
+abr
+abr
adf
+adT
+afb
+atO
+awC
+axN
+aeU
+aah
+aah
+aah
+aah
+akA
+aAG
+aah
+aef
+aFa
+aFQ
+aGw
+aHk
+aef
aah
aah
aah
@@ -44952,8 +50517,8 @@ guV
apF
ahc
apF
-aah
-aah
+nKz
+apF
ash
ast
asU
@@ -44971,13 +50536,13 @@ ayG
jnj
agM
cOq
-aCK
-aCK
-aCK
-aCK
-aCK
aCJ
-aHj
+aCJ
+aCJ
+aCJ
+aCJ
+aCJ
+aBs
agM
aEH
aJh
@@ -45008,14 +50573,14 @@ aVL
aWj
aWI
aUb
-aXp
-aXL
+aXr
+aXJ
aYg
-aYA
+aHO
aYY
aZq
aYg
-aZB
+aZQ
bal
baB
bah
@@ -45058,30 +50623,30 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
+aar
+abL
+abL
+abL
+abL
+aea
+afb
+atO
+awC
+axO
+aeU
aah
aah
aah
aah
-aaE
-aaL
-aaE
-aaL
-aaL
-aaL
-aaL
-aaL
-adf
-ade
-adP
-aeD
-afl
-adf
+anF
+aAG
+aah
+aef
+aFb
+aFZ
+aGJ
+aHq
+aef
aah
aah
aah
@@ -45094,8 +50659,8 @@ apG
apF
aqN
apF
-aah
-aah
+aqN
+apF
ash
ast
asU
@@ -45150,8 +50715,8 @@ aVM
aWk
aWJ
aUb
-aXp
-aXL
+aXr
+aXJ
aYg
aYg
aYg
@@ -45200,30 +50765,30 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
+aar
+aaJ
+abU
+acC
+abL
+aei
+afb
+atO
+awG
+aed
+aeU
aah
aah
aah
-aaU
-aaU
-aaI
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-adf
-adf
-adf
-adf
-adf
-adf
+aah
+akA
+aAG
+aah
+aef
+aef
+aef
+aef
+aef
+aef
aah
aah
aah
@@ -45235,9 +50800,9 @@ ahx
aaW
aqi
aqO
-apF
-aah
-aah
+mRY
+aql
+aql
ash
asu
asU
@@ -45293,15 +50858,15 @@ aUb
aUb
aUb
aXr
-aXx
+aXP
aYi
aYB
-aYZ
-aZr
+aIH
+aJw
aZD
aZR
-bam
-bam
+baD
+baD
baO
baT
baU
@@ -45342,26 +50907,26 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
+aar
+aaO
+abV
+acF
+abL
+aek
+afb
+atO
+awz
+aeU
+aeU
+axP
+axP
+axP
+axP
+akA
+aAI
aah
aah
aah
-aaU
-abH
-abH
-abX
-abX
-abH
-abH
-abX
-aei
-aaU
-aah
aah
aah
aah
@@ -45437,13 +51002,13 @@ aWU
aXw
aXO
aYj
-aYC
-aZa
-aZs
-aZE
-aZE
-ban
-aZT
+aHW
+aII
+aJx
+aKS
+aKS
+aVG
+aZD
baP
baT
baU
@@ -45484,28 +51049,28 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
+aan
+aaR
+abL
+abL
+abL
+ael
+aan
+atQ
+awV
+axQ
+adZ
+ayB
+ayZ
+aAc
+aAi
+asT
+aAI
+adK
aah
aah
aah
aah
-aaU
-abH
-abH
-abH
-abX
-abX
-abH
-abH
-aek
-aaU
-aah
-aah
-aah
aah
aah
aah
@@ -45520,7 +51085,7 @@ aah
apF
aqP
apF
-arC
+arL
arO
asi
asw
@@ -45576,7 +51141,7 @@ aVO
aWm
aWL
aVn
-aXx
+aXP
aXP
aYi
aYi
@@ -45623,31 +51188,31 @@ aad
aad
aad
aad
+adK
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
+aan
+aan
+abX
+acG
+abX
+aan
+aan
+acP
+awW
+axR
+aee
+ayC
+aza
+aAd
+axP
+aAz
+aAI
+adK
aah
aah
aah
aah
-aaU
-aaD
-aaJ
-aaO
-acq
-aen
-abH
-abH
-aek
-aaU
-aah
-aah
-aah
aah
aah
aah
@@ -45661,8 +51226,8 @@ aah
aah
apF
aqQ
-ari
-arh
+arl
+ark
apF
ash
asx
@@ -45721,14 +51286,14 @@ aVn
aVn
aVn
aYi
-aYD
+aHX
aZc
-aZt
+aJD
aYi
-aZT
-aZT
+aZD
+aZD
baD
-aZT
+aZD
baT
baU
aad
@@ -45769,27 +51334,27 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
+aan
+acc
+acI
+adm
+aan
+aff
+aff
+awX
+aff
+aff
+ayC
+azE
+axP
+axP
+axK
+aAI
+adK
aah
aah
aah
aah
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abH
-abH
-ael
-aaU
-aah
-aah
-aah
aah
aaU
aaU
@@ -45803,7 +51368,7 @@ aah
aah
apF
aqP
-ari
+arl
apF
apF
ash
@@ -45861,16 +51426,16 @@ aWo
aWM
aWV
aVn
-aop
+aHg
aYi
aYE
-aZd
+aIM
aZu
aYi
aZU
-bap
+aVH
baE
-bam
+baD
baT
baU
aad
@@ -45911,34 +51476,34 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
+aan
+ace
+acK
+adq
+aan
+aff
+auq
+ady
+ayd
+aff
+ayY
+azF
+axP
+aeF
+axK
+aAI
+adK
aah
aah
aah
aah
aah
aaU
-abH
-abH
-aem
-aaU
-aah
-aah
-aah
-aah
-aaU
-abs
-aby
-abq
-abC
-abE
+agQ
+ahp
+ahC
+akI
+anf
aaU
aah
aah
@@ -45995,11 +51560,11 @@ aSW
aTD
aSo
acw
-aUP
+aVS
aVe
aVA
aVQ
-aUP
+bHR
aUP
bcT
aVn
@@ -46053,41 +51618,41 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aah
-aah
-aah
-aah
-aah
+aan
+aan
+aan
+aan
+aan
+aff
+aur
+awZ
+aye
+aff
+axP
+axP
+axP
+aeJ
+aAz
+aAI
+adK
aah
aah
aah
aah
aah
aaU
-abH
-abH
-aaR
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-abt
-agQ
+agS
+ahq
+ajP
+akY
anq
-ahz
-abF
aaU
aaU
aaU
aaU
aaU
abR
-arh
+ark
apF
aah
ash
@@ -46137,11 +51702,11 @@ aSX
aTE
aSo
acz
-aUP
+bcT
aVf
aVB
aVf
-aUP
+cwS
aUP
aWX
aUm
@@ -46200,36 +51765,36 @@ aad
aad
aah
aah
+aff
+auo
+adG
+ayf
+aff
+aAI
+aAI
+aAD
+afy
+azT
+aAa
+adK
aah
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aaU
-abH
-abH
-abf
-abp
-abq
-abq
-abr
-abq
-abq
-abu
-anf
-ahg
-ahA
-abG
+bbj
+bbj
+bbj
+bbj
+agT
+ahr
+ajR
+alu
+anr
abJ
abM
abJ
abJ
abO
abS
-ark
+arC
apF
aah
ash
@@ -46279,11 +51844,11 @@ aSY
aTF
aSo
afZ
-aUP
+bcT
aVf
aVB
aVf
-aUP
+cwS
aUP
aWY
aUm
@@ -46331,7 +51896,6 @@ aad
aad
aad
aad
-bcV
aad
aad
aad
@@ -46341,37 +51905,38 @@ aad
aad
aad
aad
+aad
+aeE
+afm
+afm
+axb
+afm
+afm
+aeE
+aeE
+azV
+azV
+azV
+aAb
+adK
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-aaU
-agH
-agS
-anr
-ahB
-abH
+bbj
+bbj
+bbI
+bbM
+bbj
+ahg
+ahz
+ajZ
+alD
+anL
aaU
aaU
aaU
aaU
aaU
aql
-ari
+arl
apF
aah
ash
@@ -46421,11 +51986,11 @@ aSX
aTG
aSo
arm
-aUP
+bcT
aVf
aUs
aUu
-aVP
+iee
aVP
aWZ
bcj
@@ -46483,30 +52048,30 @@ aad
aad
aad
aad
+aeE
+afn
+avk
+axc
+ayg
+ayE
+azu
+azH
+azW
+aAe
+aeE
+aAz
+adK
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aaU
-abH
-agT
-aaV
-agT
-agT
+bbj
+bbx
+bbJ
+bbV
+bbj
+ahk
+ahA
+ahk
+ahA
+aop
aaU
aah
aah
@@ -46563,11 +52128,11 @@ aSZ
aSo
aSo
arD
-aUP
+bcT
aVf
aVB
aVf
-aUP
+cwS
aUP
aXa
aUm
@@ -46625,30 +52190,30 @@ aad
aad
aad
aad
+aeE
+afx
+avl
+axd
+ayj
+ayF
+azy
+azI
+azX
+aAg
+aeE
+aAz
+adK
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aaU
-aaU
+bbj
+bby
+bbK
+bbW
+bbj
aaU
aaU
aaU
aaU
+aBo
aaU
aah
aah
@@ -46705,11 +52270,11 @@ aTa
aTH
aSo
aTB
-aUP
+bcm
aVg
aVC
aVR
-aWp
+laR
aWp
aXb
aUm
@@ -46767,31 +52332,31 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+aeE
+afB
+avQ
+axj
+ayk
+ayK
+azv
+azH
+azY
+aAh
+aeE
+aAz
+adK
+aAW
+bbr
+bbz
+bbL
+bbY
+bbj
+aAG
+aAG
+aAG
+aAG
+aBp
+aAD
aah
aah
apF
@@ -46848,7 +52413,7 @@ aTI
aSo
aUo
aUQ
-aVh
+bHR
aUP
aVS
aga
@@ -46909,31 +52474,31 @@ aad
aad
aad
aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+aeE
+afD
+avl
+axF
+ayl
+avl
+azw
+aeE
+aeE
+aeE
+aeE
+aAA
+aAH
+aAX
+bbj
+bbA
+bbj
+bbj
+bbj
+aAG
+aAG
+aAG
+aAI
+aBp
+aAD
aah
aah
apF
@@ -47051,31 +52616,31 @@ aad
aad
aad
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+aeE
+afL
+avR
+axG
+ayt
+avl
+azx
+azH
+azW
+aAe
+aeE
+aAI
+aAI
+aAI
+aAI
+aBh
+aBi
+aBi
+bHK
+aBi
+aBi
+aBi
+aBi
+aBq
+aAD
aah
aah
apF
@@ -47193,31 +52758,31 @@ aad
aad
aad
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+aeE
+agq
+avS
+axH
+ayu
+ayL
+azz
+azJ
+azX
+aAg
+aeE
+aAI
+aAI
+gYx
+pdo
+aAI
+aAI
+aAI
+aAI
+aAI
+aAI
+aAI
+aAI
+bbZ
+aAD
aah
aah
apF
@@ -47332,34 +52897,34 @@ aad
aad
aad
aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+ack
+acM
+acM
+aen
+aig
+auL
+xpP
+ayv
+ayM
+bcf
+azH
+azY
+aAh
+aeE
+aAD
+aAD
+aAD
+aAD
+aAD
+aAD
+aAD
+aAD
+aAD
+aAD
+aAD
+aAD
+aAD
+aAD
aah
aah
apF
@@ -47477,17 +53042,17 @@ aad
aad
aah
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+aeE
+aeE
+aeE
+azH
+ayw
+aeE
+aeE
+aeE
+aeE
+aeE
+aeE
aah
aah
aah
@@ -47514,7 +53079,7 @@ aah
aah
aah
atx
-aua
+auB
auB
auB
auB
@@ -47619,14 +53184,14 @@ aad
aad
aah
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+naC
+ajb
+awu
+lMK
+ayx
+ayN
+azA
+naC
aah
aah
aah
@@ -47650,13 +53215,13 @@ aah
aah
aah
aah
-aah
-aah
-aah
-aah
-baU
aty
-aub
+atx
+atx
+atx
+atx
+aty
+afH
aub
aub
aub
@@ -47761,14 +53326,14 @@ aad
aad
aah
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+naC
+amc
+arB
+arB
+ayy
+ayO
+azB
+naC
aah
aah
aah
@@ -47792,32 +53357,32 @@ aah
aah
aah
aah
-aah
-aah
-aah
-aah
-baU
+auD
+auc
+auc
atz
auc
auc
+atA
+atA
+atA
+atA
+atA
auc
auc
auc
+atA
+auc
+atA
auc
auc
auc
-azr
-azr
-azr
-auc
-auc
-auc
-auc
-auc
-auc
-auc
-auc
-atz
+atA
+atA
+atA
+atA
+atA
+auD
aad
aad
aad
@@ -47903,14 +53468,14 @@ aad
aad
aah
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+naC
+amP
+awv
+awv
+ayz
+ayP
+azC
+naC
aah
aah
aah
@@ -47934,12 +53499,7 @@ aah
aah
aah
aah
-aah
-aah
-aah
-aad
-aad
-atz
+auD
aud
aud
aud
@@ -47949,7 +53509,6 @@ aud
aud
aud
aud
-auX
aud
aud
aud
@@ -47959,7 +53518,13 @@ aud
aud
aud
aud
-atz
+aud
+aud
+aud
+aud
+aud
+aud
+auD
aad
aad
aad
@@ -48045,14 +53610,14 @@ aad
aad
aad
aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+naC
+aAC
+avY
+axJ
+ayA
+ayX
+azD
+naC
aah
aah
aah
@@ -48076,32 +53641,32 @@ aad
aad
aah
aah
-aah
-aad
-aad
-aad
-aad
-atA
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-atA
+auD
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+wXW
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+auD
aad
aad
aad
@@ -48187,14 +53752,14 @@ aad
aad
aad
aad
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
+naC
+naC
+naC
+naC
+naC
+naC
+naC
+naC
aah
aah
aah
@@ -48218,32 +53783,32 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
+auD
atB
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
-aud
atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+auD
aad
aad
aad
@@ -48360,12 +53925,7 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-atB
+auD
aud
aud
aud
@@ -48385,7 +53945,12 @@ aud
aud
aud
aud
-atB
+aud
+aud
+aud
+aud
+aud
+auD
aad
aad
aad
@@ -48502,12 +54067,7 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-atB
+auD
aud
aud
aud
@@ -48527,7 +54087,12 @@ aud
aud
aud
aud
-atB
+aud
+aud
+aud
+aud
+aud
+auD
aad
aad
aad
@@ -48644,12 +54209,7 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-atB
+auD
aud
aud
aud
@@ -48669,7 +54229,12 @@ aud
aud
aud
aud
-atB
+aud
+aud
+aud
+aud
+aud
+auD
aad
aad
aad
@@ -48786,32 +54351,32 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-atA
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-aue
-atA
+auD
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+auD
aad
aad
aad
@@ -48928,12 +54493,7 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-atz
+auD
aud
aud
aud
@@ -48953,7 +54513,12 @@ aud
aud
aud
aud
-atz
+aud
+aud
+aud
+aud
+aud
+auD
aad
aad
aad
@@ -49070,32 +54635,32 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-atz
-auf
auD
-auf
-afH
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
auD
-auf
-auf
-auD
-auf
-auf
-auf
-auD
-auf
-auf
-auD
-afH
-auf
-auD
-auf
-atz
aad
aad
aad
@@ -49212,32 +54777,32 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-atC
-atx
-atx
-atx
-atx
-awk
-atx
-atx
-atx
-atx
-awk
-atx
-atx
-atx
-atx
-awk
-atx
-atx
-atx
-atx
-atC
+auD
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+auD
aad
aad
aad
@@ -49310,7 +54875,7 @@ aad
aad
aad
aad
-aad
+bcV
aad
aad
aad
@@ -49354,32 +54919,32 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+auD
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+atB
+auD
aad
aad
aad
@@ -49496,32 +55061,32 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+auD
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+aud
+auD
aad
aad
aad
@@ -49638,32 +55203,32 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+auD
+atC
+atC
+aua
+atC
+atC
+atC
+aua
+atC
+atC
+aue
+aua
+atC
+atC
+aua
+atC
+atC
+atC
+aua
+atC
+aue
+atC
+aua
+atC
+atC
+auD
aad
aad
aad
@@ -49780,32 +55345,32 @@ aad
aad
aad
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aty
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+atx
+aty
aad
aad
aad
diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm
index 7fbba22ef6e..3b7cead3e94 100644
--- a/maps/tether/tether-02-surface2.dmm
+++ b/maps/tether/tether-02-surface2.dmm
@@ -6,128 +6,773 @@
/turf/simulated/open/virgo3b,
/area/tether/surfacebase/outside/outside2)
"aac" = (
-/turf/simulated/mineral,
+/turf/simulated/wall,
/area/tether/surfacebase/outside/outside2)
"aad" = (
-/turf/simulated/wall,
-/area/maintenance/lower/mining)
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/centralhall)
"aae" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/lower/public_garden_maintenence/upper)
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/centralhall)
"aaf" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/medical/lowerhall)
-"aag" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/medical/surgery)
-"aah" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/medical/resleeving)
-"aai" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"aaj" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 9
},
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aag" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"aah" = (
+/obj/machinery/camera/network/medbay,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aai" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/structure/flora/pottedplant/minitree,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/centralhall)
+"aak" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 5
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aal" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aam" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aan" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aao" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aap" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaq" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aar" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/centralhall)
+"aas" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/centralhall)
+"aat" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aau" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/random/cigarettes,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"aav" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair/office/light,
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aaw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aax" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"aay" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaA" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aaB" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaD" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aaE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaF" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaG" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/centralhall)
+"aaH" = (
+/obj/machinery/vending/coffee{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/centralhall)
+"aaI" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaJ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/obj/item/device/healthanalyzer,
+/obj/item/clothing/accessory/stethoscope,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aaK" = (
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"aaL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaM" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/pink/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aaQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaR" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaS" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
/obj/effect/floor_decal/borderfloorwhite/corner2{
dir = 1
},
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 1
},
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aak" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
+/area/tether/surfacebase/medical/centralhall)
+"aaT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
- icon_state = "2-4"
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"aal" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaU" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaV" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/vending/wallmed1{
+ emagged = 1;
+ pixel_y = 32;
+ shut_up = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaW" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaX" = (
+/obj/item/device/radio/intercom{
dir = 1;
- name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"aam" = (
-/turf/simulated/wall/r_wall,
-/area/vacant/vacant_site/gateway/lower)
-"aan" = (
-/turf/simulated/wall,
-/area/maintenance/substation/medsec)
-"aao" = (
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aap" = (
-/turf/simulated/wall,
-/area/maintenance/lower/north)
-"aaq" = (
-/obj/structure/stairs/east,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aar" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/medical/lowerhall)
-"aas" = (
-/obj/structure/closet/secure_closet/warden,
-/obj/item/weapon/gun/projectile/shotgun/pump/combat{
- ammo_type = /obj/item/ammo_casing/a12g/beanbag;
- desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock.";
- name = "warden's shotgun"
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
},
-/obj/item/weapon/book/manual/security_space_law,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
},
/obj/structure/cable/green{
- icon_state = "0-8"
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/borderfloor{
- dir = 5
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aat" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aaZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay recovery room door.";
+ id = "MedicalRecovery";
+ name = "Exit Button";
+ pixel_x = -5;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aba" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"abb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"abc" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -139,188 +784,1862 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"aau" = (
-/obj/structure/stairs/west,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"aav" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"abd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"abe" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
+ dir = 4
},
-/obj/effect/floor_decal/corner/white/border{
- dir = 9;
- icon_state = "bordercolor"
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
},
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner";
- pixel_x = 2;
- pixel_y = 2
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
},
-/obj/machinery/light{
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"abf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aaw" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "MedSec Substation Bypass"
+/area/tether/surfacebase/medical/recoveryward)
+"abg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
},
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
-"aax" = (
-/obj/effect/floor_decal/industrial/warning{
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"abh" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/under/bathrobe,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"abi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
},
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"abj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"abk" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"abl" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Showers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"abm" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/curtain/open/privacy,
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"abn" = (
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"abo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"abp" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/under/bathrobe,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"abq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"abr" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_a)
+"abs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"abt" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"abu" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"abw" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"abx" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/cable/green{
d2 = 4;
- icon_state = "2-4"
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aby" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"abz" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/cmo)
+"abA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"abB" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white,
+/obj/item/device/healthanalyzer,
+/obj/item/weapon/cane,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/button/windowtint{
+ id = "ward_tint";
+ pixel_x = -24;
+ pixel_y = 8;
+ range = 12
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"abC" = (
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"abD" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"abE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"abF" = (
+/turf/simulated/open,
+/area/tether/surfacebase/medical/centralstairwell)
+"abG" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_b)
+"abH" = (
+/obj/machinery/camera/network/medbay,
+/turf/simulated/open,
+/area/tether/surfacebase/medical/centralstairwell)
+"abI" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance/common,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"abJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "cmo_office"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "cmo_office"
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/cmo)
+"abK" = (
+/obj/machinery/washing_machine,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"abL" = (
+/obj/machinery/washing_machine,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
},
/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
-"aay" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/effect/floor_decal/corner/white/border{
- dir = 9;
- icon_state = "bordercolor"
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- dir = 10
- },
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- on = 0;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/item/stack/nanopaste,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aaz" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/engineering{
- name = "MedSec Substation"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
-"aaA" = (
-/obj/effect/floor_decal/borderfloorwhite{
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"abM" = (
+/obj/effect/floor_decal/techfloor{
dir = 5
},
-/obj/effect/floor_decal/corner/white/border{
- dir = 5
+/obj/machinery/vending/wallmed1{
+ pixel_x = 30
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- dir = 5;
- icon_state = "bordercolorcorner2"
- },
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aaB" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/catwalk,
/obj/machinery/alarm{
pixel_y = 22
},
+/obj/structure/table/standard,
+/obj/random/soap,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"abN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced/polarized/full{
+ id = "surfresleeving"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"aaC" = (
-/obj/machinery/oxygen_pump/anesthetic,
-/turf/simulated/wall,
-/area/tether/surfacebase/medical/surgery)
-"aaD" = (
+/area/tether/surfacebase/medical/resleeving)
+"abO" = (
+/obj/structure/table/glass,
+/obj/machinery/photocopier/faxmachine{
+ department = "CMO's Office"
+ },
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = -27
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"abP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"abQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"abR" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_y = 4
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/obj/item/clothing/accessory/stethoscope,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -35
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"abS" = (
+/obj/machinery/keycard_auth{
+ pixel_x = 32;
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"abT" = (
+/obj/item/modular_computer/console/preset/command{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"abU" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"abV" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"abW" = (
+/obj/structure/stairs/east,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"abX" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
dir = 5
},
-/obj/effect/floor_decal/corner/white/border{
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 5
},
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"abY" = (
+/obj/structure/railing,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"abZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"aca" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
/obj/structure/table/standard,
-/obj/item/device/defib_kit/loaded,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/obj/item/weapon/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner";
- pixel_x = 2;
- pixel_y = 2
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"acb" = (
+/obj/structure/table/glass,
+/obj/item/weapon/book/manual/resleeving,
+/obj/structure/sign/nosmoking_1{
+ pixel_x = -32
+ },
+/obj/item/device/sleevemate,
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aaE" = (
/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
+ dir = 9
},
/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
+ dir = 9
},
-/obj/machinery/organ_printer/flesh,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/resleeving)
-"aaF" = (
+"acc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
+ dir = 1
},
/obj/effect/floor_decal/corner/paleblue/border{
- dir = 9
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"acd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"ace" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
},
/obj/machinery/transhuman/resleever,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/resleeving)
-"aaG" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"aaH" = (
+"acf" = (
+/obj/machinery/clonepod/transhuman,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
+ dir = 5
},
/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
+ dir = 5
},
-/obj/machinery/clonepod/transhuman,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/resleeving)
-"aaI" = (
+"acg" = (
+/obj/machinery/photocopier,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"ach" = (
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/medical/cmo)
+"aci" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/medical/cmo)
+"acj" = (
+/obj/structure/bed/chair/office/light,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Control";
+ pixel_x = -36;
+ req_access = list(5)
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the CMO's office.";
+ id = "cmodoor";
+ name = "CMO Office Door Control";
+ pixel_x = -36;
+ pixel_y = -11
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "virologyquar";
+ name = "Virology Emergency Lockdown Control";
+ pixel_x = -28;
+ req_access = list(5)
+ },
+/obj/machinery/button/windowtint{
+ id = "cmo_office";
+ pixel_x = -26;
+ pixel_y = -10
+ },
+/obj/effect/landmark/start{
+ name = "Chief Medical Officer"
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/medical/cmo)
+"ack" = (
+/obj/structure/filingcabinet,
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"acl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"acm" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/detective)
+"acn" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/detective)
+"aco" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/evidence)
+"acp" = (
+/obj/structure/lattice,
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"acq" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"acr" = (
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"acs" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"act" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"acu" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"acv" = (
+/obj/structure/window/reinforced/polarized/full{
+ id = "surfresleeving"
+ },
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/resleeving)
+"acw" = (
+/obj/structure/stairs/east,
+/obj/structure/railing,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"acx" = (
+/obj/machinery/vending/medical{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/centralhall)
+"acy" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "cmo_office"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/cmo)
+"acz" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"acA" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white_cmo,
+/obj/item/weapon/stamp/cmo,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/medical/cmo)
+"acB" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1;
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/medical/cmo)
+"acC" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/patient_c)
+"acD" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/skills{
+ dir = 1;
+ pixel_x = -9;
+ pixel_y = 4
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Medical Officer's Desk";
+ departmentType = 5;
+ dir = 8;
+ name = "Chief Medical Officer RC";
+ pixel_x = 22
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"acE" = (
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"acF" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"acG" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"acH" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/structure/flora/pottedplant/decorative,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"acI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"acJ" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"acK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"acL" = (
+/obj/structure/table/reinforced,
+/obj/item/device/reagent_scanner,
+/obj/item/device/mass_spectrometer/adv,
+/obj/machinery/camera/network/security{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"acM" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"acN" = (
+/obj/structure/table/reinforced,
+/obj/item/device/uv_light,
+/obj/item/weapon/reagent_containers/spray/luminol,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"acO" = (
+/obj/machinery/computer/secure_data,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"acP" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microscope,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"acQ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/forensics/sample_kit/powder,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"acR" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/forensics/sample_kit,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"acS" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
+"acT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
+"acU" = (
+/obj/structure/table/reinforced,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
+"acV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
+"acW" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
+"acX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"acY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_medical/polarized{
+ id_tag = "SurfMedicalResleeving";
+ name = "Resleeving Lab";
+ req_access = list(5)
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"acZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"ada" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"adb" = (
+/obj/structure/dogbed{
+ desc = "Runtime's bed. Some of her disappointment seems to have rubbed off on it.";
+ name = "cat bed"
+ },
+/obj/item/toy/plushie/mouse/fluff,
+/mob/living/simple_mob/animal/passive/cat/runtime,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"adc" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/medical/cmo)
+"add" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/medical/cmo)
+"ade" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/flora/pottedplant/minitree,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"adf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "patient_room_a"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "patient_room_a"
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/patient_a)
+"adg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "patient_room_b"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "patient_room_b"
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/patient_b)
+"adh" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "cmo_office"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "cmo_office"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/cmo)
+"adi" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/examroom)
+"adj" = (
+/obj/structure/curtain/open/shower/medical,
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"adk" = (
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"adl" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/medical/resleeving)
+"adm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "patient_room_c"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "patient_room_c"
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/patient_c)
+"adn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"ado" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "exam_room"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "exam_room"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/examroom)
+"adp" = (
+/obj/structure/table/glass,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_c)
+"adq" = (
+/obj/structure/bed/chair/office/light,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
-/obj/effect/floor_decal/corner/paleblue/border{
+/obj/effect/floor_decal/corner/pink/border{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_c)
+"adr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"ads" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"adt" = (
+/turf/simulated/mineral,
+/area/tether/surfacebase/outside/outside2)
+"adu" = (
+/obj/machinery/chem_master,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"adv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"adw" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"adx" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"ady" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"adz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"adA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"adB" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
+"adC" = (
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
+"adD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -24;
+ pixel_y = -28
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
+"adE" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
+"adF" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/evidence)
+"adG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"adH" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay recovery room door.";
+ dir = 8;
+ id = "SurfMedicalResleeving";
+ name = "Exit Button";
+ pixel_x = 28;
+ pixel_y = -4
+ },
+/obj/machinery/button/windowtint/multitint{
+ dir = 8;
+ id = "surfresleeving";
+ pixel_x = 28;
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"adI" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"adJ" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/flora/skeleton{
+ name = "\proper Sheb"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"adK" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/medical/cmo)
+"adL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/medical/cmo)
+"adM" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"adN" = (
+/obj/structure/table/glass,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_a)
+"adO" = (
+/obj/structure/bed/chair/office/light,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_a)
+"adP" = (
+/obj/structure/bed/chair,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_a)
+"adQ" = (
+/obj/structure/table/glass,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_b)
+"adR" = (
+/obj/structure/bed/chair/office/light,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_b)
+"adS" = (
+/obj/structure/bed/chair,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_b)
+"adT" = (
+/obj/structure/bed/chair,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_c)
+"adU" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 9
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"adV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"adW" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Medbay Breakroom";
+ req_access = list(5);
+ req_one_access = list(5)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"adX" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/medical/resleeving)
+"adY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/vending/loadout/uniform,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"adZ" = (
+/obj/machinery/computer/guestpass{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/organ_printer/flesh,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"aea" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/bottle/biomass{
pixel_x = 4;
@@ -334,4796 +2653,1982 @@
pixel_x = -7;
pixel_y = 4
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aaJ" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/machinery/vending/medical,
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aaK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"aaL" = (
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - MedSec";
- charge = 0;
- output_attempt = 0;
- outputting = 0
- },
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
-"aaM" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable,
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
-"aaN" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
-"aaO" = (
-/obj/structure/cable/green{
- icon_state = "16-0"
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"aaP" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"aaQ" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/bottle/biomass{
pixel_x = 6;
pixel_y = 8
},
-/obj/machinery/alarm{
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/item/device/flashlight/pen{
pixel_x = -3;
pixel_y = -3
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aaR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"aaS" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/outside/outside2)
-"aaT" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/camera/network/engineering{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
-"aaU" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
-"aaV" = (
-/obj/machinery/door/airlock/engineering{
- name = "MedSec Substation"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
-"aaW" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 6
- },
-/obj/structure/curtain/open/shower/medical,
-/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- pixel_x = 2;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/resleeving)
-"aaX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aaY" = (
-/obj/effect/floor_decal/techfloor{
- dir = 9
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/wardrobe/pjs,
-/obj/item/weapon/handcuffs/fuzzy,
-/obj/item/weapon/handcuffs/fuzzy,
-/obj/item/weapon/handcuffs/legcuffs/fuzzy,
-/obj/item/weapon/handcuffs/fuzzy,
-/obj/item/clothing/accessory/shiny/socks,
-/obj/item/clothing/under/shiny/catsuit,
-/obj/item/clothing/accessory/shiny/gloves,
-/obj/item/clothing/head/shiny_hood,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"aaZ" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/table/steel,
-/obj/item/weapon/storage/fancy/candle_box,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"aba" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/machinery/vending/sovietsoda,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abb" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/machinery/vending/cigarette{
- name = "Cigarette machine";
- prices = list();
- products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2)
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abc" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/machinery/status_display{
- pixel_y = 30
- },
-/obj/random/cutout,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abd" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor/hole/right{
- dir = 1
- },
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/purple,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abe" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abf" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/mime,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abg" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abh" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/red,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abi" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/floor_decal/rust,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abj" = (
-/obj/effect/floor_decal/techfloor{
- dir = 5
- },
-/obj/effect/floor_decal/techfloor/hole/right{
- dir = 1
- },
-/obj/structure/undies_wardrobe,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"abl" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"abm" = (
-/obj/random/trash_pile,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"abn" = (
-/turf/simulated/wall,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"abo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"abp" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"abq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"abr" = (
-/obj/structure/ladder/up,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"abs" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/hole/right{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abt" = (
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abu" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abv" = (
-/obj/structure/symbol/sa,
-/turf/simulated/wall{
- can_open = 1
- },
-/area/maintenance/lower/mining)
-"abw" = (
-/obj/random/cigarettes,
-/obj/random/toy,
-/obj/random/tech_supply,
-/obj/random/junk,
-/obj/item/weapon/flame/lighter/zippo,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"abx" = (
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"aby" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"abz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"abA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- icon_state = "map-scrubbers"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"abB" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/supply{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 16;
- d2 = 0;
- icon_state = "16-0"
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"abC" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"abD" = (
-/obj/effect/floor_decal/techfloor{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/cigarettes,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"abE" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/warden)
-"abF" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/warden)
-"abG" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"abH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/north)
-"abI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"abJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"abK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"abL" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abM" = (
-/obj/effect/floor_decal/corner_techfloor_grid,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abN" = (
-/obj/effect/floor_decal/techfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abO" = (
-/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/hole/right,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abP" = (
-/obj/effect/floor_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/steel,
-/obj/random/drinkbottle,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abQ" = (
-/obj/effect/floor_decal/techfloor,
-/obj/structure/table/steel,
-/obj/item/weapon/storage/toolbox/mechanical,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abR" = (
-/obj/effect/floor_decal/techfloor,
-/obj/structure/table/steel,
-/obj/item/weapon/tape_roll,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abS" = (
-/obj/effect/floor_decal/techfloor,
-/obj/structure/table/steel,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/machinery/recharger,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abT" = (
-/obj/effect/floor_decal/techfloor,
-/obj/structure/table/steel,
-/obj/random/medical/lite,
-/obj/machinery/vending/wallmed1/public{
+/obj/item/device/radio/intercom{
pixel_y = -28
},
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abU" = (
-/obj/effect/floor_decal/techfloor{
- dir = 6
- },
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"abV" = (
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"abW" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"abX" = (
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/firecloset/full/double,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"abY" = (
-/obj/structure/table/rack/holorack,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"abZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"aca" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"acb" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"acc" = (
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"acd" = (
-/obj/machinery/computer/prisoner{
- dir = 4;
- icon_state = "computer"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"ace" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/multi_tile/metal/mait{
- dir = 1;
- name = "Maintenance Access"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/north)
-"acf" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"acg" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"ach" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aci" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"acj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"ack" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"acl" = (
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"acm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/railing,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"acn" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/atmos_eva)
-"aco" = (
-/obj/structure/catwalk,
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"acp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"acq" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/public_garden_two)
-"acr" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"acs" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"act" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"acu" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"acv" = (
-/obj/effect/floor_decal/techfloor{
- dir = 10
- },
-/obj/structure/closet,
-/obj/random/tool,
-/obj/random/toolbox,
-/obj/random/powercell,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/action_figure,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"acw" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"acx" = (
-/obj/structure/catwalk,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"acy" = (
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"acz" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"acA" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/mining)
-"acB" = (
-/obj/structure/closet/crate,
-/obj/random/medical/lite,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"acC" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"acD" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/outside/outside2)
-"acE" = (
-/obj/machinery/door/firedoor/glass,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"acF" = (
-/turf/simulated/wall/r_wall,
-/area/rnd/rdoffice)
-"acG" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/maintenance/lower/south)
-"acH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/crate,
-/obj/random/medical/lite,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/cargo,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"acI" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"acJ" = (
-/obj/structure/catwalk,
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"acK" = (
-/turf/simulated/floor/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"acL" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"acM" = (
-/obj/machinery/door/firedoor/glass,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"acN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/solitary)
-"acO" = (
-/obj/structure/sign/nanotrasen,
-/turf/simulated/wall,
-/area/tether/surfacebase/public_garden_two)
-"acP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/crate,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/cargo,
-/obj/random/junk,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"acQ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"acR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/mining)
-"acS" = (
-/obj/structure/catwalk,
-/obj/machinery/status_display{
- pixel_y = 30
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"acT" = (
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"acU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"acV" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"acW" = (
-/turf/simulated/mineral,
-/area/maintenance/lower/north)
-"acX" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"acY" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"acZ" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange{
- dir = 5;
- icon_state = "corner_white"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/cryopod{
- dir = 4
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/computer/cryopod{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/solitary)
-"ada" = (
-/obj/machinery/cryopod{
- dir = 4
- },
-/obj/machinery/computer/cryopod{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"adb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"add" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/random/junk,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"ade" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/multi_tile/metal/mait{
- dir = 1;
- name = "Maintenance Access"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/mining)
-"adf" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"adg" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"adh" = (
-/obj/structure/catwalk,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"adi" = (
-/obj/structure/catwalk,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"adj" = (
-/obj/structure/catwalk,
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"adk" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adl" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adm" = (
-/obj/effect/floor_decal/techfloor/hole{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adn" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"ado" = (
-/obj/effect/floor_decal/techfloor/hole{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adp" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/lattice,
-/obj/structure/cable{
- icon_state = "32-2"
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/open,
-/area/maintenance/lower/north)
-"adq" = (
-/obj/machinery/door/airlock/maintenance/engi{
- name = "Atmospherics";
- req_access = list(24)
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "atmoslockdown";
- layer = 1;
- name = "Atmospherics Lockdown";
- opacity = 0;
- open_layer = 1
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/engineering/atmos)
-"adr" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"ads" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"adt" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"adu" = (
-/turf/simulated/wall,
-/area/maintenance/lower/bar)
-"adv" = (
-/obj/structure/stairs/south,
-/turf/simulated/floor/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"adw" = (
-/obj/item/weapon/pickaxe/hand,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"adx" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"ady" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adz" = (
-/obj/structure/railing,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adA" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adB" = (
-/obj/structure/railing,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adC" = (
-/obj/structure/railing,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adD" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adE" = (
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = 21
- },
-/obj/machinery/alarm{
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/machinery/computer/security/xenobio,
-/obj/machinery/camera/network/research/xenobio,
-/turf/simulated/floor/tiled/white,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"adF" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen5";
- name = "Pen 5 Containment";
- pixel_x = -20;
- pixel_y = -8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen3";
- name = "Pen 3 Containment";
- pixel_x = -20;
- pixel_y = 8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiodiv3";
- name = "Divider 3 Blast Doors";
- pixel_x = -25;
- pixel_y = 0;
- req_access = list(55)
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -35;
- pixel_y = 0
- },
-/obj/machinery/camera/network/research/xenobio{
- dir = 4;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"adG" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"adH" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"adI" = (
-/obj/structure/catwalk,
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"adJ" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"adK" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"adL" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"adM" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"adN" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/closet/crate,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/cargo,
-/obj/random/drinkbottle,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"adO" = (
-/obj/structure/catwalk,
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"adP" = (
-/obj/machinery/computer/mecha,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"adQ" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/glasses/welding,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"adR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"adS" = (
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/maintenance/lower/north)
-"adT" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"adU" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"adV" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"adW" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"adX" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiodiv6";
- name = "Divider 6 Blast Doors";
- pixel_x = 38;
- pixel_y = 0;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen6";
- name = "Pen 6 Containment";
- pixel_x = 30;
- pixel_y = 8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen8";
- name = "Pen 8 Containment";
- pixel_x = 30;
- pixel_y = -8;
- req_access = list(55)
- },
-/obj/machinery/camera/network/research/xenobio{
- dir = 9;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"adY" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/surface_two_hall)
-"adZ" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"aea" = (
-/turf/simulated/mineral/floor/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"aeb" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 8
- },
-/obj/structure/table/standard,
-/obj/item/device/radio/intercom/department/medbay{
- dir = 8;
- pixel_x = -24
- },
-/obj/item/weapon/storage/firstaid/surgery,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aec" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aed" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aee" = (
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aef" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aeg" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"aeh" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/toy/figure/ninja,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"aei" = (
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aej" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"aek" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"ael" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"aem" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 8
- },
-/obj/structure/table/standard,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/obj/item/device/healthanalyzer,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aen" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "atrium"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aeo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"aep" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"aeq" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"aer" = (
-/obj/structure/table/rack,
-/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/obj/item/clothing/suit/space/void/medical/emt,
-/obj/item/clothing/suit/space/void/medical/emt,
-/obj/item/clothing/head/helmet/space/void/medical/emt,
-/obj/item/clothing/head/helmet/space/void/medical/emt,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/paramed)
-"aes" = (
+/area/tether/surfacebase/medical/resleeving)
+"aeb" = (
/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
+ dir = 1
},
/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/body_scanconsole{
dir = 4
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/table/rack,
-/obj/item/weapon/storage/belt/medical,
-/obj/item/weapon/storage/belt/medical,
-/obj/item/weapon/storage/belt/medical,
-/obj/item/weapon/storage/belt/medical,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aet" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"aeu" = (
-/obj/effect/floor_decal/techfloor{
- dir = 5
- },
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/structure/table/standard,
-/obj/random/soap,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/resleeving)
-"aev" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 4
- },
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"aew" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aex" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aey" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aez" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techmaint,
-/area/maintenance/lower/bar)
-"aeA" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techmaint,
-/area/maintenance/lower/bar)
-"aeB" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/remains/human,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"aeC" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/landmark{
- name = "maint_pred"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aeD" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aeE" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aeF" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/random/junk,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aeG" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aeH" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/north)
-"aeI" = (
-/obj/machinery/door/window/eastleft{
- dir = 8;
- icon_state = "left";
- name = "Janitorial Desk"
- },
-/obj/machinery/door/window/eastleft{
- dir = 4;
- icon_state = "left";
- name = "Janitorial Desk";
- req_access = list(26)
- },
-/obj/structure/table/reinforced,
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "janitor_blast";
- layer = 3.3;
- name = "Janitorial Shutters"
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/simulated/floor/tiled,
-/area/janitor)
-"aeJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/purple/border{
- dir = 4
- },
-/obj/structure/table/steel,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/storage/box/mousetraps,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/simulated/floor/tiled,
-/area/janitor)
-"aeK" = (
-/obj/structure/grille,
-/obj/structure/railing,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aeL" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aeM" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/device/multitool,
-/obj/item/device/multitool,
-/obj/structure/table/rack,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aeN" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aeO" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"aeP" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 1
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aeQ" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/techfloor/orange{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aeR" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/techfloor/orange{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"aeS" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/orange{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"aeT" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techmaint,
-/area/maintenance/lower/bar)
-"aeU" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/pen/crayon/red,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"aeV" = (
-/obj/effect/floor_decal/techfloor{
+/obj/effect/floor_decal/corner_steel_grid{
dir = 10
},
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aeW" = (
-/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/hole,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aeX" = (
-/obj/effect/floor_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aeY" = (
-/obj/effect/floor_decal/techfloor{
- dir = 6
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aec" = (
+/obj/structure/table/glass,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aeZ" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor{
+/obj/item/weapon/clipboard,
+/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"afa" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_c)
+"aed" = (
+/obj/structure/window/reinforced,
+/obj/machinery/dnaforensics,
+/obj/machinery/light{
+ dir = 8
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aee" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aef" = (
+/obj/machinery/door/window/eastright{
+ dir = 2
},
-/obj/machinery/light/small{
- dir = 8;
- pixel_x = 0
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aeg" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/swabs{
+ layer = 5
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afb" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28;
- req_access = list(67)
- },
-/obj/structure/cable/green,
-/obj/structure/table/rack,
-/obj/item/device/gps/medical{
- pixel_y = 3
- },
-/obj/item/device/gps/medical{
- pixel_x = -3
- },
-/obj/item/device/radio{
- pixel_x = 2;
- pixel_y = 0
- },
-/obj/item/device/radio{
- pixel_x = -1;
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/blue{
pixel_y = -3
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"afc" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- id_tag = null;
- name = "Resleeving Backroom";
- req_access = list(0);
- req_one_access = list(0)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/weapon/folder/yellow{
+ pixel_y = -5
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"afd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 4;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/tether/surfacebase/security/detective)
+"aeh" = (
+/obj/machinery/door/window/eastright{
+ dir = 2
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"afe" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aff" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afj" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/newscaster{
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/status_display{
- pixel_y = 30
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afl" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afm" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afn" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afo" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afp" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afq" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/alarm{
- alarm_id = null;
- breach_detection = 0;
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/evidence)
-"afr" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air/airlock{
- start_pressure = 4559.63
- },
-/turf/simulated/floor/tiled/dark,
-/area/tcommsat/computer)
-"afs" = (
-/obj/machinery/door/airlock/maintenance/sec{
- name = "Riot Control";
- req_access = list();
- req_one_access = list(63,24)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 4;
- icon_state = "intact"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aft" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afu" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afv" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"afw" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/command{
- req_access = list(19)
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- dir = 1;
+ d1 = 1;
+ d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aei" = (
+/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/blast/regular{
- closed_layer = 10;
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "bridge blast";
- layer = 1;
- name = "Bridge Blast Doors";
- opacity = 0;
- open_layer = 1
- },
-/turf/simulated/floor,
-/area/bridge_hallway)
-"afx" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"afy" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/orange{
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aej" = (
+/obj/structure/window/reinforced,
+/obj/structure/filingcabinet,
+/obj/machinery/light{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"afz" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techmaint,
-/area/maintenance/lower/bar)
-"afA" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/hole{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"afB" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afC" = (
-/obj/machinery/door/airlock/security{
- name = "Observation";
- req_one_access = list(63,4)
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"afD" = (
-/obj/machinery/door/airlock/maintenance/sec{
- name = "Riot Control";
- req_access = list();
- req_one_access = list(63,4)
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 8
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/interrogation)
-"afE" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aek" = (
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
req_one_access = list(38,63)
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/evidence)
-"afF" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afG" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afH" = (
-/obj/item/device/radio/beacon,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afI" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"afK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"afL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afM" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/disposalpipe/down,
-/obj/effect/catwalk_plated/dark,
-/turf/simulated/open,
-/area/maintenance/lower/bar)
-"afO" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/maintenance/lower/bar)
-"afP" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/north)
-"afQ" = (
-/obj/machinery/computer/robotics,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"afR" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"afS" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"afT" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/hole/right,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"afU" = (
-/obj/effect/floor_decal/techfloor{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/north)
-"afV" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afX" = (
-/obj/effect/floor_decal/borderfloor/corner,
-/obj/effect/floor_decal/corner/green/bordercorner,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afY" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/green/border,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/basic,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"afZ" = (
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"aga" = (
-/obj/machinery/camera/network/civilian{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"agb" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"agc" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"agd" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"age" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/north_staires_two)
-"agf" = (
-/obj/structure/morgue,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"agg" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"agh" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"agi" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/open,
-/area/tether/surfacebase/surface_two_hall)
-"agj" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/open,
-/area/tether/surfacebase/surface_two_hall)
-"agk" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/green/border,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"agl" = (
+"ael" = (
/turf/simulated/wall/r_wall,
-/area/maintenance/commandmaint)
-"agm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"agn" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/orange{
+/area/tether/surfacebase/outside/outside2)
+"aem" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/patient_a)
+"aen" = (
+/obj/machinery/vending/loadout/uniform,
+/obj/machinery/camera/network/medbay{
dir = 10
},
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ago" = (
-/obj/effect/floor_decal/techfloor/orange,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"agp" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/techfloor/orange,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"agq" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/techfloor/orange,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"agr" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/orange{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ags" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"agt" = (
-/turf/simulated/open,
-/area/tether/surfacebase/north_staires_two)
-"agu" = (
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor,
-/area/tether/surfacebase/north_staires_two)
-"agv" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/open,
-/area/tether/surfacebase/surface_two_hall)
-"agw" = (
-/turf/simulated/open,
-/area/tether/surfacebase/surface_two_hall)
-"agx" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/open,
-/area/tether/surfacebase/surface_two_hall)
-"agy" = (
-/obj/effect/landmark/start{
- name = "Chaplain"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"agz" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"agA" = (
-/obj/structure/grille,
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"agB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"agC" = (
-/obj/structure/catwalk,
-/obj/structure/ladder/up,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"agD" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/command{
- req_access = list(19)
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/blast/regular{
- closed_layer = 10;
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "bridge blast";
- layer = 1;
- name = "Bridge Blast Doors";
- opacity = 0;
- open_layer = 1
- },
-/turf/simulated/floor,
-/area/bridge_hallway)
-"agE" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/maintenance/lower/bar)
-"agF" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/hole/right{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"agG" = (
-/obj/machinery/light/small{
- dir = 8;
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"agH" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"agI" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/cutout,
-/turf/simulated/floor/tiled/techmaint,
-/area/maintenance/lower/bar)
-"agJ" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing,
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techmaint,
-/area/maintenance/lower/bar)
-"agK" = (
-/obj/item/clothing/gloves/boxing/blue,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"agL" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"agM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"agN" = (
-/obj/random/obstruction,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"agO" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"agP" = (
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- icon_state = "extinguisher_closed";
- pixel_x = 30
- },
-/turf/simulated/open,
-/area/tether/surfacebase/north_staires_two)
-"agQ" = (
-/obj/structure/stairs/north,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"agR" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"agS" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/surface_two_hall)
-"agT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"agU" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"agV" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"agW" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/bar)
-"agX" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/machinery/door/airlock/glass_atmos{
- name = "Atmospherics";
- req_access = list(24)
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "atmoslockdown";
- layer = 1;
- name = "Atmospherics Lockdown";
- opacity = 0;
- open_layer = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"agY" = (
-/obj/structure/sign/department/chapel,
-/turf/simulated/wall,
-/area/chapel/main)
-"agZ" = (
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"aha" = (
-/obj/effect/decal/cleanable/blood,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"ahb" = (
-/obj/random/obstruction,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"ahc" = (
-/obj/structure/sign/directions/evac{
- dir = 1
- },
-/turf/simulated/wall,
-/area/tether/surfacebase/north_staires_two)
-"ahd" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
-"ahe" = (
-/obj/structure/sign/directions/medical{
- dir = 1;
- icon_state = "direction_med";
- pixel_y = 8
- },
-/obj/structure/sign/directions/science{
- dir = 1;
- icon_state = "direction_sci";
- pixel_y = 3
- },
-/obj/structure/sign/directions/security{
- dir = 1;
- icon_state = "direction_sec";
- pixel_y = -4
- },
-/obj/structure/sign/directions/engineering{
- dir = 4;
- icon_state = "direction_eng";
- pixel_y = -10
- },
-/turf/simulated/wall,
-/area/tether/surfacebase/north_staires_two)
-"ahf" = (
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"ahg" = (
-/obj/structure/sign/warning/caution,
-/turf/simulated/wall,
-/area/tether/surfacebase/surface_two_hall)
-"ahh" = (
-/obj/machinery/suit_cycler/medical,
-/obj/machinery/camera/network/medbay{
- dir = 4;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/paramed)
-"ahi" = (
/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
+ dir = 6
},
/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/structure/bed/chair/wheelchair{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"ahj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/red,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/glass_atmos{
- name = "Atmospherics";
- req_access = list(24)
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- closed_layer = 10;
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "atmoslockdown";
- layer = 1;
- name = "Atmospherics Lockdown";
- opacity = 0;
- open_layer = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"ahk" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"ahl" = (
-/obj/structure/catwalk,
-/obj/structure/closet,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/random/maintenance/research,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/tool,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"ahm" = (
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"ahn" = (
-/obj/item/clothing/gloves/boxing/yellow,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"aho" = (
-/turf/simulated/mineral,
-/area/tether/surfacebase/fish_farm)
-"ahp" = (
-/obj/machinery/floodlight,
-/turf/simulated/floor/beach/sand/desert,
-/area/tether/surfacebase/fish_farm)
-"ahq" = (
-/turf/simulated/floor/beach/sand/desert,
-/area/tether/surfacebase/fish_farm)
-"ahr" = (
-/turf/simulated/floor/water/indoors,
-/area/tether/surfacebase/fish_farm)
-"ahs" = (
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
-"aht" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 1
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 1
- },
-/area/tether/surfacebase/surface_two_hall)
-"ahu" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ahv" = (
-/obj/effect/floor_decal/techfloor{
- dir = 9
- },
-/obj/structure/railing,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ahw" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/floor_decal/rust/steel_decals_rusted2,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/structure/railing,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ahx" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ahy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"ahz" = (
-/obj/effect/floor_decal/techfloor{
- dir = 5
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ahA" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/multi_tile/metal/mait{
- name = "Maintenance Access"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ahB" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ahC" = (
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
-"ahD" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/fish_farm)
-"ahE" = (
-/obj/structure/table/rack,
-/obj/item/weapon/material/fishing_rod/modern/cheap,
-/obj/item/weapon/material/fishing_rod/modern/cheap,
-/obj/item/weapon/material/fishing_rod/modern/cheap,
-/obj/item/weapon/material/fishing_rod/modern/cheap,
-/obj/item/weapon/material/fishing_rod/modern/cheap,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"ahF" = (
-/obj/structure/table/rack,
-/obj/item/stack/cable_coil/pink,
-/obj/item/stack/cable_coil/pink,
-/obj/item/stack/cable_coil/pink,
-/obj/item/stack/cable_coil/pink,
-/obj/item/stack/cable_coil/pink,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"ahG" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"ahH" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"ahI" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/surface_two_hall)
-"ahJ" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 1;
- name = "Atrium Second Floor"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals_central1,
-/turf/simulated/floor/tiled/monofloor,
-/area/tether/surfacebase/surface_two_hall)
-"ahK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 6
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ahL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"aeo" = (
+/obj/structure/bed/psych{
+ name = "couch"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ahM" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 4
- },
-/obj/structure/cable{
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"aep" = (
+/obj/structure/cable/green{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/window/basic{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ahN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/machinery/computer/guestpass{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/medical/cmo)
+"aeq" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/alarm{
dir = 8;
pixel_x = 25
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ahO" = (
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"aer" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/tether/surfacebase/medical/centralstairwell)
+"aes" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aet" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aeu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_c)
+"aev" = (
+/obj/structure/table/glass,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/item/weapon/clipboard,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_a)
+"aew" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_a)
+"aex" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 24
+ },
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
-/obj/effect/floor_decal/corner/paleblue/border{
+/obj/effect/floor_decal/corner/pink/border{
dir = 4
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"ahP" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ahQ" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"ahR" = (
-/obj/effect/floor_decal/techfloor{
- dir = 10
- },
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ahS" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"ahT" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"ahU" = (
-/obj/machinery/power/apc{
+/area/tether/surfacebase/medical/patient_a)
+"aey" = (
+/obj/structure/table/glass,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/item/weapon/clipboard,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_b)
+"aez" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_b)
+"aeA" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/item/device/radio/intercom/department/medbay{
dir = 4;
- name = "east bump";
pixel_x = 24
},
-/obj/structure/cable{
- icon_state = "0-8"
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"ahV" = (
-/obj/machinery/door/airlock/maintenance/common{
- name = "Morgue Access"
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
},
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ahW" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "chaplainpet"
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_b)
+"aeB" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 24
},
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"ahX" = (
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
},
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ahY" = (
-/obj/structure/sign/warning/caution{
- name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
},
-/turf/simulated/wall,
-/area/tether/surfacebase/surface_two_hall)
-"ahZ" = (
-/obj/machinery/light/small{
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_c)
+"aeC" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1
+ },
+/obj/item/device/radio/intercom/department/medbay{
dir = 8;
- pixel_x = 0
+ pixel_x = -24
},
-/obj/effect/floor_decal/borderfloor{
+/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
-/obj/effect/floor_decal/borderfloor/corner2{
+/obj/effect/floor_decal/corner/pink/border{
dir = 8
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aia" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 4
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aib" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aic" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aeD" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aeE" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/clipboard,
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aeF" = (
+/obj/structure/catwalk,
/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"aeG" = (
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"aeH" = (
+/obj/structure/closet{
+ name = "Forensics Gear"
+ },
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/storage/box/evidence,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/briefcase/crimekit,
+/obj/item/weapon/storage/briefcase/crimekit,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aeI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aeJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aeK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"aid" = (
-/obj/effect/floor_decal/techfloor/corner,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"aie" = (
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"aif" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"aig" = (
-/obj/structure/ladder{
- pixel_y = 16
- },
-/obj/effect/floor_decal/industrial/outline/blue,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"aih" = (
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"aii" = (
-/turf/simulated/wall,
-/area/maintenance/lower/rnd)
-"aij" = (
-/mob/living/simple_mob/animal/passive/fish/bass,
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
-"aik" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ail" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aim" = (
-/obj/random/trash_pile,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ain" = (
-/obj/structure/cable/green{
- d1 = 32;
- d2 = 4;
- icon_state = "32-4"
- },
-/obj/structure/lattice,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
- },
-/turf/simulated/open,
-/area/maintenance/lower/bar)
-"aio" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"aip" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/corner,
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/techfloor{
- dir = 1;
- icon_state = "techfloororange_edges"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"aiq" = (
-/obj/effect/floor_decal/techfloor{
- dir = 6
- },
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"air" = (
-/obj/machinery/light_switch{
- dir = 4;
- on = 0;
- pixel_x = -24;
- pixel_y = 20
- },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aeL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 9
},
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"ais" = (
-/obj/structure/cable/green{
- d1 = 16;
- d2 = 0;
- icon_state = "16-0"
- },
-/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
- },
-/obj/structure/disposalpipe/up{
- dir = 8
- },
-/obj/structure/cable/green{
- d2 = 8;
- dir = 2;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
- dir = 8;
- icon_state = "up-scrubbers"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"ait" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/simulated/floor/grass,
-/area/chapel/main)
-"aiu" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 1;
- name = "Chapel Access"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"aiv" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/grass,
-/area/chapel/main)
-"aiw" = (
-/obj/machinery/computer/aifixer,
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"aix" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aiy" = (
-/obj/structure/cable{
icon_state = "4-8"
},
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"aiz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"aiA" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"aiB" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aiC" = (
-/obj/item/device/radio/beacon,
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aiD" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"aiE" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aiF" = (
-/obj/structure/sign/nosmoking_1,
-/turf/simulated/wall,
-/area/tether/surfacebase/surface_two_hall)
-"aiG" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/grass,
-/area/chapel/main)
-"aiH" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"aiI" = (
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/structure/catwalk,
-/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aeM" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/bar)
-"aiJ" = (
-/obj/machinery/door/airlock{
- name = "Chapel Morgue";
- req_one_access = list(6,27)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"aiK" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/simulated/floor/grass,
-/area/chapel/main)
-"aiL" = (
-/turf/simulated/floor/grass,
-/area/chapel/main)
-"aiM" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"aiN" = (
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- id = "chapel_obs";
- layer = 3.3;
- name = "Chapel Observation Shutters";
- pixel_x = -6;
- pixel_y = 29;
- req_access = list(27)
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aiO" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aiP" = (
-/obj/structure/cable{
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aiQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4;
- icon_state = "warning"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aiR" = (
-/obj/structure/lattice,
-/obj/structure/disposalpipe/down{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/open,
-/area/maintenance/lower/rnd)
-"aiS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8;
- icon_state = "warning"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aiT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aiU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aiV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aiW" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/green/border,
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- name = "Command Meeting Room";
- sortType = "Command Meeting Room"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aiX" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"aiY" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"aiZ" = (
-/mob/living/simple_mob/animal/passive/snake/noodle,
-/turf/simulated/floor/grass,
-/area/chapel/main)
-"aja" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ajb" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/grass,
-/area/chapel/main)
-"ajc" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aeN" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "detdoor";
+ name = "Forensics Lab";
+ req_access = list(4)
},
/obj/machinery/door/firedoor/glass,
-/obj/structure/catwalk,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/bar)
-"ajd" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/catwalk,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/surface_two_hall)
-"aje" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"aeO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajh" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aji" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajj" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajk" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aeP" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajl" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/surface_two_hall)
-"ajm" = (
/obj/effect/floor_decal/borderfloor{
- dir = 8
+ dir = 1
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ajn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ajo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aeQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"ajp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"ajq" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"ajr" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aeR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aeS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/machinery/vending/coffee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aeT" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/security/outfitting)
+"aeU" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/outfitting)
+"aeV" = (
+/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/polarized/full{
- id = "chaplainwindow"
- },
+/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/chapel/main)
-"ajs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Chapel"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"ajt" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"aju" = (
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/lower/bar)
-"ajv" = (
-/obj/structure/table/standard{
- name = "plastic table frame"
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"ajw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajx" = (
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajy" = (
-/turf/simulated/mineral,
-/area/maintenance/lower/rnd)
-"ajz" = (
-/obj/random/trash_pile,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajA" = (
-/obj/structure/closet/crate,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/research,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ajC" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ajD" = (
-/obj/structure/bed/chair{
dir = 1
},
-/obj/machinery/alarm{
- alarm_id = "anomaly_testing";
- breach_detection = 0;
- dir = 8;
- frequency = 1439;
- pixel_x = 22;
- pixel_y = 0;
- report_danger_level = 0
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"ajE" = (
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"ajF" = (
-/obj/structure/table/standard{
- name = "plastic table frame"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 5
- },
-/obj/machinery/camera/network/civilian{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"ajG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/remains/human,
-/obj/random/action_figure,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajH" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"ajI" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ajJ" = (
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"ajK" = (
-/obj/structure/bed/chair,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/camera/network/security{
- dir = 5;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"ajL" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/machinery/light/small{
- dir = 8
- },
-/mob/living/simple_mob/animal/passive/mouse/white{
- desc = "Noodle's best friend! Soft and white, and seemingly strangely intelligent.";
- name = "Apple"
- },
-/turf/simulated/floor/grass,
-/area/chapel/main)
-"ajM" = (
-/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"ajN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ajO" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/storage/box/snakesnackbox,
-/turf/simulated/floor/grass,
-/area/chapel/main)
-"ajP" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"ajQ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/structure/closet/hydrant{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ajR" = (
-/obj/machinery/light/small{
- dir = 8;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"ajS" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ajT" = (
-/turf/simulated/wall,
-/area/chapel/chapel_morgue)
-"ajU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"ajV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"ajW" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- id = "chapel_obs";
- layer = 3.3;
- name = "Chapel Observation Shutters";
- pixel_x = 6;
- pixel_y = -29;
- req_access = list(27)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"ajX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"ajY" = (
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"ajZ" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"aka" = (
-/turf/simulated/wall,
-/area/maintenance/asmaint2)
-"akb" = (
-/turf/simulated/mineral,
-/area/maintenance/asmaint2)
-"akc" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akd" = (
-/obj/structure/table/bench/steel,
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lime/bordercorner{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"ake" = (
-/obj/structure/table/bench/steel,
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lime/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akf" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akg" = (
-/obj/machinery/camera/network/security{
- dir = 5;
- icon_state = "camera"
- },
-/obj/machinery/vending/hydronutrients/brig{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"akh" = (
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"aki" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lime/bordercorner{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akj" = (
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akk" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lime/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akl" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 5
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
},
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akm" = (
-/obj/structure/lattice,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 32;
- d2 = 2;
- icon_state = "32-2"
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
-/obj/machinery/atmospherics/pipe/zpipe/down/supply,
-/turf/simulated/open,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"akn" = (
/turf/simulated/floor/plating,
-/area/maintenance/lower/public_garden_maintenence/upper)
-"ako" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/area/tether/surfacebase/security/outfitting)
+"aeW" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/security/outfitting/storage)
+"aeX" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/security/armory)
+"aeY" = (
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access = list(6)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"aeZ" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/patient_b)
+"afa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"afb" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_c)
+"afc" = (
+/obj/structure/closet/secure_closet/CMO,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/device/flashlight/pen,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/item/weapon/cmo_disk_holder,
+/obj/item/weapon/storage/secure/briefcase/ml3m_pack_cmo,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"afd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -27;
+ pixel_y = -28
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"afe" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"aff" = (
+/obj/structure/bookcase,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/medical/cmo)
+"afg" = (
+/obj/machinery/door/airlock/medical{
+ id_tag = "SurfMedicalResleeving";
+ name = "Resleeving Lab";
+ req_access = list(5)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"afh" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/button/windowtint{
+ id = "patient_room_a";
+ pixel_x = -3;
+ pixel_y = -22
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 6;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_a)
+"afi" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_c)
+"afj" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/pink/bordercorner2,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_a)
+"afk" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/pink/bordercorner2,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 6;
+ pixel_y = -22
+ },
+/obj/machinery/button/windowtint{
+ id = "patient_room_c";
+ pixel_x = -3;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_c)
+"afl" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_b)
+"afm" = (
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/button/windowtint{
+ id = "exam_room";
+ pixel_x = -8;
+ pixel_y = -28
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"afn" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/pink/bordercorner2,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 6;
+ pixel_y = -22
+ },
+/obj/machinery/button/windowtint{
+ id = "patient_room_b";
+ pixel_x = -3;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_b)
+"afo" = (
+/obj/structure/bed/chair/wheelchair{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"afp" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"afq" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"afr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"afs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"aft" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"afu" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/obj/structure/morgue,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"afv" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"afw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"afx" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"afy" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"afz" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"afA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"afB" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"afC" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"afD" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"afE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"afF" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"afG" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/vending/fitness{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"afH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/item/device/radio/intercom/department/security{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"afI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"afJ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/table/steel,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 32
+ },
+/obj/item/device/retail_scanner/security,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"afK" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 30
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 20
+ },
+/obj/item/device/holowarrant,
+/obj/item/device/holowarrant,
+/obj/item/device/holowarrant,
+/obj/item/device/holowarrant,
+/obj/item/device/retail_scanner/security,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"afL" = (
+/obj/structure/closet/wardrobe/red,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"afM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/structure/closet/wardrobe/red,
+/obj/machinery/camera/network/security,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"afN" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"afO" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/armor/vest/wolftaur{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/obj/item/clothing/suit/armor/vest/wolftaur{
+ pixel_x = -8;
+ pixel_y = -4
+ },
+/obj/item/weapon/storage/lockbox,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"afP" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"afQ" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"afR" = (
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"afS" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"afT" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = -1;
+ pixel_y = -11
+ },
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"afU" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"afV" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"afW" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"afX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "patient_room_c"
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/patient_c)
+"afY" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"afZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aga" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/obj/structure/cable/green,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"agb" = (
+/obj/machinery/door/airlock/command{
+ id_tag = "cmodoor";
+ name = "Chief Medical Officer";
+ req_access = list(40);
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/cmo)
+"agc" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"agd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"age" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"agf" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"agg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room A";
+ req_one_access = list()
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_a)
+"agh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "patient_room_a"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/patient_a)
+"agi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room C";
+ req_one_access = list()
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_c)
+"agj" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"agk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "patient_room_b"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/patient_b)
+"agl" = (
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"agm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room B";
+ req_one_access = list()
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/patient_b)
+"agn" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/examroom)
+"ago" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"agp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "exam_room"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/examroom)
+"agq" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"agr" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/detective/officea)
+"ags" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_security/polarized{
+ id_tag = "detdoor";
+ id_tint = "detoffice1";
+ name = "Forensics Lab";
+ req_access = list(4)
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"agt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_security/polarized{
+ id_tag = "detdoor";
+ id_tint = "detoffice0";
+ name = "Forensics Lab";
+ req_access = list(4)
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/detective)
+"agu" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/detective/officeb)
+"agv" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"agw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"agx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"agy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/machinery/vending/snack{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"agz" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/nifsofts_security,
+/obj/item/weapon/hand_labeler,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"agA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"agB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"agC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"agD" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"agE" = (
+/obj/machinery/door/airlock/security{
+ name = "Equipment Storage";
+ req_access = newlist()
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"agF" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = -26
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"agG" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"agH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"agI" = (
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Armory Access";
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"agJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"agK" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"agL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/surface_two_hall)
+"agM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"agN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"agO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"agP" = (
+/obj/structure/railing,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/open,
+/area/tether/surfacebase/medical/centralstairwell)
+"agQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"agR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"agS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"agT" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"agU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"agV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"agW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"agX" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"agY" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"agZ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/computer/guestpass{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/door/firedoor/glass/hidden,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aha" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"ahb" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"ahc" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/resleeving)
+"ahd" = (
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ahe" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ahf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ahg" = (
+/obj/structure/closet/wardrobe/detective,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ahh" = (
+/obj/structure/closet/wardrobe/detective,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ahi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ahj" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ahk" = (
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ahl" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"ahm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -5137,8 +4642,3779 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
+/area/tether/surfacebase/security/middlehall)
+"ahn" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/middlehall)
+"aho" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/device/holowarrant,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"ahp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"ahq" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/structure/table/bench/steel,
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"ahr" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/structure/table/bench/steel,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"ahs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"aht" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/item/device/holowarrant,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"ahu" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/glasses/hud/security,
+/obj/item/clothing/glasses/hud/security,
+/obj/item/clothing/glasses/hud/security,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = -8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"ahv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"ahw" = (
+/obj/machinery/vending/security,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"ahx" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = 5;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"ahy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"ahz" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/projectile/shotgun/pump{
+ ammo_type = /obj/item/ammo_casing/a12g/pellet;
+ pixel_x = 2;
+ pixel_y = -6
+ },
+/obj/item/weapon/gun/projectile/shotgun/pump{
+ ammo_type = /obj/item/ammo_casing/a12g/pellet;
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"ahA" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/shotgunshells{
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/weapon/storage/box/shotgunshells{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/shotgunshells{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"ahB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ahC" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ahD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"ahE" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "CMO Office";
+ sortType = "CMO Office"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"ahF" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"ahG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"ahH" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "CMO Office";
+ sortType = "CMO Office"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ahI" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Medical Breakroom";
+ sortType = "Medical Breakroom"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ahJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"ahK" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"ahL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ahM" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ahN" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/recoveryward)
+"ahO" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ahP" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ahQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"ahR" = (
+/obj/machinery/computer/security/wooden_tv,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ahS" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ahT" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/device/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ahU" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/device/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ahV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ahW" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ahX" = (
+/obj/machinery/computer/security/wooden_tv,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ahY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"ahZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aia" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aib" = (
+/obj/structure/stairs/east,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aic" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/device/holowarrant,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"aid" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"aie" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"aif" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"aig" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"aih" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/item/device/holowarrant,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"aii" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/holowarrants,
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/evidence,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"aij" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"aik" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"ail" = (
+/obj/structure/table/steel,
+/obj/item/ammo_magazine/m45/rubber{
+ pixel_y = 9
+ },
+/obj/item/ammo_magazine/m45/rubber{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/ammo_magazine/m45/rubber{
+ pixel_y = -3
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -25;
+ pixel_y = 2
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -25;
+ pixel_y = -9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aim" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"ain" = (
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Armory Access";
+ req_access = list(3)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aio" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aip" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aiq" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/substation/medsec)
+"air" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"ais" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"ait" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 6
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 1
+ },
+/obj/item/weapon/cane,
+/obj/structure/table/glass,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aiu" = (
+/obj/machinery/door/airlock/medical{
+ name = "Exam Room";
+ req_one_access = list()
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/examroom)
+"aiv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"aiw" = (
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access = list(6)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"aix" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aiy" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aiz" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aiA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"aiB" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aiC" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aiD" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aiE" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"aiF" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aiG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralstairwell)
+"aiH" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aiI" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aiJ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"aiK" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"aiL" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aiM" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aiN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aiO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aiP" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"aiQ" = (
+/obj/structure/table/standard,
+/obj/random/soap,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 5;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/brig/bathroom)
+"aiR" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"aiS" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ desc = "Looks like it's on MTV. Now you can't blame that demi-cowgirl for working her money maker. I wonder what else is on?";
+ icon_state = "frame";
+ pixel_x = 16;
+ pixel_y = 64
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aiT" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Medbay Breakroom";
+ req_access = list(5);
+ req_one_access = list(5)
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay recovery room door.";
+ id = "SurfMedicalResleevingMaintExit";
+ name = "Exit Button";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"aiU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aiV" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/resleeving)
+"aiW" = (
+/obj/structure/morgue,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"aiX" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"aiY" = (
+/obj/structure/table/woodentable,
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/weapon/handcuffs,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"aiZ" = (
+/obj/structure/bed/chair/office/dark,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/landmark/start{
+ name = "Detective"
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"aja" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ajb" = (
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ajc" = (
+/obj/machinery/camera/network/security{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ajd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"aje" = (
+/obj/structure/bed/chair/office/dark,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start{
+ name = "Detective"
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ajf" = (
+/obj/structure/table/woodentable,
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/weapon/handcuffs,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ajg" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"ajh" = (
+/obj/structure/railing,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aji" = (
+/obj/structure/stairs/east,
+/obj/structure/railing,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"ajj" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/item/device/holowarrant,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"ajk" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -23;
+ pixel_y = -28
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"ajl" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/structure/table/bench/steel,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"ajm" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"ajn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 23;
+ pixel_y = -28
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"ajo" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/structure/closet/secure_closet/security,
+/obj/item/device/holowarrant,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"ajp" = (
+/obj/structure/table/steel,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -3
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 3
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"ajq" = (
+/obj/structure/table/steel,
+/obj/machinery/recharger,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"ajr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"ajs" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/stunshells{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/flashshells{
+ pixel_x = 1
+ },
+/obj/item/weapon/storage/box/beanbags{
+ pixel_x = 4;
+ pixel_y = -5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"ajt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aju" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"ajv" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/gloves/arm_guard/bulletproof,
+/obj/item/clothing/shoes/leg_guard/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/head/helmet/bulletproof,
+/obj/item/clothing/gloves/arm_guard/bulletproof,
+/obj/item/clothing/shoes/leg_guard/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/head/helmet/bulletproof,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"ajw" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/clothing/head/helmet/laserproof,
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/clothing/head/helmet/laserproof,
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"ajx" = (
+/obj/structure/filingcabinet/chestdrawer{
+ desc = "A large drawer filled with autopsy reports.";
+ name = "Autopsy Reports"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"ajy" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"ajz" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"ajA" = (
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"ajB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"ajC" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"ajD" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"ajE" = (
+/turf/simulated/wall,
+/area/maintenance/lower/north)
+"ajF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/breakroom)
+"ajG" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/breakroom)
+"ajH" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"ajI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"ajJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"ajK" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/vending/snack,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"ajL" = (
+/obj/machinery/vending/cola/soft,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"ajM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"ajN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"ajO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"ajP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"ajQ" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Showers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"ajR" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"ajS" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"ajT" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Infirmary Lobby"
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"ajU" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"ajV" = (
+/turf/simulated/wall,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"ajW" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green,
+/obj/machinery/button/windowtint/multitint{
+ id = "detoffice1";
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ajX" = (
+/obj/structure/table/woodentable,
+/obj/random/cigarettes,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ajY" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"ajZ" = (
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officea)
+"aka" = (
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"akb" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"akc" = (
+/obj/structure/table/woodentable,
+/obj/random/cigarettes,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"akd" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green,
+/obj/machinery/button/windowtint/multitint{
+ id = "detoffice0";
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/detective/officeb)
+"ake" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Security Airlock";
+ req_one_access = list(1)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"akf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"akg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Equipment Storage"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"akh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/tether/surfacebase/security/outfitting)
+"aki" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Equipment Storage"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting)
+"akj" = (
+/obj/machinery/door/airlock/security{
+ name = "Armory";
+ req_access = list(3);
+ secured_wires = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/outfitting/storage)
+"akk" = (
+/obj/structure/table/steel,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -6;
+ pixel_y = 3
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -6;
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"akl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"akm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"akn" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"ako" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
"akp" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"akq" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/bathroom)
+"akr" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Medical Breakroom";
+ sortType = "Medical Breakroom"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"aks" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Medbay Airlock";
+ req_access = list(5);
+ req_one_access = list(5)
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"aku" = (
+/obj/structure/table/steel,
+/obj/item/device/sleevemate,
+/obj/item/device/camera{
+ name = "Autopsy Camera";
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"akv" = (
+/obj/structure/bookcase/manuals/medical,
+/obj/item/weapon/book/manual/resleeving,
+/obj/item/weapon/book/manual/stasis,
+/obj/item/weapon/book/manual/medical_diagnostics_manual{
+ pixel_y = 7
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"akw" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ desc = "Looks like it's set to ree-Anur-ntertanment, I wonder what else is on?";
+ icon_state = "frame";
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"akx" = (
+/obj/machinery/vending/fitness,
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"aky" = (
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"akz" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/flora/pottedplant,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"akA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akE" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"akF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akH" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akJ" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akK" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akL" = (
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"akM" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/morgue)
+"akN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"akO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"akP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/centralhall)
+"akQ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/sign/poster{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"akS" = (
+/obj/structure/window/reinforced,
+/obj/machinery/vending/fitness{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akT" = (
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/machinery/vending/coffee{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akU" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akV" = (
+/obj/structure/stairs/west,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akW" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"akX" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/public_garden_two)
+"akY" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall,
+/area/tether/surfacebase/public_garden_two)
+"akZ" = (
+/obj/structure/cable/green{
+ d1 = 32;
+ d2 = 2;
+ icon_state = "32-2"
+ },
+/obj/structure/lattice,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"ala" = (
+/obj/structure/closet/firecloset/full/double,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"alb" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officea)
+"alc" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officea)
+"ald" = (
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officea)
+"ale" = (
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officeb)
+"alf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officeb)
+"alg" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officeb)
+"alh" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officeb)
+"ali" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"alj" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"alk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"all" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"alm" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aln" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"alo" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"alp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"alq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"alr" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"als" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"alt" = (
+/obj/structure/sign/department/armory{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "armoryaccess";
+ name = "Armory Access";
+ pixel_x = 8;
+ pixel_y = 27;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"alu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 8
+ },
+/obj/machinery/door/airlock/security{
+ name = "Armory Storage";
+ secured_wires = 1
+ },
+/obj/machinery/door/blast/regular{
+ id = "armoryaccess";
+ name = "Armory"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"alv" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "scrubber isolation valve"
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/obj/machinery/firealarm{
+ pixel_x = 5;
+ pixel_y = 37
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "armoryaccess";
+ name = "Armory Access";
+ pixel_x = -8;
+ pixel_y = 27;
+ req_access = list(3)
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/armory)
+"alw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"alx" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 30
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aly" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"alz" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"alA" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"alB" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/machinery/portable_atmospherics/canister/empty,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"alC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"alD" = (
+/turf/simulated/wall,
+/area/maintenance/substation/medsec)
+"alE" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"alF" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"alG" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"alH" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"alI" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"alJ" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/bodybags,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"alK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"alL" = (
+/obj/structure/table/steel,
+/obj/item/weapon/surgical/scalpel,
+/obj/item/weapon/autopsy_scanner,
+/obj/item/weapon/surgical/cautery,
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"alM" = (
+/obj/structure/stairs/west,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"alN" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/morgue)
+"alO" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"alP" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"alQ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"alR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"alS" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"alT" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"alU" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/holoplant,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"alV" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"alW" = (
+/obj/machinery/camera/network/medbay{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/vending/nifsoft_shop{
+ pixel_x = -9;
+ pixel_y = -15
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"alX" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"alY" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"alZ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"ama" = (
+/obj/structure/table/glass,
+/obj/random/mre,
+/obj/random/coin,
+/obj/random/maintenance/medical,
+/obj/random/medical,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"amb" = (
+/obj/structure/table/glass,
+/obj/random/contraband,
+/obj/random/firstaid,
+/obj/random/maintenance/medical,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"amc" = (
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"amd" = (
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 5
+ },
+/obj/machinery/camera/network/civilian{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"ame" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"amf" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"amg" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 24;
+ pixel_y = -28
+ },
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officea)
+"amh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officea)
+"ami" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officea)
+"amj" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officeb)
+"amk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officeb)
+"aml" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/junction,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 24;
+ pixel_y = -28
+ },
+/turf/simulated/floor/lino,
+/area/tether/surfacebase/security/detective/officeb)
+"amm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"amn" = (
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"amo" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"amp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"amq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"amr" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"ams" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"amt" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"amu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/security{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"amv" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"amw" = (
+/obj/structure/sign/department/armory{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"amx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 8
+ },
+/obj/machinery/door/airlock/security{
+ name = "Armory Storage";
+ secured_wires = 1
+ },
+/obj/machinery/door/blast/regular{
+ id = "armoryaccess";
+ name = "Armory"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"amy" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "supply isolation valve"
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/armory)
+"amz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"amA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"amB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"amC" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"amD" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/lower/north)
+"amE" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Surfsec Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"amF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"amG" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"amH" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Security Substation";
+ secured_wires = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"amI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ id_tag = "MedicalRecovery";
+ name = "Recovery Room"
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"amJ" = (
+/obj/machinery/door/airlock/maintenance/medical{
+ name = "Medical Maintenance Access"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"amK" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"amL" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"amM" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/table/glass,
+/obj/item/device/universal_translator,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"amN" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/mining)
+"amO" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"amP" = (
+/obj/structure/table/standard,
+/obj/machinery/microwave,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"amQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"amR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/lower/north)
+"amS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/lower/north)
+"amT" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/mining)
+"amU" = (
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 1;
+ name = "Maintenance Access"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/lower/north)
+"amV" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining)
+"amW" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining)
+"amX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"amY" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"amZ" = (
+/obj/structure/railing,
+/obj/effect/floor_decal/rust,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"ana" = (
+/obj/structure/railing,
+/obj/effect/floor_decal/rust,
+/obj/random/cutout,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"anb" = (
+/obj/structure/railing,
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"anc" = (
+/obj/structure/railing,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"and" = (
+/obj/structure/railing,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"ane" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"anf" = (
+/obj/structure/table/bench/steel,
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
@@ -5147,7 +8423,1261 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akq" = (
+"ang" = (
+/obj/structure/table/bench/steel,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"anh" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"ani" = (
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"anj" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"ank" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_security/polarized{
+ id_tag = "detdoor";
+ id_tint = "detoffice1";
+ name = "Detective";
+ req_access = list(4)
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/detective/officea)
+"anl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_security/polarized{
+ id_tag = "detdoor";
+ id_tint = "detoffice0";
+ name = "Detective";
+ req_access = list(4)
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/detective/officeb)
+"anm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"ann" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/security/warden)
+"ano" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "wardenwindows"
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/warden)
+"anp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "warden";
+ layer = 3.1;
+ name = "Warden's Office Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor/eastleft{
+ dir = 1;
+ name = "Warden's Desk";
+ req_access = list(3)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"anq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Warden's Office";
+ req_access = list(3);
+ req_one_access = list()
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"anr" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/security/evastorage)
+"ans" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security EVA";
+ req_one_access = list(1,2,18)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"ant" = (
+/obj/structure/closet/l3closet/security,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"anu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"anv" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/item/gunbox{
+ pixel_y = 6
+ },
+/obj/item/gunbox{
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"anw" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = 7
+ },
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = -5
+ },
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = -5
+ },
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = 7
+ },
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"anx" = (
+/obj/structure/table/standard,
+/obj/structure/bedsheetbin,
+/obj/random/soap,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"any" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"anz" = (
+/obj/structure/railing,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"anA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"anB" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"anC" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"anD" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining)
+"anE" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining)
+"anF" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/table/glass,
+/obj/item/weapon/deck/cards,
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"anG" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"anH" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"anI" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"anJ" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/weapon/storage/box/cups{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/storage/box/donkpockets,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"anK" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"anL" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining)
+"anM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "ward_tint"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/recoveryward)
+"anN" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"anO" = (
+/obj/effect/floor_decal/rust,
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining)
+"anP" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining)
+"anQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"anR" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"anS" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining)
+"anT" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"anU" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/lower/bar)
+"anV" = (
+/obj/effect/floor_decal/rust,
+/obj/item/weapon/pen/crayon/red,
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"anW" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"anX" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 9
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"anY" = (
+/obj/effect/floor_decal/rust,
+/obj/item/clothing/glasses/welding,
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"anZ" = (
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/hole,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"aoa" = (
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"aob" = (
+/obj/item/weapon/pickaxe/hand,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"aoc" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"aod" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/remains/human,
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"aoe" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aof" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aog" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aoh" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aoi" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aoj" = (
+/obj/structure/lattice,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 32;
+ d2 = 2;
+ icon_state = "32-2"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/down/supply,
+/obj/structure/disposalpipe/down,
+/turf/simulated/open,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"aok" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aol" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aom" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aon" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aoo" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aop" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aoq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aor" = (
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 2
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aos" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aot" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aou" = (
+/obj/machinery/computer/prisoner{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"aov" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/button/windowtint/multitint{
+ id = "wardenwindows";
+ pixel_x = -55;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"aow" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 34
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "warden";
+ name = "Office Shutters";
+ pixel_x = -6;
+ pixel_y = 26;
+ req_access = list(3)
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "armoryaccess";
+ name = "Armory Access";
+ pixel_x = 8;
+ pixel_y = 37;
+ req_access = list(3)
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "surfbriglockdown";
+ name = "Brig Lockdown";
+ pixel_x = 7;
+ pixel_y = 27;
+ req_access = list(3)
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"aox" = (
+/obj/machinery/light_switch{
+ pixel_x = 25;
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"aoy" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"aoz" = (
+/obj/machinery/suit_cycler/security,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"aoA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 25;
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"aoB" = (
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"aoC" = (
+/obj/structure/closet/bombcloset/double,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aoD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aoE" = (
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Armory Access";
+ req_access = list(3)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aoF" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aoG" = (
+/obj/effect/floor_decal/rust,
+/obj/item/toy/figure/ninja,
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"aoH" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aoI" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/substation/medsec)
+"aoJ" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"aoK" = (
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"aoL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"aoM" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"aoN" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"aoO" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/hole/right,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"aoP" = (
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"aoQ" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"aoR" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aoS" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"aoT" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/table/standard,
+/obj/item/weapon/storage/mre/random,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"aoU" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing,
+/obj/random/cutout,
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/lower/bar)
+"aoV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aoW" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/curtain/open/privacy,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aoX" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"aoY" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ name = "Maintenance Access"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aoZ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"apa" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"apb" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"apc" = (
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Surfsec";
+ output_attempt = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"apd" = (
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Command Subgrid";
+ name_tag = "Command Subgrid"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"ape" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"apf" = (
+/obj/structure/cable{
+ icon_state = "16-0"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/disposalpipe/up,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"apg" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aph" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"api" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"apj" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"apk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"apl" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"apm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"apn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"apo" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"app" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -5155,7 +9685,7 @@
/obj/effect/floor_decal/corner/lime/bordercorner,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akr" = (
+"apq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -5164,7 +9694,7 @@
/obj/effect/floor_decal/corner/lime/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"aks" = (
+"apr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -5172,7 +9702,7 @@
/obj/effect/floor_decal/corner/lime/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akt" = (
+"aps" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -5184,13 +9714,12 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"aku" = (
+"apt" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
/obj/effect/floor_decal/corner/lime/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
+ dir = 4
},
/obj/structure/cable/green{
d1 = 1;
@@ -5199,7 +9728,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akv" = (
+"apu" = (
/obj/structure/closet/crate/bin{
anchored = 1;
pixel_y = 16
@@ -5212,7 +9741,698 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akw" = (
+"apv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"apw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"apx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/sec,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/middlehall)
+"apy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"apz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"apA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"apB" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"apC" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"apD" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"apE" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/camera/network/security{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"apF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"apG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"apH" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"apI" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"apJ" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/obj/item/device/radio/intercom/department/security{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"apK" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"apL" = (
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"apM" = (
+/obj/machinery/door/airlock/security{
+ name = "Warden's Office";
+ req_access = list(3);
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"apN" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"apO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"apP" = (
+/obj/machinery/door/airlock/security{
+ name = "Armory";
+ req_access = list(3);
+ secured_wires = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"apQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"apR" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"apS" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/weapon/storage/box/trackimp,
+/obj/item/weapon/storage/box/trackimp,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"apT" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"apU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"apV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"apW" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/medical/morgue)
+"apX" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/reagent_dispensers/water_cooler/full{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"apY" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/camera/network/medbay{
+ dir = 10
+ },
+/obj/machinery/status_display{
+ level = 4;
+ pixel_y = -32
+ },
+/obj/structure/flora/pottedplant/orientaltree,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"apZ" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"aqa" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/structure/table/standard,
+/obj/random/medical,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"aqb" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"aqc" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/machinery/camera/network/medbay{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"aqd" = (
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"aqe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"aqf" = (
+/obj/structure/table/standard,
+/obj/structure/bedsheetbin,
+/obj/random/soap,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"aqg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aqh" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/mob/living/simple_mob/animal/passive/snake/noodle,
+/turf/simulated/floor/grass,
+/area/chapel/main)
+"aqi" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/mob/living/simple_mob/animal/passive/mouse/white/apple,
+/turf/simulated/floor/grass,
+/area/chapel/main)
+"aqj" = (
+/obj/structure/symbol/da{
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aqk" = (
+/obj/effect/decal/remains/human,
+/obj/random/action_figure,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aql" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aqm" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aqn" = (
+/obj/structure/closet,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aqo" = (
+/obj/item/weapon/storage/fancy/cigar/havana,
+/obj/random/drinkbottle,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/surface_two_hall)
+"aqp" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/closet,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/tool,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"aqq" = (
+/obj/structure/catwalk,
+/obj/structure/grille/broken,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"aqr" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"aqs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aqt" = (
+/obj/structure/sign/poster,
+/turf/simulated/wall,
+/area/tether/surfacebase/public_garden_two)
+"aqu" = (
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aqv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aqw" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aqx" = (
+/turf/simulated/open,
+/area/tether/surfacebase/public_garden_two)
+"aqy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aqz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aqA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aqB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/public_garden_two)
+"aqC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/public_garden_two)
+"aqD" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -5232,128 +10452,389 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/lower/public_garden_maintenence/upper)
-"akx" = (
-/obj/structure/sign/poster,
-/turf/simulated/wall,
-/area/tether/surfacebase/public_garden_two)
-"aky" = (
-/obj/structure/table/standard{
- name = "plastic table frame"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akz" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akA" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akB" = (
-/turf/simulated/open,
-/area/tether/surfacebase/public_garden_two)
-"akC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
+"aqE" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lime/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
- },
-/obj/structure/cable/green{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-8"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/lime/border{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/public_garden_two)
-"akG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/plating,
-/area/tether/surfacebase/public_garden_two)
-"akH" = (
+/area/maintenance/lower/public_garden_maintenence/upper)
+"aqF" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/brig/bathroom)
+"aqG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aqH" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Security Airlock";
+ req_one_access = list(1)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aqI" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aqJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/window/reinforced/polarized/full{
+ id = "wardenwindows"
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/warden)
+"aqK" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Warden's Office"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"aqL" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/stamp/ward,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 5
+ },
+/obj/item/weapon/pen,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"aqM" = (
+/obj/structure/table/reinforced,
+/obj/item/device/retail_scanner/security,
+/obj/item/device/radio{
+ pixel_x = -4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"aqN" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"aqO" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"aqP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"aqQ" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"aqR" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/deployable/barrier,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aqS" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/deployable/barrier,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aqT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aqU" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/flasher/portable,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"aqV" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"aqW" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"aqX" = (
+/obj/machinery/door/airlock/maintenance/medical{
+ name = "Medical Maintenance Access"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/breakroom)
+"aqY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aqZ" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/structure/sign/warning/caution{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"ara" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"arb" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"arc" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/standard,
+/obj/random/soap,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"ard" = (
+/turf/simulated/wall,
+/area/maintenance/lower/bar)
+"are" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 1
+ },
+/obj/random/tool,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/structure/sign/warning/caution{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"arf" = (
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"arg" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"arh" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"ari" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"arj" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"ark" = (
+/obj/structure/catwalk,
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"arl" = (
+/turf/simulated/floor/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"arm" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"arn" = (
/obj/structure/table/standard{
name = "plastic table frame"
},
@@ -5369,7 +10850,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akI" = (
+"aro" = (
/obj/structure/table/bench/steel,
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
@@ -5379,7 +10860,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akJ" = (
+"arp" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -5391,14 +10872,14 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akK" = (
+"arq" = (
/obj/structure/stairs/south,
/obj/structure/window/reinforced{
dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akL" = (
+"arr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -5411,12 +10892,12 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akM" = (
+"ars" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/lime/bordercorner,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akN" = (
+"art" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
@@ -5425,11 +10906,529 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akO" = (
+"aru" = (
/obj/structure/symbol/gu,
/turf/simulated/wall,
/area/tether/surfacebase/public_garden_two)
-"akP" = (
+"arv" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"arw" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"arx" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/brig/bathroom)
+"ary" = (
+/obj/structure/toilet,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/brig/bathroom)
+"arz" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"arA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/middlehall)
+"arB" = (
+/turf/simulated/open,
+/area/tether/surfacebase/security/middlehall)
+"arC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"arD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"arE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/window/reinforced/polarized/full{
+ id = "wardenwindows"
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/warden)
+"arF" = (
+/obj/machinery/photocopier,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"arG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"arH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"arI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/computer/general_air_control/fuel_injection{
+ device_tag = "riot_inject";
+ dir = 8;
+ frequency = 1442;
+ name = "Riot Control Console"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"arJ" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"arK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"arL" = (
+/obj/structure/table/reinforced,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"arM" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/deployable/barrier,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"arN" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/deployable/barrier,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"arO" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"arP" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/flasher/portable,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/armory)
+"arQ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"arR" = (
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"arS" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"arT" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"arU" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"arV" = (
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"arW" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/effect/floor_decal/rust,
+/obj/random/cutout,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"arX" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"arY" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"arZ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"asa" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"asb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"asc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Surfsec Subgrid";
+ name_tag = "Surfsec Subgrid"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"asd" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"ase" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"asf" = (
+/obj/structure/closet,
+/obj/random/tool,
+/obj/random/toolbox,
+/obj/random/powercell,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/action_figure,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"asg" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/vending/cigarette{
+ name = "Cigarette machine";
+ prices = list();
+ products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2)
+ },
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"ash" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/vending/sovietsoda,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"asi" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"asj" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/fancy/candle_box,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"ask" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"asl" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"asm" = (
+/obj/item/toy/plushie/kitten{
+ desc = "An odd appearing, cryptic plush of a cat.";
+ name = "Pablo"
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/outside/outside2)
+"asn" = (
+/obj/item/clothing/under/batter,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/outside/outside2)
+"aso" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/emergency_storage/atmos)
+"asp" = (
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/emergency_storage/atmos)
+"asq" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"asr" = (
/obj/structure/closet/hydrant{
pixel_x = -32
},
@@ -5441,7 +11440,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akQ" = (
+"ass" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
},
@@ -5450,25 +11449,21 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akR" = (
+"ast" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/lime/border{
dir = 1
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akS" = (
+"asu" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/lime/border{
dir = 1
@@ -5478,7 +11473,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akT" = (
+"asv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
@@ -5488,7 +11483,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akU" = (
+"asw" = (
/obj/machinery/seed_extractor,
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -5498,7 +11493,712 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akV" = (
+"asx" = (
+/obj/item/clothing/shoes/boots/jackboots{
+ desc = "Very old and worn baseball cleats.";
+ name = "baseball cleats"
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/outside/outside2)
+"asy" = (
+/obj/structure/table/rack/holorack,
+/obj/random/maintenance/clean,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"asz" = (
+/obj/machinery/door/airlock/security{
+ name = "Security Restroom";
+ req_one_access = list(1,38)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/brig/bathroom)
+"asA" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"asB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"asC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"asD" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"asE" = (
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat{
+ ammo_type = /obj/item/ammo_casing/a12g/beanbag;
+ desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock.";
+ name = "warden's shotgun"
+ },
+/obj/structure/closet/secure_closet/warden,
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"asF" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28;
+ req_access = list(67)
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"asG" = (
+/obj/structure/bed{
+ desc = "Not the most comfy, but useful for napping when no one is in the brig.";
+ name = "cot"
+ },
+/obj/item/weapon/bedsheet/brown,
+/obj/machinery/camera/network/security{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/obj/structure/curtain/open/bed,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"asH" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"asI" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/hand_labeler,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/warden)
+"asJ" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/machinery/camera/network/security{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"asK" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"asL" = (
+/obj/structure/table/reinforced,
+/obj/item/device/gps/security{
+ pixel_y = 3
+ },
+/obj/item/device/gps/security{
+ pixel_x = -3
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/evastorage)
+"asM" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"asN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "Security Substation";
+ secured_wires = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"asO" = (
+/obj/item/clothing/head/soft/black{
+ desc = "Its a dusty old cap, It hides most your eyes."
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/outside/outside2)
+"asP" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/flora/pottedplant/large,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"asQ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/emergency_storage/atmos)
+"asR" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/emergency_storage/atmos)
+"asS" = (
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"asT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"asU" = (
+/obj/item/weapon/material/twohanded/baseballbat{
+ desc = "This bat looks very off.";
+ health = 500
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/outside/outside2)
+"asV" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"asW" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"asX" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/supply,
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"asY" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"asZ" = (
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"ata" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/table/rack,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/drinkbottle,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"atb" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"atc" = (
+/obj/structure/table/standard,
+/obj/item/device/t_scanner,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/briefcase/inflatable,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/research,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/emergency_storage/atmos)
+"atd" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"ate" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/curtain/open/privacy,
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"atf" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/emergency_storage/atmos)
+"atg" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"ath" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"ati" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/lower/south)
+"atj" = (
+/obj/item/weapon/newspaper,
+/turf/simulated/floor,
+/area/maintenance/lower/south)
+"atk" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"atl" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"atm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"atn" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"ato" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"atp" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"atq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"atr" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 4
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"ats" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"att" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos/storage)
+"atu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 6
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/pumpstation)
+"atv" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"atw" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"atx" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"aty" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"atz" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"atA" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"atB" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/pumpstation)
+"atC" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"atD" = (
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"atE" = (
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"atF" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -25
@@ -5515,11 +12215,11 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akW" = (
+"atG" = (
/obj/structure/table/marble,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akX" = (
+"atH" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -5528,7 +12228,7 @@
/obj/effect/floor_decal/corner/lime/bordercorner,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akY" = (
+"atI" = (
/obj/machinery/smartfridge,
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -5538,7 +12238,338 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"akZ" = (
+"atJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"atK" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/brig/bathroom)
+"atL" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/brig/bathroom)
+"atM" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/brig/bathroom)
+"atN" = (
+/obj/machinery/door/airlock/security{
+ name = "Security Restroom";
+ req_one_access = list(1,38)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig/bathroom)
+"atO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"atP" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"atQ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/tether/surfacebase/security/middlehall)
+"atR" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/tether/surfacebase/security/middlehall)
+"atS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"atT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"atU" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "32-2"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/lower/north)
+"atV" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"atW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"atX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Reading Rooms";
+ sortType = "Reading Rooms"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"atY" = (
+/turf/simulated/wall,
+/area/maintenance/lower/mining)
+"atZ" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aua" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aub" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"auc" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"aud" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/purple,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aue" = (
+/obj/structure/table/steel,
+/obj/random/medical/lite,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/tape_roll,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"auf" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/mime,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aug" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"auh" = (
+/obj/structure/stairs/south,
+/turf/simulated/floor/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"aui" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -5548,7 +12579,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"ala" = (
+"auj" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -5558,7 +12589,552 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"alb" = (
+"auk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"aul" = (
+/obj/machinery/washing_machine,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig/bathroom)
+"aum" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/brig/bathroom)
+"aun" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/obj/effect/floor_decal/rust,
+/obj/random/cutout,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"auo" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/security/brig/bathroom)
+"aup" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"auq" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aur" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aus" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aut" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"auu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"auv" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"auw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"aux" = (
+/obj/machinery/door/airlock/maintenance/sec{
+ secured_wires = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/middlehall)
+"auy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"auz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"auA" = (
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"auB" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/hole,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"auC" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"auD" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"auE" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos/storage)
+"auF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/pumpstation)
+"auG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/pumpstation)
+"auH" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"auI" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"auJ" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"auK" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"auL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"auM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"auN" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Security Substation";
+ secured_wires = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/substation/medsec)
+"auO" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"auP" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"auQ" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"auR" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"auS" = (
+/obj/structure/catwalk,
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"auT" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"auU" = (
+/obj/structure/catwalk,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"auV" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"auW" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"auX" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"auY" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"auZ" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"ava" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"avb" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"avc" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"avd" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/random/drinkbottle,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"ave" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"avf" = (
+/obj/structure/table/steel,
+/obj/machinery/recharger,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/random/drinkbottle,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"avg" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"avh" = (
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"avi" = (
/obj/item/weapon/storage/box/glasses/pint,
/obj/item/weapon/storage/box/glass_extras/straws,
/obj/structure/table/standard{
@@ -5571,7 +13147,6 @@
dir = 10
},
/obj/item/device/radio/intercom{
- dir = 2;
pixel_y = -24
},
/obj/machinery/camera/network/civilian{
@@ -5579,7 +13154,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"alc" = (
+"avj" = (
/obj/machinery/reagentgrinder,
/obj/structure/table/standard{
name = "plastic table frame"
@@ -5592,150 +13167,1122 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_two)
-"ald" = (
-/obj/effect/floor_decal/techfloor{
+"avk" = (
+/obj/machinery/shower{
dir = 1
},
-/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/hole/right{
+/obj/structure/curtain/open/shower/security,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/brig/bathroom)
+"avl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"avm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"avn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"avo" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"avp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"avq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"avr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"avs" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/middlehall)
+"avt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"avu" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"avv" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/obj/random/junk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
icon_state = "4-8"
},
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"avw" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"avx" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"avy" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"avz" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"avA" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"avB" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"avC" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"avD" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/surface_two_hall)
+"avE" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/floodlight,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/storage)
+"avF" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"avG" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"avH" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"avI" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"avJ" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"avK" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"avL" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"avM" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"avN" = (
+/obj/structure/symbol/sa,
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/maintenance/lower/bar)
+"avO" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"avP" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/red,
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"avQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"avR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"avS" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"avT" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/interrogation)
+"avU" = (
+/obj/machinery/door/airlock/security{
+ name = "Observation";
+ req_one_access = list(63,4)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/interrogation)
+"avV" = (
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access = newlist();
+ req_one_access = list(2,4)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/interrogation)
+"avW" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"avX" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"avY" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"avZ" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"awa" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Warden";
+ sortType = "Warden"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"awb" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"awc" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"awd" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "atrium"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"awe" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos/storage)
+"awf" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering/pumpstation)
+"awg" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"awh" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"awi" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/mining)
+"awj" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining)
+"awk" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining)
+"awl" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"awm" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"awn" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"awo" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"awp" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/lower/bar)
+"awq" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"awr" = (
+/obj/random/cigarettes,
+/obj/random/toy,
+/obj/random/tech_supply,
+/obj/random/junk,
+/obj/item/weapon/flame/lighter/zippo,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"aws" = (
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/hole/right,
/obj/machinery/alarm{
dir = 1;
pixel_y = -25
},
/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"ale" = (
-/obj/structure/closet/hydrant,
-/turf/simulated/wall,
-/area/tether/surfacebase/fish_farm)
-"alf" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/turf/simulated/floor/beach/sand/desert,
-/area/tether/surfacebase/fish_farm)
-"alg" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"alh" = (
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"ali" = (
-/obj/machinery/vending/fishing,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"alj" = (
-/obj/structure/railing,
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
-"alk" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"all" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"alm" = (
-/obj/structure/railing{
- dir = 4;
- icon_state = "railing0"
- },
-/turf/simulated/wall,
-/area/tether/surfacebase/fish_farm)
-"aln" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"alo" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
-"alp" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"alq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"alr" = (
-/obj/structure/table/rack,
-/obj/item/weapon/material/fishing_net,
-/obj/item/weapon/material/fishing_net,
-/obj/item/weapon/material/fishing_net,
-/obj/item/weapon/material/fishing_net,
-/obj/item/weapon/material/fishing_net,
-/obj/machinery/camera/network/civilian{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"als" = (
-/obj/machinery/light{
- dir = 8
+/area/maintenance/lower/bar)
+"awt" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/vending/wallmed1/public{
+ pixel_y = -28
},
/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/fish_farm)
-"alt" = (
-/obj/structure/table/bench/standard,
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- icon_state = "intact-supply"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"alu" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/maintenance/lower/bar)
+"awu" = (
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/hole,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"awv" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/item/weapon/handcuffs/fuzzy,
+/obj/item/weapon/handcuffs/fuzzy,
+/obj/item/weapon/handcuffs/legcuffs/fuzzy,
+/obj/item/weapon/handcuffs/fuzzy,
+/obj/item/clothing/accessory/shiny/socks,
+/obj/item/clothing/under/shiny/catsuit,
+/obj/item/clothing/accessory/shiny/gloves,
+/obj/item/clothing/head/shiny_hood,
+/obj/effect/floor_decal/techfloor{
dir = 6
},
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aww" = (
+/turf/simulated/mineral,
+/area/maintenance/lower/public_garden_maintenence/upper)
+"awx" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 25;
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"awy" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"awz" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "interrogation"
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/interrogation)
+"awA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"awB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"awC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"awD" = (
+/turf/simulated/mineral,
+/area/maintenance/lower/north)
+"awE" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"awF" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"awG" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"awH" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"awI" = (
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"awJ" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"awK" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"awL" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/north)
+"awM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ name = "Maintenance Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/surface_two_hall)
+"awN" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"awO" = (
+/obj/structure/grille,
+/obj/structure/railing,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"awP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ name = "Maintenance Access"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/surface_two_hall)
+"awQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/surface_two_hall)
+"awR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"awS" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"awT" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"awU" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"awV" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"awW" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"awX" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/lower/bar)
+"awY" = (
+/turf/simulated/mineral,
/area/tether/surfacebase/fish_farm)
-"alv" = (
+"awZ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"axa" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"axb" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"axc" = (
+/obj/structure/table/steel,
+/obj/item/device/flashlight/lamp,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"axd" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"axe" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/lower/north)
+"axf" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"axg" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"axh" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"axi" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"axj" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"axk" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"axl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axn" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"axo" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -5745,767 +14292,539 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"alw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "4-8"
- },
+"axp" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"alx" = (
/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axq" = (
+/obj/machinery/light/small{
+ dir = 1
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
-/obj/effect/floor_decal/corner/lightgrey/border{
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axu" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/sign/poster{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"axv" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/weapon/deck/cah/black{
+ pixel_x = 5;
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"axw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axx" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axy" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axA" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axB" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axC" = (
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 1
},
-/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"aly" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"alz" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/fish_farm)
-"alA" = (
-/obj/structure/railing,
-/obj/structure/railing{
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axE" = (
+/obj/structure/disposalpipe/junction{
dir = 8
},
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
-"alB" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4;
- icon_state = "railing0"
- },
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
-"alC" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"alD" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/water/indoors,
-/area/tether/surfacebase/fish_farm)
-"alE" = (
-/obj/machinery/light/flamp/noshade,
-/turf/simulated/floor/beach/sand/desert,
-/area/tether/surfacebase/fish_farm)
-"alF" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"alG" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"axF" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"alH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+"axG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/borderfloor/corner,
-/obj/effect/floor_decal/corner/lightgrey/bordercorner,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"alI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/light/small{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 2;
- pixel_y = -28
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"alJ" = (
-/obj/machinery/door/airlock/engineering{
- name = "Command Substation";
- req_one_access = list(10,19)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"axH" = (
+/turf/simulated/mineral,
+/area/maintenance/lower/mining)
+"axI" = (
+/obj/structure/closet/crate,
+/obj/random/cash,
+/obj/random/contraband,
+/obj/random/drinkbottle,
/turf/simulated/floor/plating,
-/area/maintenance/substation/command)
-"alK" = (
-/obj/structure/girder/displaced,
+/area/maintenance/lower/mining)
+"axJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"axK" = (
+/obj/structure/catwalk,
+/turf/simulated/open,
/area/maintenance/lower/bar)
-"alL" = (
+"axL" = (
/obj/structure/catwalk,
/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/visible/supply,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/turf/simulated/open,
+/area/maintenance/lower/bar)
+"axM" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"axN" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"axO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"alM" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"alN" = (
-/obj/structure/firedoor_assembly,
-/turf/simulated/floor,
-/area/maintenance/lower/bar)
-"alO" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -25
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"alP" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"alQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"alR" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/fish_farm)
-"alS" = (
-/obj/structure/catwalk,
+/area/maintenance/lower/bar)
+"axP" = (
+/obj/machinery/recharge_station,
/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/fish_farm)
-"alT" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4;
- icon_state = "warning"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"alU" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8;
- icon_state = "spline_plain"
- },
+/area/maintenance/lower/bar)
+"axQ" = (
+/obj/machinery/floodlight,
/turf/simulated/floor/beach/sand/desert,
/area/tether/surfacebase/fish_farm)
-"alV" = (
-/obj/effect/floor_decal/industrial/warning{
+"axR" = (
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"axS" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light/small{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"alW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"alX" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/lightgrey/bordercorner2,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"alY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"alZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/bordercorner{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"ama" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"amb" = (
-/obj/structure/girder/displaced,
-/turf/simulated/floor,
-/area/maintenance/lower/bar)
-"amc" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"amd" = (
-/obj/machinery/door/airlock{
- name = "Noodle Office";
- req_access = list(27)
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/lino,
-/area/chapel/main)
-"ame" = (
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "chapel_obs";
- name = "Chapel Observation"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"amf" = (
-/obj/effect/floor_decal/borderfloor{
+/area/tether/surfacebase/security/interrogation)
+"axT" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"axU" = (
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"axV" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"axW" = (
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/interrogation)
+"axX" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_techfloor_grid,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"axY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"axZ" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aya" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ d1 = 32;
+ icon_state = "32-1"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/asmaint2)
+"ayb" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"ayc" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"amg" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
+"ayd" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aye" = (
+/obj/item/device/radio/beacon,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ayf" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"amh" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 1;
- name = "Fish Farm"
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ayg" = (
+/obj/effect/floor_decal/corner_techfloor_grid/full{
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"ayh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ayi" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"ami" = (
-/obj/machinery/firealarm{
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ayj" = (
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"ayk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
dir = 2;
- layer = 3.3;
- pixel_x = 4;
- pixel_y = 26
- },
-/obj/machinery/newscaster/security_unit{
- pixel_x = -16;
- pixel_y = 32
- },
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "surfbriglockdown";
- name = "Brig Lockdown";
- pixel_x = -58;
- pixel_y = 0;
- req_access = list(3)
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"amj" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"amk" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"aml" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
icon_state = "pipe-c"
},
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ayl" = (
/obj/effect/floor_decal/borderfloor{
- dir = 6
+ dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 6
- },
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"amm" = (
-/turf/simulated/floor/plating,
+"aym" = (
+/turf/simulated/mineral,
/area/maintenance/lower/bar)
-"amn" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+"ayn" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"ayp" = (
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/open,
+/area/maintenance/lower/bar)
+"ayq" = (
/obj/structure/cable{
icon_state = "1-2"
},
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"amo" = (
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
- },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/disposalpipe/down,
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/open,
+/area/maintenance/lower/bar)
+"ayr" = (
/obj/structure/railing{
dir = 8
},
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
-"amp" = (
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
},
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
-"amq" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"ays" = (
/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+ dir = 4
},
-/obj/structure/railing{
- dir = 4;
- icon_state = "railing0"
- },
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
-"amr" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/lower/bar)
+"ayt" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"ayu" = (
/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"ams" = (
-/obj/structure/railing{
dir = 8
},
-/turf/simulated/floor/beach/sand/desert,
-/area/tether/surfacebase/fish_farm)
-"amt" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"amu" = (
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"amv" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/light_switch{
- name = "light switch ";
- on = 0;
- pixel_y = 36
- },
-/obj/effect/landmark/start{
- name = "Chaplain"
- },
-/obj/machinery/button/windowtint{
- dir = 1;
- id = "chaplainpet";
- name = "interior window tint";
- pixel_x = -10;
- pixel_y = 30
- },
-/obj/machinery/button/windowtint{
- dir = 1;
- id = "chaplainwindow";
- name = "exterior window tint";
- pixel_x = 10;
- pixel_y = 30;
- range = 8
- },
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"amw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"amx" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"amy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"amz" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"amA" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- dir = 1;
- on = 0;
- pixel_x = -10;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"amB" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"amC" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"amD" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/beach/sand/desert,
-/area/tether/surfacebase/fish_farm)
-"amE" = (
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
- },
-/turf/simulated/floor/beach/sand/desert,
-/area/tether/surfacebase/fish_farm)
-"amF" = (
-/obj/effect/floor_decal/spline/plain,
-/turf/simulated/floor/beach/sand/desert,
-/area/tether/surfacebase/fish_farm)
-"amG" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/fish_farm)
-"amH" = (
-/turf/simulated/floor,
-/area/maintenance/lower/rnd)
-"amI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/obj/random/maintenance/research,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"amJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/obj/random/maintenance/research,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"amK" = (
-/obj/item/weapon/storage/fancy/cigar/havana,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/drinkbottle,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/surface_two_hall)
-"amL" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera/network/civilian{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"amM" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"amN" = (
-/obj/machinery/door/airlock/glass{
- name = "Chapel"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"amO" = (
-/obj/machinery/door/airlock{
- name = "Chapel Morgue";
- req_one_access = list(6,27)
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"amP" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/floor_decal/techfloor{
- dir = 8;
- icon_state = "techfloororange_edges"
- },
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/bar)
-"amQ" = (
+"ayv" = (
/obj/structure/closet,
/obj/random/maintenance/clean,
/obj/random/maintenance/clean,
@@ -6517,73 +14836,39 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/bar)
-"amR" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"amS" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
-/obj/item/weapon/nullrod,
-/obj/machinery/light/small,
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"amT" = (
+"ayw" = (
+/turf/simulated/floor/water/indoors,
+/area/tether/surfacebase/fish_farm)
+"ayx" = (
/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/railing{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/obj/random/maintenance/research,
-/obj/random/maintenance/clean,
-/obj/random/tool,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
-"amU" = (
+"ayy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"ayz" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
/obj/effect/floor_decal/techfloor{
- dir = 4
+ dir = 9
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"amV" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor,
-/area/maintenance/lower/rnd)
-"amW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/danger{
- dir = 8;
- icon_state = "danger"
- },
-/obj/structure/sign/warning/caution{
- pixel_y = 32
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"amX" = (
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"amY" = (
/obj/structure/cable{
icon_state = "2-4"
},
@@ -6591,228 +14876,461 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"amZ" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/north)
+"ayA" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"ayB" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
/obj/structure/cable{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"ana" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"ayC" = (
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/rust,
+/obj/structure/closet,
+/obj/random/contraband,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/tool,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"ayD" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"anb" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"ayE" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
/obj/structure/cable{
icon_state = "1-8"
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"anc" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/north)
+"ayF" = (
/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
+ dir = 8
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"and" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/obj/structure/cable/green{
- d2 = 8;
- dir = 2;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"ane" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/light/small{
+"ayG" = (
+/obj/structure/railing{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"anf" = (
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"ayH" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"ang" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/window/basic,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ayI" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ayJ" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Command Meeting Room";
+ sortType = "Command Meeting Room"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ayK" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"ayL" = (
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"ayM" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ayN" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ayO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/holoposter{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"ayP" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/maintenance/lower/bar)
+"ayQ" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"ayR" = (
+/obj/structure/catwalk,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"anh" = (
-/obj/structure/table/bench/padded,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"ani" = (
-/obj/structure/table/bench/padded,
-/obj/effect/floor_decal/chapel{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"anj" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"ank" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"anl" = (
-/obj/effect/floor_decal/techfloor{
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/open,
+/area/maintenance/lower/bar)
+"ayS" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/lower/bar)
+"ayT" = (
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"anm" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"ann" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 1
- },
-/obj/random/tool,
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 4
- },
-/obj/structure/sign/warning/caution{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"ano" = (
-/obj/structure/railing{
- dir = 4;
- icon_state = "railing0"
- },
-/turf/simulated/floor/water/deep/indoors,
-/area/tether/surfacebase/fish_farm)
-"anp" = (
-/turf/simulated/wall,
-/area/rnd/rdoffice)
-"anq" = (
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"anr" = (
-/obj/structure/grille,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ans" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ant" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"anu" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
+/area/maintenance/lower/bar)
+"ayU" = (
/obj/machinery/light/small{
dir = 4
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"ayV" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"anv" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Command Substation Bypass"
+/obj/structure/cable{
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"ayW" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/north_staires_two)
+"ayX" = (
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
-/area/maintenance/substation/command)
-"anw" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/area/maintenance/lower/south)
+"ayY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"anx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"ayZ" = (
+/obj/structure/railing,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"aza" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"azb" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"azc" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/commandmaint)
+"azd" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/commandmaint)
-"any" = (
-/turf/simulated/mineral,
+"aze" = (
+/turf/simulated/wall/r_wall,
+/area/teleporter)
+"azf" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass/hidden,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"azg" = (
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"azh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"azi" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 10
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/bar)
-"anz" = (
+"azj" = (
+/obj/effect/floor_decal/techfloor/orange,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"azk" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/techfloor/orange,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"azl" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/techfloor/orange,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"azm" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"azn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"azo" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"azp" = (
+/obj/random/cutout,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"azq" = (
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"azr" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"azs" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/fish_farm)
+"azt" = (
+/obj/structure/closet/hydrant,
+/turf/simulated/wall,
+/area/tether/surfacebase/fish_farm)
+"azu" = (
+/obj/item/clothing/gloves/boxing/blue,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"azv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/effect/floor_decal/rust,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"azw" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"azx" = (
+/obj/random/obstruction,
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"azy" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"azz" = (
+/turf/simulated/open,
+/area/tether/surfacebase/north_staires_two)
+"azA" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/tether/surfacebase/north_staires_two)
+"azB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/camera/network/tether{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"azC" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"azD" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"azE" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"azF" = (
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"azG" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/cable/green{
d1 = 16;
@@ -6831,44 +15349,4706 @@
},
/turf/simulated/floor/plating,
/area/maintenance/commandmaint)
-"anA" = (
-/obj/effect/floor_decal/techfloor{
+"azH" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"azI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"azJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"azK" = (
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"azL" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"azM" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"azN" = (
+/obj/structure/table/standard,
+/obj/item/weapon/hand_tele,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"azO" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"azP" = (
+/obj/machinery/computer/teleporter{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"azQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ name = "Trash";
+ sortType = "Trash"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"azR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"azS" = (
+/obj/structure/grille,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"azT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"azU" = (
+/obj/structure/catwalk,
+/obj/structure/ladder/up,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"azV" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"azW" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/lower/bar)
+"azX" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"azY" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"azZ" = (
+/mob/living/simple_mob/animal/passive/fish/bass,
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"aAa" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"aAb" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aAc" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aAd" = (
+/obj/machinery/vending/fishing,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aAe" = (
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"aAf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aAg" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aAh" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aAi" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aAj" = (
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aAk" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aAl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aAm" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/device/gps/command,
+/obj/item/device/gps/command,
+/obj/item/device/gps/command,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aAn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aAo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aAp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aAq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"aAr" = (
+/obj/machinery/teleport/station{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aAs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aAt" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aAu" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aAv" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/lower/bar)
+"aAw" = (
+/obj/structure/railing,
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"aAx" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aAy" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aAz" = (
+/obj/structure/table/rack,
+/obj/item/weapon/material/fishing_rod/modern/cheap,
+/obj/item/weapon/material/fishing_rod/modern/cheap,
+/obj/item/weapon/material/fishing_rod/modern/cheap,
+/obj/item/weapon/material/fishing_rod/modern/cheap,
+/obj/item/weapon/material/fishing_rod/modern/cheap,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aAA" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"aAB" = (
+/obj/item/clothing/gloves/boxing/yellow,
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"aAC" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"aAD" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ pixel_x = 30
+ },
+/turf/simulated/open,
+/area/tether/surfacebase/north_staires_two)
+"aAE" = (
+/obj/structure/stairs/north,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aAF" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"aAG" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"aAH" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aAI" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aAJ" = (
+/turf/simulated/wall/r_wall,
+/area/bridge_hallway)
+"aAK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/command{
+ req_access = list(19)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/blast/regular{
+ closed_layer = 10;
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ layer = 1;
+ name = "Bridge Blast Doors";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor,
+/area/bridge_hallway)
+"aAL" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aAM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aAN" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aAO" = (
+/obj/item/device/radio/beacon,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aAP" = (
+/obj/machinery/teleport/hub{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aAQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aAR" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/surface_two_hall)
+"aAS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aAT" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aAU" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aAV" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/bar)
+"aAW" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"aAX" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aAY" = (
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Morgue Access"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aAZ" = (
+/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"anB" = (
-/obj/structure/catwalk,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"anC" = (
+/area/maintenance/lower/bar)
+"aBa" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"aBb" = (
/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/tether/surfacebase/fish_farm)
+"aBc" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aBd" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"aBe" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aBf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aBg" = (
+/obj/structure/table/rack,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/machinery/camera/network/civilian{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aBh" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/surface_two_hall)
+"aBi" = (
+/obj/structure/sign/directions/evac{
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/tether/surfacebase/north_staires_two)
+"aBj" = (
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/science{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = -4
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/tether/surfacebase/north_staires_two)
+"aBk" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aBl" = (
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aBm" = (
+/obj/structure/sign/warning/caution,
+/turf/simulated/wall,
+/area/tether/surfacebase/surface_two_hall)
+"aBn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aBo" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aBp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aBq" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ on = 0;
+ pixel_x = -10;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aBr" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -32
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aBs" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/command{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aBt" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aBu" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aBv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aBw" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"aBx" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aBy" = (
+/obj/structure/catwalk,
+/obj/structure/closet,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/tool,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"aBz" = (
+/turf/simulated/wall,
+/area/chapel/chapel_morgue)
+"aBA" = (
+/obj/machinery/door/airlock{
+ name = "Chapel Morgue";
+ req_one_access = list(6,27)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aBB" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/fish_farm)
+"aBC" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"aBD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aBE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aBF" = (
+/obj/structure/table/rack,
+/obj/item/stack/cable_coil/pink,
+/obj/item/stack/cable_coil/pink,
+/obj/item/stack/cable_coil/pink,
+/obj/item/stack/cable_coil/pink,
+/obj/item/stack/cable_coil/pink,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aBG" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aBH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aBI" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aBJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aBK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aBL" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aBM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aBN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aBO" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aBP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aBQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aBR" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/steeldecal/steel_decals_central1{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monofloor{
+ dir = 1
+ },
+/area/tether/surfacebase/surface_two_hall)
+"aBS" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aBT" = (
+/obj/structure/stairs/north,
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aBU" = (
+/obj/structure/stairs/north,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aBV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aBW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aBX" = (
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access";
+ req_access = newlist();
+ req_one_access = list(17)
+ },
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"aBY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aBZ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/structure/railing,
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aCa" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust/steel_decals_rusted2,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/railing,
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aCb" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aCc" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/camera/network/tether,
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aCd" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aCe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor{
dir = 8
},
/obj/effect/floor_decal/techfloor{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/black{
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"aCf" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aCg" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aCh" = (
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aCi" = (
+/obj/structure/morgue/crematorium{
+ id = "crematorium"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aCj" = (
+/obj/machinery/button/crematorium{
+ pixel_x = -4;
+ pixel_y = 28;
+ req_access = list();
+ req_one_access = list(27,6)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aCk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aCl" = (
+/obj/structure/closet/coffin,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aCm" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/fish_farm)
+"aCn" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"aCo" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"aCp" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aCq" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/water/indoors,
+/area/tether/surfacebase/fish_farm)
+"aCr" = (
+/obj/machinery/light/flamp/noshade,
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"aCs" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aCt" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/tether{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aCu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/lightgrey/bordercorner,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aCv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aCw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 2;
+ pixel_y = -28
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aCx" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aCy" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/item/device/radio/intercom{
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aCz" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aCA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aCB" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aCC" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aCD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"aCE" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Atrium Second Floor"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central1,
+/turf/simulated/floor/tiled/monofloor,
+/area/tether/surfacebase/surface_two_hall)
+"aCF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aCG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aCH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aCI" = (
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aCJ" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aCK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aCL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aCM" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aCN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/camera/network/command,
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aCO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aCP" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Command Substation Bypass"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aCQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/camera/network/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aCR" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aCS" = (
+/turf/simulated/wall,
+/area/maintenance/substation/command)
+"aCT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/computer/guestpass{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aCU" = (
+/obj/structure/stairs/west,
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aCV" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8;
+ icon_state = "techfloororange_edges"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aCW" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aCX" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall,
+/area/maintenance/lower/bar)
+"aCY" = (
+/obj/structure/catwalk,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aCZ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aDa" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8;
+ icon_state = "techfloororange_edges"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aDb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aDc" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aDd" = (
+/obj/structure/ladder{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aDe" = (
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aDf" = (
+/obj/structure/morgue,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aDg" = (
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aDh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aDi" = (
+/obj/structure/closet/coffin,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aDj" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/fish_farm)
+"aDk" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/fish_farm)
+"aDl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aDm" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"aDn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aDo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aDp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aDq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aDr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aDs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aDt" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/surface_two_hall)
+"aDu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/north_staires_two)
+"aDv" = (
+/obj/structure/sign/warning/caution{
+ name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"
+ },
+/turf/simulated/wall,
+/area/tether/surfacebase/surface_two_hall)
+"aDw" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aDx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aDy" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aDz" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aDA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aDB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aDC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aDD" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1473;
+ name = "Confession Intercom";
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aDE" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aDF" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aDG" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Command";
+ output_attempt = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aDH" = (
+/obj/structure/cable,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aDI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aDJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aDK" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aDL" = (
+/obj/effect/floor_decal/techfloor/corner,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aDM" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Chapel Access"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aDN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aDO" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aDP" = (
+/turf/simulated/wall,
+/area/chapel/main)
+"aDQ" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aDR" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ on = 0;
+ pixel_x = -24;
+ pixel_y = 20
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aDS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aDT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aDU" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aDV" = (
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/fish_farm)
+"aDW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aDX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Fish Farm"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aDY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aDZ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aEa" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aEb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_two_hall)
+"aEc" = (
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aEd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aEe" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aEf" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aEg" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aEh" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aEi" = (
+/obj/machinery/camera/network/command{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aEj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/rust,
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/asmaint2)
+"aEk" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aEl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aEm" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/structure/railing{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aEn" = (
+/obj/structure/cable/green{
+ d1 = 32;
+ d2 = 4;
+ icon_state = "32-4"
+ },
+/obj/structure/lattice,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/chapel/main)
+"aEo" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1;
+ icon_state = "techfloororange_edges"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aEp" = (
+/obj/structure/cable/green{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/disposalpipe/up{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aEq" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"aEr" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aEs" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aEt" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aEu" = (
+/obj/item/clothing/mask/gas,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/random/mre,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/structure/closet/walllocker_double{
+ dir = 8;
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aEv" = (
+/obj/machinery/door/airlock{
+ name = "Chapel Morgue";
+ req_one_access = list(6,27)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aEw" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/chapel/chapel_morgue)
+"aEx" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"aEy" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"aEz" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"aEA" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aEB" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"aEC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aED" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aEE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aEF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aEG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"anD" = (
+"aEH" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/asmaint2)
+"aEI" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aEJ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aEK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/camera/network/tether{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aEL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aEM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/command{
+ req_access = list(19)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ closed_layer = 10;
+ density = 0;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ layer = 1;
+ name = "Bridge Blast Doors";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor,
+/area/bridge_hallway)
+"aEN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aEO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aEP" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aEQ" = (
+/turf/simulated/wall,
+/area/maintenance/commandmaint)
+"aER" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Command Substation";
+ req_one_access = list(10,19)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aES" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Command Substation";
+ req_one_access = list(10,19)
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/command)
+"aET" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aEU" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall,
+/area/tether/surfacebase/surface_two_hall)
+"aEV" = (
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/door/airlock/maintenance/common,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/bar)
+"aEW" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aEX" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aEY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/mob/living/simple_mob/animal/passive/mouse/brown/Tom,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aEZ" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aFa" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aFb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aFc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aFd" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aFe" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ alarm_id = "anomaly_testing";
+ breach_detection = 0;
+ dir = 8;
+ pixel_x = 22;
+ report_danger_level = 0
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aFf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aFg" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aFh" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aFi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aFj" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/down{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/open,
+/area/maintenance/lower/rnd)
+"aFk" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/railing,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aFl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aFm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aFn" = (
+/obj/structure/railing,
+/obj/structure/closet,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aFo" = (
+/obj/structure/railing,
+/obj/structure/closet,
+/obj/random/maintenance/clean,
+/obj/random/junk,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aFp" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/meeting_room)
+"aFq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Command Meeting Room"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/meeting_room)
+"aFr" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Command Meeting Room"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/meeting_room)
+"aFs" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aFt" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aFu" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aFv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aFw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/tether{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aFx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aFy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aFz" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/surface_two_hall)
+"aFA" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"aFB" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"aFC" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"aFD" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/bar)
+"aFE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aFF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aFG" = (
+/obj/structure/sign/department/chapel,
+/turf/simulated/wall,
+/area/chapel/main)
+"aFH" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aFI" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -2
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/hole,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aFJ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aFK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aFL" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "chapel_obs";
+ layer = 3.3;
+ name = "Chapel Observation Shutters";
+ pixel_x = 6;
+ pixel_y = -29;
+ req_access = list(27)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aFM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aFN" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aFO" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"aFP" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"aFQ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aFR" = (
+/obj/structure/kitchenspike,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aFS" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/closet,
+/obj/random/maintenance/clean,
+/obj/item/stack/flag/red{
+ amount = 1
+ },
+/obj/item/stack/flag/blue{
+ amount = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aFT" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aFU" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/asmaint2)
+"aFV" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/asmaint2)
+"aFW" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aFX" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aFY" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/surface_two_hall)
+"aFZ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aGa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aGb" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aGc" = (
+/obj/machinery/keycard_auth{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aGd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aGe" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aGf" = (
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_y = 26
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aGg" = (
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aGh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aGi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aGj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aGk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aGl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aGm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aGn" = (
+/obj/machinery/washing_machine,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"aGo" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "chaplainpet"
+ },
+/turf/simulated/floor,
+/area/chapel/main)
+"aGp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/closet/hydrant{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aGq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Chapel"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aGr" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aGs" = (
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/asmaint2)
+"aGt" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "chapel_obs";
+ name = "Chapel Observation"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue)
+"aGu" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"aGv" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"aGw" = (
+/turf/simulated/wall,
+/area/maintenance/lower/rnd)
+"aGx" = (
+/obj/structure/table/steel,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/bandana,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aGy" = (
+/turf/simulated/mineral,
+/area/maintenance/lower/rnd)
+"aGz" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aGA" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aGB" = (
+/obj/structure/table/steel,
+/obj/item/weapon/handcuffs/fuzzy,
+/obj/item/weapon/handcuffs/legcuffs/fuzzy,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aGC" = (
+/obj/structure/bed,
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aGD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aGE" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "meetingroom"
+ },
+/turf/simulated/floor,
+/area/bridge/meeting_room)
+"aGF" = (
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aGG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aGH" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aGI" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aGJ" = (
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aGK" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aGL" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'WATCH YOUR STEP'.";
+ name = "\improper WATCH YOUR STEP"
+ },
+/turf/simulated/wall,
+/area/maintenance/commandmaint)
+"aGM" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/commandmaint)
+"aGN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aGO" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/maintenance/asmaint2)
+"aGP" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/chapel/main)
+"aGQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aGR" = (
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aGS" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"aGT" = (
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"aGU" = (
+/obj/structure/table/bench/padded,
+/obj/machinery/light_switch{
+ name = "light switch ";
+ on = 0;
+ pixel_y = 36
+ },
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/obj/machinery/button/windowtint{
+ dir = 1;
+ id = "chaplainwindow";
+ name = "exterior window tint";
+ pixel_x = 10;
+ pixel_y = 30;
+ range = 8
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"aGV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aGW" = (
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "chapel_obs";
+ layer = 3.3;
+ name = "Chapel Observation Shutters";
+ pixel_x = -6;
+ pixel_y = 29;
+ req_access = list(27)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aGX" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized/full{
+ id = "chaplainwindow"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"aGY" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/fish_farm)
+"aGZ" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aHa" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 4;
+ icon_state = "comfychair_preview"
+ },
+/obj/effect/landmark/start{
+ name = "Command Secretary"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aHb" = (
+/obj/item/weapon/book/manual/security_space_law,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/table/fancyblack,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aHc" = (
+/obj/item/weapon/folder/red,
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/fancyblack,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aHd" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 8;
+ icon_state = "comfychair_preview"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aHe" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aHf" = (
+/obj/structure/lattice,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"aHg" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aHh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aHi" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/grass,
+/area/chapel/main)
+"aHj" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"aHk" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"aHl" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"aHm" = (
+/turf/simulated/mineral,
+/area/maintenance/asmaint2)
+"aHn" = (
+/obj/effect/decal/cleanable/blood,
+/obj/item/device/tape{
+ desc = "No Talk"
+ },
+/obj/item/clothing/suit/varsity/brown{
+ desc = "Showdown"
+ },
+/obj/item/clothing/head/richard,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aHo" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aHp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aHq" = (
+/obj/machinery/button/windowtint{
+ dir = 1;
+ id = "meetingroom";
+ pixel_x = -25
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aHr" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 4;
+ icon_state = "comfychair_preview"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aHs" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/table/fancyblack,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aHt" = (
+/obj/item/weapon/folder/blue,
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/fancyblack,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aHu" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 8;
+ icon_state = "comfychair_preview"
+ },
+/obj/effect/landmark/start{
+ name = "Command Secretary"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aHv" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aHw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aHx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aHy" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aHz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aHA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"aHB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"aHC" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aHD" = (
+/obj/machinery/camera/network/outside{
+ dir = 5
+ },
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"aHE" = (
+/turf/simulated/wall,
+/area/maintenance/asmaint2)
+"aHF" = (
+/obj/structure/table/steel,
+/obj/item/clothing/head/welding/demon,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aHG" = (
+/turf/simulated/floor,
+/area/maintenance/lower/rnd)
+"aHH" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aHI" = (
+/obj/effect/decal/cleanable/blood,
+/obj/item/clothing/shoes/athletic{
+ desc = "Assault"
+ },
+/obj/item/clothing/under/pants{
+ desc = "Overdose"
+ },
+/obj/item/weapon/material/twohanded/baseballbat{
+ desc = "Decadence";
+ health = 1989
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aHJ" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aHK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/closet/hydrant{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aHL" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aHM" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aHN" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/bridge/meeting_room)
+"aHO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aHP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aHQ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aHR" = (
+/obj/machinery/door/airlock/glass{
+ name = "Chapel"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aHS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aHT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aHU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aHV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aHW" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aHX" = (
+/obj/structure/table/bench/padded,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aHY" = (
+/obj/structure/table/bench/padded,
+/obj/effect/floor_decal/chapel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aHZ" = (
+/obj/structure/table/bench/padded,
+/obj/effect/floor_decal/chapel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIc" = (
+/obj/structure/table/bench/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aId" = (
+/obj/structure/closet,
+/obj/random/maintenance/security,
+/obj/random/contraband,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/effect/floor_decal/rust,
+/obj/item/clothing/suit/storage/vest/hoscoat/jensen{
+ armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0);
+ desc = "Its an old, dusty trenchcoat... what a shame.";
+ name = "trenchcoat"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aIe" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/railing,
+/obj/structure/closet/crate,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/cigarettes,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/atmos)
+"aIf" = (
+/obj/effect/floor_decal/rust,
+/obj/item/clothing/glasses/sunglasses{
+ desc = "My vision is augmented";
+ name = "Augmented shades"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aIg" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aIh" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aIi" = (
+/turf/simulated/wall,
+/area/rnd/rdoffice)
+"aIj" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor,
+/area/maintenance/lower/rnd)
+"aIk" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aIl" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aIm" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aIn" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aIo" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aIp" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"aIq" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/random/trash_pile,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aIr" = (
+/obj/machinery/photocopier,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aIs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aIt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aIu" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aIv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aIw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aIx" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIy" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIB" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Chapel";
+ sortType = "Chapel"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aID" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIE" = (
+/obj/effect/floor_decal/chapel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"aIH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aII" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIJ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"aIK" = (
+/obj/structure/table/steel,
+/obj/machinery/vending/wallmed1{
+ emagged = 1;
+ pixel_y = 32;
+ shut_up = 0
+ },
+/obj/item/weapon/tool/wirecutters,
+/obj/item/weapon/tool/wrench,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/atmos)
+"aIL" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aIM" = (
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aIN" = (
/turf/simulated/floor/reinforced,
/area/rnd/rdoffice)
-"anE" = (
+"aIO" = (
/obj/machinery/light{
dir = 1
},
/obj/item/toy/plushie/farwa,
/turf/simulated/floor/reinforced,
/area/rnd/rdoffice)
-"anF" = (
+"aIP" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/rdoffice)
+"aIQ" = (
+/obj/structure/table/steel,
+/obj/item/weapon/tape_roll,
+/obj/item/stack/medical/bruise_pack,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/atmos)
+"aIR" = (
+/obj/structure/grille,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aIS" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aIT" = (
+/obj/structure/table/woodentable,
+/obj/structure/flora/pottedplant/small{
+ pixel_y = 12
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aIU" = (
+/obj/structure/table/woodentable,
+/obj/machinery/photocopier/faxmachine{
+ department = "Command Conf Room"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aIV" = (
+/obj/structure/table/woodentable,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aIW" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/box/cups,
+/obj/machinery/camera/network/command{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/bridge/meeting_room)
+"aIX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aIY" = (
+/obj/machinery/door/airlock/glass{
+ name = "Chapel"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aIZ" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aJa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aJb" = (
+/obj/structure/table/bench/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aJc" = (
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aJd" = (
+/obj/structure/table/bench/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aJe" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/atmos)
+"aJf" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"aJg" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aJh" = (
+/mob/living/simple_mob/slime/xenobio/rainbow/kendrick,
+/turf/simulated/floor/reinforced,
+/area/rnd/rdoffice)
+"aJi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/reinforced,
+/area/rnd/rdoffice)
+"aJj" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -6884,7 +20064,19 @@
},
/turf/simulated/floor/plating,
/area/rnd/rdoffice)
-"anG" = (
+"aJk" = (
+/obj/structure/closet/secure_closet/RD,
+/obj/item/device/aicard,
+/obj/item/clothing/glasses/omnihud/rnd,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/rdoffice)
+"aJl" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -6898,30 +20090,130 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"anH" = (
+"aJm" = (
+/obj/machinery/computer/mecha,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/rdoffice)
+"aJn" = (
+/obj/machinery/computer/robotics,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/rdoffice)
+"aJo" = (
+/obj/machinery/computer/aifixer,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/rdoffice)
+"aJp" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aJq" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/lower/rnd)
+"aJr" = (
+/obj/structure/lattice,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/down{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/lower/rnd)
+"aJs" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"aJt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aJu" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aJv" = (
+/turf/simulated/wall,
+/area/chapel/office)
+"aJw" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "chapel"
+ },
+/turf/simulated/floor,
+/area/chapel/office)
+"aJx" = (
+/obj/machinery/door/airlock{
+ name = "Chapel Office";
+ req_access = list(27)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/office)
+"aJy" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"anI" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/lower/rnd)
-"anJ" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 6
+/obj/machinery/light{
+ dir = 8
},
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"anK" = (
-/turf/simulated/wall/r_wall,
-/area/teleporter)
-"anL" = (
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aJz" = (
/obj/structure/railing{
dir = 4
},
@@ -6934,31 +20226,37 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
-"anM" = (
-/obj/effect/floor_decal/techfloor{
+"aJA" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/tcomms)
+"aJB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
},
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"anN" = (
-/mob/living/simple_mob/slime/xenobio/rainbow/kendrick,
/turf/simulated/floor/reinforced,
/area/rnd/rdoffice)
-"anO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/reinforced,
-/area/rnd/rdoffice)
-"anP" = (
+"aJC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/rdoffice)
+"aJD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -6970,42 +20268,37 @@
},
/obj/machinery/door/window/eastleft{
dir = 8;
- icon_state = "left";
name = "Kendrick's Pen";
req_access = list(30);
req_one_access = list(19)
},
/turf/simulated/floor/reinforced,
/area/rnd/rdoffice)
-"anQ" = (
+"aJE" = (
/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
+ dir = 8
},
/obj/effect/floor_decal/corner/mauve/border{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"anR" = (
+"aJF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"anS" = (
+"aJG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
@@ -7014,18 +20307,22 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"anT" = (
+"aJH" = (
+/turf/simulated/floor/tiled,
+/area/rnd/rdoffice)
+"aJI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Research Director's Desk";
departmentType = 5;
+ dir = 8;
name = "Research Director RC";
- pixel_x = 30;
+ pixel_x = 22;
pixel_y = -2
},
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
/obj/effect/floor_decal/corner/mauve/border{
dir = 4
},
@@ -7035,10 +20332,10 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"anU" = (
+"aJJ" = (
/turf/simulated/wall,
/area/maintenance/substation/research)
-"anV" = (
+"aJK" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
@@ -7046,7 +20343,7 @@
},
/turf/simulated/wall,
/area/maintenance/substation/research)
-"anW" = (
+"aJL" = (
/obj/effect/floor_decal/industrial/warning/corner,
/obj/structure/cable{
icon_state = "1-2"
@@ -7054,16 +20351,15 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/lower/rnd)
-"anX" = (
+"aJM" = (
/obj/structure/sign/warning/caution{
name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"
},
/turf/simulated/wall/r_wall,
/area/maintenance/lower/rnd)
-"anY" = (
+"aJN" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
/obj/machinery/atmospherics/pipe/zpipe/down/supply,
@@ -7075,106 +20371,124 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/open,
/area/maintenance/lower/rnd)
-"anZ" = (
+"aJO" = (
/turf/simulated/shuttle/wall/voidcraft/green{
hard_corner = 1
},
/area/tether/elevator)
-"aoa" = (
-/obj/structure/dispenser{
- phorontanks = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aob" = (
-/turf/simulated/wall/r_wall,
-/area/bridge_hallway)
-"aoc" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aod" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aoe" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aof" = (
-/obj/structure/table/standard,
-/obj/item/weapon/hand_tele,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aog" = (
-/obj/structure/railing{
+"aJP" = (
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/obj/effect/floor_decal/techfloor{
- dir = 8
+/obj/machinery/holoposter{
+ dir = 8;
+ pixel_x = 30
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aoh" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aoi" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aoj" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aJQ" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aJR" = (
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 10;
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aJS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable/green{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/visible/black{
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aJT" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aJU" = (
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aJV" = (
+/obj/structure/table/bench/padded,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aok" = (
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aJW" = (
+/obj/structure/table/bench/padded,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aJX" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aJY" = (
+/obj/machinery/turretid/lethal{
+ ailock = 1;
+ check_synth = 1;
+ control_area = /area/tcommsat/chamber;
+ desc = "A firewall prevents AIs from interacting with this device.";
+ name = "Telecoms lethal turret control";
+ pixel_x = 29;
+ req_access = list(61);
+ req_one_access = list(12)
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/tiled/dark,
+/area/tcomsat{
+ name = "\improper Telecomms Lobby"
+ })
+"aJZ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aKa" = (
+/obj/structure/table/steel,
+/obj/item/bodybag,
+/obj/item/bodybag,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aKb" = (
/turf/simulated/wall/r_wall,
/area/server)
-"aol" = (
+"aKc" = (
/obj/machinery/photocopier,
/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
+ dir = 8
},
/obj/effect/floor_decal/corner/mauve/border{
dir = 8
@@ -7184,13 +20498,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aom" = (
+"aKd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aon" = (
+"aKe" = (
/obj/structure/table/glass,
/obj/machinery/photocopier/faxmachine{
department = "Research Director's Office"
@@ -7201,7 +20515,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aoo" = (
+"aKf" = (
/obj/structure/bed/chair/office/light,
/obj/machinery/button/windowtint{
id = "rd_office";
@@ -7226,7 +20540,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aop" = (
+"aKg" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -7236,13 +20550,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aoq" = (
+"aKh" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Research Substation Bypass"
},
/turf/simulated/floor,
/area/maintenance/substation/research)
-"aor" = (
+"aKi" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
@@ -7259,7 +20573,7 @@
},
/turf/simulated/floor,
/area/maintenance/substation/research)
-"aos" = (
+"aKj" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -7268,7 +20582,7 @@
},
/turf/simulated/floor,
/area/maintenance/substation/research)
-"aot" = (
+"aKk" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -7284,7 +20598,7 @@
},
/turf/simulated/floor,
/area/maintenance/substation/research)
-"aou" = (
+"aKl" = (
/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 6
},
@@ -7308,7 +20622,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/rnd)
-"aov" = (
+"aKm" = (
/obj/machinery/door/airlock/maintenance/engi,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 4
@@ -7325,7 +20639,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/rnd)
-"aow" = (
+"aKn" = (
/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
dir = 4
},
@@ -7344,30 +20658,22 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/rnd)
-"aox" = (
+"aKo" = (
/turf/simulated/floor/holofloor/tiled/dark,
/area/tether/elevator)
-"aoy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+"aKp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/station_map{
+ pixel_y = 32
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 2
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aoz" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aKq" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -7376,44 +20682,154 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aoA" = (
+"aKr" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
/area/tether/surfacebase/surface_two_hall)
-"aoB" = (
+"aKs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/camera/network/tether{
+ dir = 5
+ },
+/obj/machinery/door/firedoor/glass/hidden,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aKt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aKu" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aKv" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 8
},
/turf/simulated/open,
/area/tether/surfacebase/surface_two_hall)
-"aoC" = (
+"aKw" = (
/obj/structure/railing,
/turf/simulated/open,
/area/tether/surfacebase/surface_two_hall)
-"aoD" = (
+"aKx" = (
+/obj/structure/railing,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/tether/surfacebase/surface_two_hall)
+"aKy" = (
/obj/structure/railing{
dir = 4
},
/obj/structure/railing,
/turf/simulated/open,
/area/tether/surfacebase/surface_two_hall)
-"aoE" = (
-/turf/simulated/wall,
+"aKz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass/hidden,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aKA" = (
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aKB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aKC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/lino,
/area/chapel/office)
-"aoF" = (
-/turf/simulated/floor/outdoors/rocks/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"aoG" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aoH" = (
+"aKD" = (
+/obj/structure/bed/chair/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aKE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aKF" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aKG" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aKH" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aKI" = (
+/obj/effect/floor_decal/chapel,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aKJ" = (
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aKK" = (
+/obj/structure/table/steel,
+/obj/item/device/nif/bad,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aKL" = (
/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
icon_state = "map_vent_out";
use_power = 1
},
@@ -7424,7 +20840,7 @@
temperature = 80
},
/area/server)
-"aoI" = (
+"aKM" = (
/obj/machinery/r_n_d/server/robotics,
/obj/structure/window/reinforced{
dir = 4
@@ -7436,13 +20852,16 @@
temperature = 80
},
/area/server)
-"aoJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+"aKN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/fish_farm)
-"aoK" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aKO" = (
/obj/effect/floor_decal/techfloor{
dir = 5
},
@@ -7456,12 +20875,10 @@
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/server)
-"aoL" = (
+"aKP" = (
/obj/machinery/papershredder,
/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
+ dir = 8
},
/obj/effect/floor_decal/corner/mauve/border{
dir = 8
@@ -7471,13 +20888,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aoM" = (
+"aKQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aoN" = (
+"aKR" = (
/obj/structure/table/glass,
/obj/machinery/computer/skills{
dir = 1
@@ -7488,13 +20905,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aoO" = (
+"aKS" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white_rd,
/obj/item/weapon/stamp/rd,
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aoP" = (
+"aKT" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin{
pixel_x = 1;
@@ -7509,17 +20926,14 @@
dir = 4
},
/obj/machinery/camera/network/research{
- dir = 8;
- icon_state = "camera"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aoQ" = (
+"aKU" = (
/obj/machinery/power/smes/buildable{
RCon_tag = "Substation - Research";
- charge = 0;
- output_attempt = 0;
- outputting = 0
+ output_attempt = 0
},
/obj/structure/cable/green,
/obj/structure/cable/green{
@@ -7528,7 +20942,7 @@
},
/turf/simulated/floor,
/area/maintenance/substation/research)
-"aoR" = (
+"aKV" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
@@ -7538,7 +20952,7 @@
/obj/structure/cable,
/turf/simulated/floor,
/area/maintenance/substation/research)
-"aoS" = (
+"aKW" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -7550,16 +20964,23 @@
},
/turf/simulated/floor,
/area/maintenance/substation/research)
-"aoT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/effect/floor_decal/industrial/warning/corner{
+"aKX" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aoU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tcommsat/entrance{
+ name = "\improper Telecomms Entrance"
+ })
+"aKY" = (
/obj/machinery/atmospherics/pipe/zpipe/up/supply{
dir = 1
},
@@ -7575,40 +20996,30 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/maintenance/lower/rnd)
-"aoV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aoW" = (
+"aKZ" = (
+/obj/machinery/door/firedoor/glass/hidden,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aLa" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aoX" = (
+"aLb" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
/obj/machinery/camera/network/tether,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aoY" = (
+"aLc" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aoZ" = (
+"aLd" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -7617,7 +21028,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apa" = (
+"aLe" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -7627,7 +21038,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apb" = (
+"aLf" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -7636,7 +21047,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apc" = (
+"aLg" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -7644,13 +21055,13 @@
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apd" = (
+"aLh" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"ape" = (
+"aLi" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
@@ -7659,7 +21070,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apf" = (
+"aLj" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -7671,140 +21082,101 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apg" = (
+"aLk" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aLl" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/pen/blue{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aLm" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aLn" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp{
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aLo" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aLp" = (
/obj/structure/cable/green{
- dir = 1;
+ d1 = 4;
+ d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"aph" = (
-/obj/item/weapon/stool/padded,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4;
- icon_state = "warning"
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = 21
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/teleporter)
-"api" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "chapel"
- },
-/turf/simulated/floor,
-/area/chapel/office)
-"apj" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 6
- },
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"apk" = (
-/obj/machinery/computer/teleporter{
- dir = 8
+/area/tcomsat{
+ name = "\improper Telecomms Lobby"
+ })
+"aLq" = (
+/obj/machinery/door/morgue{
+ dir = 2;
+ name = "Confession Booth"
},
/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"apl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+/area/chapel/main)
+"aLr" = (
+/obj/machinery/door/morgue{
+ dir = 2;
+ name = "Confession Booth (Chaplain)";
+ req_access = list(22)
},
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aLs" = (
+/obj/structure/table/rack,
+/obj/item/device/flashlight,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"apm" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/device/gps/command,
-/obj/item/device/gps/command,
-/obj/item/device/gps/command,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"apn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"apo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"app" = (
-/turf/simulated/floor/outdoors/dirt/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"apq" = (
-/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"apr" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/random/cutout,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aps" = (
+/area/maintenance/lower/atmos)
+"aLt" = (
/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
+ dir = 8
},
/turf/simulated/floor/bluegrid{
name = "Server Base";
@@ -7813,7 +21185,7 @@
temperature = 80
},
/area/server)
-"apt" = (
+"aLu" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -7827,11 +21199,11 @@
temperature = 80
},
/area/server)
-"apu" = (
+"aLv" = (
/obj/machinery/atmospherics/pipe/manifold/hidden,
/turf/simulated/floor/tiled/techfloor,
/area/server)
-"apv" = (
+"aLw" = (
/obj/machinery/atmospherics/portables_connector{
dir = 8
},
@@ -7842,11 +21214,9 @@
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/server)
-"apw" = (
+"aLx" = (
/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
+ dir = 8
},
/obj/effect/floor_decal/corner/mauve/border{
dir = 8
@@ -7862,19 +21232,19 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"apx" = (
+"aLy" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"apy" = (
+"aLz" = (
/obj/structure/bed/chair{
dir = 1
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"apz" = (
+"aLA" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -7883,13 +21253,12 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/flora/pottedplant/stoutbush,
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"apA" = (
+"aLB" = (
/obj/machinery/power/sensor{
name = "Powernet Sensor - Research Subgrid";
name_tag = "Research Subgrid"
@@ -7903,18 +21272,21 @@
},
/turf/simulated/floor,
/area/maintenance/substation/research)
-"apB" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/green/border,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/tether{
+"aLC" = (
+/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"apC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/research)
+"aLD" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -7927,12 +21299,11 @@
},
/turf/simulated/floor,
/area/maintenance/substation/research)
-"apD" = (
+"aLE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/engineering{
name = "Science Substation";
@@ -7946,22 +21317,12 @@
},
/turf/simulated/floor,
/area/maintenance/substation/research)
-"apE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
+"aLF" = (
+/obj/random/junk,
+/obj/item/weapon/broken_bottle,
/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"apF" = (
+/area/maintenance/lower/atmos)
+"aLG" = (
/obj/machinery/door/airlock/maintenance/engi,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 4
@@ -7971,18 +21332,18 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/rnd)
-"apG" = (
+"aLH" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/simulated/floor/plating,
/area/maintenance/lower/rnd)
-"apH" = (
+"aLI" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apI" = (
+"aLJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -7991,7 +21352,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apJ" = (
+"aLK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -8000,7 +21361,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apK" = (
+"aLL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -8011,26 +21372,12 @@
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j1s";
- name = "Chapel";
- sortType = "Chapel"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"apM" = (
+"aLM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aLN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -8043,7 +21390,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apN" = (
+"aLO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -8055,128 +21402,173 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"apO" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"apP" = (
-/obj/effect/floor_decal/chapel{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"apQ" = (
-/obj/effect/floor_decal/chapel,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"apR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"apS" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"apT" = (
-/obj/structure/stairs/north,
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"apU" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"apV" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"apW" = (
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"apX" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
+"aLP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/machinery/camera/network/engineering,
-/turf/simulated/floor/plating,
-/area/maintenance/substation/command)
-"apY" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4;
- icon_state = "warning"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/floor/tiled,
-/area/teleporter)
-"apZ" = (
-/obj/machinery/teleport/station{
- dir = 2
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aqa" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aqb" = (
-/obj/effect/floor_decal/techfloor{
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aLQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aLR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aLS" = (
+/obj/machinery/button/windowtint{
+ dir = 1;
+ id = "chapel";
+ pixel_x = -25;
+ pixel_y = -25
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aLT" = (
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/obj/structure/bed/chair/wood/wings{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aLU" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aLV" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aLW" = (
/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aqc" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aLX" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aLY" = (
+/turf/simulated/wall,
+/area/maintenance/lower/south)
+"aLZ" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1473;
+ name = "Confession Intercom";
+ pixel_y = -24
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aMa" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted,
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/chapel/main)
+"aMb" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1473;
+ name = "Confession Intercom";
+ pixel_y = -24
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"aMc" = (
+/turf/simulated/floor/outdoors/rocks/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"aMd" = (
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"aMe" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aMf" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aMg" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -8197,7 +21589,7 @@
temperature = 80
},
/area/server)
-"aqd" = (
+"aMh" = (
/obj/machinery/r_n_d/server/core,
/obj/structure/window/reinforced{
dir = 4
@@ -8210,19 +21602,19 @@
temperature = 80
},
/area/server)
-"aqe" = (
+"aMi" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
/area/server)
-"aqf" = (
+"aMj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/tiled/techfloor,
/area/server)
-"aqg" = (
+"aMk" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/command{
name = "Server Room";
@@ -8230,7 +21622,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aqh" = (
+"aMl" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -8240,7 +21632,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aqi" = (
+"aMm" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -8248,10 +21640,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aqj" = (
-/obj/structure/bed/chair{
- dir = 8
- },
+"aMn" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -8267,12 +21656,15 @@
d2 = 8;
icon_state = "0-8"
},
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aqk" = (
+"aMo" = (
/turf/simulated/wall,
/area/rnd/lockers)
-"aql" = (
+"aMp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor/glass,
@@ -8285,60 +21677,39 @@
/obj/machinery/door/airlock/maintenance/rnd,
/turf/simulated/floor/plating,
/area/rnd/lockers)
-"aqm" = (
+"aMq" = (
/turf/simulated/wall/r_wall,
/area/rnd/lockers)
-"aqn" = (
+"aMr" = (
/obj/structure/sign/deck/second,
/turf/simulated/shuttle/wall/voidcraft/green{
hard_corner = 1
},
/area/tether/elevator)
-"aqo" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"aqp" = (
+"aMs" = (
/obj/effect/floor_decal/borderfloor/corner,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
- },
-/obj/machinery/camera/network/tether{
- dir = 4
- },
-/turf/simulated/floor/tiled,
+"aMt" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqr" = (
+"aMu" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -26
},
/obj/effect/floor_decal/corner/yellow/border,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqs" = (
+"aMv" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqt" = (
+"aMw" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -8346,35 +21717,33 @@
/obj/effect/floor_decal/corner/yellow/border,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqu" = (
+"aMx" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/effect/floor_decal/borderfloor/corner2{
dir = 9
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 9;
- icon_state = "bordercolorcorner2"
+ dir = 9
},
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"aMy" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 9
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"aqw" = (
+/obj/effect/floor_decal/corner/yellow/bordercorner2,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aMz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -8386,7 +21755,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqx" = (
+"aMA" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/effect/floor_decal/borderfloor/corner2,
@@ -8394,22 +21763,7 @@
/obj/machinery/light/small,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aqz" = (
+"aMB" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
@@ -8421,42 +21775,42 @@
/obj/effect/floor_decal/corner/yellow/border,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqA" = (
+"aMC" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/machinery/light/small,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqB" = (
+"aMD" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqC" = (
+"aME" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/industrial/danger,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqD" = (
+"aMF" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/machinery/camera/network/tether{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aMG" = (
/obj/effect/floor_decal/borderfloor,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqE" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aqF" = (
+"aMH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -8470,46 +21824,59 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/surface_two_hall)
-"aqG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"aqH" = (
-/obj/machinery/shieldwallgen,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aqI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aqJ" = (
-/obj/machinery/door/airlock/glass{
- name = "Chapel"
+"aMI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
},
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aqK" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aqL" = (
-/obj/structure/railing{
- dir = 8
+/obj/machinery/camera/network/tether{
+ dir = 9
},
-/obj/effect/floor_decal/techfloor{
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aMJ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
+/obj/item/weapon/nullrod,
+/obj/machinery/light/small,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aMK" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aML" = (
+/obj/structure/closet/wardrobe/chaplain_black,
+/obj/item/weapon/storage/fancy/crayons,
+/obj/item/weapon/flame/candle/candelabra,
+/obj/item/weapon/flame/candle/candelabra,
+/obj/item/weapon/flame/candle/candelabra,
+/obj/item/weapon/flame/candle/candelabra,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aMM" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"aMN" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aMO" = (
+/obj/machinery/light_construct{
dir = 4
},
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aqM" = (
+/turf/simulated/floor/plating,
+/area/vacant/vacant_bar_upper)
+"aMP" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -8523,14 +21890,14 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/server)
-"aqN" = (
+"aMQ" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/techfloor,
/area/server)
-"aqO" = (
+"aMR" = (
/turf/simulated/floor/tiled/techfloor,
/area/server)
-"aqP" = (
+"aMS" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -8540,7 +21907,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
/area/server)
-"aqQ" = (
+"aMT" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -8568,7 +21935,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aqR" = (
+"aMU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -8593,7 +21960,37 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aqS" = (
+"aMV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/rdoffice)
+"aMW" = (
/obj/structure/table/standard,
/obj/item/weapon/cartridge/signal/science,
/obj/item/weapon/cartridge/signal/science,
@@ -8625,2844 +22022,7 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"aqT" = (
-/obj/machinery/alarm{
- alarm_id = "pen_nine";
- breach_detection = 0;
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aqU" = (
-/obj/structure/closet/secure_closet/scientist,
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lockers)
-"aqV" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/structure/closet/wardrobe/science_white,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lockers)
-"aqW" = (
-/obj/structure/closet/secure_closet/scientist,
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/camera/network/research,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lockers)
-"aqX" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lockers)
-"aqY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aqZ" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ara" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/machinery/newscaster{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"arb" = (
-/obj/structure/sign/warning/caution{
- name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"
- },
-/turf/simulated/wall,
-/area/engineering/lower/lobby)
-"arc" = (
-/turf/simulated/wall,
-/area/engineering/lower/lobby)
-"ard" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/engineering/lower/lobby)
-"are" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "atmoslockdown";
- name = "Atmospherics Lockdown";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/engineering/lower/lobby)
-"arf" = (
-/obj/machinery/door/airlock/glass{
- name = "Atmospherics"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_grid,
-/area/engineering/lower/lobby)
-"arg" = (
-/turf/simulated/wall,
-/area/engineering/lower/breakroom)
-"arh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/glass{
- name = "Atmospherics"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_grid,
-/area/engineering/lower/lobby)
-"ari" = (
-/obj/structure/grille,
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"arj" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/multi_tile/glass,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"ark" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"arl" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/east_stairs_two)
-"arm" = (
-/obj/machinery/door/airlock{
- name = "Chapel Office";
- req_access = list(27)
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/office)
-"arn" = (
-/obj/machinery/teleport/hub{
- dir = 2
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aro" = (
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"arp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"arq" = (
-/obj/structure/morgue/crematorium,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"arr" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -32
- },
-/obj/structure/cable/green{
- d2 = 8;
- dir = 2;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"ars" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 1
- },
-/obj/random/junk,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"art" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 1
- },
-/obj/random/junk,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aru" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/high{
- dir = 8;
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"arv" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"arw" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"arx" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"ary" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "rd_office"
- },
-/obj/structure/cable/green,
-/turf/simulated/floor,
-/area/rnd/rdoffice)
-"arz" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/command{
- id_tag = "RDdoor";
- name = "Research Director";
- req_access = list(30)
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"arA" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/rnd/lockers)
-"arB" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/lockers)
-"arC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/rnd/lockers)
-"arD" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/rnd/lockers)
-"arE" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/structure/closet/wardrobe/robotics_black,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lockers)
-"arF" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/emergency_storage/atmos)
-"arG" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/emergency_storage/atmos)
-"arH" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/red/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
- },
-/obj/effect/floor_decal/corner/yellow{
- dir = 5;
- icon_state = "corner_white"
- },
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"arI" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/red/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
- },
-/obj/effect/floor_decal/corner/yellow{
- dir = 5;
- icon_state = "corner_white"
- },
-/obj/structure/bed/chair,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"arJ" = (
-/obj/effect/floor_decal/corner/yellow{
- dir = 1;
- icon_state = "corner_white"
- },
-/obj/structure/bed/chair,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 6;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/red/border/shifted{
- dir = 6;
- icon_state = "bordercolor_shifted"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"arK" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"arL" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 4;
- icon_state = "bordercolorcorner2"
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 1;
- icon_state = "bordercolorcorner2"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"arM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"arN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 5;
- icon_state = "bordercolor"
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 4;
- icon_state = "bordercolorcorner2"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"arO" = (
-/obj/structure/bookcase,
-/obj/item/weapon/book/manual/engineering_guide,
-/obj/item/weapon/book/manual/engineering_construction,
-/obj/item/weapon/book/manual/atmospipes,
-/turf/simulated/floor/tiled/dark,
-/area/engineering/lower/breakroom)
-"arP" = (
-/obj/structure/cable/cyan{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"arQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"arR" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"arS" = (
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"arT" = (
-/obj/machinery/newscaster{
- pixel_y = 30
- },
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"arU" = (
-/obj/machinery/vending/cola{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/lower/breakroom)
-"arV" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "atrium"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"arW" = (
-/obj/structure/grille,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"arX" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"arY" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"arZ" = (
-/turf/simulated/wall,
-/area/maintenance/lower/south)
-"asa" = (
-/obj/machinery/shieldwallgen,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"asb" = (
-/obj/machinery/door/airlock/command{
- name = "Teleport Access";
- req_access = newlist();
- req_one_access = list(17)
- },
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"asc" = (
-/turf/simulated/wall/r_wall,
-/area/bridge/meeting_room)
-"asd" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/command{
- name = "Command Meeting Room"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/meeting_room)
-"ase" = (
-/obj/machinery/door/morgue{
- dir = 2;
- name = "Confession Booth (Chaplain)";
- req_access = list(22)
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"asf" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/command{
- name = "Command Meeting Room"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/meeting_room)
-"asg" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"ash" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"asi" = (
-/obj/structure/bed/chair/office/light,
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"asj" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"ask" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/command{
- name = "Server Room";
- req_access = list(30)
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/server)
-"asl" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"asm" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"asn" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"aso" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"asp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"asq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"asr" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_research{
- name = "Research Locker Room";
- req_access = list(47)
- },
-/turf/simulated/floor/tiled,
-/area/rnd/lockers)
-"ass" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor/corner,
-/obj/effect/floor_decal/corner/mauve/bordercorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/lockers)
-"ast" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/mauve/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/lockers)
-"asu" = (
-/obj/structure/disposalpipe/sortjunction{
- name = "RD Office";
- sortType = "RD Office"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- icon_state = "map-scrubbers"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/rnd/lockers)
-"asv" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/mauve/bordercorner2,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -32
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/rnd/lockers)
-"asw" = (
-/obj/structure/closet/secure_closet/scientist,
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lockers)
-"asx" = (
-/turf/simulated/mineral,
-/area/tether/surfacebase/emergency_storage/atmos)
-"asy" = (
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/emergency_storage/atmos)
-"asz" = (
-/obj/machinery/space_heater,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/emergency_storage/atmos)
-"asA" = (
-/obj/structure/cable/cyan{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/emergency_storage/atmos)
-"asB" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"asC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 5;
- icon_state = "intact"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"asD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/red,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"asE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/red,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"asF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"asG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 10;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"asH" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 5;
- icon_state = "bordercolorcorner2"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"asI" = (
-/turf/simulated/floor/tiled/dark,
-/area/engineering/lower/breakroom)
-"asJ" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"asK" = (
-/obj/structure/bed/chair,
-/obj/effect/landmark/start{
- name = "Atmospheric Technician"
- },
-/turf/simulated/floor/carpet,
-/area/engineering/lower/breakroom)
-"asL" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor/carpet,
-/area/engineering/lower/breakroom)
-"asM" = (
-/obj/machinery/vending/snack{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/lower/breakroom)
-"asN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"asO" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"asP" = (
-/obj/machinery/keycard_auth{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"asQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"asR" = (
-/obj/machinery/computer/rdservercontrol{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"asS" = (
-/obj/machinery/computer/message_monitor{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"asT" = (
-/obj/structure/table/steel,
-/obj/effect/floor_decal/techfloor,
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"asU" = (
-/obj/effect/floor_decal/techfloor{
- dir = 6
- },
-/obj/structure/flora/pottedplant/dead,
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"asV" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 8
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"asW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"asX" = (
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"asY" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"asZ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/rdoffice)
-"ata" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/glass_research{
- name = "Research Lounge";
- req_access = list(47)
- },
-/turf/simulated/floor/tiled,
-/area/rnd/lockers)
-"atb" = (
-/turf/simulated/wall,
-/area/rnd/research)
-"atc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8;
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/emergency_storage/atmos)
-"atd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/emergency_storage/atmos)
-"ate" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/emergency_storage/atmos)
-"atf" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/int{
- name = "Emergency Storage";
- req_one_access = list()
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/emergency_storage/atmos)
-"atg" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"ath" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"ati" = (
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atj" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atk" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/red,
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atl" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance/engi{
- name = "Atmospherics";
- req_access = list(24)
- },
-/obj/structure/catwalk,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "atmoslockdown";
- layer = 1;
- name = "Atmospherics Lockdown";
- opacity = 0;
- open_layer = 1
- },
-/turf/simulated/floor/plating,
-/area/engineering/atmos)
-"atn" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/lower/breakroom)
-"ato" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"atp" = (
-/obj/structure/table/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/engineering/lower/breakroom)
-"atq" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/table/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/button/remote/blast_door{
- id = "atmoslockdown";
- name = "Atmospherics Lockdown";
- pixel_x = 0;
- pixel_y = 0;
- req_one_access = list(10,24)
- },
-/turf/simulated/floor/carpet,
-/area/engineering/lower/breakroom)
-"atr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"ats" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/tiled/dark,
-/area/engineering/lower/breakroom)
-"att" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"atu" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"atv" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/table/rack,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/obj/random/maintenance/clean,
-/obj/random/drinkbottle,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"atw" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"atx" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/open,
-/area/rnd/staircase/secondfloor)
-"aty" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/open,
-/area/rnd/staircase/secondfloor)
-"atz" = (
-/turf/simulated/open,
-/area/rnd/staircase/secondfloor)
-"atA" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/open,
-/area/rnd/staircase/secondfloor)
-"atB" = (
-/turf/simulated/wall,
-/area/rnd/breakroom)
-"atC" = (
-/obj/structure/closet/secure_closet/RD,
-/obj/item/device/aicard,
-/obj/item/clothing/glasses/omnihud/rnd,
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"atD" = (
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"atE" = (
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"atF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"atG" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"atH" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"atI" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"atJ" = (
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"atK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6;
- icon_state = "intact"
- },
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/server)
-"atL" = (
-/obj/structure/table/rack{
- dir = 1
- },
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/weapon/tank/oxygen,
-/obj/item/clothing/mask/gas,
-/obj/item/weapon/extinguisher,
-/obj/item/clothing/head/hardhat/red,
-/obj/item/clothing/glasses/meson,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/research,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/emergency_storage/atmos)
-"atM" = (
-/obj/structure/table/standard,
-/obj/item/device/t_scanner,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/storage/briefcase/inflatable,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/research,
-/obj/random/tech_supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/emergency_storage/atmos)
-"atN" = (
-/obj/machinery/floodlight,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/emergency_storage/atmos)
-"atO" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable/cyan,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 6;
- icon_state = "intact"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atQ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 1;
- icon_state = "map"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atR" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 1;
- icon_state = "map"
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atT" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10;
- icon_state = "intact"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atU" = (
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/red,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atW" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 6;
- icon_state = "bordercolorcorner2"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"atX" = (
-/obj/machinery/computer/station_alert{
- dir = 4;
- icon_state = "computer"
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/lower/breakroom)
-"atY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"atZ" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/engineering/lower/breakroom)
-"aua" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Atmospheric Technician"
- },
-/turf/simulated/floor/carpet,
-/area/engineering/lower/breakroom)
-"aub" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/cups,
-/obj/item/weapon/storage/box/cups,
-/obj/machinery/camera/network/engineering{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/lower/breakroom)
-"auc" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aud" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 9
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/obj/structure/table/rack,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aue" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted,
-/obj/structure/window/reinforced/tinted{
- dir = 4;
- icon_state = "twindow"
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/structure/window/reinforced/tinted{
- dir = 8;
- icon_state = "twindow"
- },
-/turf/simulated/floor,
-/area/chapel/main)
-"auf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aug" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/catwalk,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/south)
-"auh" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aui" = (
-/obj/structure/frame{
- anchored = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"auj" = (
-/obj/random/tech_supply,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"auk" = (
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aul" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/random/tool,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aum" = (
-/turf/simulated/wall,
-/area/rnd/workshop)
-"aun" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/open,
-/area/rnd/staircase/secondfloor)
-"auo" = (
-/obj/structure/table/glass,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -28
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"aup" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"auq" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"aur" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"aus" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/landmark/start{
- name = "Roboticist"
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"aut" = (
-/obj/structure/table/glass,
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"auu" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"auv" = (
-/turf/simulated/wall/r_wall,
-/area/rnd/breakroom)
-"auw" = (
-/turf/simulated/wall/r_wall,
-/area/engineering/lower/atmos_eva)
-"aux" = (
-/obj/effect/floor_decal/borderfloor/shifted,
-/obj/effect/floor_decal/corner/white/border/shifted,
-/obj/effect/floor_decal/corner/yellow{
- dir = 10;
- icon_state = "corner_white"
- },
-/obj/structure/flora/pottedplant/subterranean,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"auy" = (
-/obj/effect/floor_decal/borderfloor/shifted,
-/obj/effect/floor_decal/corner/blue/border/shifted,
-/obj/effect/floor_decal/corner/yellow{
- dir = 10;
- icon_state = "corner_white"
- },
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"auz" = (
-/obj/effect/floor_decal/borderfloor/shifted,
-/obj/effect/floor_decal/corner/white/border/shifted,
-/obj/effect/floor_decal/corner/yellow{
- dir = 10;
- icon_state = "corner_white"
- },
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"auA" = (
-/obj/effect/floor_decal/borderfloor/shifted,
-/obj/effect/floor_decal/corner/white/border/shifted,
-/obj/effect/floor_decal/corner/yellow{
- dir = 10;
- icon_state = "corner_white"
- },
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/camera/network/engineering{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"auB" = (
-/obj/effect/floor_decal/corner/yellow{
- dir = 8;
- icon_state = "corner_white"
- },
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 5;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/blue/border/shifted{
- dir = 5;
- icon_state = "bordercolor_shifted"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"auC" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"auD" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 9;
- icon_state = "bordercolorcorner2"
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"auE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/red,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"auF" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 6;
- icon_state = "bordercolor"
- },
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/yellow/bordercorner2,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"auG" = (
-/obj/machinery/light_switch{
- pixel_y = -28
- },
-/obj/machinery/computer/security/engineering{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/lower/breakroom)
-"auH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"auI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"auJ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"auK" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/camera/network/engineering{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/substation/research)
-"auL" = (
-/obj/structure/table/glass,
-/obj/machinery/chemical_dispenser/bar_soft/full{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/lower/breakroom)
-"auM" = (
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 10;
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"auN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"auO" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/floor_decal/corner_techfloor_grid/full{
- dir = 8
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"auP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"auQ" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"auR" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/corner_techfloor_grid/full{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"auS" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"auT" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"auU" = (
-/obj/random/tool,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"auV" = (
-/obj/structure/stairs/south,
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"auW" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"auX" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"auY" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"auZ" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Roboticist"
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"ava" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 9;
- icon_state = "bordercolor"
- },
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Atmospherics Hardsuits";
- req_access = list(24)
- },
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/atmos,
-/obj/item/clothing/head/helmet/space/void/atmos,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/atmos_eva)
-"avb" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 28
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 5;
- icon_state = "bordercolor"
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 6
- },
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_y = 3
- },
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = -3
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/atmos_eva)
-"avc" = (
-/turf/simulated/wall/r_wall,
-/area/engineering/lower/lobby)
-"avd" = (
-/obj/machinery/door/airlock/maintenance/engi{
- name = "Drone Bay";
- req_access = list(24)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "atmoslockdown";
- layer = 1;
- name = "Atmospherics Lockdown";
- opacity = 0;
- open_layer = 1
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/engineering/drone_fabrication)
-"ave" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 1;
- icon_state = "bordercolorcorner2"
- },
-/obj/structure/table/standard,
-/obj/item/taperoll/atmos,
-/obj/random/tech_supply,
-/obj/random/tool,
-/obj/machinery/button/remote/blast_door{
- id = "atmoslockdown";
- name = "Atmospherics Lockdown";
- pixel_x = 0;
- pixel_y = 0;
- req_one_access = list(10,24)
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos/monitoring)
-"avf" = (
-/turf/simulated/wall/r_wall,
-/area/engineering/lower/breakroom)
-"avg" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/engineering/pumpstation)
-"avh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"avi" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"avj" = (
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"avk" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"avl" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"avm" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"avn" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"avo" = (
-/obj/structure/bed/chair/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"avp" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/engi{
- name = "Atmospherics Balcony";
- req_access = list(24)
- },
-/obj/structure/catwalk,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "atmoslockdown";
- layer = 1;
- name = "Atmospherics Lockdown";
- opacity = 0;
- open_layer = 1
- },
-/turf/simulated/floor/plating,
-/area/engineering/atmos)
-"avq" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"avr" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"avs" = (
-/obj/random/maintenance/research,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"avt" = (
-/turf/simulated/wall,
-/area/rnd/staircase/secondfloor)
-"avu" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"avv" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"avw" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"avx" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
- },
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/northright{
- dir = 4;
- name = "Atmospherics Hardsuits";
- req_access = list(24)
- },
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/atmos,
-/obj/item/clothing/head/helmet/space/void/atmos,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/atmos_eva)
-"avy" = (
-/turf/simulated/floor/tiled,
-/area/engineering/lower/atmos_eva)
-"avz" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
- },
-/obj/structure/table/standard,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/atmos_eva)
-"avA" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/engineering/lower/atmos_eva)
-"avB" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 9;
- icon_state = "bordercolor"
- },
-/obj/structure/closet/secure_closet/atmos_personal,
-/obj/machinery/camera/network/engineering,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/atmos_lockers)
-"avC" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/obj/structure/closet/secure_closet/atmos_personal,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/atmos_lockers)
-"avD" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/obj/structure/closet/secure_closet/atmos_personal,
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/lower/atmos_lockers)
-"avE" = (
-/obj/structure/cable/cyan{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/obj/machinery/vending/engivend,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/atmos_lockers)
-"avF" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 5;
- icon_state = "bordercolor"
- },
-/obj/machinery/vending/tool,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/atmos_lockers)
-"avG" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/engineering/lower/atmos_lockers)
-"avH" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
-"avI" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 4;
- icon_state = "bordercolorcorner2"
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 1;
- icon_state = "bordercolorcorner2"
- },
-/turf/simulated/floor/tiled/monotile,
-/area/engineering/atmos)
-"avJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/red,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 26
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
-"avK" = (
-/turf/simulated/wall/r_wall,
-/area/engineering/atmos/storage)
-"avL" = (
+"aMX" = (
/obj/structure/table/standard,
/obj/item/device/taperecorder{
pixel_x = -3
@@ -11488,38 +22048,2639 @@
},
/turf/simulated/floor/tiled,
/area/rnd/rdoffice)
-"avM" = (
+"aMY" = (
+/obj/structure/closet/secure_closet/scientist,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lockers)
+"aMZ" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/closet/wardrobe/science_white,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lockers)
+"aNa" = (
+/obj/structure/closet/secure_closet/scientist,
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/research,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lockers)
+"aNb" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lockers)
+"aNc" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aNd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aNe" = (
+/obj/structure/sign/warning/caution{
+ name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"
+ },
+/turf/simulated/wall,
+/area/engineering/lower/lobby)
+"aNf" = (
+/turf/simulated/wall,
+/area/engineering/lower/lobby)
+"aNg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/engineering/lower/lobby)
+"aNh" = (
+/obj/machinery/door/airlock/glass{
+ name = "Atmospherics"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/lower/lobby)
+"aNi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass{
+ name = "Atmospherics"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/lower/lobby)
+"aNj" = (
+/turf/simulated/wall,
+/area/engineering/lower/breakroom)
+"aNk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/engineering/lower/breakroom)
+"aNl" = (
+/obj/structure/grille,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"aNm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aNn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aNo" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/east_stairs_two)
+"aNp" = (
+/obj/structure/catwalk,
+/obj/structure/table/steel,
+/obj/random/cigarettes,
+/obj/item/weapon/flame/lighter/random,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aNq" = (
+/obj/structure/catwalk,
+/obj/structure/table/steel,
+/obj/item/weapon/flame/candle,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aNr" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/high{
+ dir = 8;
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aNs" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aNt" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aNu" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aNv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "rd_office"
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor,
+/area/rnd/rdoffice)
+"aNw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/command{
+ id_tag = "RDdoor";
+ name = "Research Director";
+ req_access = list(30)
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/rdoffice)
+"aNx" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/lockers)
+"aNy" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/lockers)
+"aNz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/lockers)
+"aNA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/rnd/lockers)
+"aNB" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/closet/wardrobe/robotics_black,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lockers)
+"aNC" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/emergency_storage/atmos)
+"aND" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/emergency_storage/atmos)
+"aNE" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
+ },
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aNF" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border/shifted{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aNG" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 1
+ },
+/obj/structure/bed/chair,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/shifted{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border/shifted{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aNH" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aNI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aNJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aNK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aNL" = (
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/engineering_guide,
+/obj/item/weapon/book/manual/engineering_construction,
+/obj/item/weapon/book/manual/atmospipes,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/lower/breakroom)
+"aNM" = (
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aNN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aNO" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aNP" = (
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aNQ" = (
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aNR" = (
+/obj/machinery/vending/cola{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/lower/breakroom)
+"aNS" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "atrium"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aNT" = (
+/obj/structure/grille,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aNU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aNV" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aNW" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aNX" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/closet,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aNY" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aNZ" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/techfloor/hole,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aOa" = (
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aOb" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"aOc" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aOd" = (
+/obj/structure/bed/chair/office/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aOe" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aOf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/command{
+ name = "Server Room";
+ req_access = list(30)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/server)
+"aOg" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aOh" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aOi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aOj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aOk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aOl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aOm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Research Locker Room";
+ req_access = list(47)
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/lockers)
+"aOn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/mauve/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/lockers)
+"aOo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/mauve/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/lockers)
+"aOp" = (
+/obj/structure/disposalpipe/sortjunction{
+ name = "RD Office";
+ sortType = "RD Office"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/lockers)
+"aOq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/mauve/bordercorner2,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -32
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/rnd/lockers)
+"aOr" = (
+/obj/structure/closet/secure_closet/scientist,
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lockers)
+"aOs" = (
+/turf/simulated/mineral,
+/area/tether/surfacebase/emergency_storage/atmos)
+"aOt" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/emergency_storage/atmos)
+"aOu" = (
+/obj/machinery/light/small,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"aOw" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aOx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aOy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aOz" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aOA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aOB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aOC" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aOD" = (
+/turf/simulated/floor/tiled/dark,
+/area/engineering/lower/breakroom)
+"aOE" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aOF" = (
+/obj/structure/bed/chair,
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/lower/breakroom)
+"aOG" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/carpet,
+/area/engineering/lower/breakroom)
+"aOH" = (
+/obj/machinery/vending/snack{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/lower/breakroom)
+"aOI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aOL" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aON" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aOO" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/lower/south)
+"aOP" = (
+/obj/structure/frame{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aOQ" = (
+/obj/random/cutout,
+/turf/simulated/floor,
+/area/maintenance/lower/south)
+"aOR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aOS" = (
+/obj/machinery/computer/rdservercontrol{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aOT" = (
+/obj/machinery/computer/message_monitor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aOU" = (
+/obj/structure/table/steel,
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aOV" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/structure/flora/pottedplant/dead,
+/turf/simulated/floor/tiled/techfloor,
+/area/server)
+"aOW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aOX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aOY" = (
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aOZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aPa" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/camera/network/research{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aPb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_research{
+ name = "Research Lounge";
+ req_access = list(47)
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/lockers)
+"aPc" = (
+/turf/simulated/wall,
+/area/rnd/research)
+"aPf" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/emergency_storage/atmos)
+"aPg" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Emergency Storage"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/emergency_storage/atmos)
+"aPh" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aPi" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aPj" = (
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aPk" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aPl" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aPm" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aPn" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics";
+ req_access = list(24)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aPo" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/lower/breakroom)
+"aPp" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aPq" = (
+/obj/structure/table/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/lower/breakroom)
+"aPr" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/table/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ req_one_access = list(10,24)
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/lower/breakroom)
+"aPs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aPt" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/lower/breakroom)
+"aPu" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aPw" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 9
+ },
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aPy" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 4
+ },
+/obj/item/weapon/material/minihoe,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aPz" = (
+/obj/structure/dogbed,
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/mob/living/simple_mob/animal/passive/lizard{
+ desc = "It's the secret head of Janitoria!";
+ name = "Bucket"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aPC" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aPE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aPF" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/rnd/staircase/secondfloor)
+"aPG" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/rnd/staircase/secondfloor)
+"aPH" = (
+/turf/simulated/open,
+/area/rnd/staircase/secondfloor)
+"aPI" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/rnd/staircase/secondfloor)
+"aPJ" = (
+/turf/simulated/wall,
+/area/rnd/breakroom)
+"aPK" = (
+/obj/structure/bed/chair/comfy/brown,
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aPL" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aPM" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aPN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aPO" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aPP" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aPQ" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aPR" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ desc = "Looks like it's set to Free-Anur-Entertanment, I wonder what else is on?";
+ icon_state = "frame";
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aPS" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/machinery/camera/network/research,
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aPT" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/weapon/tank/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/glasses/meson,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/emergency_storage/atmos)
+"aPW" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/cyan,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aPX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aPY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aPZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQb" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQc" = (
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQe" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQf" = (
+/obj/machinery/computer/station_alert{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/lower/breakroom)
+"aQg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aQh" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/lower/breakroom)
+"aQi" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/lower/breakroom)
+"aQj" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/cups,
+/obj/item/weapon/storage/box/cups,
+/obj/machinery/camera/network/engineering{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/lower/breakroom)
+"aQk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aQl" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aQm" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aQn" = (
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ name = "Maintenance Access"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/south)
+"aQo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/south)
+"aQp" = (
+/obj/structure/frame/computer,
+/turf/simulated/floor,
+/area/maintenance/lower/south)
+"aQr" = (
+/obj/structure/frame{
+ anchored = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/lower/south)
+"aQs" = (
+/turf/simulated/floor,
+/area/maintenance/lower/south)
+"aQt" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/asmaint2)
+"aQu" = (
+/obj/structure/frame{
+ anchored = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aQv" = (
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aQw" = (
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aQx" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/random/tool,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aQy" = (
+/turf/simulated/wall,
+/area/rnd/workshop)
+"aQz" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/rnd/staircase/secondfloor)
+"aQA" = (
+/obj/structure/table/glass,
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aQB" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aQC" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aQD" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aQE" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aQF" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aQG" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aQH" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/breakroom)
+"aQI" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/lower/atmos_eva)
+"aQJ" = (
+/obj/effect/floor_decal/borderfloor/shifted,
+/obj/effect/floor_decal/corner/white/border/shifted,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/obj/structure/flora/pottedplant/subterranean,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQK" = (
+/obj/effect/floor_decal/borderfloor/shifted,
+/obj/effect/floor_decal/corner/blue/border/shifted,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQL" = (
+/obj/effect/floor_decal/borderfloor/shifted,
+/obj/effect/floor_decal/corner/white/border/shifted,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQM" = (
+/obj/effect/floor_decal/borderfloor/shifted,
+/obj/effect/floor_decal/corner/white/border/shifted,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQN" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor/shifted{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border/shifted{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQO" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQP" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/yellow/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aQS" = (
+/obj/machinery/light_switch{
+ pixel_y = -28
+ },
+/obj/machinery/computer/security/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/lower/breakroom)
+"aQT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aQU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aQV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/engineering/lower/breakroom)
+"aQW" = (
+/obj/structure/table/glass,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/lower/breakroom)
+"aQX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aQY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aQZ" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_techfloor_grid/full{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aRa" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aRb" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aRc" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_techfloor_grid/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aRd" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aRj" = (
+/obj/random/tool,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aRk" = (
+/obj/structure/stairs/south,
+/turf/simulated/floor/tiled,
+/area/rnd/staircase/secondfloor)
+"aRl" = (
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -30
+ },
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aRm" = (
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aRn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aRo" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aRp" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aRq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 9
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Atmospherics Hardsuits";
+ req_access = list(24)
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/atmos_eva)
+"aRr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/atmos_eva)
+"aRs" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 5
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = -3
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/atmos_eva)
+"aRt" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/lower/lobby)
+"aRu" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics";
+ req_access = list(24)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ layer = 1;
+ name = "Atmospherics Lockdown";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aRv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/engineering/lower/lobby)
+"aRw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics";
+ req_access = list(24)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ closed_layer = 10;
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ layer = 1;
+ name = "Atmospherics Lockdown";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/lobby)
+"aRx" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/lower/breakroom)
+"aRy" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/engineering/pumpstation)
+"aRz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aRA" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aRC" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aRD" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aRE" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aRF" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aRG" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aRH" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aRI" = (
+/obj/structure/symbol/gu,
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/maintenance/lower/south)
+"aRL" = (
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/asmaint2)
+"aRM" = (
+/turf/simulated/wall,
+/area/rnd/staircase/secondfloor)
+"aRN" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aRO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aRP" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/wood,
+/area/rnd/breakroom)
+"aRQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/northright{
+ dir = 4;
+ name = "Atmospherics Hardsuits";
+ req_access = list(24)
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/atmos_eva)
+"aRR" = (
+/turf/simulated/floor/tiled,
+/area/engineering/lower/atmos_eva)
+"aRS" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/atmos_eva)
+"aRT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/engineering/lower/atmos_eva)
+"aRU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/machinery/camera/network/engineering,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/atmos_lockers)
+"aRV" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/atmos_lockers)
+"aRW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/lower/atmos_lockers)
+"aRX" = (
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/vending/engivend,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/atmos_lockers)
+"aRY" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 5
+ },
+/obj/machinery/vending/tool,
+/turf/simulated/floor/tiled,
+/area/engineering/lower/atmos_lockers)
+"aRZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/engineering/lower/atmos_lockers)
+"aSa" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aSb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/engineering/atmos)
+"aSc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aSd" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/atmos/storage)
+"aSe" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/shieldgen,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/storage)
+"aSf" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/shieldgen,
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"avN" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/shieldgen,
-/turf/simulated/floor/plating,
-/area/engineering/atmos/storage)
-"avO" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/atmos/storage)
-"avP" = (
+"aSh" = (
/obj/machinery/atmospherics/portables_connector{
dir = 4
},
/obj/machinery/portable_atmospherics/powered/pump/filled,
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
-"avQ" = (
+"aSi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10;
- icon_state = "intact"
+ dir = 10
},
/obj/structure/cable/cyan{
d2 = 2;
@@ -11528,69 +24689,63 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
-"avR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 6;
- icon_state = "intact"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/engineering/pumpstation)
-"avS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/portables_connector{
+"aSl" = (
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/turf/simulated/floor/plating,
-/area/maintenance/engineering/pumpstation)
-"avT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"avU" = (
-/obj/structure/cable/green{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"avV" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aSm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/camera/network/tether{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aSn" = (
/obj/effect/floor_decal/corner_techfloor_grid{
dir = 9
},
/obj/machinery/light/small{
- dir = 8;
- pixel_y = 0
+ dir = 8
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"avW" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"avX" = (
-/obj/structure/railing{
- dir = 4
+"aSo" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"avY" = (
-/obj/effect/floor_decal/chapel,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"avZ" = (
+"aSp" = (
/obj/structure/railing{
dir = 8
},
@@ -11599,46 +24754,19 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"awa" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 1
- },
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"awb" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"awc" = (
+"aSq" = (
+/obj/structure/closet,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/lower/south)
+"aSt" = (
/obj/structure/cable/green{
icon_state = "0-4"
},
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"awd" = (
+"aSu" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -11646,7 +24774,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"awe" = (
+"aSv" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 4;
@@ -11656,61 +24784,7 @@
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"awf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"awg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"awh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"awi" = (
+"aSz" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 4;
@@ -11726,7 +24800,7 @@
/obj/machinery/door/airlock/maintenance/rnd,
/turf/simulated/floor/plating,
/area/rnd/breakroom)
-"awj" = (
+"aSA" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -11740,7 +24814,7 @@
},
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"awk" = (
+"aSB" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -11759,7 +24833,7 @@
},
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"awl" = (
+"aSC" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -11769,7 +24843,7 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"awm" = (
+"aSD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -11778,7 +24852,7 @@
},
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"awn" = (
+"aSE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -11787,7 +24861,7 @@
},
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"awo" = (
+"aSF" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -11803,7 +24877,7 @@
},
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"awp" = (
+"aSG" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -11811,19 +24885,17 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/machinery/suit_cycler/engineering{
name = "Atmospherics suit cycler"
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
-"awq" = (
+"aSH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
@@ -11832,7 +24904,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
-"awr" = (
+"aSI" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -11840,48 +24912,42 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 5
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 5;
- icon_state = "bordercolorcorner2"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
-"aws" = (
+"aSJ" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
+ dir = 10
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 10;
- icon_state = "bordercolorcorner2"
+ dir = 10
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"awt" = (
+"aSK" = (
/obj/effect/landmark/start{
name = "Atmospheric Technician"
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"awu" = (
+"aSL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"awv" = (
+"aSM" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
@@ -11889,24 +24955,22 @@
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"aww" = (
+"aSN" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 5
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 5;
- icon_state = "bordercolorcorner2"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"awx" = (
+"aSO" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
@@ -11915,10 +24979,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"awy" = (
+"aSP" = (
/turf/simulated/floor/tiled/monotile,
/area/engineering/atmos)
-"awz" = (
+"aSQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/red,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -11928,7 +24992,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"awA" = (
+"aSR" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Storage";
@@ -11936,34 +25000,29 @@
},
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"awB" = (
+"aSS" = (
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"awC" = (
+"aST" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"awD" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/atmos/storage)
-"awE" = (
+"aSV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"awF" = (
+"aSW" = (
/obj/machinery/atmospherics/portables_connector{
dir = 4
},
/obj/machinery/portable_atmospherics/powered/pump/filled,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
-"awG" = (
+"aSX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
dir = 4
},
@@ -11974,169 +25033,209 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
-"awH" = (
+"aSY" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/red{
- dir = 8;
- icon_state = "map"
+ dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
-"awI" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/portables_connector{
+"aTa" = (
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/machinery/firealarm{
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aTb" = (
+/obj/structure/disposalpipe/sortjunction{
dir = 4;
- pixel_x = 26
- },
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/turf/simulated/floor/plating,
-/area/maintenance/engineering/pumpstation)
-"awJ" = (
-/obj/machinery/door/airlock/engineering{
- name = "Command Substation";
- req_one_access = list(10,19)
+ name = "Janitor Closet";
+ sortType = "Janitor Closet"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/substation/command)
-"awK" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/pen/blue{
- pixel_x = 2;
- pixel_y = 1
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -2;
- pixel_y = 8
- },
-/obj/machinery/camera/network/civilian{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"awL" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"awM" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp{
- pixel_x = 2;
- pixel_y = 7
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aTc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"awN" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/east_stairs_two)
+"aTd" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"awO" = (
+"aTe" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aTf" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aTg" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"aTh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/south)
+"aTl" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/junk,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aTo" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"awP" = (
+"aTp" = (
/obj/structure/railing{
dir = 8
},
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green,
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"awQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"awR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor/corner,
-/obj/effect/floor_decal/rust,
-/obj/random/cutout,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"awS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/techfloor,
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor/hole,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"awT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/techfloor,
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"awU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/techfloor{
+/obj/effect/floor_decal/corner_techfloor_grid{
dir = 6
},
-/obj/structure/railing{
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"aTw" = (
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/machinery/camera/network/research{
dir = 1
},
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"awV" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/obj/machinery/camera/network/research,
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"awW" = (
+"aTx" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -12146,7 +25245,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"awX" = (
+"aTy" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/donkpockets,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -12154,7 +25253,7 @@
},
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"awY" = (
+"aTz" = (
/obj/structure/table/glass,
/obj/machinery/microwave,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -12162,29 +25261,28 @@
},
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"awZ" = (
+"aTA" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"axa" = (
+"aTB" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"axb" = (
+"aTC" = (
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"axc" = (
+"aTD" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/super;
@@ -12201,7 +25299,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
-"axd" = (
+"aTE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/cyan{
@@ -12211,7 +25309,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
-"axe" = (
+"aTF" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12223,7 +25321,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
-"axf" = (
+"aTG" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12236,7 +25334,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
-"axg" = (
+"aTH" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12250,7 +25348,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"axh" = (
+"aTI" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12258,7 +25356,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"axi" = (
+"aTJ" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12272,7 +25370,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"axj" = (
+"aTK" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12292,7 +25390,7 @@
/obj/item/weapon/stool,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"axk" = (
+"aTL" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12310,7 +25408,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"axl" = (
+"aTM" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12329,7 +25427,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"axm" = (
+"aTN" = (
/obj/structure/cable/cyan{
d1 = 2;
d2 = 8;
@@ -12360,7 +25458,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"axn" = (
+"aTO" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12374,7 +25472,7 @@
},
/turf/simulated/floor/tiled/monotile,
/area/engineering/atmos)
-"axo" = (
+"aTP" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12387,7 +25485,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"axp" = (
+"aTQ" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12406,7 +25504,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"axq" = (
+"aTS" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12416,27 +25514,11 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/atmos/storage)
-"axr" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"axs" = (
+"aTT" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -12447,7 +25529,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"axt" = (
+"aTU" = (
/obj/structure/cable/cyan{
d1 = 2;
d2 = 8;
@@ -12458,7 +25540,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"axu" = (
+"aTV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -12467,145 +25549,63 @@
},
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"axv" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -28
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/engineering/lower/lobby)
-"axw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+"aTW" = (
+/obj/machinery/atmospherics/portables_connector{
dir = 4
},
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/machinery/camera/network/engineering{
+ dir = 4
},
-/obj/machinery/meter,
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
-"axx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/red{
- dir = 8;
- icon_state = "map"
- },
-/obj/machinery/meter,
-/turf/simulated/floor/plating,
-/area/maintenance/engineering/pumpstation)
-"axy" = (
+"aTZ" = (
/obj/machinery/atmospherics/portables_connector{
dir = 8
},
/obj/machinery/portable_atmospherics/powered/scrubber,
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
-"axz" = (
+"aUa" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"axA" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+"aUb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
},
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"axB" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aUc" = (
/turf/simulated/wall,
/area/janitor)
-"axC" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- desc = "Looks like it's set to Free-Anur-Entertanment, I wonder what else is on?";
- icon_state = "frame";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"axD" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"axE" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"axF" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"axG" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"axH" = (
+"aUj" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"axI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"axJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"axK" = (
+"aUm" = (
/turf/simulated/wall,
/area/rnd/breakroom/bathroom)
-"axL" = (
+"aUn" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 1;
@@ -12619,11 +25619,11 @@
},
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"axM" = (
+"aUo" = (
/obj/structure/bookcase/manuals/research_and_development,
/turf/simulated/floor/wood,
/area/rnd/breakroom)
-"axN" = (
+"aUp" = (
/obj/effect/floor_decal/steeldecal/steel_decals9,
/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
@@ -12639,26 +25639,7 @@
},
/turf/simulated/floor/tiled/monotile,
/area/rnd/breakroom)
-"axO" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 6
- },
-/obj/machinery/camera/network/research{
- dir = 8;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled,
-/area/rnd/staircase/secondfloor)
-"axP" = (
+"aUq" = (
/obj/effect/floor_decal/steeldecal/steel_decals9,
/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
@@ -12674,20 +25655,34 @@
},
/turf/simulated/floor/tiled/monotile,
/area/rnd/breakroom)
-"axQ" = (
+"aUr" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/snack{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/rnd/breakroom)
+"aUs" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 10;
- icon_state = "bordercolor"
+ dir = 10
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 9
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 9;
- icon_state = "bordercolorcorner2"
+ dir = 9
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/camera/network/engineering{
@@ -12695,7 +25690,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
-"axR" = (
+"aUt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -12706,51 +25701,47 @@
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
-"axS" = (
+"aUu" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 6;
- icon_state = "bordercolor"
+ dir = 6
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 6
},
/obj/effect/floor_decal/borderfloor/corner2,
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 6;
- icon_state = "bordercolorcorner2"
+ dir = 6
},
/obj/effect/floor_decal/corner/yellow/bordercorner2,
/obj/machinery/recharge_station,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
-"axT" = (
+"aUv" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 10;
- icon_state = "bordercolor"
+ dir = 10
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 8
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 8;
- icon_state = "bordercolorcorner2"
+ dir = 8
},
/obj/structure/closet/secure_closet/engineering_electrical,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"axU" = (
+"aUw" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/structure/closet/secure_closet/engineering_welding,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"axV" = (
+"aUx" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -12765,27 +25756,25 @@
/obj/item/weapon/storage/box/nifsofts_engineering,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"axW" = (
+"aUy" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/structure/table/standard,
/obj/machinery/cell_charger,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"axX" = (
+"aUz" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 6;
- icon_state = "bordercolor"
+ dir = 6
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 6
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 6;
- icon_state = "bordercolorcorner2"
+ dir = 6
},
/obj/structure/table/standard,
/obj/item/clothing/gloves/black,
@@ -12795,7 +25784,7 @@
/obj/item/device/floor_painter,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
-"axY" = (
+"aUA" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
@@ -12810,7 +25799,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"axZ" = (
+"aUB" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -12821,25 +25810,30 @@
dir = 9
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 9;
- icon_state = "bordercolorcorner2"
+ dir = 9
},
/obj/effect/floor_decal/corner/yellow/bordercorner2,
/turf/simulated/floor/tiled/monotile,
/area/engineering/atmos)
-"aya" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/cable{
- icon_state = "1-2"
+"aUC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance/common,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techfloor,
-/area/chapel/main)
-"ayb" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aUD" = (
/obj/machinery/light_switch{
pixel_y = -28
},
@@ -12847,21 +25841,13 @@
/obj/machinery/floodlight,
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"ayc" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/floodlight,
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/atmos/storage)
-"ayd" = (
+"aUF" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/dispenser,
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"aye" = (
+"aUG" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -32
},
@@ -12870,84 +25856,50 @@
/obj/machinery/power/thermoregulator,
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"ayf" = (
-/obj/machinery/alarm{
- pixel_x = 0;
- pixel_y = 28
+"aUK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/landmark{
- name = "morphspawn"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/paramed)
-"ayg" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 4
- },
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/engineering/pumpstation)
-"ayh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/red{
- dir = 8;
- icon_state = "map"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/engineering/pumpstation)
-"ayi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aUL" = (
/obj/effect/floor_decal/corner/purple{
- dir = 5;
- icon_state = "corner_white"
+ dir = 5
},
/obj/structure/mopbucket,
/obj/item/weapon/mop,
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
+ dir = 1
},
/obj/effect/floor_decal/corner/purple/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
+ dir = 1
},
/obj/machinery/camera/network/civilian,
/turf/simulated/floor/tiled,
/area/janitor)
-"ayj" = (
+"aUM" = (
/obj/machinery/newscaster{
pixel_y = 32
},
/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
+ dir = 1
},
/obj/effect/floor_decal/corner/purple/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
+ dir = 1
},
/obj/effect/floor_decal/corner/purple{
- dir = 5;
- icon_state = "corner_white"
+ dir = 5
},
/obj/structure/mopbucket,
/obj/item/weapon/mop,
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/simulated/floor/tiled,
/area/janitor)
-"ayk" = (
+"aUN" = (
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
@@ -12955,38 +25907,31 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
+ dir = 1
},
/obj/effect/floor_decal/corner/purple/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
+ dir = 1
},
/obj/effect/floor_decal/corner/purple{
- dir = 5;
- icon_state = "corner_white"
+ dir = 5
},
/obj/structure/mopbucket,
/obj/item/weapon/mop,
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/simulated/floor/tiled,
/area/janitor)
-"ayl" = (
+"aUO" = (
/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
+ dir = 1
},
/obj/effect/floor_decal/corner/purple/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
+ dir = 1
},
/obj/effect/floor_decal/corner/purple{
- dir = 5;
- icon_state = "corner_white"
+ dir = 5
},
/obj/structure/janitorialcart,
/obj/structure/sink/kitchen{
@@ -12994,19 +25939,16 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aym" = (
+"aUP" = (
/obj/structure/janitorialcart,
/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
+ dir = 1
},
/obj/effect/floor_decal/corner/purple/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
+ dir = 1
},
/obj/effect/floor_decal/corner/purple{
- dir = 5;
- icon_state = "corner_white"
+ dir = 5
},
/obj/machinery/alarm{
pixel_y = 22
@@ -13016,23 +25958,20 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"ayn" = (
+"aUQ" = (
/obj/structure/janitorialcart,
/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
+ dir = 1
},
/obj/effect/floor_decal/corner/purple/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
+ dir = 1
},
/obj/effect/floor_decal/corner/purple{
- dir = 5;
- icon_state = "corner_white"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/janitor)
-"ayo" = (
+"aUR" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 6
@@ -13040,57 +25979,10 @@
/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 6
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"ayp" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"ayq" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"ayr" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"ays" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"ayt" = (
+"aUW" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
@@ -13100,98 +25992,12 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
-"ayu" = (
-/obj/structure/cable/green{
- icon_state = "16-0"
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"ayv" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"ayw" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"ayx" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
- dir = 4
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"ayy" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"ayz" = (
+"aVc" = (
/obj/machinery/washing_machine,
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"ayA" = (
+"aVd" = (
/obj/machinery/washing_machine,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/alarm{
@@ -13199,11 +26005,10 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"ayB" = (
+"aVe" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable/green{
@@ -13212,7 +26017,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"ayC" = (
+"aVf" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -13220,7 +26025,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"ayD" = (
+"aVg" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -13230,17 +26035,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"ayE" = (
+"aVh" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/obj/structure/mirror{
@@ -13248,7 +26049,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"ayF" = (
+"aVi" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -13256,7 +26057,7 @@
/obj/machinery/door/airlock/maintenance/rnd,
/turf/simulated/floor/plating,
/area/rnd/breakroom)
-"ayG" = (
+"aVj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/glass_atmos{
@@ -13266,13 +26067,13 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
-"ayH" = (
+"aVk" = (
/turf/simulated/wall,
/area/engineering/lower/atmos_eva)
-"ayI" = (
+"aVl" = (
/turf/simulated/wall,
/area/engineering/lower/atmos_lockers)
-"ayJ" = (
+"aVm" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
@@ -13286,13 +26087,13 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"ayK" = (
+"aVn" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/turf/simulated/floor/plating,
/area/engineering/atmos)
-"ayL" = (
+"aVo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/red,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -13304,10 +26105,10 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"ayM" = (
+"aVp" = (
/turf/simulated/wall,
/area/maintenance/engineering/pumpstation)
-"ayN" = (
+"aVq" = (
/obj/machinery/door/airlock/maintenance/engi{
name = "Pump Station"
},
@@ -13320,7 +26121,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
-"ayO" = (
+"aVr" = (
/obj/machinery/door/airlock/maintenance/engi{
name = "Pump Station"
},
@@ -13328,10 +26129,10 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
-"ayP" = (
+"aVs" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/east_stairs_two)
-"ayQ" = (
+"aVt" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -13342,13 +26143,11 @@
/obj/machinery/door/airlock/multi_tile/glass,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"ayR" = (
+"aVu" = (
/obj/machinery/button/remote/blast_door{
id = "janitor_blast";
name = "Desk Shutters";
- pixel_x = -22;
- pixel_y = 0;
- pixel_z = 0
+ pixel_x = -22
},
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -13358,10 +26157,10 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"ayS" = (
+"aVv" = (
/turf/simulated/floor/tiled,
/area/janitor)
-"ayT" = (
+"aVw" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -13369,22 +26168,21 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"ayU" = (
+"aVx" = (
/obj/structure/cable{
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/janitor)
-"ayV" = (
+"aVy" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/janitor)
-"ayW" = (
+"aVz" = (
/obj/machinery/door/airlock/maintenance{
name = "Custodial Maintenance";
req_access = list(26)
@@ -13392,13 +26190,12 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
/turf/simulated/floor/tiled/techfloor,
/area/janitor)
-"ayX" = (
+"aVA" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/supply,
@@ -13410,69 +26207,44 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"ayY" = (
+"aVB" = (
/obj/structure/catwalk,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"ayZ" = (
+"aVC" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/rust,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aza" = (
+"aVD" = (
/obj/structure/catwalk,
/obj/structure/cable{
icon_state = "1-8"
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"azb" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"azc" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"azd" = (
+"aVH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"aze" = (
+"aVI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -13481,7 +26253,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"azf" = (
+"aVJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -13490,7 +26262,7 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"azg" = (
+"aVK" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -13500,78 +26272,67 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"azh" = (
+"aVL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"azi" = (
+"aVM" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
pixel_x = 29
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"azj" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"azk" = (
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"azl" = (
+"aVP" = (
/turf/simulated/wall/r_wall,
/area/engineering/atmos)
-"azm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+"aVQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 9
+ },
+/obj/machinery/camera/network/engineering,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aVR" = (
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"azn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"azo" = (
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aVS" = (
/obj/structure/cable/cyan{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
@@ -13580,19 +26341,17 @@
dir = 6
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 1
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 1;
- icon_state = "bordercolorcorner2"
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azp" = (
+"aVT" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
@@ -13608,16 +26367,14 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azq" = (
+"aVU" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -13626,43 +26383,36 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 4;
- icon_state = "bordercolorcorner2"
+ dir = 4
},
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azr" = (
+"aVV" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -13670,16 +26420,14 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azs" = (
+"aVW" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -13688,12 +26436,11 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azt" = (
+"aVX" = (
/obj/structure/cable/cyan{
d1 = 2;
d2 = 4;
@@ -13705,9 +26452,7 @@
icon_state = "2-8"
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -13716,44 +26461,38 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azu" = (
+"aVY" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azv" = (
+"aVZ" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -13762,22 +26501,20 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 1
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 1;
- icon_state = "bordercolorcorner2"
+ dir = 1
},
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azw" = (
+"aWa" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 8;
@@ -13789,8 +26526,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -13806,7 +26542,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azx" = (
+"aWb" = (
/obj/structure/cable/cyan{
d1 = 2;
d2 = 8;
@@ -13822,13 +26558,10 @@
dir = 1
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 1
@@ -13837,12 +26570,10 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 4;
- icon_state = "bordercolorcorner2"
+ dir = 4
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 1;
- icon_state = "bordercolorcorner2"
+ dir = 1
},
/obj/structure/cable/cyan{
d1 = 4;
@@ -13851,7 +26582,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azy" = (
+"aWc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/red,
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4
@@ -13872,14 +26603,12 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azz" = (
+"aWd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -13888,15 +26617,13 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 4;
- icon_state = "bordercolorcorner2"
+ dir = 4
},
/obj/structure/cable/cyan{
d1 = 4;
@@ -13908,21 +26635,18 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azA" = (
+"aWe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/structure/cable/cyan{
d1 = 4;
@@ -13934,11 +26658,9 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azB" = (
+"aWf" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
@@ -13947,12 +26669,10 @@
dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 1;
- icon_state = "map"
+ dir = 1
},
/obj/structure/cable/cyan{
d1 = 4;
@@ -13961,11 +26681,9 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azC" = (
+"aWg" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -13974,12 +26692,10 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/obj/structure/cable/cyan{
d1 = 4;
@@ -13988,22 +26704,18 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azD" = (
+"aWh" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/obj/structure/cable/cyan{
d1 = 4;
@@ -14015,11 +26727,9 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azE" = (
+"aWi" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -14028,12 +26738,10 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/obj/structure/cable/cyan{
d1 = 4;
@@ -14045,11 +26753,9 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azF" = (
+"aWj" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -14058,12 +26764,10 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/structure/cable/cyan{
d1 = 1;
@@ -14072,11 +26776,9 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azG" = (
+"aWk" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
@@ -14085,19 +26787,17 @@
dir = 10
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/red,
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azH" = (
+"aWl" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 5;
- icon_state = "bordercolor"
+ dir = 5
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -14107,10 +26807,10 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"azI" = (
+"aWm" = (
/turf/simulated/open,
/area/tether/surfacebase/east_stairs_two)
-"azJ" = (
+"aWn" = (
/obj/structure/railing{
dir = 8
},
@@ -14122,18 +26822,26 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"azK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+"aWo" = (
+/obj/machinery/door/window/eastleft{
+ dir = 8;
+ name = "Janitorial Desk"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/door/window/eastleft{
+ name = "Janitorial Desk";
+ req_access = list(26)
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"azL" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "janitor_blast";
+ layer = 3.3;
+ name = "Janitorial Shutters"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled,
+/area/janitor)
+"aWp" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -14145,22 +26853,22 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"azM" = (
+"aWq" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/janitor)
-"azN" = (
+"aWr" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/purple/bordercorner,
/turf/simulated/floor/tiled,
/area/janitor)
-"azO" = (
+"aWs" = (
/obj/structure/closet/l3closet/janitor,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/purple/border,
/turf/simulated/floor/tiled,
/area/janitor)
-"azP" = (
+"aWt" = (
/obj/structure/closet/l3closet/janitor,
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -14170,19 +26878,22 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"azQ" = (
+"aWu" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"azR" = (
+"aWv" = (
/obj/structure/railing{
dir = 8
},
@@ -14191,22 +26902,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"azS" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"azT" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/floor_decal/corner_techfloor_grid,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"azU" = (
+"aWy" = (
/obj/effect/floor_decal/corner_techfloor_grid/full{
dir = 4
},
@@ -14215,58 +26911,21 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"azV" = (
+"aWz" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
-"azW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"azX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/lattice,
-/obj/structure/cable/green{
- d1 = 32;
- d2 = 1;
- icon_state = "32-1"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/open,
-/area/maintenance/asmaint2)
-"azY" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/techfloor/hole{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"azZ" = (
+"aWD" = (
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"aAa" = (
+"aWE" = (
/obj/machinery/door/airlock{
name = "Research Shower"
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"aAb" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aAc" = (
+"aWG" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -14275,38 +26934,62 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aAd" = (
+"aWH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aAe" = (
+"aWI" = (
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Atmospherics";
+ req_access = list(24)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ layer = 1;
+ name = "Atmospherics Lockdown";
+ opacity = 0;
+ open_layer = 1
+ },
/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
/turf/simulated/floor/plating,
-/area/engineering/lower/breakroom)
-"aAf" = (
-/obj/machinery/button/windowtint{
- dir = 1;
- id = "chapel";
- pixel_x = -25;
- pixel_y = -25
+/area/engineering/atmos)
+"aWJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
},
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"aAg" = (
-/obj/effect/landmark/start{
- name = "Chaplain"
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 10
},
-/obj/structure/bed/chair/wood/wings{
- dir = 1;
- icon_state = "wooden_chair_wings"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"aAh" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aWK" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aWL" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
@@ -14320,20 +27003,20 @@
/obj/effect/floor_decal/corner/yellow/border,
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
name = "Drone Fabrication";
sortType = "Drone Fabrication"
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAi" = (
-/obj/structure/flora/pottedplant/stoutbush,
-/obj/machinery/camera/network/research{
- dir = 1
+"aWM" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"aAj" = (
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aWN" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/machinery/light,
@@ -14345,15 +27028,14 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAk" = (
+"aWO" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/effect/floor_decal/borderfloor/corner2{
dir = 9
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 9;
- icon_state = "bordercolorcorner2"
+ dir = 9
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -14363,13 +27045,13 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAl" = (
+"aWP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAm" = (
+"aWQ" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/effect/floor_decal/borderfloor/corner2,
@@ -14379,15 +27061,14 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAn" = (
+"aWR" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 6;
- icon_state = "intact"
+ dir = 6
},
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
@@ -14396,10 +27077,9 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAo" = (
+"aWS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
@@ -14412,10 +27092,9 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAp" = (
+"aWT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
@@ -14430,10 +27109,9 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAq" = (
+"aWU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
@@ -14441,29 +27119,26 @@
dir = 9
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 9;
- icon_state = "bordercolorcorner2"
+ dir = 9
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAr" = (
+"aWV" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
name = "Atmospherics";
sortType = "Atmospherics"
},
@@ -14475,7 +27150,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAs" = (
+"aWW" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/effect/floor_decal/borderfloor/corner2,
@@ -14487,106 +27162,97 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/red,
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAt" = (
+"aWX" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/structure/closet/hydrant{
pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAu" = (
+"aWY" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAv" = (
+"aWZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/corner/yellow/border,
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAw" = (
+"aXa" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/effect/floor_decal/borderfloor/corner2{
dir = 9
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 9;
- icon_state = "bordercolorcorner2"
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAx" = (
+"aXb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAy" = (
+"aXc" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/effect/floor_decal/borderfloor/corner2,
/obj/effect/floor_decal/corner/yellow/bordercorner2,
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAz" = (
+"aXd" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/yellow/border,
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
+ dir = 4
},
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAA" = (
-/obj/effect/floor_decal/borderfloor{
+"aXe" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aAB" = (
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aXf" = (
/obj/effect/floor_decal/borderfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -14594,12 +27260,11 @@
},
/obj/effect/floor_decal/corner/yellow/border,
/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAC" = (
+"aXg" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
@@ -14607,15 +27272,14 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 6;
- icon_state = "bordercolor"
+ dir = 6
},
/obj/machinery/camera/network/engineering{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aAD" = (
+"aXh" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -14624,7 +27288,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aAE" = (
+"aXi" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/light_switch{
dir = 4;
@@ -14637,24 +27301,21 @@
dir = 8
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
+ dir = 10
},
/obj/effect/floor_decal/corner/purple/bordercorner2{
- dir = 10;
- icon_state = "bordercolorcorner2"
+ dir = 10
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aAF" = (
+"aXj" = (
/obj/item/weapon/stool/padded,
/obj/effect/landmark/start{
name = "Janitor"
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aAG" = (
+"aXk" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -14674,127 +27335,37 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aAH" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aAI" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aAJ" = (
-/obj/effect/floor_decal/corner_techfloor_grid/full{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aAK" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aAL" = (
-/obj/structure/catwalk,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aAM" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/catwalk,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aAN" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aAO" = (
+"aXs" = (
/obj/machinery/door/airlock{
name = "Unit 2"
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"aAP" = (
+"aXt" = (
/obj/machinery/door/airlock{
name = "Unit 1"
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"aAQ" = (
+"aXu" = (
/obj/machinery/alarm{
pixel_y = 22
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"aAR" = (
+"aXv" = (
/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aAS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aAT" = (
+"aXx" = (
/turf/simulated/wall/r_wall,
/area/engineering/drone_fabrication)
-"aAU" = (
+"aXy" = (
/turf/simulated/wall,
/area/engineering/drone_fabrication)
-"aAV" = (
+"aXz" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
@@ -14810,26 +27381,28 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aAW" = (
+"aXA" = (
/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+ dir = 1
+ },
+/obj/machinery/camera/network/engineering{
+ dir = 4
},
/turf/simulated/open,
/area/engineering/atmos)
-"aAX" = (
+"aXB" = (
/turf/simulated/open,
/area/engineering/atmos)
-"aAY" = (
+"aXC" = (
/obj/structure/railing{
dir = 4
},
/turf/simulated/open,
/area/engineering/atmos)
-"aAZ" = (
+"aXD" = (
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
-"aBa" = (
+"aXE" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
@@ -14839,16 +27412,16 @@
/obj/structure/railing,
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
-"aBb" = (
+"aXF" = (
/turf/simulated/wall,
/area/engineering/atmos/monitoring)
-"aBc" = (
+"aXG" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/turf/simulated/floor/plating,
/area/engineering/atmos/monitoring)
-"aBd" = (
+"aXH" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
@@ -14864,42 +27437,49 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aBe" = (
+"aXI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/obj/structure/railing,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
-"aBf" = (
+"aXJ" = (
/obj/structure/railing{
dir = 8
},
/turf/simulated/open,
/area/engineering/atmos)
-"aBg" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"aXK" = (
+/obj/structure/railing{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/camera/network/engineering{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_atmos{
+/turf/simulated/open,
+/area/engineering/atmos)
+"aXL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance/engi{
name = "Atmospherics";
req_access = list(24)
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/catwalk,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ layer = 1;
+ name = "Atmospherics Lockdown";
+ opacity = 0;
+ open_layer = 1
},
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/wood,
-/area/engineering/lower/breakroom)
-"aBh" = (
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"aXM" = (
/obj/structure/railing{
dir = 8
},
@@ -14907,9 +27487,7 @@
dir = 8
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
+ dir = 10
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -14923,7 +27501,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aBi" = (
+"aXN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -14935,7 +27513,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aBj" = (
+"aXO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -14952,7 +27530,7 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aBk" = (
+"aXP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -14970,7 +27548,7 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aBl" = (
+"aXQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -14979,7 +27557,7 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aBm" = (
+"aXR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -14992,15 +27570,37 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aBn" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"aXS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"aBo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/storage/box/mousetraps,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/simulated/floor/tiled,
+/area/janitor)
+"aXT" = (
/obj/machinery/door/airlock/multi_tile/metal/mait,
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
@@ -15008,88 +27608,38 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/south)
-"aBp" = (
-/obj/effect/floor_decal/techfloor{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aBq" = (
-/obj/effect/floor_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/closet,
-/obj/random/contraband,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/obj/random/maintenance/clean,
-/obj/random/tool,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aBr" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aBs" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aBt" = (
+"aXZ" = (
/obj/machinery/light/small,
/obj/machinery/recharge_station,
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"aBu" = (
+"aYa" = (
/obj/structure/toilet{
dir = 1
},
/obj/machinery/light/small,
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"aBv" = (
+"aYb" = (
/obj/machinery/light/small{
- dir = 8;
- pixel_x = 0
+ dir = 8
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"aBw" = (
+"aYc" = (
/obj/structure/curtain/open/shower,
/obj/effect/floor_decal/steeldecal/steel_decals5,
/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 1
},
/obj/machinery/shower{
- dir = 1;
- icon_state = "shower"
+ dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 10
@@ -15099,21 +27649,14 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/breakroom/bathroom)
-"aBx" = (
+"aYd" = (
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aBy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aBz" = (
+"aYf" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/obj/structure/cable/cyan{
@@ -15124,44 +27667,40 @@
/obj/machinery/recharge_station,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aBA" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
+"aYg" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
d2 = 8;
- dir = 2;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"aBB" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
- dir = 4
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/recharge_station,
+/obj/machinery/alarm{
+ pixel_y = 22
},
-/obj/machinery/atmospherics/pipe/manifold/visible/supply{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"aYh" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
- dir = 8;
+ dir = 1;
icon_state = "pipe-c"
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aBC" = (
+/area/engineering/drone_fabrication)
+"aYi" = (
/obj/machinery/light_switch{
pixel_y = 28
},
/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8;
- icon_state = "warningcorner"
+ dir = 8
},
/obj/machinery/light/small{
dir = 4
@@ -15172,16 +27711,15 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aBD" = (
+"aYj" = (
/obj/structure/railing{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
-"aBE" = (
+"aYk" = (
/obj/structure/cable/cyan{
d1 = 32;
- d2 = 1;
icon_state = "32-1"
},
/obj/structure/lattice,
@@ -15190,43 +27728,54 @@
},
/turf/simulated/open,
/area/engineering/atmos)
-"aBF" = (
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
+"aYl" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28
},
-/obj/effect/floor_decal/steeldecal/steel_decals9{
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 9
+ },
+/obj/machinery/light{
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
+/obj/machinery/computer/general_air_control/large_tank_control{
+ dir = 4;
+ input_tag = "atmos_out";
+ name = "Atmos Intake Control";
+ output_tag = "atmos_in";
+ sensors = list("atmos_intake" = "Tank")
},
-/obj/machinery/vending/snack{
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"aYm" = (
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/turf/simulated/floor/tiled/monotile,
-/area/rnd/breakroom)
-"aBG" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
},
-/obj/effect/floor_decal/corner/lightorange/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
},
-/obj/effect/floor_decal/corner/lightorange{
- dir = 5;
- icon_state = "corner_white"
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 1
},
-/obj/structure/table/steel,
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/structure/table/standard,
+/obj/item/taperoll/atmos,
+/obj/random/tech_supply,
+/obj/random/tool,
+/obj/machinery/button/remote/blast_door{
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ req_one_access = list(10,24)
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aBH" = (
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"aYn" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 4;
@@ -15243,32 +27792,28 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aBI" = (
+"aYo" = (
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
+ dir = 1
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
+ dir = 1
},
/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 4;
- icon_state = "bordercolorcorner2"
+ dir = 4
},
/obj/machinery/computer/power_monitor,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aBJ" = (
+"aYp" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -15282,8 +27827,7 @@
dir = 5
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 5;
- icon_state = "bordercolor"
+ dir = 5
},
/obj/machinery/computer/rcon,
/obj/machinery/light{
@@ -15291,7 +27835,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aBK" = (
+"aYq" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/zpipe/down{
dir = 1
@@ -15304,45 +27848,42 @@
},
/turf/simulated/open,
/area/engineering/atmos)
-"aBL" = (
+"aYr" = (
/obj/structure/railing{
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/atmos)
-"aBM" = (
+"aYs" = (
/obj/structure/closet,
/obj/random/maintenance/clean,
/obj/random/powercell,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aBN" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aBO" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aBP" = (
+"aYv" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+ dir = 1
+ },
+/obj/machinery/camera/network/tether{
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aBQ" = (
+"aYw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aYx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1;
- icon_state = "warningcorner"
+ dir = 1
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aBR" = (
+"aYy" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -15352,12 +27893,11 @@
/obj/machinery/computer/security/telescreen/entertainment{
desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?";
icon_state = "frame";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aBS" = (
+"aYz" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -15368,21 +27908,28 @@
dir = 8
},
/obj/effect/floor_decal/corner/purple/bordercorner2{
- dir = 8;
- icon_state = "bordercolorcorner2"
+ dir = 8
},
/obj/structure/closet/jcloset,
/obj/item/weapon/soap/nanotrasen,
/turf/simulated/floor/tiled,
/area/janitor)
-"aBT" = (
+"aYA" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/closet/jcloset,
+/obj/item/weapon/soap/nanotrasen,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/janitor)
+"aYB" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/purple/border,
/obj/structure/closet/jcloset,
/obj/item/weapon/soap/nanotrasen,
/turf/simulated/floor/tiled,
/area/janitor)
-"aBU" = (
+"aYC" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -15400,19 +27947,18 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aBV" = (
+"aYD" = (
/obj/effect/floor_decal/techfloor{
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
-"aBW" = (
+"aYE" = (
/obj/effect/floor_decal/techfloor{
dir = 5
},
/obj/machinery/computer/drone_control{
- dir = 4;
- icon_state = "computer"
+ dir = 4
},
/obj/machinery/firealarm{
dir = 8;
@@ -15420,130 +27966,98 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/engineering/drone_fabrication)
-"aBX" = (
+"aYF" = (
/obj/item/weapon/stool,
/turf/simulated/floor/tiled/techmaint,
/area/engineering/drone_fabrication)
-"aBY" = (
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- dir = 2;
- frequency = 1473;
- name = "Confession Intercom";
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/machinery/light/small{
+"aYG" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Chaplain"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aBZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techmaint,
/area/engineering/drone_fabrication)
-"aCa" = (
+"aYH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/drone_fabrication)
+"aYI" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 8;
- icon_state = "warning"
+ dir = 8
},
/obj/effect/floor_decal/rust,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aCb" = (
+"aYJ" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aCc" = (
+"aYK" = (
/obj/effect/landmark{
name = "lightsout"
},
/turf/simulated/open,
/area/engineering/atmos)
-"aCd" = (
+"aYL" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/atmos)
+"aYM" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/machinery/computer/atmoscontrol{
- dir = 4;
- icon_state = "computer"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aCe" = (
+"aYN" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aCf" = (
+"aYO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aCg" = (
+"aYP" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aCh" = (
+"aYQ" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/obj/structure/table/standard,
/obj/item/weapon/storage/firstaid/regular,
/obj/random/medical/lite,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aCi" = (
+"aYR" = (
/obj/structure/table/rack,
/obj/random/maintenance/clean,
/obj/random/toolbox,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aCj" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 5
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aCk" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aCl" = (
+"aYU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -15553,7 +28067,7 @@
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
/area/tether/surfacebase/east_stairs_two)
-"aCm" = (
+"aYV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -15562,7 +28076,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aCn" = (
+"aYW" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -15571,7 +28085,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aCo" = (
+"aYX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -15580,7 +28094,7 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aCp" = (
+"aYY" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -15588,29 +28102,18 @@
dir = 5
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aCq" = (
-/obj/structure/railing,
-/obj/effect/floor_decal/techfloor{
- dir = 9
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aCr" = (
+"aZa" = (
/obj/structure/railing,
/obj/effect/floor_decal/techfloor{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
-"aCs" = (
+"aZb" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -15620,29 +28123,16 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
-"aCt" = (
-/obj/structure/railing,
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aCu" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aCv" = (
+"aZe" = (
/obj/structure/railing,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aCw" = (
+"aZf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aCx" = (
+"aZg" = (
/obj/effect/floor_decal/techfloor/corner{
dir = 4
},
@@ -15650,32 +28140,35 @@
fabricator_tag = "Atmos"
},
/obj/machinery/light/small{
- dir = 8;
- pixel_x = 0
+ dir = 8
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/engineering/drone_fabrication)
-"aCy" = (
+"aZh" = (
/obj/effect/floor_decal/techfloor{
dir = 1
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/engineering/drone_fabrication)
-"aCz" = (
+"aZi" = (
/obj/effect/floor_decal/techfloor{
dir = 5
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/engineering/drone_fabrication)
-"aCA" = (
+"aZj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/drone_fabrication)
+"aZk" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 8;
- icon_state = "warning"
+ dir = 8
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aCB" = (
+"aZl" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -15683,8 +28176,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 8;
- icon_state = "bordercolor"
+ dir = 8
},
/obj/machinery/computer/area_atmos/tag{
dir = 4;
@@ -15692,13 +28184,13 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aCC" = (
+"aZm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aCD" = (
+"aZn" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -15709,13 +28201,13 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aCE" = (
+"aZo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aCF" = (
+"aZp" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
@@ -15723,8 +28215,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 4;
- icon_state = "bordercolor"
+ dir = 4
},
/obj/structure/table/standard,
/obj/item/weapon/paper_bin{
@@ -15734,129 +28225,34 @@
/obj/item/weapon/pen,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aCG" = (
+"aZq" = (
/obj/structure/table/rack,
/obj/random/maintenance/clean,
/obj/random/maintenance/engineering,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aCH" = (
+"aZr" = (
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aCI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/red,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/machinery/camera/network/engineering{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
-"aCJ" = (
+"aZs" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/east_stairs_two)
+"aZt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aCK" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aCL" = (
+"aZu" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aCM" = (
+"aZv" = (
/obj/structure/stairs/east,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aCN" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/effect/floor_decal/rust,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aCO" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor{
- dir = 6
- },
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aCP" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aCQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aCR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aCS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/effect/floor_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aCT" = (
+"aZC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -15866,7 +28262,7 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aCU" = (
+"aZD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -15877,42 +28273,36 @@
/obj/effect/floor_decal/techfloor,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aCV" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/machinery/camera/network/tether{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aCW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aCX" = (
+"aZF" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aCY" = (
-/obj/structure/closet/wardrobe/chaplain_black,
-/obj/item/weapon/storage/fancy/crayons,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"aCZ" = (
+"aZG" = (
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Drone Bay";
+ req_access = list(24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ layer = 1;
+ name = "Atmospherics Lockdown";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/drone_fabrication)
+"aZH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -15921,7 +28311,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/engineering/drone_fabrication)
-"aDa" = (
+"aZI" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -15931,7 +28321,7 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/engineering/drone_fabrication)
-"aDb" = (
+"aZJ" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -15943,39 +28333,35 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/engineering/drone_fabrication)
-"aDc" = (
+"aZK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- icon_state = "map-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/drone_fabrication)
-"aDd" = (
+"aZL" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 10;
- icon_state = "bordercolor"
+ dir = 10
},
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aDe" = (
+"aZM" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
},
/obj/effect/floor_decal/corner/yellow/bordercorner{
- dir = 8;
- icon_state = "bordercolorcorner"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aDf" = (
+"aZN" = (
/obj/structure/bed/chair/office/light,
/obj/effect/landmark/start{
name = "Atmospheric Technician"
@@ -15986,7 +28372,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aDg" = (
+"aZO" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/yellow/bordercorner,
/obj/structure/disposalpipe/segment{
@@ -15994,13 +28380,12 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aDh" = (
+"aZP" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 6;
- icon_state = "bordercolor"
+ dir = 6
},
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -16008,13 +28393,13 @@
/obj/machinery/disposal,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aDi" = (
+"aZQ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aDj" = (
+"aZR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -16023,47 +28408,13 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aDk" = (
+"aZS" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
-"aDl" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/rust,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aDm" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/rust,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aDn" = (
+"aZV" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 4;
@@ -16079,7 +28430,7 @@
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aDo" = (
+"aZW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -16094,10 +28445,9 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aDp" = (
+"aZX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- icon_state = "map-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -16113,110 +28463,84 @@
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aDq" = (
-/obj/structure/railing{
+"baa" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/machinery/drone_fabricator{
+ fabricator_tag = "Atmos"
+ },
+/obj/machinery/camera/network/engineering{
dir = 4
},
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aDr" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aDs" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
-"aDt" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/drone_fabrication)
+"bab" = (
/obj/effect/floor_decal/techfloor,
/turf/simulated/floor/tiled/techfloor/grid,
/area/engineering/drone_fabrication)
-"aDu" = (
+"bac" = (
/obj/effect/floor_decal/techfloor{
dir = 6
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/engineering/drone_fabrication)
-"aDv" = (
+"bad" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techmaint,
/area/engineering/drone_fabrication)
-"aDw" = (
+"bae" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 10;
- icon_state = "bordercolor"
+ dir = 10
},
/obj/machinery/computer/station_alert{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aDx" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
+"baf" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/computer/atmos_alert{
+ dir = 1
},
-/obj/machinery/portable_atmospherics/powered/pump/filled,
/obj/machinery/camera/network/engineering{
- dir = 4
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/engineering/pumpstation)
-"aDy" = (
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"bag" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
/obj/effect/floor_decal/corner/yellow/border{
- dir = 6;
- icon_state = "bordercolor"
+ dir = 6
},
/obj/machinery/computer/security/engineering{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"aDz" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aDA" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aDB" = (
+"baj" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aDC" = (
+"bak" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aDD" = (
+"bal" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aDE" = (
+"bam" = (
/obj/structure/closet/crate,
/obj/random/maintenance/clean,
/obj/random/maintenance/engineering,
@@ -16224,7 +28548,7 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aDF" = (
+"ban" = (
/obj/structure/table/rack,
/obj/random/maintenance/clean,
/obj/random/maintenance/clean,
@@ -16232,93 +28556,51 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aDG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aDH" = (
+"bap" = (
/obj/structure/ladder,
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aDI" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/asmaint2)
-"aDJ" = (
+"bar" = (
/obj/effect/floor_decal/techfloor{
dir = 6
},
/obj/machinery/computer/drone_control{
- dir = 4;
- icon_state = "computer"
+ dir = 4
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/engineering/drone_fabrication)
-"aDK" = (
+"bas" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/drone_fabrication)
-"aDL" = (
+"bat" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/drone_fabrication)
-"aDM" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aDN" = (
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aDO" = (
+"bau" = (
/obj/machinery/alarm{
pixel_y = 22
},
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aDP" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aDQ" = (
+"baw" = (
/obj/structure/catwalk,
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aDR" = (
+"bax" = (
+/turf/simulated/wall,
+/area/maintenance/readingrooms)
+"bay" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -16330,35 +28612,37 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
-"aDS" = (
+"baz" = (
/turf/simulated/wall,
/area/maintenance/lower/atmos)
-"aDT" = (
+"baA" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/catwalk,
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aDU" = (
+"baB" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+ dir = 1
},
/obj/machinery/cryopod/robot,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aDV" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
+"baC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/computer/cryopod/robot{
+ pixel_y = -32
+ },
/obj/effect/landmark{
name = "morphspawn"
},
/turf/simulated/floor/plating,
-/area/engineering/atmos/storage)
-"aDW" = (
+/area/engineering/drone_fabrication)
+"baD" = (
/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1;
- icon_state = "warningcorner"
+ dir = 1
},
/obj/machinery/light/small{
dir = 4
@@ -16370,22 +28654,7 @@
/obj/machinery/disposal,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aDX" = (
-/obj/structure/railing,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aDY" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/random/trash_pile,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aDZ" = (
+"baF" = (
/obj/structure/railing{
dir = 1
},
@@ -16394,32 +28663,7 @@
/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aEa" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aEb" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aEc" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aEd" = (
+"baJ" = (
/obj/structure/railing{
dir = 8
},
@@ -16428,38 +28672,20 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aEe" = (
+"baK" = (
/obj/structure/railing{
dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aEf" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aEg" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aEh" = (
+"baN" = (
/obj/random/trash_pile,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aEi" = (
+"baO" = (
+/turf/simulated/floor/plating,
+/area/maintenance/readingrooms)
+"baP" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -16468,7 +28694,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"aEj" = (
+"baQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/rust,
@@ -16479,58 +28705,42 @@
},
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aEk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/floor_decal/rust,
-/obj/machinery/light_switch{
- pixel_y = 25
- },
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/asmaint2)
-"aEl" = (
+"baS" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/structure/closet/firecloset,
/obj/item/weapon/handcuffs,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aEm" = (
+"baT" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aEn" = (
+"baU" = (
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aEo" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aEp" = (
+"baW" = (
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aEq" = (
+"baX" = (
/obj/structure/railing{
dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aEr" = (
+"baY" = (
/turf/simulated/wall{
can_open = 1
},
/area/maintenance/lower/south)
-"aEs" = (
+"baZ" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/catwalk,
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aEt" = (
+"bba" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -16545,103 +28755,42 @@
},
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aEu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"bbc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aEv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/asmaint2)
-"aEw" = (
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- icon_state = "extinguisher_closed";
- pixel_x = 30
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/asmaint2)
-"aEx" = (
-/obj/random/trash_pile,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aEy" = (
+"bbf" = (
/obj/structure/catwalk,
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aEz" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aEA" = (
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/structure/railing,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aEB" = (
-/obj/structure/railing,
-/obj/structure/closet,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aEC" = (
-/obj/structure/railing,
-/obj/structure/closet,
-/obj/random/maintenance/clean,
-/obj/random/junk,
-/obj/random/maintenance/research,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aED" = (
+"bbk" = (
/obj/structure/railing,
/obj/structure/table/rack,
/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aEE" = (
+"bbl" = (
/obj/structure/table/steel,
/obj/item/clothing/accessory/collar/pink,
/obj/item/clothing/accessory/collar/shock,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aEF" = (
+"bbm" = (
/obj/structure/table/steel,
/obj/item/weapon/flame/candle,
/obj/item/weapon/flame/candle,
/obj/item/weapon/flame/lighter,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aEG" = (
+"bbn" = (
/obj/item/device/camera,
/obj/structure/table/steel,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aEH" = (
+"bbo" = (
/obj/structure/table/steel,
/obj/item/clothing/mask/muzzle,
/obj/machinery/light/small{
@@ -16649,36 +28798,11 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aEI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/kitchenspike,
-/turf/simulated/floor/plating,
+"bbr" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"aEJ" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/closet,
-/obj/random/maintenance/clean,
-/obj/item/stack/flag/red{
- amount = 1
- },
-/obj/item/stack/flag/blue{
- amount = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aEK" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aEL" = (
+"bbt" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -16686,33 +28810,11 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aEM" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/asmaint2)
-"aEN" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/asmaint2)
-"aEO" = (
+"bbw" = (
/obj/structure/cable/green{
d2 = 8;
icon_state = "0-8"
@@ -16724,54 +28826,25 @@
},
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aEP" = (
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aEQ" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aER" = (
+"bbz" = (
/obj/structure/railing,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/open,
/area/engineering/atmos)
-"aES" = (
+"bbA" = (
/obj/structure/railing,
/turf/simulated/open,
/area/engineering/atmos)
-"aET" = (
+"bbB" = (
/obj/structure/railing,
/obj/machinery/light{
dir = 4
},
/turf/simulated/open,
/area/engineering/atmos)
-"aEU" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aEV" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aEW" = (
+"bbE" = (
/obj/structure/railing{
dir = 8
},
@@ -16780,15 +28853,11 @@
/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aEX" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/asmaint2)
-"aEY" = (
+"bbG" = (
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aEZ" = (
+"bbH" = (
/obj/structure/table/steel,
/obj/effect/floor_decal/rust,
/obj/machinery/firealarm{
@@ -16800,59 +28869,53 @@
/obj/random/tech_supply,
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aFa" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"aFb" = (
+"bbI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Atmospherics Balcony";
+ req_access = list(24)
+ },
+/obj/structure/catwalk,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ layer = 1;
+ name = "Atmospherics Lockdown";
+ opacity = 0;
+ open_layer = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"bbJ" = (
/obj/structure/catwalk,
/turf/simulated/open,
/area/engineering/atmos)
-"aFc" = (
+"bbK" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 8
},
/turf/simulated/open,
/area/engineering/atmos)
-"aFd" = (
+"bbL" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 4
},
/turf/simulated/open,
/area/engineering/atmos)
-"aFe" = (
+"bbM" = (
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aFf" = (
-/obj/structure/table/steel,
-/obj/item/clothing/mask/balaclava,
-/obj/item/clothing/mask/bandana,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aFg" = (
-/obj/structure/table/steel,
-/obj/item/weapon/handcuffs/fuzzy,
-/obj/item/weapon/handcuffs/legcuffs/fuzzy,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aFh" = (
-/obj/structure/bed,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aFi" = (
+"bbQ" = (
/obj/structure/railing{
dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aFj" = (
+"bbR" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 5
@@ -16865,9 +28928,13 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aFk" = (
+"bbS" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 10
@@ -16880,26 +28947,24 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aFl" = (
+"bbT" = (
/obj/effect/floor_decal/rust,
/obj/random/maintenance/research,
/obj/structure/closet/wardrobe/white,
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aFm" = (
+"bbU" = (
/obj/effect/floor_decal/rust,
/obj/structure/bed,
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aFn" = (
-/obj/effect/floor_decal/rust,
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/maintenance/asmaint2)
-"aFo" = (
+"bbW" = (
/obj/structure/table/steel,
/obj/effect/floor_decal/rust,
/obj/random/maintenance/research,
@@ -16907,58 +28972,40 @@
/obj/random/tech_supply,
/turf/simulated/floor/tiled/steel_dirty,
/area/maintenance/asmaint2)
-"aFp" = (
+"bbX" = (
/obj/structure/dogbed,
/obj/item/clothing/accessory/collar/pink,
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aFq" = (
+"bbY" = (
/obj/machinery/alarm{
pixel_y = 22
},
/turf/simulated/floor/carpet,
/area/maintenance/lower/atmos)
-"aFr" = (
+"bbZ" = (
/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
+ dir = 1
},
/obj/structure/mirror{
dir = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/carpet,
/area/maintenance/lower/atmos)
-"aFs" = (
+"bca" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/rainbow,
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aFt" = (
-/obj/effect/decal/cleanable/blood,
-/obj/item/device/tape{
- desc = "No Talk"
- },
-/obj/item/clothing/suit/varsity/brown{
- desc = "Showdown"
- },
-/obj/item/clothing/head/richard,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aFu" = (
-/obj/structure/railing{
+"bcd" = (
+/obj/structure/catwalk,
+/obj/machinery/camera/network/engineering{
dir = 1
},
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aFv" = (
+/turf/simulated/open,
+/area/engineering/atmos)
+"bce" = (
/obj/structure/catwalk,
/obj/machinery/alarm{
dir = 1;
@@ -16966,147 +29013,61 @@
},
/turf/simulated/open,
/area/engineering/atmos)
-"aFw" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4;
- icon_state = "intact"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
-"aFx" = (
+"bcf" = (
/obj/structure/catwalk,
/obj/machinery/light,
/turf/simulated/open,
/area/engineering/atmos)
-"aFy" = (
+"bcg" = (
/obj/structure/table/rack,
/obj/item/clothing/under/color/black,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aFz" = (
-/obj/structure/table/steel,
-/obj/item/clothing/head/welding/demon,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aFA" = (
+"bci" = (
/obj/structure/table/steel,
/obj/item/clothing/glasses/sunglasses/blindfold,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aFB" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aFC" = (
+"bck" = (
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aFD" = (
+"bcl" = (
/turf/simulated/floor/carpet,
/area/maintenance/lower/atmos)
-"aFE" = (
+"bcm" = (
/obj/structure/table/steel,
/obj/random/coin,
/obj/item/clothing/accessory/scarf/stripedred,
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aFF" = (
-/obj/effect/decal/cleanable/blood,
-/obj/item/clothing/shoes/athletic{
- desc = "Assault"
- },
-/obj/item/clothing/under/pants{
- desc = "Overdose"
- },
-/obj/item/weapon/material/twohanded/baseballbat{
- desc = "Decadence";
- health = 1989
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aFG" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aFH" = (
-/obj/structure/closet,
-/obj/random/maintenance/security,
-/obj/random/contraband,
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/engineering,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/suit/storage/vest/hoscoat/jensen{
- armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0);
- desc = "Its an old, dusty trenchcoat... what a shame.";
- name = "trenchcoat"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aFI" = (
+"bcq" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/simple_door/wood,
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aFJ" = (
+"bcr" = (
/obj/structure/railing,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aFK" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aFL" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/atmos)
-"aFM" = (
+"bcu" = (
/obj/effect/floor_decal/techfloor{
dir = 1
},
/obj/structure/railing,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
-"aFN" = (
+"bcv" = (
/obj/effect/floor_decal/techfloor{
dir = 1
},
/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
+ dir = 1
},
/obj/structure/railing,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
-"aFO" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/structure/railing,
-/obj/structure/closet/crate,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/obj/random/cigarettes,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/atmos)
-"aFP" = (
+"bcx" = (
/obj/effect/floor_decal/techfloor{
dir = 5
},
@@ -17114,179 +29075,100 @@
/obj/random/trash_pile,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
-"aFQ" = (
+"bcy" = (
/obj/structure/catwalk,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aFR" = (
-/obj/structure/catwalk,
-/obj/machinery/alarm{
- pixel_y = 22
- },
+"bcA" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aFS" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/glasses/sunglasses{
- desc = "My vision is augmented";
- icon_state = "sun";
- name = "Augmented shades"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aFT" = (
+/area/maintenance/readingrooms)
+"bcB" = (
/obj/structure/closet,
/obj/item/clothing/under/schoolgirl,
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aFU" = (
+"bcC" = (
/obj/machinery/vending/coffee{
product_ads = "Have a drink!;Drink up!;It's good for you!;Would you like a hot joe?;I'd kill for some coffee!;The best beans in the galaxy.;Only the finest brew for you.;Mmmm. Nothing like a coffee.;I like coffee, don't you?;Coffee helps you work!;Try some tea.;We hope you like the best!;Try our new chocolate!;Admin conspiracies;Would you like some tea, Mrs. Nesbit?";
shut_up = 0
},
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aFV" = (
+"bcD" = (
/obj/structure/table/steel,
/obj/machinery/microwave,
/obj/item/weapon/storage/box/donkpockets,
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aFW" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aFX" = (
-/obj/structure/catwalk,
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aFY" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aFZ" = (
+"bcG" = (
/obj/effect/floor_decal/techfloor,
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aGa" = (
-/obj/machinery/door/airlock/multi_tile/metal/mait{
- name = "Maintenance Access"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
+"bcK" = (
/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/south)
-"aGb" = (
-/obj/effect/floor_decal/techfloor,
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aGc" = (
-/obj/effect/floor_decal/techfloor,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aGd" = (
-/obj/effect/floor_decal/techfloor{
- dir = 6
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aGe" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
+/obj/machinery/light/small{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"bcM" = (
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"aGf" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aGg" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
+"bcN" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGh" = (
+"bcO" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/readingrooms)
+"bcP" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aGi" = (
+"bcQ" = (
/obj/item/weapon/stool/padded,
/obj/random/action_figure,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aGj" = (
+"bcR" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aGk" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aGl" = (
+"bcT" = (
/obj/structure/railing{
dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aGm" = (
+"bcU" = (
/obj/machinery/light/small,
/obj/structure/railing{
dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aGn" = (
+"bcV" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
@@ -17297,7 +29179,7 @@
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aGo" = (
+"bcW" = (
/obj/effect/floor_decal/techfloor{
dir = 10
},
@@ -17306,7 +29188,7 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
-"aGp" = (
+"bcX" = (
/obj/effect/floor_decal/techfloor,
/obj/structure/railing{
dir = 4
@@ -17316,14 +29198,14 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
-"aGq" = (
+"bcY" = (
/obj/effect/floor_decal/techfloor,
/obj/structure/catwalk,
/obj/random/junk,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aGr" = (
+"bcZ" = (
/obj/effect/floor_decal/techfloor{
dir = 6
},
@@ -17335,20 +29217,14 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
-"aGs" = (
+"bda" = (
/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 8
- },
/obj/structure/cable{
icon_state = "2-4"
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGt" = (
-/obj/structure/railing{
- dir = 8
- },
+"bdb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -17356,33 +29232,8 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"aGu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aGv" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aGw" = (
+"bdd" = (
/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -17390,37 +29241,138 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGx" = (
+"bde" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"bdf" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"bdg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/readingrooms)
+"bdh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/readingrooms)
+"bdi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/readingrooms)
+"bdj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/maintenance/readingrooms)
+"bdk" = (
/obj/machinery/light/small{
dir = 8
},
/obj/structure/plushie/carp{
- dir = 4;
- icon_state = "carpplushie"
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aGy" = (
+"bdl" = (
/obj/structure/table/woodentable,
/obj/item/weapon/reagent_containers/food/drinks/teapot,
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aGz" = (
+"bdm" = (
/obj/structure/plushie/ian{
dir = 8;
- icon_state = "ianplushie";
pixel_y = 6
},
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aGA" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aGB" = (
+"bdo" = (
/obj/structure/railing,
/obj/effect/floor_decal/techfloor{
dir = 9
@@ -17435,7 +29387,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGC" = (
+"bdp" = (
/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 6
},
@@ -17448,7 +29400,7 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGD" = (
+"bdq" = (
/obj/structure/railing,
/obj/effect/floor_decal/techfloor{
dir = 1
@@ -17464,7 +29416,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGE" = (
+"bdr" = (
/obj/structure/railing,
/obj/effect/floor_decal/techfloor{
dir = 1
@@ -17477,7 +29429,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGF" = (
+"bds" = (
/obj/structure/railing,
/obj/machinery/light/small{
dir = 1
@@ -17493,15 +29445,13 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGG" = (
+"bdt" = (
/obj/structure/railing,
/obj/effect/floor_decal/techfloor{
dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
@@ -17512,7 +29462,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGH" = (
+"bdu" = (
/obj/structure/railing,
/obj/effect/floor_decal/techfloor{
dir = 1
@@ -17528,7 +29478,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGI" = (
+"bdv" = (
/obj/structure/railing,
/obj/effect/floor_decal/techfloor{
dir = 1
@@ -17547,7 +29497,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGJ" = (
+"bdw" = (
/obj/structure/railing{
dir = 4
},
@@ -17568,7 +29518,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGK" = (
+"bdx" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/techfloor{
dir = 1
@@ -17586,7 +29536,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGL" = (
+"bdy" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 4
@@ -17601,7 +29551,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGM" = (
+"bdz" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/techfloor,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
@@ -17617,27 +29567,9 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGN" = (
-/obj/machinery/door/morgue{
- dir = 2;
- name = "Confession Booth"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aGO" = (
-/obj/effect/floor_decal/techfloor,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aGP" = (
+"bdA" = (
/obj/structure/railing{
- dir = 4
+ dir = 8
},
/obj/effect/floor_decal/techfloor,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
@@ -17646,11 +29578,13 @@
/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/obj/random/trash_pile,
+/obj/structure/railing{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"aGQ" = (
+"bdD" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/techfloor,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
@@ -17666,7 +29600,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGR" = (
+"bdE" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 9
@@ -17681,46 +29615,32 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aGS" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -28
+"bdF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 9;
- icon_state = "bordercolor"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/computer/general_air_control/large_tank_control{
- dir = 4;
- frequency = 1441;
- input_tag = "atmos_out";
- name = "Atmos Intake Control";
- output_tag = "atmos_in";
- sensors = list("atmos_intake" = "Tank")
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos/monitoring)
-"aGT" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/readingrooms)
+"bdG" = (
/obj/structure/plushie/drone{
- dir = 1;
- icon_state = "droneplushie"
+ dir = 1
},
/turf/simulated/floor/wood,
/area/maintenance/lower/atmos)
-"aGU" = (
+"bdH" = (
/obj/structure/table/steel,
/obj/item/weapon/tool/crowbar,
/obj/item/weapon/tool/screwdriver,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/atmos)
-"aGV" = (
+"bdI" = (
/obj/machinery/optable{
name = "Robotics Operating Table"
},
@@ -17731,19 +29651,7 @@
/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/atmos)
-"aGW" = (
-/obj/structure/table/steel,
-/obj/machinery/vending/wallmed1{
- emagged = 1;
- pixel_y = 32;
- shut_up = 0
- },
-/obj/item/weapon/tool/wirecutters,
-/obj/item/weapon/tool/wrench,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/atmos)
-"aGX" = (
+"bdK" = (
/obj/structure/railing{
dir = 1
},
@@ -17752,112 +29660,60 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aGY" = (
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/effect/decal/cleanable/dirt,
+"bdL" = (
+/obj/random/cutout,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aGZ" = (
-/obj/effect/decal/cleanable/cobweb{
- icon_state = "cobweb2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aHa" = (
+"bdO" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/supply,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aHb" = (
+"bdP" = (
/obj/structure/catwalk,
/obj/structure/cable{
icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aHc" = (
+"bdQ" = (
+/turf/simulated/mineral,
+/area/maintenance/readingrooms)
+"bdR" = (
+/obj/structure/lattice,
+/turf/simulated/mineral/floor/cave,
+/area/maintenance/readingrooms)
+"bdS" = (
/turf/simulated/wall/r_wall,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHd" = (
-/obj/structure/sink/kitchen{
- name = "sink";
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHe" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/research{
- name = "Slime Pen 1";
- req_access = list();
- req_one_access = list(47,55)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen1";
- name = "Pen 1 Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHf" = (
+"bdT" = (
/obj/structure/railing{
dir = 4
},
/obj/random/trash_pile,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aHg" = (
-/obj/structure/table/steel,
-/obj/item/weapon/tape_roll,
-/obj/item/stack/medical/bruise_pack,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/atmos)
-"aHh" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/atmos)
-"aHi" = (
+"bdW" = (
/obj/structure/table/steel,
/obj/item/stack/medical/splint/ghetto,
/obj/random/technology_scanner,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
-"aHj" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aHk" = (
+"bdY" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aHl" = (
+"bdZ" = (
/obj/structure/table/steel,
/obj/item/weapon/hand_labeler,
/obj/item/weapon/storage/fancy/candle_box,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aHm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aHn" = (
+"beb" = (
/obj/structure/railing{
dir = 8
},
@@ -17871,70 +29727,62 @@
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aHo" = (
+"bec" = (
/obj/structure/sign/department/telecoms,
/turf/simulated/wall,
/area/maintenance/substation/tcomms)
-"aHp" = (
+"bed" = (
/obj/machinery/door/airlock/maintenance/engi{
name = "Telecomms Substation"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/substation/tcomms)
-"aHq" = (
+"bee" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/simulated/wall,
/area/maintenance/substation/tcomms)
-"aHr" = (
+"bef" = (
/turf/simulated/wall,
/area/maintenance/substation/tcomms)
-"aHs" = (
-/obj/machinery/light{
+"beg" = (
+/turf/simulated/mineral/floor/cave,
+/area/maintenance/readingrooms)
+"beh" = (
+/obj/machinery/alarm{
dir = 8;
- icon_state = "tube1";
- pixel_y = 0
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/readingrooms)
+"bej" = (
+/obj/machinery/camera/network/research/xenobio{
+ network = list("Xenobiology")
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHt" = (
+"bek" = (
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHu" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHv" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/research{
- name = "Slime Pen 2";
- req_access = list();
- req_one_access = list(47,55)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen2";
- name = "Pen 2 Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHw" = (
+"bel" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 8;
@@ -17958,35 +29806,44 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHx" = (
-/obj/structure/table/steel,
+"bem" = (
+/obj/structure/sink/kitchen{
+ name = "sink";
+ pixel_y = 32
+ },
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHy" = (
+"ben" = (
/obj/machinery/processor,
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
pixel_x = 4;
pixel_y = 26
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHz" = (
-/obj/structure/railing{
+"beo" = (
+/obj/item/device/radio/intercom{
dir = 1;
- icon_state = "railing0"
+ name = "Station Intercom (General)";
+ pixel_y = 21
},
-/obj/machinery/camera/network/engineering{
- dir = 4
+/obj/machinery/alarm{
+ pixel_y = 30
},
-/turf/simulated/open,
-/area/engineering/atmos)
-"aHA" = (
+/obj/machinery/computer/security/xenobio,
+/obj/machinery/camera/network/research/xenobio,
+/turf/simulated/floor/tiled/white,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bep" = (
/obj/machinery/smartfridge/secure/extract,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHB" = (
+"beq" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/white,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"ber" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 4
@@ -18009,20 +29866,20 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHC" = (
+"bes" = (
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHD" = (
+"bet" = (
/obj/structure/railing{
dir = 4
},
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aHE" = (
+"beu" = (
/obj/structure/table/steel,
/obj/random/medical/pillbottle,
/obj/machinery/light/small{
@@ -18031,43 +29888,28 @@
/obj/random/tech_supply,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
-"aHF" = (
+"bev" = (
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
-"aHG" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
+"bex" = (
+/obj/structure/table/steel,
+/obj/random/medical/lite,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
-"aHH" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aHI" = (
+"bey" = (
/obj/structure/table/steel,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aHJ" = (
+"bez" = (
/obj/item/weapon/stool,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aHK" = (
+"beA" = (
/obj/structure/railing{
dir = 8
},
@@ -18079,12 +29921,11 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aHL" = (
+"beB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
@@ -18094,7 +29935,7 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/maintenance/substation/tcomms)
-"aHM" = (
+"beC" = (
/obj/machinery/power/terminal,
/obj/structure/cable{
icon_state = "0-8"
@@ -18102,68 +29943,7 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/maintenance/substation/tcomms)
-"aHN" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/substation/tcomms)
-"aHO" = (
-/obj/machinery/camera/network/research/xenobio{
- network = list("Xenobiology")
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHP" = (
-/turf/simulated/wall/r_wall,
-/area/tcommsat/computer)
-"aHQ" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled/white,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHR" = (
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHS" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen3";
- name = "Pen 3 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 3";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHT" = (
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 3";
- req_access = list(55)
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHU" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aHV" = (
+"beE" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -18175,88 +29955,70 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/tcomms)
-"aHW" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aHX" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aHY" = (
-/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 4";
- req_access = list(55)
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aHZ" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen4";
- name = "Pen 4 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 4";
- req_access = list(55)
+"beF" = (
+/turf/simulated/wall/r_wall,
+/area/tcommsat/computer)
+"beG" = (
+/obj/machinery/alarm/monitor/isolation{
+ alarm_id = "slime_pens";
+ dir = 4;
+ pixel_x = -22
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aIa" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/purple/border,
-/obj/structure/closet/jcloset,
-/obj/item/weapon/soap/nanotrasen,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/janitor)
-"aIb" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4
+"beH" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/research{
+ name = "Slime Pen 1";
+ req_one_access = list(47,55)
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aIc" = (
-/obj/machinery/light/small{
- dir = 4
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopen1";
+ name = "Pen 1 Blast Doors";
+ opacity = 0
},
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aId" = (
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"beI" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"beJ" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"beK" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/research{
+ name = "Slime Pen 2";
+ req_one_access = list(47,55)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopen2";
+ name = "Pen 2 Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"beL" = (
+/obj/machinery/alarm/monitor/isolation{
+ alarm_id = "slime_pens";
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"beO" = (
/obj/machinery/mecha_part_fabricator/pros{
component_coeff = 0.9;
desc = "A machine used for construction of legit prosthetics. You weren't sure if cardboard was considered an engineering material until now.";
dir = 4;
- emagged = 0;
name = "Legitimate Prosthetics Fabricator";
req_access = list();
res_max_amount = 150000;
@@ -18264,40 +30026,40 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aIe" = (
+"beP" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aIf" = (
+"beQ" = (
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/atmos)
-"aIg" = (
+"beR" = (
/obj/machinery/vending/assist,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aIh" = (
+"beS" = (
/obj/random/trash_pile,
/obj/structure/railing{
dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aIi" = (
+"beT" = (
/obj/machinery/light/small,
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aIj" = (
+"beU" = (
/obj/structure/table/steel,
/obj/item/weapon/paper_bin,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aIk" = (
+"beV" = (
/obj/structure/table/steel,
/obj/item/device/flashlight/lamp,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aIl" = (
+"beW" = (
/obj/structure/railing{
dir = 8
},
@@ -18309,18 +30071,17 @@
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aIm" = (
+"beX" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Telecomms Substation Bypass"
},
/turf/simulated/floor/plating,
/area/maintenance/substation/tcomms)
-"aIn" = (
+"beY" = (
/obj/machinery/power/smes/buildable{
RCon_tag = "Substation - Telecomms";
charge = 100000;
- output_attempt = 0;
- outputting = 0
+ output_attempt = 0
},
/obj/structure/cable/green{
icon_state = "0-4"
@@ -18330,7 +30091,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/tcomms)
-"aIo" = (
+"beZ" = (
/obj/machinery/power/sensor{
name = "Powernet Sensor - Telecomms Subgrid";
name_tag = "Telecomms Subgrid"
@@ -18351,7 +30112,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/tcomms)
-"aIp" = (
+"bfa" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -18363,38 +30124,29 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/tcomms)
-"aIq" = (
+"bfb" = (
/turf/simulated/wall/r_wall,
/area/maintenance/substation/tcomms)
-"aIr" = (
+"bfc" = (
/turf/simulated/wall/r_wall,
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aIs" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+"bfd" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air/airlock{
+ start_pressure = 4559.63
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aIt" = (
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/computer)
+"bfe" = (
/obj/structure/filingcabinet,
/obj/machinery/status_display{
pixel_y = 30
},
/turf/simulated/floor/tiled/dark,
/area/tcommsat/computer)
-"aIu" = (
+"bff" = (
/obj/structure/table/standard,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/folder/yellow,
@@ -18402,14 +30154,12 @@
dir = 1
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/turf/simulated/floor/tiled/dark,
/area/tcommsat/computer)
-"aIv" = (
+"bfg" = (
/obj/structure/table/standard,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen/blue{
@@ -18418,26 +30168,25 @@
},
/turf/simulated/floor/tiled/dark,
/area/tcommsat/computer)
-"aIw" = (
+"bfh" = (
/obj/machinery/alarm{
pixel_y = 22
},
/turf/simulated/floor/tiled/dark,
/area/tcommsat/computer)
-"aIx" = (
+"bfi" = (
/obj/structure/table/standard,
/obj/item/device/flashlight/lamp,
/turf/simulated/floor/tiled/dark,
/area/tcommsat/computer)
-"aIy" = (
+"bfj" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aIz" = (
+"bfk" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -18446,7 +30195,7 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aIA" = (
+"bfl" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 8;
@@ -18473,28 +30222,25 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aIB" = (
+"bfm" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aIC" = (
+"bfn" = (
+/obj/structure/table/steel,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aID" = (
-/obj/machinery/door/firedoor/glass/hidden,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aIE" = (
+"bfo" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aIF" = (
+"bfp" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 4
@@ -18520,7 +30266,7 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aIG" = (
+"bfq" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -18529,7 +30275,7 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aIH" = (
+"bfr" = (
/obj/machinery/firealarm{
dir = 4;
layer = 3.3;
@@ -18537,24 +30283,19 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aII" = (
-/obj/structure/morgue,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aIJ" = (
+"bft" = (
/obj/structure/closet/crate/freezer,
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aIK" = (
+"bfu" = (
/turf/simulated/wall{
can_open = 1
},
/area/maintenance/lower/atmos)
-"aIL" = (
+"bfv" = (
/obj/structure/railing{
dir = 8
},
@@ -18565,12 +30306,12 @@
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aIM" = (
+"bfw" = (
/turf/simulated/wall,
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aIN" = (
+"bfx" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18580,13 +30321,13 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aIO" = (
+"bfy" = (
/obj/structure/sign/securearea,
/turf/simulated/wall/r_wall,
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aIP" = (
+"bfz" = (
/obj/machinery/porta_turret{
dir = 6
},
@@ -18597,47 +30338,25 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aIQ" = (
+"bfA" = (
/obj/machinery/camera/network/tcomms,
/turf/simulated/floor/tiled/dark,
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aIR" = (
-/obj/machinery/turretid/lethal{
- ailock = 1;
- check_synth = 1;
- control_area = /area/tcommsat/chamber;
- desc = "A firewall prevents AIs from interacting with this device.";
- name = "Telecoms lethal turret control";
- pixel_x = 29;
- pixel_y = 0;
- req_access = list(61);
- req_one_access = list(12)
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/obj/effect/decal/cleanable/cobweb2,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/tcomsat{
- name = "\improper Telecomms Lobby"
- })
-"aIS" = (
+"bfC" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aIT" = (
+"bfD" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aIU" = (
+"bfE" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
@@ -18646,29 +30365,30 @@
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aIV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10;
- icon_state = "intact"
+"bfF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aIW" = (
+"bfG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tcommsat/computer)
+"bfH" = (
/obj/machinery/computer/telecomms/monitor{
dir = 8;
network = "tcommsat"
},
/turf/simulated/floor/tiled/dark,
/area/tcommsat/computer)
-"aIX" = (
-/obj/machinery/alarm/monitor/isolation{
- alarm_id = "slime_pens";
- dir = 4;
- pixel_x = -22
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aIY" = (
+"bfI" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/readingrooms)
+"bfJ" = (
/obj/machinery/door/blast/regular{
id = "xenobiodiv1";
layer = 8;
@@ -18676,12 +30396,11 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aIZ" = (
+"bfK" = (
/obj/machinery/button/remote/blast_door{
id = "xenobiodiv1";
name = "Divider 1 Blast Doors";
pixel_x = -38;
- pixel_y = 0;
req_access = list(55)
},
/obj/machinery/button/remote/blast_door{
@@ -18699,43 +30418,22 @@
req_access = list(55)
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJa" = (
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJb" = (
-/obj/machinery/door/firedoor/glass/hidden{
dir = 8
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJc" = (
-/obj/machinery/alarm/monitor/isolation{
- alarm_id = "slime_pens";
- dir = 8;
- pixel_x = 22
- },
-/turf/simulated/floor/reinforced,
+"bfL" = (
+/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJd" = (
-/obj/machinery/door/blast/regular{
- id = "xenobiodiv2";
- layer = 8;
- name = "Divider 2 Blast Door"
- },
-/turf/simulated/floor/reinforced,
+"bfM" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJe" = (
+"bfN" = (
/obj/machinery/button/remote/blast_door{
id = "xenobiodiv2";
name = "Divider 2 Blast Doors";
pixel_x = 38;
- pixel_y = 0;
req_access = list(55)
},
/obj/machinery/button/remote/blast_door{
@@ -18754,18 +30452,22 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJf" = (
+"bfO" = (
+/obj/machinery/door/blast/regular{
+ id = "xenobiodiv2";
+ layer = 8;
+ name = "Divider 2 Blast Door"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bfP" = (
/obj/structure/morgue,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aJg" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/atmos)
-"aJh" = (
+"bfR" = (
/turf/simulated/mineral,
/area/maintenance/lower/atmos)
-"aJi" = (
+"bfS" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -18782,13 +30484,13 @@
/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aJj" = (
+"bfT" = (
/obj/structure/sign/department/telecoms,
/turf/simulated/wall,
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aJk" = (
+"bfU" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/decal/cleanable/cobweb,
/obj/machinery/light/small{
@@ -18798,7 +30500,7 @@
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aJl" = (
+"bfV" = (
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
@@ -18806,14 +30508,13 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/tiled,
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aJm" = (
+"bfW" = (
/obj/machinery/turretid/stun{
ailock = 1;
check_synth = 1;
@@ -18821,21 +30522,18 @@
desc = "A firewall prevents AIs from interacting with this device.";
name = "Telecoms Foyer turret control";
pixel_x = 29;
- pixel_y = 0;
req_access = list(61);
req_one_access = list(12)
},
/obj/machinery/firealarm{
- dir = 2;
layer = 3.3;
- pixel_x = 0;
pixel_y = 26
},
/turf/simulated/floor/tiled,
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aJn" = (
+"bfX" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -18843,7 +30541,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJo" = (
+"bfY" = (
/obj/machinery/camera/network/tcomms,
/obj/structure/sign/electricshock{
pixel_y = 32
@@ -18852,7 +30550,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJp" = (
+"bfZ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18865,7 +30563,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJq" = (
+"bga" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -18873,7 +30571,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJr" = (
+"bgb" = (
/obj/structure/window/reinforced/full,
/obj/structure/grille,
/obj/structure/cable/green{
@@ -18885,25 +30583,18 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJs" = (
+"bgc" = (
/turf/simulated/floor/tiled,
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJt" = (
+"bgd" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 1;
- icon_state = "map"
- },
-/turf/simulated/floor/tiled,
-/area/tcommsat/computer)
-"aJv" = (
+"bge" = (
/obj/machinery/camera/network/tcomms{
dir = 4
},
@@ -18916,33 +30607,52 @@
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aJw" = (
+"bgf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/universal{
dir = 4
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aJx" = (
+"bgg" = (
/obj/machinery/atmospherics/binary/passive_gate/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aJy" = (
+"bgh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tcommsat/computer)
+"bgi" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aJz" = (
+"bgj" = (
/obj/machinery/computer/telecomms/server{
dir = 8;
network = "tcommsat"
},
/turf/simulated/floor/tiled/dark,
/area/tcommsat/computer)
-"aJA" = (
+"bgk" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/machinery/camera/network/research/xenobio{
+ dir = 9;
+ network = list("Xenobiology")
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bgl" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -18969,7 +30679,7 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJB" = (
+"bgm" = (
/obj/machinery/disposal,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -18981,39 +30691,28 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJC" = (
-/obj/effect/floor_decal/borderfloor{
+"bgn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/camera/network/tether{
- dir = 9
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bgo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bgp" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aJD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJE" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aJF" = (
+"bgq" = (
/obj/machinery/disposal,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -19024,7 +30723,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJG" = (
+"bgr" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -19051,40 +30750,32 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aJH" = (
-/obj/structure/railing{
+"bgs" = (
+/obj/structure/disposalpipe/trunk{
dir = 8
},
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aJI" = (
-/obj/structure/table/steel,
-/obj/item/bodybag,
-/obj/item/bodybag,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aJJ" = (
-/obj/structure/table/steel,
-/obj/item/device/nif/bad,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aJK" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/machinery/camera/network/research/xenobio{
+ dir = 4;
+ network = list("Xenobiology")
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bgw" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aJL" = (
+"bgx" = (
/turf/simulated/wall,
/area/vacant/vacant_bar_upper)
-"aJM" = (
+"bgy" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/techfloor/corner,
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aJN" = (
+"bgz" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/techfloor{
dir = 4
@@ -19097,7 +30788,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aJO" = (
+"bgA" = (
/obj/machinery/door/airlock/highsecurity{
name = "Telecomms Access";
req_access = list(61);
@@ -19114,7 +30805,7 @@
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aJP" = (
+"bgB" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -19123,24 +30814,7 @@
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aJQ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/tcommsat/entrance{
- name = "\improper Telecomms Entrance"
- })
-"aJR" = (
+"bgD" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19156,7 +30830,7 @@
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aJS" = (
+"bgE" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19170,15 +30844,14 @@
},
/obj/machinery/door/airlock/hatch{
name = "Telecomms Foyer";
- req_access = list(61);
- req_one_access = list(12)
+ req_access = list(61)
},
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJT" = (
+"bgF" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19194,7 +30867,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJU" = (
+"bgG" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19210,7 +30883,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJV" = (
+"bgH" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -19235,24 +30908,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJW" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/tcomsat{
- name = "\improper Telecomms Lobby"
- })
-"aJX" = (
+"bgJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -19283,7 +30939,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJY" = (
+"bgK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -19299,7 +30955,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aJZ" = (
+"bgL" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19320,26 +30976,10 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aKa" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/tcomsat{
- name = "\improper Telecomms Lobby"
- })
-"aKb" = (
+"bgN" = (
/obj/machinery/door/airlock/hatch{
name = "Telecoms Control Room";
- req_access = list(61);
- req_one_access = list(12)
+ req_access = list(61)
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -19355,42 +30995,33 @@
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aKc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
- },
-/turf/simulated/floor/tiled,
-/area/tcommsat/computer)
-"aKd" = (
+"bgO" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aKe" = (
+"bgP" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aKf" = (
+"bgQ" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -19402,15 +31033,25 @@
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aKg" = (
+"bgR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tcommsat/computer)
+"bgS" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -19423,156 +31064,89 @@
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aKh" = (
+"bgT" = (
/turf/simulated/wall/r_wall,
/area/tcommsat/chamber)
-"aKi" = (
+"bgU" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/reading_room)
+"bgV" = (
+/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/medical/storage)
-"aKj" = (
+/area/tether/surfacebase/reading_room)
+"bgW" = (
/obj/random/slimecore,
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKk" = (
+"bgX" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
- id = "xenobiopen5";
- name = "Pen 5 Blast Doors";
+ id = "xenobiopen3";
+ name = "Pen 3 Blast Doors";
opacity = 0
},
/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 5";
+ name = "Slime Pen 3";
req_access = list(55)
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKl" = (
+"bgY" = (
/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 5";
+ name = "Slime Pen 3";
req_access = list(55)
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/asmaint2)
-"aKo" = (
-/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 6";
- req_access = list(55)
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKp" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen6";
- name = "Pen 6 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 6";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKq" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen7";
- name = "Pen 7 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 7";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKr" = (
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 7";
- req_access = list(55)
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKs" = (
-/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 8";
- req_access = list(55)
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKt" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen8";
- name = "Pen 8 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 8";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKu" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
+"bgZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKv" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/medical/storage)
-"aKw" = (
-/obj/structure/table/rack,
-/obj/item/device/flashlight,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aKx" = (
+"bha" = (
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Slime Pen 4";
+ req_access = list(55)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bhb" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopen4";
+ name = "Pen 4 Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Slime Pen 4";
+ req_access = list(55)
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bhd" = (
/obj/structure/closet/secure_closet/personal,
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aKy" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar_upper)
-"aKz" = (
+"bhf" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 28
},
/obj/structure/cable/green{
@@ -19581,24 +31155,17 @@
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aKA" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar_upper)
-"aKB" = (
+"bhh" = (
/turf/simulated/floor/plating,
/area/vacant/vacant_bar_upper)
-"aKC" = (
+"bhi" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/weapon/reagent_containers/food/drinks/bottle/vermouth,
/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,
/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac,
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aKD" = (
+"bhj" = (
/obj/structure/railing{
dir = 1
},
@@ -19607,7 +31174,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aKE" = (
+"bhk" = (
/obj/structure/railing{
dir = 1
},
@@ -19616,25 +31183,24 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/south)
-"aKF" = (
+"bhl" = (
/obj/structure/sign/securearea,
/turf/simulated/wall,
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aKG" = (
+"bhm" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/obj/item/device/radio/intercom{
- dir = 2;
pixel_y = -24
},
/turf/simulated/floor/tiled,
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aKH" = (
+"bhn" = (
/obj/machinery/camera/network/tcomms{
dir = 1
},
@@ -19642,7 +31208,7 @@
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aKI" = (
+"bho" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -25
@@ -19651,19 +31217,18 @@
/area/tcommsat/entrance{
name = "\improper Telecomms Entrance"
})
-"aKJ" = (
+"bhp" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aKK" = (
+"bhq" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19675,7 +31240,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aKL" = (
+"bhr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -19684,7 +31249,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aKM" = (
+"bhs" = (
/obj/machinery/porta_turret{
dir = 6
},
@@ -19692,9 +31257,8 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aKN" = (
+"bht" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -28
},
@@ -19703,20 +31267,19 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aKO" = (
+"bhu" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/turf/simulated/floor/tiled,
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aKP" = (
+"bhv" = (
/obj/machinery/light{
dir = 8
},
@@ -19727,30 +31290,34 @@
},
/turf/simulated/floor/tiled/dark,
/area/tcommsat/computer)
-"aKQ" = (
+"bhw" = (
/obj/machinery/atmospherics/unary/freezer{
- dir = 2;
icon_state = "freezer_1";
set_temperature = 73;
use_power = 1
},
/turf/simulated/floor/tiled/dark,
/area/tcommsat/computer)
-"aKR" = (
+"bhx" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/computer)
+"bhy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aKS" = (
+"bhz" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/airlock_sensor/airlock_exterior{
frequency = 1381;
@@ -19761,15 +31328,14 @@
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"aKT" = (
+"bhA" = (
/obj/machinery/door/airlock/maintenance_hatch{
frequency = 1381;
icon_state = "door_locked";
id_tag = "server_access_outer";
locked = 1;
name = "Telecoms Server Access";
- req_access = list(61);
- req_one_access = list(12)
+ req_access = list(61)
},
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -19777,7 +31343,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/tcommsat/chamber)
-"aKU" = (
+"bhB" = (
/obj/machinery/airlock_sensor{
frequency = 1381;
id_tag = "server_access_sensor";
@@ -19793,7 +31359,6 @@
frequency = 1381;
id_tag = "server_access_airlock";
name = "Server Access Airlock";
- pixel_x = 0;
pixel_y = 25;
tag_airpump = "server_access_pump";
tag_chamber_sensor = "server_access_sensor";
@@ -19805,31 +31370,111 @@
},
/turf/simulated/floor/plating,
/area/tcommsat/chamber)
-"aKV" = (
+"bhC" = (
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
/area/tcommsat/chamber)
-"aKW" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
+"bhD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bhE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bhF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bhG" = (
+/obj/machinery/door/airlock{
+ id_tag = "ReadingRoom1";
+ name = "Room 1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bhH" = (
+/obj/machinery/button/remote/airlock{
+ id = "ReadingRoom1";
+ name = "Room 1 Bolt";
+ pixel_y = 30;
+ specialfunctions = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bhI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/obj/item/device/flashlight/lamp/green,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bhJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/tether/surfacebase/reading_room)
+"bhK" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -19850,7 +31495,7 @@
/obj/structure/grille,
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aKZ" = (
+"bhL" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 1
@@ -19862,7 +31507,25 @@
/obj/structure/grille,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aLa" = (
+"bhM" = (
+/obj/machinery/door/firedoor/glass/hidden,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bhN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bhO" = (
+/obj/machinery/door/firedoor/glass/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bhP" = (
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 1
@@ -19875,7 +31538,7 @@
/obj/structure/grille,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aLb" = (
+"bhQ" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -19895,13 +31558,13 @@
/obj/structure/grille,
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aLc" = (
+"bhR" = (
/obj/structure/closet,
/obj/structure/catwalk,
/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aLd" = (
+"bhS" = (
/obj/random/junk,
/obj/random/junk,
/obj/machinery/light/small{
@@ -19909,19 +31572,19 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aLe" = (
+"bhT" = (
/obj/machinery/alarm{
pixel_y = 22
},
/obj/item/weapon/bananapeel,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aLf" = (
+"bhU" = (
/obj/structure/ladder,
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aLg" = (
+"bhV" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19929,16 +31592,16 @@
},
/turf/simulated/floor/plating,
/area/vacant/vacant_bar_upper)
-"aLh" = (
+"bhW" = (
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aLi" = (
+"bhX" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind,
/obj/item/weapon/reagent_containers/food/drinks/bottle/cola,
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aLj" = (
+"bhY" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
@@ -19949,12 +31612,12 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aLk" = (
+"bhZ" = (
/turf/simulated/floor/tiled/dark,
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aLl" = (
+"bia" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19966,7 +31629,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"aLm" = (
+"bib" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -19979,7 +31642,7 @@
},
/turf/simulated/floor/plating,
/area/tcommsat/chamber)
-"aLn" = (
+"bic" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -19994,7 +31657,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/black,
/turf/simulated/floor/plating,
/area/tcommsat/chamber)
-"aLo" = (
+"bid" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -20016,7 +31679,7 @@
},
/turf/simulated/floor/plating,
/area/tcommsat/chamber)
-"aLp" = (
+"bie" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -20033,7 +31696,7 @@
},
/turf/simulated/floor/plating,
/area/tcommsat/chamber)
-"aLq" = (
+"bif" = (
/obj/structure/cable/green{
d2 = 8;
icon_state = "0-8"
@@ -20046,15 +31709,14 @@
},
/turf/simulated/floor/plating,
/area/tcommsat/chamber)
-"aLr" = (
+"big" = (
/obj/machinery/door/airlock/maintenance_hatch{
frequency = 1381;
icon_state = "door_locked";
id_tag = "server_access_inner";
locked = 1;
name = "Telecoms Server Access";
- req_access = list(61);
- req_one_access = list(12)
+ req_access = list(61)
},
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -20062,7 +31724,49 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aLs" = (
+"bih" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bii" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bij" = (
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bik" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_x = 3;
+ pixel_y = -28
+ },
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bil" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bim" = (
/obj/machinery/door/blast/regular{
id = "xenobiodiv3";
layer = 8;
@@ -20070,27 +31774,51 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aLt" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+"bin" = (
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen5";
+ name = "Pen 5 Containment";
+ pixel_x = -20;
+ pixel_y = -8;
+ req_access = list(55)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen3";
+ name = "Pen 3 Containment";
+ pixel_x = -20;
+ pixel_y = 8;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiodiv3";
+ name = "Divider 3 Blast Doors";
+ pixel_x = -25;
+ req_access = list(55)
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -35
+ },
+/obj/machinery/camera/network/research/xenobio{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bio" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/steel,
+/obj/machinery/computer/atmoscontrol/laptop{
+ monitored_alarm_ids = list("slime_pens");
+ req_one_access = list(47,55)
},
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aLu" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bip" = (
/obj/machinery/button/remote/blast_door{
id = "xenobiodiv4";
name = "Divider 4 Blast Doors";
pixel_x = 38;
- pixel_y = 0;
req_access = list(55)
},
/obj/machinery/button/remote/blast_door{
@@ -20112,7 +31840,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aLv" = (
+"biq" = (
/obj/machinery/door/blast/regular{
id = "xenobiodiv4";
layer = 8;
@@ -20120,47 +31848,30 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aLw" = (
-/obj/random/junk,
-/obj/item/weapon/broken_bottle,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aLx" = (
+"bis" = (
/obj/machinery/light_construct{
- dir = 8;
- icon_state = "tube-construct-stage1"
+ dir = 8
},
/obj/structure/closet/secure_closet/personal,
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aLy" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_bar_upper)
-"aLz" = (
+"biu" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice,
/obj/item/weapon/reagent_containers/food/drinks/bottle/cream,
/obj/item/weapon/reagent_containers/food/drinks/bottle/limejuice,
/obj/item/weapon/reagent_containers/food/drinks/bottle/lemonjuice,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aLA" = (
+"biv" = (
/turf/simulated/wall/r_wall,
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aLB" = (
+"biw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
@@ -20168,7 +31879,7 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aLC" = (
+"bix" = (
/obj/machinery/door/airlock/glass{
name = "Telecomms Storage";
req_access = list(61);
@@ -20186,7 +31897,7 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aLD" = (
+"biy" = (
/turf/simulated/floor/bluegrid{
name = "Mainframe Base";
nitrogen = 100;
@@ -20194,7 +31905,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aLE" = (
+"biz" = (
/obj/structure/cable/green{
icon_state = "0-4"
},
@@ -20210,7 +31921,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aLF" = (
+"biA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/black,
/obj/structure/cable/green{
d1 = 4;
@@ -20224,7 +31935,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aLG" = (
+"biB" = (
/obj/machinery/porta_turret/stationary,
/obj/structure/cable/green{
d1 = 4;
@@ -20238,7 +31949,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aLH" = (
+"biC" = (
/obj/machinery/light{
dir = 1
},
@@ -20254,7 +31965,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aLI" = (
+"biD" = (
/obj/machinery/porta_turret/stationary,
/turf/simulated/floor/bluegrid{
name = "Mainframe Base";
@@ -20263,7 +31974,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aLJ" = (
+"biE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/black,
/turf/simulated/floor/bluegrid{
name = "Mainframe Base";
@@ -20272,7 +31983,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aLK" = (
+"biF" = (
/obj/machinery/airlock_sensor/airlock_interior{
frequency = 1381;
id_tag = "server_access_in_sensor";
@@ -20288,7 +31999,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aLL" = (
+"biG" = (
/obj/machinery/airlock_sensor/airlock_interior{
frequency = 1381;
id_tag = "server_access_in_sensor";
@@ -20307,14 +32018,14 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aLM" = (
+"biH" = (
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
oxygen = 0;
temperature = 80
},
/area/tcommsat/chamber)
-"aLN" = (
+"biI" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'SERVER ROOM'.";
name = "SERVER ROOM";
@@ -20327,7 +32038,35 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aLO" = (
+"biJ" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"biK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"biL" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"biM" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -20354,7 +32093,16 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aLP" = (
+"biN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"biO" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -20381,36 +32129,17 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aLQ" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aLR" = (
-/obj/structure/bed/chair,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aLS" = (
+"biR" = (
/obj/structure/bed/chair,
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aLT" = (
+"biS" = (
/obj/structure/bed/chair,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aLU" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_bar_upper)
-"aLV" = (
+"biU" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -20418,7 +32147,7 @@
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aLW" = (
+"biV" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -20426,7 +32155,7 @@
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aLX" = (
+"biW" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -20434,7 +32163,7 @@
},
/turf/simulated/floor/plating,
/area/vacant/vacant_bar_upper)
-"aLY" = (
+"biX" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/weapon/reagent_containers/food/drinks/bottle/goldschlager,
/obj/item/weapon/reagent_containers/food/drinks/bottle/sake,
@@ -20446,7 +32175,7 @@
/obj/item/weapon/reagent_containers/food/drinks/bottle/specialwhiskey,
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aLZ" = (
+"biY" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/subspace/amplifier,
/obj/item/weapon/stock_parts/subspace/amplifier,
@@ -20458,7 +32187,7 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMa" = (
+"biZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -20467,15 +32196,14 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMb" = (
+"bja" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -20484,15 +32212,14 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMc" = (
+"bjb" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/subspace/ansible,
/obj/item/weapon/stock_parts/subspace/ansible,
/obj/item/weapon/stock_parts/subspace/ansible,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -20501,7 +32228,7 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMd" = (
+"bjc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/black,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -20509,7 +32236,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aMe" = (
+"bjd" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -20517,129 +32244,139 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aMf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass/hidden{
- dir = 2;
- icon_state = "door_open"
+"bje" = (
+/obj/structure/table/glass,
+/obj/item/device/flashlight/lamp/green,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bjf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bjg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bjh" = (
+/obj/machinery/door/airlock{
+ id_tag = "ReadingRoom2";
+ name = "Room 2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bji" = (
+/obj/machinery/button/remote/airlock{
+ id = "ReadingRoom2";
+ name = "Room 2 Bolt";
+ pixel_y = 30;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bjj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/reading_room)
+"bjk" = (
/obj/item/slime_extract/grey,
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMh" = (
-/obj/machinery/door/airlock/research{
- name = "Xenobiology Lab";
- req_access = list();
- req_one_access = list(47,55)
+"bjl" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopen5";
+ name = "Pen 5 Blast Doors";
+ opacity = 0
},
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/research{
- name = "Xenobiology Lab";
- req_access = list();
- req_one_access = list(47,55)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMj" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/steel,
-/obj/machinery/computer/atmoscontrol/laptop{
- monitored_alarm_ids = list("slime_pens");
- req_one_access = list(47,55)
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMl" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMm" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/camera/network/research/xenobio,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Slime Pen 5";
+ req_access = list(55)
},
/turf/simulated/floor/reinforced,
-/area/rnd/rdoffice)
-"aMo" = (
-/obj/machinery/light/small{
- dir = 8
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bjm" = (
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Slime Pen 5";
+ req_access = list(55)
},
-/obj/structure/railing{
- dir = 4
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bjn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bjo" = (
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Slime Pen 6";
+ req_access = list(55)
},
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aMp" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bjp" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopen6";
+ name = "Pen 6 Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Slime Pen 6";
+ req_access = list(55)
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bjr" = (
/obj/structure/railing{
dir = 1
},
/turf/simulated/open,
/area/maintenance/lower/atmos)
-"aMq" = (
+"bjs" = (
/turf/simulated/open,
/area/maintenance/lower/atmos)
-"aMr" = (
+"bjt" = (
/turf/simulated/wall{
can_open = 1
},
/area/vacant/vacant_bar_upper)
-"aMs" = (
+"bju" = (
/obj/structure/simple_door/wood,
/obj/structure/cable/green{
d1 = 1;
@@ -20648,7 +32385,7 @@
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aMt" = (
+"bjv" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/subspace/transmitter,
/obj/item/weapon/stock_parts/subspace/transmitter,
@@ -20665,7 +32402,7 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMu" = (
+"bjw" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -20675,7 +32412,7 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMv" = (
+"bjx" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -20685,7 +32422,7 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMw" = (
+"bjy" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/subspace/analyzer,
/obj/item/weapon/stock_parts/subspace/analyzer,
@@ -20698,7 +32435,7 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMx" = (
+"bjz" = (
/obj/machinery/telecomms/server/presets/supply,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -20706,7 +32443,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aMy" = (
+"bjA" = (
/obj/machinery/telecomms/server/presets/service/tether,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -20714,7 +32451,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aMz" = (
+"bjB" = (
/obj/machinery/telecomms/server/presets/unused,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -20722,22 +32459,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aMA" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- name = "Janitor Closet";
- sortType = "Janitor Closet"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aMB" = (
+"bjC" = (
/obj/machinery/telecomms/server/presets/common,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -20745,7 +32467,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aMC" = (
+"bjD" = (
/obj/machinery/telecomms/server/presets/engineering,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -20753,7 +32475,17 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aMD" = (
+"bjE" = (
+/obj/structure/bookcase,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bjF" = (
+/obj/machinery/camera/network/civilian{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bjG" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -20775,7 +32507,7 @@
/obj/structure/grille,
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aME" = (
+"bjH" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -20795,26 +32527,19 @@
/obj/structure/grille,
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMF" = (
+"bjI" = (
/obj/structure/bed/double/padded,
/obj/item/weapon/bedsheet/double,
/obj/structure/curtain/open/privacy,
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aMG" = (
+"bjJ" = (
/obj/machinery/alarm{
pixel_y = 22
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aMH" = (
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/double,
-/obj/structure/curtain/open/privacy,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/vacant/vacant_bar_upper)
-"aMI" = (
+"bjL" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20822,7 +32547,7 @@
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aMJ" = (
+"bjM" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/subspace/treatment,
/obj/item/weapon/stock_parts/subspace/treatment,
@@ -20831,12 +32556,12 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMK" = (
+"bjN" = (
/turf/simulated/floor/tiled/techmaint,
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aML" = (
+"bjO" = (
/obj/structure/table/rack,
/obj/item/weapon/circuitboard/telecomms/processor,
/obj/item/weapon/circuitboard/telecomms/processor,
@@ -20854,7 +32579,7 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMM" = (
+"bjP" = (
/obj/machinery/camera/network/tcomms{
dir = 4
},
@@ -20865,7 +32590,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aMN" = (
+"bjQ" = (
/obj/machinery/exonet_node{
anchored = 1
},
@@ -20876,7 +32601,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aMO" = (
+"bjR" = (
/obj/machinery/camera/network/tcomms{
dir = 8
},
@@ -20887,7 +32612,30 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aMP" = (
+"bjS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bjT" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bjU" = (
/obj/machinery/door/blast/regular{
id = "xenobiodiv5";
layer = 8;
@@ -20895,22 +32643,69 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMQ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+"bjV" = (
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiodiv5";
+ name = "Divider 5 Blast Doors";
+ pixel_x = -30;
+ req_access = list(55)
},
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMR" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen5";
+ name = "Pen 5 Containment";
+ pixel_x = -22;
+ pixel_y = 8;
+ req_access = list(55)
+ },
+/obj/machinery/light{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen7";
+ name = "Pen 7 Containment";
+ pixel_x = -22;
+ pixel_y = -8;
+ req_access = list(55)
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -35
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMS" = (
+"bjW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bjX" = (
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiodiv6";
+ name = "Divider 6 Blast Doors";
+ pixel_x = 38;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen6";
+ name = "Pen 6 Containment";
+ pixel_x = 30;
+ pixel_y = 8;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen8";
+ name = "Pen 8 Containment";
+ pixel_x = 30;
+ pixel_y = -8;
+ req_access = list(55)
+ },
+/obj/machinery/camera/network/research/xenobio{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bjY" = (
/obj/machinery/door/blast/regular{
id = "xenobiodiv6";
layer = 8;
@@ -20918,7 +32713,7 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMT" = (
+"bjZ" = (
/obj/machinery/door/blast/regular{
id = "xenobiodiv6";
layer = 8;
@@ -20926,20 +32721,14 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aMU" = (
+"bka" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aMV" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aMW" = (
+"bkc" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/micro_laser,
/obj/item/weapon/stock_parts/manipulator,
@@ -20955,7 +32744,7 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMX" = (
+"bkd" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/subspace/sub_filter,
/obj/item/weapon/stock_parts/subspace/sub_filter,
@@ -20969,7 +32758,7 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMY" = (
+"bke" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/subspace/crystal,
/obj/item/weapon/stock_parts/subspace/crystal,
@@ -20978,14 +32767,12 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"aMZ" = (
+"bkf" = (
/obj/structure/sign/nosmoking_2{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/bluegrid{
name = "Mainframe Base";
@@ -20994,7 +32781,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNa" = (
+"bkg" = (
/obj/machinery/telecomms/processor/preset_two,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21002,7 +32789,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNb" = (
+"bkh" = (
/obj/machinery/telecomms/bus/preset_two/tether,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21010,25 +32797,8 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/east_stairs_two)
-"aNd" = (
+"bki" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
/obj/machinery/telecomms/broadcaster/preset_right/tether,
/turf/simulated/floor/bluegrid{
name = "Mainframe Base";
@@ -21037,7 +32807,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNe" = (
+"bkj" = (
/obj/machinery/telecomms/hub/preset/tether,
/turf/simulated/floor/bluegrid{
name = "Mainframe Base";
@@ -21046,7 +32816,8 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNf" = (
+"bkk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
/obj/machinery/telecomms/receiver/preset_right/tether,
/turf/simulated/floor/bluegrid{
name = "Mainframe Base";
@@ -21055,23 +32826,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNg" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aNh" = (
+"bkl" = (
/obj/machinery/telecomms/bus/preset_four,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21079,7 +32834,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNi" = (
+"bkm" = (
/obj/machinery/telecomms/processor/preset_four,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21087,10 +32842,9 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNj" = (
+"bkn" = (
/obj/structure/sign/nosmoking_2{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
dir = 4
@@ -21102,7 +32856,67 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNk" = (
+"bko" = (
+/obj/structure/closet/hydrant{
+ pixel_x = -32
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bkp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bkq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bkr" = (
+/obj/machinery/door/airlock{
+ id_tag = "ReadingRoom3";
+ name = "Room 3"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bks" = (
+/obj/machinery/button/remote/airlock{
+ id = "ReadingRoom3";
+ name = "Room 3 Bolt";
+ pixel_y = 30;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bkt" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bku" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -21129,7 +32943,7 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNl" = (
+"bkv" = (
/obj/machinery/disposal,
/obj/structure/window/reinforced{
dir = 8;
@@ -21141,7 +32955,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNm" = (
+"bkw" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -21168,26 +32982,17 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNn" = (
+"bkx" = (
/obj/structure/catwalk,
/obj/structure/table/steel,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23
},
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aNo" = (
-/obj/machinery/light_construct{
- dir = 4;
- icon_state = "tube-construct-stage1"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_bar_upper)
-"aNp" = (
+"bkz" = (
/obj/machinery/telecomms/bus/preset_one,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21195,7 +33000,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNq" = (
+"bkA" = (
/obj/machinery/telecomms/processor/preset_one,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21203,7 +33008,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNr" = (
+"bkB" = (
/obj/machinery/ntnet_relay,
/turf/simulated/floor/bluegrid{
name = "Mainframe Base";
@@ -21212,7 +33017,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNs" = (
+"bkC" = (
/obj/machinery/telecomms/processor/preset_three,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21220,7 +33025,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNt" = (
+"bkD" = (
/obj/machinery/telecomms/bus/preset_three,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21228,64 +33033,87 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+"bkE" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/light/small{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNv" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNw" = (
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bkF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bkG" = (
+/obj/structure/table/glass,
+/obj/machinery/photocopier/faxmachine{
+ department = "Reading Room"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/reading_room)
+"bkH" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
- id = "xenobiopen9";
- name = "Pen 9 Blast Doors";
+ id = "xenobiopen7";
+ name = "Pen 7 Blast Doors";
opacity = 0
},
-/obj/machinery/door/airlock/research{
- id_tag = "phoroncelldoor9";
- name = "Slime Pen 9";
- req_access = list();
- req_one_access = list(47,55)
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Slime Pen 7";
+ req_access = list(55)
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNx" = (
-/obj/structure/disposalpipe/segment,
+"bkI" = (
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Slime Pen 7";
+ req_access = list(55)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bkJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNy" = (
-/obj/structure/stairs/north,
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 1
+"bkK" = (
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Slime Pen 8";
+ req_access = list(55)
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNz" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/medical/paramed)
-"aNA" = (
-/obj/structure/catwalk,
-/obj/structure/table/steel,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/cigarettes,
-/obj/item/weapon/flame/lighter/random,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aNB" = (
+"bkL" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopen8";
+ name = "Pen 8 Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Slime Pen 8";
+ req_access = list(55)
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bkN" = (
/obj/item/device/radio/intercom{
dir = 8;
pixel_x = -24
@@ -21297,20 +33125,16 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 8
+"bkO" = (
+/obj/machinery/door/airlock{
+ name = "Reading Room"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aND" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/reading_room)
+"bkP" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -21331,7 +33155,36 @@
/obj/structure/grille,
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNE" = (
+"bkQ" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bkR" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bkS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bkT" = (
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -21351,7 +33204,7 @@
/obj/structure/grille,
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNF" = (
+"bkU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -21359,29 +33212,28 @@
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aNG" = (
+"bkV" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aNH" = (
+"bkW" = (
/obj/structure/bed/double/padded,
/obj/item/weapon/bedsheet/double,
/obj/structure/curtain/open/privacy,
/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aNI" = (
+"bkX" = (
/obj/structure/ladder,
/obj/effect/floor_decal/industrial/outline/blue,
/obj/structure/cable/green{
d1 = 32;
- d2 = 1;
icon_state = "32-1"
},
/turf/simulated/floor/wood,
/area/vacant/vacant_bar_upper)
-"aNJ" = (
+"bkY" = (
/obj/machinery/telecomms/server/presets/science,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21389,7 +33241,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNK" = (
+"bkZ" = (
/obj/machinery/telecomms/server/presets/medical,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21397,7 +33249,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNL" = (
+"bla" = (
/obj/machinery/atmospherics/pipe/simple/hidden/black{
dir = 6
},
@@ -21407,7 +33259,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNM" = (
+"blb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/black{
dir = 9
},
@@ -21417,7 +33269,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNN" = (
+"blc" = (
/obj/machinery/pda_multicaster/prebuilt,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21425,7 +33277,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNO" = (
+"bld" = (
/obj/machinery/atmospherics/pipe/simple/hidden/black{
dir = 5
},
@@ -21435,7 +33287,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNP" = (
+"ble" = (
/obj/machinery/atmospherics/pipe/simple/hidden/black{
dir = 10
},
@@ -21445,7 +33297,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNQ" = (
+"blf" = (
/obj/machinery/telecomms/server/presets/command,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21453,7 +33305,7 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNR" = (
+"blg" = (
/obj/machinery/telecomms/server/presets/security,
/turf/simulated/floor/tiled/dark{
nitrogen = 100;
@@ -21461,18 +33313,43 @@
temperature = 80
},
/area/tcommsat/chamber)
-"aNS" = (
-/obj/structure/stairs/north,
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
+"blh" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/southhall)
+"bli" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/structure/window/basic{
- dir = 1
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"blj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"blk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bll" = (
+/obj/machinery/camera/network/outside{
+ dir = 9
+ },
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"blm" = (
+/obj/machinery/door/blast/regular{
+ id = "xenobiodiv7";
+ layer = 8;
+ name = "Divider 7 Blast Door"
+ },
+/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNT" = (
+"bln" = (
/obj/structure/grille,
/obj/structure/window/phoronreinforced/full,
/obj/structure/window/phoronreinforced{
@@ -21494,253 +33371,19 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNV" = (
-/obj/structure/stairs/north,
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
- },
-/obj/structure/railing{
- dir = 4;
- icon_state = "railing0"
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNW" = (
-/obj/structure/sign/deck/second,
-/turf/simulated/wall/r_wall,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNX" = (
-/obj/machinery/door/blast/regular{
- id = "xenobiodiv8";
- layer = 8;
- name = "Divider 8 Blast Door"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aNY" = (
-/obj/structure/catwalk,
-/obj/structure/bed/chair,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aNZ" = (
-/obj/structure/catwalk,
-/obj/structure/bed/chair,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aOa" = (
-/obj/structure/catwalk,
-/obj/structure/table/steel,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/flame/candle,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aOb" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/closet/crate,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aOc" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/closet,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aOd" = (
-/obj/machinery/light/small,
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash_pile,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"aOe" = (
-/obj/machinery/camera/network/tcomms{
- dir = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/tcommsat/chamber)
-"aOf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 140;
- external_pressure_bound_default = 140;
- icon_state = "map_vent_out";
- pressure_checks = 0;
- pressure_checks_default = 0;
- use_power = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/tcommsat/chamber)
-"aOg" = (
-/obj/machinery/light,
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/tcommsat/chamber)
-"aOh" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- icon_state = "map_vent_in";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0;
- use_power = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/tcommsat/chamber)
-"aOi" = (
-/obj/machinery/door/blast/regular{
- id = "xenocont1";
- name = "Slimes Containment Blast Door"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOk" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiodiv8";
- name = "Divider 8 Blast Doors";
- pixel_x = 30;
- pixel_y = -5;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen10";
- name = "Pen 10 Containment";
- pixel_x = 30;
- pixel_y = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/button/remote/airlock{
- id = "phoroncelldoor10";
- name = "Phoron Cell 10 Doorlock";
- pixel_x = 38;
- pixel_y = 0;
- specialfunctions = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOl" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen10";
- name = "Pen 10 Blast Doors";
- opacity = 0
- },
+"blo" = (
/obj/machinery/door/airlock/research{
- id_tag = "phoroncelldoor10";
- name = "Slime Pen 10";
- req_access = list();
+ name = "Xenobiology Lab";
req_one_access = list(47,55)
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOm" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aOn" = (
-/obj/structure/table/steel,
-/obj/random/medical/lite,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/atmos)
-"aOo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/green{
- icon_state = "2-4"
+ icon_state = "1-2"
},
-/obj/machinery/camera/network/command,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aOp" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/obj/machinery/computer/cryopod/robot{
- pixel_y = -32
- },
-/obj/effect/landmark{
- name = "morphspawn"
- },
-/turf/simulated/floor/plating,
-/area/engineering/drone_fabrication)
-"aOq" = (
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blp" = (
/obj/structure/grille,
/obj/structure/window/phoronreinforced/full,
/obj/structure/window/phoronreinforced{
@@ -21765,4446 +33408,131 @@
/obj/structure/disposalpipe/up,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOr" = (
+"blq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Lab";
+ req_one_access = list(47,55)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blr" = (
+/obj/structure/sign/deck/second,
+/turf/simulated/wall/r_wall,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bls" = (
/obj/machinery/door/blast/regular{
- id = "xenocont2";
- name = "Slimes Containment Blast Door"
+ id = "xenobiodiv8";
+ layer = 8;
+ name = "Divider 8 Blast Door"
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOs" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
+"blt" = (
+/obj/machinery/camera/network/outside{
+ dir = 5
+ },
+/turf/simulated/open/virgo3b,
+/area/tether/surfacebase/outside/outside2)
+"blu" = (
+/obj/structure/catwalk,
+/obj/structure/bed/chair,
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aOt" = (
+"blx" = (
/obj/structure/catwalk,
/obj/effect/landmark{
name = "maint_pred"
},
/turf/simulated/floor/plating,
/area/maintenance/lower/atmos)
-"aOu" = (
-/obj/machinery/optable,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/light{
+"blB" = (
+/obj/machinery/camera/network/tcomms{
dir = 1
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aOv" = (
-/obj/structure/table/rack,
-/obj/random/maintenance/research,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/junk,
-/obj/structure/disposalpipe/segment{
- dir = 8
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aOw" = (
-/obj/machinery/camera/network/command{
- dir = 4;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aOx" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aOy" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aOz" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aOA" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aOB" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aOC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"aOD" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen9";
- name = "Pen 9 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aOF" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOG" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen10";
- name = "Pen 10 Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOH" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen9";
- name = "Pen 9 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aOJ" = (
-/obj/machinery/door/blast/regular{
- id = "xenobiodiv7";
- layer = 8;
- name = "Divider 7 Blast Door"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOK" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "xeno_phoron_pen_scrubbers"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOL" = (
-/obj/machinery/shieldwallgen,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/camera/network/command{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aOM" = (
-/obj/structure/railing{
- dir = 4;
- icon_state = "railing0"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aON" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/storage/box/cups,
-/obj/machinery/camera/network/command{
- dir = 9;
- icon_state = "camera"
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aOO" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "xenobiopen10";
- name = "Pen 10 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/tcommsat/chamber)
+"blC" = (
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- icon_state = "map-scrubbers"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aOQ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/surface_two_hall)
-"aOR" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOS" = (
-/obj/structure/stairs/east,
-/obj/structure/railing,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aOT" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 8;
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"aOU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aOV" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aOW" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/obj/machinery/computer/atmos_alert{
- dir = 1;
- icon_state = "computer"
- },
-/obj/machinery/camera/network/engineering{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos/monitoring)
-"aOX" = (
-/obj/structure/catwalk,
-/obj/machinery/camera/network/engineering{
- dir = 1
- },
-/turf/simulated/open,
-/area/engineering/atmos)
-"aOY" = (
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
- },
-/obj/machinery/camera/network/engineering{
- dir = 8
- },
-/turf/simulated/open,
-/area/engineering/atmos)
-"aOZ" = (
-/obj/effect/floor_decal/techfloor/corner,
-/obj/machinery/drone_fabricator{
- fabricator_tag = "Atmos"
- },
-/obj/machinery/camera/network/engineering{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/engineering/drone_fabrication)
-"aPa" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/obj/item/weapon/storage/box/gloves,
-/obj/item/weapon/storage/box/masks{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aPb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aPc" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/machinery/camera/network/research/xenobio{
- dir = 4;
- icon_state = "camera";
- network = list("Xenobiology")
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aPd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aPe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/obj/machinery/camera/network/security{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aPf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/obj/machinery/camera/network/security{
- dir = 8;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aPg" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/camera/network/security{
- dir = 8;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/evidence)
-"aPh" = (
-/obj/machinery/camera/network/security{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/security/lowerhallway)
-"aPi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 4;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aPj" = (
-/obj/machinery/camera/network/interrogation,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aPk" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aPl" = (
-/obj/structure/table/reinforced,
-/obj/machinery/photocopier/faxmachine{
- department = "Warden's Office"
- },
-/obj/item/device/radio/intercom/department/security{
- dir = 8;
- icon_state = "secintercom";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/obj/machinery/camera/network/security{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aPm" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange{
- dir = 5;
- icon_state = "corner_white"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/table/steel,
-/obj/item/weapon/paper,
-/obj/item/weapon/pen/blue{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/machinery/camera/network/security{
- dir = 8;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/solitary)
-"aPn" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- icon_state = "extinguisher_closed";
- pixel_x = -30
- },
-/obj/machinery/camera/network/medbay{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aPo" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aPp" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/camera/network/medbay{
- dir = 4;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aPq" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/camera/network/medbay{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aPr" = (
-/obj/structure/table/bench/standard,
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 9
- },
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aPs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 8
- },
-/obj/machinery/camera/network/medbay{
- dir = 4;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aPt" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/white/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- dir = 9;
- icon_state = "bordercolorcorner2"
- },
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/camera/network/medbay{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aPu" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aPv" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aPw" = (
-/obj/machinery/recharger/wallcharger{
- pixel_y = -38
- },
-/obj/machinery/recharger/wallcharger{
- pixel_y = -28
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aPx" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -25
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aPy" = (
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ pressure_checks = 0;
+ pressure_checks_default = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"blD" = (
/obj/machinery/light,
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "xeno_phoron_pen_scrubbers"
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
},
-/obj/machinery/alarm/monitor/isolation{
- alarm_id = "slime_pens";
+/area/tcommsat/chamber)
+"blE" = (
+/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- pixel_x = 0;
- pixel_y = -22
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Mainframe Base";
+ nitrogen = 100;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/tcommsat/chamber)
+"blF" = (
+/obj/structure/stairs/west,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"blG" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"blH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"blI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/southhall)
+"blJ" = (
+/obj/machinery/door/blast/regular{
+ id = "xenocont1";
+ name = "Slimes Containment Blast Door"
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aPz" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/medical/lowerhall)
-"aPA" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aPB" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aPC" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/medical/lowerhall)
-"aPD" = (
-/obj/machinery/alarm{
- alarm_id = "pen_nine";
- breach_detection = 0;
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"aPE" = (
-/obj/effect/floor_decal/industrial/loading{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aPG" = (
-/obj/effect/floor_decal/industrial/loading{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aPH" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 4
- },
-/obj/item/device/radio/intercom/department/medbay{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/surgery,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aPI" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aPJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aPK" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/resleeving)
-"aPL" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/resleeving)
-"aPM" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aPN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aPO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aPP" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 9
- },
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aPQ" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/nifsofts_medical,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aPR" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aPS" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aPU" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/structure/table/standard,
-/obj/item/weapon/cane,
-/obj/item/weapon/cane,
-/obj/structure/bedsheetbin,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aPV" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/obj/structure/table/standard,
-/obj/item/device/radio,
-/obj/item/device/radio,
-/obj/item/device/radio,
-/obj/item/weapon/tool/screwdriver,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/storage/briefcase/inflatable,
-/obj/item/weapon/storage/briefcase/inflatable,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aPW" = (
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 4;
- pixel_y = 26
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/paramed)
-"aPY" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/light_switch{
- dir = 8;
- on = 0;
- pixel_x = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/paramed)
-"aPZ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQa" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQb" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQc" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQf" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQg" = (
-/obj/machinery/computer/operating,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQh" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQi" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/table/standard,
-/obj/item/device/healthanalyzer,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQj" = (
-/obj/machinery/computer/transhuman/resleeving{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aQk" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aQl" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aQn" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/resleeving)
-"aQo" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/machinery/alarm{
- alarm_id = "anomaly_testing";
- breach_detection = 0;
- dir = 8;
- frequency = 1439;
- pixel_x = 22;
- pixel_y = 0;
- report_danger_level = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/resleeving)
-"aQp" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQr" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aQs" = (
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aQt" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/item/device/glasses_kit,
-/obj/item/weapon/storage/box/rxglasses,
-/obj/item/weapon/storage/box/rxglasses,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aQu" = (
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aQw" = (
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- icon_state = "extinguisher_closed";
- pixel_y = -32
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- icon_state = "intact-supply"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/paramed)
-"aQx" = (
-/obj/machinery/door/airlock/medical{
- name = "EMT Closet"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/paramed)
-"aQy" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQz" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2,
-/obj/effect/floor_decal/corner/paleblue/bordercorner2,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQA" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQB" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQC" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/floor_decal/borderfloorwhite/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQE" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/sink{
- dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQF" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQG" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQH" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQI" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/alarm{
- alarm_id = "anomaly_testing";
- breach_detection = 0;
- dir = 8;
- frequency = 1439;
- pixel_x = 22;
- pixel_y = 0;
- report_danger_level = 0
- },
-/obj/structure/closet/crate/freezer,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQJ" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/light_switch{
- dir = 4;
- on = 0;
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aQK" = (
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aQL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aQM" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aQN" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 6
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aQO" = (
-/obj/machinery/washing_machine,
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/resleeving)
-"aQP" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/resleeving)
-"aQQ" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- icon_state = "extinguisher_closed";
- pixel_x = -30
- },
-/obj/machinery/vitals_monitor,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aQS" = (
-/obj/structure/table/glass,
-/obj/item/weapon/book/manual/resleeving,
-/obj/item/device/radio/intercom{
- dir = 2;
- pixel_y = -24
- },
-/obj/structure/sign/nosmoking_1{
- pixel_x = 32
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 6
- },
-/obj/item/device/sleevemate,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aQT" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aQV" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 10
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQY" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/white/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2,
-/obj/effect/floor_decal/corner/white/bordercorner2,
-/obj/machinery/button/windowtint{
- id = "surfsurgery";
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/structure/medical_stand,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aQZ" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 6
- },
-/obj/structure/closet/secure_closet/medical2,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aRb" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 9
- },
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/button/remote/airlock{
- desc = "A remote control switch for the medbay recovery room door.";
- dir = 1;
- id = "SurfMedicalResleeving";
- name = "Exit Button";
- pixel_x = -4;
- pixel_y = -28
- },
-/obj/machinery/button/windowtint{
- dir = 8;
- id = "surfresleeving";
- pixel_x = 8;
- pixel_y = -28
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aRc" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aRd" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2,
-/obj/effect/floor_decal/corner/paleblue/bordercorner2,
-/obj/machinery/vending/loadout/uniform,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aRe" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRf" = (
-/obj/machinery/washing_machine,
-/obj/effect/floor_decal/techfloor{
- dir = 10
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/resleeving)
-"aRg" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/effect/floor_decal/techfloor{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/light/small,
-/obj/structure/mirror{
- dir = 4;
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/resleeving)
-"aRh" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/structure/closet/secure_closet/medical3,
-/obj/item/weapon/soap/nanotrasen,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRi" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/o2{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/storage/firstaid/o2{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/blue/full{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRj" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRk" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/adv{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/storage/firstaid/adv,
-/obj/effect/floor_decal/corner/red/full{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRl" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/structure/table/rack,
-/obj/item/roller,
-/obj/item/roller{
- pixel_y = 8
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk,
-/obj/structure/sign/warning/high_voltage{
- pixel_y = 32
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"aRn" = (
-/obj/structure/catwalk,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"aRo" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRp" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"aRq" = (
-/obj/machinery/light/small,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"aRr" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRs" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRu" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "surfsurgery"
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/medical/surgery)
-"aRv" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre 2";
- req_access = list(45)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/surgery)
-"aRw" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "surfresleeving"
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/medical/resleeving)
-"aRx" = (
-/obj/machinery/door/airlock/medical{
- id_tag = "SurfMedicalResleeving";
- name = "Resleeving Lab";
- req_access = list(5)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/resleeving)
-"aRy" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/structure/closet/secure_closet/medical3,
-/obj/item/weapon/soap/nanotrasen,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRA" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRC" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/structure/bed/chair/wheelchair{
- dir = 8
- },
-/obj/machinery/alarm{
- alarm_id = "anomaly_testing";
- breach_detection = 0;
- dir = 8;
- frequency = 1439;
- pixel_x = 22;
- pixel_y = 0;
- report_danger_level = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRD" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aRE" = (
-/obj/machinery/camera/network/civilian{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/fish_farm)
-"aRF" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRG" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- icon_state = "intact-supply"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorwhite/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRH" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRO" = (
-/obj/machinery/door/airlock/maintenance/medical{
- name = "Medical Maintenance Access"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aRP" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRQ" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aRR" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/obj/machinery/camera/network/tether{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/east_stairs_two)
-"aRS" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/light_switch{
- dir = 4;
- on = 0;
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRT" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/toxin{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/storage/firstaid/toxin{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/green/full,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRU" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/fire{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/storage/firstaid/fire{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/yellow/full{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aRV" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/camera/network/tether{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aRW" = (
-/obj/structure/catwalk,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"aRX" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/catwalk,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"aRY" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/random/tool,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aRZ" = (
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/outside/outside2)
-"aSa" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSb" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloorwhite/corner{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSd" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSe" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSf" = (
-/turf/simulated/floor/plating,
-/area/vacant/vacant_site/gateway/lower)
-"aSg" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- icon_state = "intact-supply"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSh" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSi" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSj" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Medbay Equipment";
- req_access = list(5)
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aSk" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aSl" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aSm" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aSn" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aSo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aSp" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/beakers,
-/obj/random/medical,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aSq" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/medical/storage)
-"aSr" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/medical/breakroom)
-"aSs" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/medical/breakroom)
-"aSt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSu" = (
-/obj/effect/floor_decal/borderfloorwhite/corner,
-/obj/effect/floor_decal/corner/paleblue/bordercorner,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSv" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSw" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28;
- req_access = list(67)
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSx" = (
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aSy" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 6
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSz" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aSA" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/structure/dispenser{
- phorontanks = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aSD" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/structure/table/standard,
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/mask/muzzle,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aSE" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 6
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/backup_implanter,
-/obj/item/weapon/backup_implanter,
-/obj/item/weapon/backup_implanter,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/storage)
-"aSF" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/machinery/camera/network/tether,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"aSG" = (
-/obj/structure/table/bench/standard,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSI" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSJ" = (
-/obj/machinery/vending/coffee,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5;
- icon_state = "borderfloorcorner2_white";
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSM" = (
-/obj/structure/table/standard,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSN" = (
-/obj/structure/table/standard,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSO" = (
-/obj/structure/table/standard,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSP" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSQ" = (
-/obj/machinery/light_switch{
- dir = 8;
- on = 0;
- pixel_x = 28;
- pixel_y = -20
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSR" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Staff Room";
- req_access = list(5)
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aST" = (
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- icon_state = "extinguisher_closed";
- pixel_x = 30
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aSU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/camera/network/tether{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aSV" = (
-/obj/structure/table/bench/standard,
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/obj/item/device/radio/intercom{
- pixel_x = 0;
- pixel_y = -28
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSW" = (
-/obj/structure/table/bench/standard,
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSX" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aSY" = (
-/obj/machinery/vending/fitness{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/breakroom)
-"aTa" = (
-/obj/machinery/light/small,
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aTb" = (
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aTc" = (
-/obj/machinery/door/airlock/maintenance/medical{
- name = "Medical Maintenance Access"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/medical/lowerhall)
-"aTd" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"aTe" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"aTf" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/supply,
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"aTg" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"aTh" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"aTi" = (
-/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d2 = 8;
- dir = 2;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/vacant/vacant_site/gateway/lower)
-"aTj" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aTk" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aTl" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aTm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aTn" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 6
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 26
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lowerhall)
-"aTo" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aTp" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aTq" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/machinery/camera/network/tether{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aTr" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/lowerhallway)
-"aTs" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/lowerhallway)
-"aTt" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/solitary)
-"aTu" = (
-/obj/machinery/computer/secure_data{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aTv" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Warden"
- },
-/obj/machinery/button/windowtint{
- id = "surfwarden";
- pixel_x = -12;
- pixel_y = -26
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aTw" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/clipboard,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/pen,
-/obj/item/device/radio{
- pixel_x = -4
- },
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/tool/wrench,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aTx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aTy" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aTz" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "surfwarden"
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/warden)
-"aTA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green,
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/obj/machinery/door_timer/cell_3{
- id = "Cell A";
- name = "Cell A";
- pixel_x = -32
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTB" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- dir = 1;
- id = "Surf Cell 1";
- name = "Cell A"
- },
-/obj/effect/floor_decal/industrial/loading{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aTC" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTE" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTF" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTG" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTH" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTJ" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange{
- dir = 5;
- icon_state = "corner_white"
- },
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/structure/bed/padded,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/solitary)
-"aTL" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTM" = (
-/obj/machinery/camera/network/tether{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"aTN" = (
-/obj/structure/table/reinforced,
-/obj/item/device/retail_scanner/security,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aTO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aTP" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/stamp/ward,
-/obj/item/weapon/stamp/denied{
- pixel_x = 5
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner{
- dir = 8;
- icon_state = "bordercolorcorner"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aTQ" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- on = 0;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/solitary)
-"aTR" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTS" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner,
-/obj/effect/floor_decal/corner/red/bordercorner,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -32
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/solitary)
-"aTU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTV" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -32
- },
-/obj/structure/cable/green,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aTY" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_security{
- name = "Solitary Confinement 1";
- req_access = list(2)
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/solitary)
-"aTZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/solitary)
-"aUa" = (
-/obj/machinery/camera/network/outside{
- dir = 5;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"aUb" = (
-/obj/machinery/camera/network/outside{
- dir = 9;
- icon_state = "camera"
- },
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"aUc" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/gasstorage)
-"aUd" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange{
- dir = 5;
- icon_state = "corner_white"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/closet/secure_closet/brig{
- id = "Cell A"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aUe" = (
-/obj/machinery/photocopier,
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aUf" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aUg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aUh" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Warden's Office";
- req_access = list(3)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aUi" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/window/brigdoor/southleft{
- dir = 4;
- id = "Cell A";
- name = "Cell A";
- req_access = list(2)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aUj" = (
-/obj/machinery/camera/network/outside{
- dir = 5;
- icon_state = "camera"
- },
-/turf/simulated/open/virgo3b,
-/area/tether/surfacebase/outside/outside2)
-"aUk" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/evidence)
-"aUm" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aUn" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aUo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 10;
- icon_state = "intact"
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aUp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aUq" = (
-/turf/simulated/floor,
-/area/tether/surfacebase/outside/outside2)
-"aUr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aUs" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/security/lowerhallway)
-"aUt" = (
-/obj/structure/stairs/east,
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/security/lowerhallway)
-"aUu" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 1
- },
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- on = 0;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/evidence)
-"aUv" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/evidence)
-"aUw" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/evidence)
-"aUx" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/evidence)
-"aUy" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/evidence)
-"aUz" = (
-/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{
- dir = 4;
- icon_state = "n2o_map"
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aUA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/green{
- dir = 1;
- icon_state = "map"
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aUB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/green,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aUC" = (
-/obj/machinery/atmospherics/valve/digital{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aUE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aUF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 4;
- icon_state = "intact"
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aUG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/obj/machinery/door_timer/cell_3{
- id = "Cell B";
- name = "Cell B";
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aUH" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 10
- },
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/evidence)
-"aUI" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/evidence)
-"aUJ" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiodiv5";
- name = "Divider 5 Blast Doors";
- pixel_x = -30;
- pixel_y = 0;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen5";
- name = "Pen 5 Containment";
- pixel_x = -22;
- pixel_y = 8;
- req_access = list(55)
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen7";
- name = "Pen 7 Containment";
- pixel_x = -22;
- pixel_y = -8;
- req_access = list(55)
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -35;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aUK" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aUL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 9;
- icon_state = "intact"
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aUM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 4;
- icon_state = "intact"
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -18;
- pixel_y = -28
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/brig)
-"aUN" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/brig)
-"aUO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aUP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 10;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aUQ" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/interrogation)
-"aUR" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/lower/security)
-"aUS" = (
-/turf/simulated/wall,
-/area/maintenance/lower/security)
-"aUT" = (
-/obj/machinery/door/airlock/engineering{
- name = "MedSec Substation"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/substation/medsec)
-"aUU" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - MedSec Subgrid";
- name_tag = "MedSec Subgrid"
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor,
-/area/maintenance/substation/medsec)
-"aUV" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange{
- dir = 5;
- icon_state = "corner_white"
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/structure/table/steel,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aUW" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange{
- dir = 5;
- icon_state = "corner_white"
- },
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aUX" = (
-/obj/machinery/atmospherics/unary/outlet_injector,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aUY" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/brig)
-"aUZ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/blast/regular{
- dir = 1;
- id = "Surf Cell 2";
- name = "Cell B"
- },
-/obj/effect/floor_decal/industrial/loading{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 4;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVa" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- icon_state = "map-scrubbers"
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aVc" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 4;
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aVd" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aVe" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- on = 0;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aVf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aVg" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVi" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aVj" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVl" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/window/brigdoor/southleft{
- dir = 4;
- id = "Cell B";
- name = "Cell B";
- req_access = list(2)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 4;
- icon_state = "intact"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVn" = (
+"blK" = (
/obj/machinery/button/remote/blast_door{
id = "xenobiodiv7";
name = "Divider 7 Blast Doors";
@@ -26233,923 +33561,369 @@
id = "phoroncelldoor9";
name = "Phoron Cell 9 Doorlock";
pixel_x = -38;
- pixel_y = 0;
specialfunctions = 4
},
/obj/machinery/light_switch{
dir = 1;
- pixel_x = 0;
pixel_y = 38
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aVo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVp" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange{
- dir = 5;
- icon_state = "corner_white"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/closet/secure_closet/brig{
- id = "Cell B"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 4;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+"blL" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aVs" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"aVu" = (
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Command Subgrid";
- name_tag = "Command Subgrid"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/command)
-"aVv" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aVw" = (
-/obj/structure/bed/chair,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aVx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/alarm{
+/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 5;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blM" = (
/obj/structure/cable/green{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVD" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/obj/machinery/door_timer/cell_3{
- id = "Cell C";
- name = "Cell C";
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aVF" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "interrogation"
- },
-/obj/structure/window/reinforced/tinted{
- dir = 8;
- icon_state = "twindow"
- },
-/obj/structure/window/reinforced/tinted,
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/interrogation)
-"aVG" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "interrogation"
- },
-/obj/structure/window/reinforced/tinted,
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/interrogation)
-"aVH" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "interrogation"
- },
-/obj/structure/window/reinforced/tinted{
- dir = 4;
- icon_state = "twindow"
- },
-/obj/structure/window/reinforced/tinted,
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/interrogation)
-"aVI" = (
-/obj/structure/disposalpipe/trunk{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposaloutlet{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/camera/network/research/xenobio,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blP" = (
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiodiv8";
+ name = "Divider 8 Blast Doors";
+ pixel_x = 30;
+ pixel_y = -5;
+ req_access = list(55)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopen10";
+ name = "Pen 10 Containment";
+ pixel_x = 30;
+ pixel_y = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "phoroncelldoor10";
+ name = "Phoron Cell 10 Doorlock";
+ pixel_x = 38;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blQ" = (
+/obj/machinery/door/blast/regular{
+ id = "xenocont2";
+ name = "Slimes Containment Blast Door"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/atmos)
+"blS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"blT" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"blU" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopen9";
+ name = "Pen 9 Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/research{
+ id_tag = "phoroncelldoor9";
+ name = "Slime Pen 9";
+ req_one_access = list(47,55)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blW" = (
+/obj/structure/stairs/north,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blX" = (
+/obj/structure/stairs/north,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blY" = (
+/obj/structure/stairs/north,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"blZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bma" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopen10";
+ name = "Pen 10 Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/research{
+ id_tag = "phoroncelldoor10";
+ name = "Slime Pen 10";
+ req_one_access = list(47,55)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bmb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/southhall)
+"bmc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopen9";
+ name = "Pen 9 Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bmd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bme" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bmf" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bmg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bmh" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopen10";
+ name = "Pen 10 Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bmi" = (
+/obj/machinery/light,
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "xeno_phoron_pen_scrubbers"
+ },
+/obj/machinery/alarm/monitor/isolation{
+ alarm_id = "slime_pens";
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bmj" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "xeno_phoron_pen_scrubbers"
+ },
/obj/machinery/camera/network/research/xenobio{
- dir = 9;
- icon_state = "camera";
+ dir = 10;
network = list("Xenobiology")
},
/turf/simulated/floor/reinforced,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aVJ" = (
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVK" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/atmospherics/pipe/manifold/hidden/green{
- dir = 8;
- icon_state = "map"
+"bmk" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "xeno_phoron_pen_scrubbers"
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 10;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVM" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/grille,
+/turf/simulated/floor/reinforced,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bml" = (
/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/brig)
-"aVN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVP" = (
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aVQ" = (
-/obj/machinery/seed_storage/brig{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVR" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/atmospherics/pipe/simple/hidden/green,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVS" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable/green{
- d2 = 8;
- dir = 2;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/brig)
-"aVT" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/button/remote/blast_door{
dir = 8;
- id = "Surf Cell 1";
- name = "Cell A Door";
- pixel_x = -28;
- req_access = list(1,2)
+ health = 1e+006
},
-/obj/machinery/atmospherics/pipe/simple/hidden/green,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aVU" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 4;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 4;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aVZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aWa" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aWb" = (
-/obj/structure/table/steel,
-/obj/item/device/flashlight/lamp,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aWc" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aWd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aWe" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aWf" = (
-/obj/machinery/atmospherics/unary/outlet_injector{
- dir = 1;
- icon_state = "map_injector"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aWg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aWh" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/window/brigdoor/southleft{
- dir = 4;
- id = "Cell C";
- name = "Cell C";
- req_access = list(2)
- },
+/obj/structure/grille,
/obj/machinery/door/blast/regular{
density = 0;
- dir = 1;
icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
+ id = "xenobiopen9";
+ name = "Pen 9 Blast Doors";
opacity = 0
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aWi" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/lower/north)
-"aWj" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "Surf Cell 2";
- name = "Cell B Door";
- pixel_x = -28;
- req_access = list(1,2)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/green,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aWk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "Surf Cell 3";
- name = "Cell C Door";
- pixel_x = -28;
- req_access = list(1,2)
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aWl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aWm" = (
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aWn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aWq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/light,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aWr" = (
-/obj/machinery/atmospherics/pipe/cap/visible/supply{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/vacant/vacant_site/gateway/lower)
-"aWs" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/blast/regular{
- dir = 1;
- id = "Surf Cell 3";
- name = "Cell C"
- },
-/obj/effect/floor_decal/industrial/loading{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aWt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aWu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aWv" = (
-/obj/machinery/door/airlock/security{
- name = "Interrogation";
- req_access = newlist();
- req_one_access = list(2,4)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/interrogation)
-"aWw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aWx" = (
-/obj/effect/floor_decal/borderfloor/shifted{
- dir = 1;
- icon_state = "borderfloor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange/border/shifted{
- dir = 1;
- icon_state = "bordercolor_shifted"
- },
-/obj/effect/floor_decal/corner/lightorange{
- dir = 5;
- icon_state = "corner_white"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/closet/secure_closet/brig{
- id = "Cell C"
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bmm" = (
+/obj/machinery/button/remote/blast_door{
+ id = "xenocont1";
+ name = "Exterior Containment Blast Doors";
+ pixel_x = -30;
+ pixel_y = -25;
+ req_access = list(55)
},
/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/brig)
-"aWy" = (
-/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{
- dir = 4;
- icon_state = "n2o_map"
- },
-/obj/machinery/light/small{
- dir = 8;
- pixel_y = 0
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aWz" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aWA" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -32
- },
-/turf/simulated/floor,
-/area/tether/surfacebase/security/gasstorage)
-"aWB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aWC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aWD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/alarm{
- alarm_id = "anomaly_testing";
- breach_detection = 0;
- dir = 8;
- frequency = 1439;
- pixel_x = 22;
- pixel_y = 0;
- report_danger_level = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aWE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aWF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- dir = 8;
- on = 0;
- pixel_x = 20;
- pixel_y = -20
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/warden)
-"aWG" = (
-/obj/item/toy/syndicateballoon,
-/turf/simulated/floor,
-/area/tether/surfacebase/outside/outside2)
-"aWH" = (
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bmn" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aWI" = (
+"bmo" = (
+/obj/machinery/button/remote/blast_door{
+ id = "xenocont2";
+ name = "Exterior Containment Blast Doors";
+ pixel_x = 30;
+ pixel_y = -25;
+ req_access = list(55)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bmp" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopen10";
+ name = "Pen 10 Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_slimepens)
+"bmq" = (
/obj/machinery/light{
dir = 8
},
@@ -27157,7 +33931,6 @@
alarm_id = null;
breach_detection = 0;
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/structure/disposalpipe/trunk{
@@ -27166,7 +33939,7 @@
/obj/machinery/disposal,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aWJ" = (
+"bmr" = (
/obj/machinery/recharger/wallcharger{
pixel_y = -38
},
@@ -27179,45 +33952,307 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aWK" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenocont1";
- name = "Exterior Containment Blast Doors";
- pixel_x = -30;
- pixel_y = -25;
- req_access = list(55)
+"bms" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -38
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -28
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aWL" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenocont2";
- name = "Exterior Containment Blast Doors";
- pixel_x = 30;
- pixel_y = -25;
- req_access = list(55)
+"bmt" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aWM" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "xeno_phoron_pen_scrubbers"
+"bmu" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/camera/network/research/xenobio{
- dir = 10;
- icon_state = "camera";
- network = list("Xenobiology")
- },
-/turf/simulated/floor/reinforced,
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_slimepens)
-"aWO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 9;
- icon_state = "intact"
+"boC" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/substation/medsec)
+"boD" = (
+/obj/structure/sign/department/chapel,
+/turf/simulated/wall,
+/area/maintenance/lower/bar)
+"boF" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 4
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"boG" = (
+/obj/structure/undies_wardrobe,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"boH" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/recoveryward)
+"boI" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"boL" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/northleft{
+ name = "Shower"
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/medical/recoveryward)
+"boM" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"boN" = (
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/north)
+"boP" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/northleft{
+ name = "Shower"
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/medical/recoveryward)
+"boQ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"boR" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/lower/north)
+"boS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"boZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/standard,
+/obj/random/soap,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"bpd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"bpe" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"bpi" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"bpj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"bpC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"bpD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/bathroom)
+"bpE" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance/medical{
+ name = "Medical Maintenance Access"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"bpF" = (
+/obj/structure/lattice,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 32;
+ d2 = 8;
+ icon_state = "32-8"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/open,
+/area/maintenance/lower/north)
+"bpG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -27226,2517 +34261,487 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"bpH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"bpI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
},
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/northleft{
+ name = "Shower"
+ },
+/obj/structure/curtain/open/shower,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aWP" = (
-/obj/structure/stairs/south,
+/area/tether/surfacebase/medical/bathroom)
+"bpJ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/northleft{
+ name = "Shower"
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/medical/bathroom)
+"bpK" = (
+/obj/machinery/door/airlock/maintenance/medical,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/medical/breakroom)
+"bpL" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/breakroom)
+"bpO" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"bpV" = (
+/obj/structure/window/reinforced/polarized/full{
+ id = "ward_tint"
+ },
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
-/area/vacant/vacant_site/gateway/lower)
-"aWQ" = (
-/obj/effect/decal/cleanable/dirt,
+/area/tether/surfacebase/medical/recoveryward)
+"bpW" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aWR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"bpX" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aWS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/symbol/da{
- pixel_x = 32
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"aWT" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aWU" = (
-/obj/structure/lattice,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/down{
dir = 4
},
-/turf/simulated/open,
-/area/maintenance/lower/rnd)
-"aWV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aWW" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aWX" = (
-/obj/structure/bed/chair/comfy/black,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aWY" = (
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aWZ" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 26
- },
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aXa" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tcommsat/computer)
-"aXb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aXc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lowerhallway)
-"aXd" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aXe" = (
-/obj/structure/bed/chair/comfy/blue{
- dir = 4;
- icon_state = "comfychair_preview"
- },
-/obj/effect/landmark/start{
- name = "Command Secretary"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aXf" = (
-/obj/item/weapon/book/manual/security_space_law,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/table/fancyblack,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aXg" = (
-/obj/item/weapon/folder/red,
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/fancyblack,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aXh" = (
-/obj/structure/bed/chair/comfy/blue{
- dir = 8;
- icon_state = "comfychair_preview"
- },
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aXj" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aXk" = (
-/obj/effect/floor_decal/chapel{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aXl" = (
-/obj/structure/stairs/north,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aXm" = (
-/obj/structure/bed/chair/comfy/blue{
- dir = 4;
- icon_state = "comfychair_preview"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aXn" = (
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/table/fancyblack,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aXo" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/mining)
-"aXp" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/command)
-"aXr" = (
-/turf/simulated/wall,
-/area/maintenance/substation/command)
-"aXs" = (
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/structure/cable,
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Command";
- charge = 0;
- output_attempt = 0;
- outputting = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/command)
-"aXt" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"aXv" = (
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"aXw" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"aXx" = (
-/obj/item/weapon/folder/blue,
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/fancyblack,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aXy" = (
-/obj/structure/table/bench/padded,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aXz" = (
-/obj/structure/bed/chair/comfy/blue{
- dir = 8;
- icon_state = "comfychair_preview"
- },
-/obj/effect/landmark/start{
- name = "Command Secretary"
- },
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aXA" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aXE" = (
-/obj/structure/cable,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/command)
-"aXF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/command)
-"aXG" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aXH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/teleporter)
-"aXI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tcommsat/computer)
-"aXJ" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/light/small{
- dir = 8;
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"aXK" = (
-/turf/simulated/wall{
- can_open = 1
- },
-/area/maintenance/lower/bar)
-"aXL" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"aXM" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aXN" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"aXO" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aXP" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aXQ" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/carpet/sblucarpet,
-/area/bridge/meeting_room)
-"aXR" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/tether/surfacebase/surface_two_hall)
-"aXS" = (
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/tether/surfacebase/surface_two_hall)
-"aXT" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/obj/random/trash_pile,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/bar)
-"aXU" = (
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aXV" = (
-/obj/structure/railing,
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/tether/surfacebase/surface_two_hall)
-"aXW" = (
-/obj/machinery/photocopier,
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aXX" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aXY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aXZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aYa" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aYb" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aYc" = (
-/obj/structure/table/woodentable,
-/obj/structure/flora/pottedplant/small{
- pixel_y = 12
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aYd" = (
-/turf/simulated/wall,
-/area/chapel/main)
-"aYf" = (
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Command Conf Room"
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aYg" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aYh" = (
-/obj/structure/table/woodentable,
-/obj/machinery/chemical_dispenser/bar_soft/full{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aYi" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aYn" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aYp" = (
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"aYq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"aYr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aYs" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aYz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aYA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aYE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"aYF" = (
-/obj/structure/closet/coffin,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"aYJ" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/light/small,
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aYL" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- dir = 2;
- frequency = 1473;
- name = "Confession Intercom";
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aYM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"aYN" = (
-/obj/machinery/atm{
- pixel_y = 30
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aYO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"aYP" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- d2 = 8;
- dir = 2;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"aYT" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/green{
- d2 = 8;
- dir = 2;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aYW" = (
-/obj/structure/closet/coffin,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"aYX" = (
-/obj/machinery/button/windowtint{
- dir = 1;
- id = "meetingroom";
- pixel_x = -25;
- pixel_y = 0
- },
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"aYZ" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/chapel/chapel_morgue)
-"aZa" = (
-/turf/simulated/wall{
- can_open = 0
- },
-/area/maintenance/lower/bar)
-"aZe" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"aZf" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"aZg" = (
-/turf/simulated/wall,
-/area/maintenance/commandmaint)
-"aZh" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"cJE" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"aZl" = (
-/obj/effect/floor_decal/industrial/warning/corner{
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"djo" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/grass,
+/area/chapel/main)
+"djt" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/flora/pottedplant,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"dSO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
},
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable/green{
- d2 = 8;
- dir = 2;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/command)
-"aZt" = (
-/obj/structure/closet/crate,
-/obj/random/cash,
-/obj/random/contraband,
-/obj/random/drinkbottle,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"aZw" = (
-/obj/item/toy/plushie/kitten{
- desc = "An odd appearing, cryptic plush of a cat.";
- name = "Pablo"
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/outside/outside2)
-"aZx" = (
-/obj/item/clothing/under/batter,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/outside/outside2)
-"aZy" = (
-/obj/item/clothing/shoes/boots/jackboots{
- desc = "Very old and worn baseball cleats.";
- name = "baseball cleats"
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/outside/outside2)
-"aZz" = (
-/obj/item/clothing/head/soft/black{
- desc = "Its a dusty old cap, It hides most your eyes."
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/outside/outside2)
-"aZA" = (
-/obj/item/weapon/material/twohanded/baseballbat{
- desc = "This bat looks very off.";
- health = 500
- },
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/outside/outside2)
-"aZB" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 4
- },
-/obj/random/trash_pile,
+/obj/structure/catwalk,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"aZC" = (
-/obj/structure/railing{
+"dXv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"ebp" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"fxr" = (
+/obj/machinery/light{
dir = 8
},
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"fIS" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"kPb" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"kRb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"laD" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/outside/outside2)
+"llG" = (
+/obj/machinery/space_heater,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
/obj/effect/floor_decal/techfloor,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/random/trash_pile,
/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"aZE" = (
-/obj/structure/table/bench/padded,
-/obj/effect/floor_decal/chapel{
+/area/maintenance/lower/bar)
+"lsC" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"lOO" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass,
/area/chapel/main)
-"aZN" = (
+"mnt" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
/obj/effect/floor_decal/borderfloor{
- dir = 4
+ dir = 1
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/closet/hydrant{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aZP" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- icon_state = "extinguisher_closed";
- pixel_x = 30
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"aZQ" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"aZZ" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"baa" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"bac" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/machinery/status_display{
pixel_y = 30
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/surface_two_hall)
+"mUP" = (
+/obj/structure/bed/padded,
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/firealarm{
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/bar)
+"mWq" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"bae" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"nFT" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/catwalk,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/tiled/techfloor/grid,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"nPO" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/glass,
+/obj/item/weapon/deck/cah,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"pah" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Noodle Office";
+ req_access = list(27)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"pLH" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/south)
-"bag" = (
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- dir = 2;
- frequency = 1473;
- name = "Confession Intercom";
- pixel_x = 0;
- pixel_y = -24
+"qpA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"qDE" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/bar)
+"rJc" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"sVf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/button/windowtint{
+ dir = 1;
+ id = "chaplainpet";
+ name = "interior window tint";
+ pixel_x = -4;
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"sZp" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"tpu" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"tuO" = (
+/obj/effect/floor_decal/corner_techfloor_grid,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"tED" = (
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"tHa" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/mining)
+"tPB" = (
+/turf/simulated/floor/grass,
+/area/chapel/main)
+"unM" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"uKv" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = -27
},
/obj/structure/bed/chair{
dir = 4
},
-/obj/machinery/light/small{
- dir = 8;
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"baj" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 9
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"bak" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"bal" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/catwalk,
-/obj/structure/closet/crate,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/cargo,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"bam" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"ban" = (
-/obj/structure/catwalk,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"bao" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/lower/south)
-"bap" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"baq" = (
-/obj/structure/frame{
- anchored = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"bar" = (
-/turf/simulated/floor,
-/area/maintenance/lower/south)
-"bas" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/south)
-"bat" = (
-/obj/structure/dogbed,
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/mob/living/simple_mob/animal/passive/lizard{
- desc = "It's the secret head of Janitoria!";
- name = "Bucket"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"bau" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"bav" = (
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"baw" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"bax" = (
-/obj/structure/frame/computer,
-/turf/simulated/floor,
-/area/maintenance/lower/south)
-"bay" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 9
- },
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"baz" = (
-/obj/structure/frame{
- anchored = 1
- },
-/turf/simulated/floor,
-/area/maintenance/lower/south)
-"baA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/structure/table/rack,
-/obj/random/maintenance/clean,
-/turf/simulated/floor,
-/area/maintenance/lower/south)
-"baB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/newspaper,
-/turf/simulated/floor,
-/area/maintenance/lower/south)
-"baC" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/lower/south)
-"baD" = (
-/obj/structure/symbol/gu,
-/turf/simulated/wall{
- can_open = 1
- },
-/area/maintenance/lower/south)
-"baE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/south)
-"baF" = (
-/obj/structure/closet,
-/obj/random/maintenance/clean,
-/turf/simulated/floor,
-/area/maintenance/lower/south)
-"baH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"baI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"baJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"baK" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"baL" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/maintenance/commandmaint)
-"baN" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "meetingroom"
- },
-/turf/simulated/floor,
-/area/bridge/meeting_room)
-"baO" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'WATCH YOUR STEP'.";
- name = "\improper WATCH YOUR STEP"
- },
-/turf/simulated/wall,
-/area/maintenance/commandmaint)
-"baP" = (
-/obj/structure/lattice,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/open,
-/area/tether/surfacebase/surface_two_hall)
-"baU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/command)
-"baY" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bcC" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"bkW" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/lower/security)
-"boO" = (
-/obj/random/cutout,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/atmos)
-"bvS" = (
-/obj/machinery/door/firedoor/glass/hidden,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ceC" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"cne" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/cutout,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/north)
-"cHg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"cHq" = (
-/obj/effect/catwalk_plated/dark,
-/turf/simulated/open,
-/area/maintenance/lower/bar)
-"cIm" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/bordercorner{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"cZo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"dgA" = (
-/obj/structure/bed/chair/comfy/brown,
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"drH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/railing,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"dEl" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"dQd" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"dQj" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/supply{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"emJ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass/hidden,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"exx" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 10
- },
-/turf/simulated/floor,
-/area/maintenance/lower/security)
-"eXR" = (
-/obj/machinery/door/firedoor/glass/hidden{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"fGk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"fHc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/outpost/xenobiology/outpost_slimepens)
-"fIH" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/manifold/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"fYA" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"gjq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass/hidden{
- dir = 2
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"gDW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"gPa" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
-"hCD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"hNH" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/open,
-/area/maintenance/lower/bar)
-"isi" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/glass/hidden{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"iwn" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/disposalpipe/sortjunction/flipped{
- name = "Trash";
- sortType = "Trash"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"iBn" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"iGv" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/bordercorner{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"iJj" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/multi_tile/metal/mait{
- name = "Maintenance Access"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/surface_two_hall)
-"iRp" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/engineering/drone_fabrication)
-"jfi" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/hidden{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"jnL" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/machinery/holoposter{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"kaa" = (
-/obj/random/cutout,
-/turf/simulated/floor,
-/area/maintenance/lower/south)
-"knh" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/north_staires_two)
-"ksZ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/hidden{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ktW" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/computer/guestpass{
- dir = 4;
- pixel_x = -28;
- pixel_y = 0
- },
-/obj/machinery/door/firedoor/glass/hidden,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"kuw" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/supply{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"kDh" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"kYW" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/lower/security)
-"ldx" = (
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"lkN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"lVd" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/bar)
-"maZ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/machinery/camera/network/tether{
- dir = 9
- },
-/obj/machinery/door/firedoor/glass/hidden{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"msI" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/turf/simulated/floor,
-/area/maintenance/lower/north)
-"mDI" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"mFg" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"mLQ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass/hidden,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"nKP" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"nOG" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
-"nQX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"nTp" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/turf/simulated/open,
-/area/maintenance/lower/bar)
-"nUt" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"nVB" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/yellow/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2{
- dir = 9;
- icon_state = "bordercolorcorner2"
- },
-/obj/effect/floor_decal/corner/yellow/bordercorner2,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"okd" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"olz" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"omx" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"oIf" = (
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"oWH" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"oXN" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/lower/security)
-"pbf" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"peO" = (
-/obj/structure/catwalk,
-/turf/simulated/open,
-/area/maintenance/lower/bar)
-"pkv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"ppI" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/surface_two_hall)
-"prG" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/machinery/camera/network/tether{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"pvh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"pwQ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 4
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/hidden{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"pGt" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/surface_two_hall)
-"pUx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"qaW" = (
-/obj/structure/table/bench/standard,
/obj/effect/landmark/start{
name = "Medical Doctor"
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"voE" = (
+/obj/effect/floor_decal/corner_techfloor_grid,
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"vTb" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/computer/security/telescreen/entertainment{
- desc = "Looks like it's set to ree-Anur-ntertanment, I wonder what else is on?";
- icon_state = "frame";
- pixel_x = 0;
- pixel_y = 32
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/south)
+"wqU" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/south)
+"xbt" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/sign/poster{
+ pixel_x = -32
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/breakroom)
-"qfL" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"qrg" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/camera/network/tether{
- dir = 5
- },
-/obj/machinery/door/firedoor/glass/hidden,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"qNo" = (
-/obj/structure/cable{
- icon_state = "16-0"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/up,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
-"qXI" = (
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/structure/bed/chair/comfy/brown{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/rnd/breakroom)
-"rim" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"xpO" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"rjE" = (
-/obj/structure/catwalk,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+/obj/machinery/hologram/holopad{
+ layer = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"rGt" = (
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/breakroom)
+"xSO" = (
+/obj/machinery/light{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"svN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/north)
+"ylZ" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"tgA" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 8;
icon_state = "1-8"
},
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/engineering/drone_fabrication)
-"toV" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/recharge_station,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/plating,
-/area/engineering/drone_fabrication)
-"tIb" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/station_map{
- pixel_y = 32
- },
-/obj/machinery/door/firedoor/glass/hidden{
- dir = 2
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"tKq" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 9;
- icon_state = "bordercolor"
- },
-/obj/machinery/camera/network/engineering,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
-"tRh" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/north)
-"tXA" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/item/device/radio/intercom{
- pixel_y = -28
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
-"uch" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/lower/security)
-"uin" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"ukB" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"uoL" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/machinery/holoposter{
- pixel_x = 30
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"uEH" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
-"vgb" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
-"vmO" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 8;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"vvJ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_two_hall)
-"wBk" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/multi_tile/metal/mait{
- name = "Maintenance Access"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/surface_two_hall)
-"wQg" = (
-/obj/machinery/door/firedoor/glass/hidden{
- dir = 2
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"wRZ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/yellow/border{
- dir = 10;
- icon_state = "bordercolor"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/engineering/atmos)
-"wVF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/engineering/drone_fabrication)
-"xiE" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"xkH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"xPU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
-"xUz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/surface_two_hall)
(1,1,1) = {"
aaa
@@ -32497,18 +37502,18 @@ aab
aab
aab
aab
-aac
-aac
+adt
+adt
aab
-aac
-aac
+adt
+adt
aab
aab
aab
aab
aab
-aac
-aac
+adt
+adt
aab
aab
aab
@@ -32599,31 +37604,31 @@ aab
aab
aab
aab
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-aac
-aac
-ajM
-ajM
-ajM
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+adt
+adt
+aeG
+aeG
+aeG
aab
-acI
-acI
-acI
-acI
-acI
+arj
+arj
+arj
+arj
+arj
aab
aab
aab
aab
aab
aab
-aac
+adt
aab
aab
aab
@@ -32639,20 +37644,20 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -32741,62 +37746,62 @@ aab
aab
aab
aab
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-aac
-aac
-aac
-aac
-aac
-acD
-acJ
-acJ
-adi
-adi
-acJ
-acD
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+adt
+adt
+adt
+adt
+adt
aac
+ark
+ark
+atD
+atD
+ark
aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -32883,71 +37888,71 @@ aab
aab
aab
aab
-ajM
-ajM
-ajM
-ajM
+aeG
+aeG
+aeG
+aeG
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acD
-acK
-acV
+arl
+asq
aab
aab
-adO
-acD
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+avh
aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -33025,72 +38030,72 @@ aab
aab
aab
aab
-ajM
-ajM
-ajM
-ajM
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acD
-acL
-acK
-adj
-adj
-acJ
-acD
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aeG
+aeG
+aeG
+aeG
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aac
+arl
+arl
+atE
+atE
+ark
aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -33167,75 +38172,75 @@ aab
aab
aab
aab
-ajM
-ajM
-ajM
-ajM
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acD
-acL
-acV
-acK
-adv
-acD
-acD
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aeG
+aeG
+aeG
+aeG
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+aac
+arl
+asq
+arl
+auh
aac
aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -33309,68 +38314,18 @@ aab
aab
aab
aab
-ajM
-ajM
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acD
-acD
-acD
-acD
-acD
-acD
-acD
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aeG
+aeG
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aac
aac
aac
@@ -33378,6 +38333,56 @@ aac
aac
aac
aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -33451,75 +38456,75 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -33593,75 +38598,75 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -33735,76 +38740,76 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -33877,76 +38882,76 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -34019,76 +39024,76 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -34115,7 +39120,7 @@ aab
aab
aab
aab
-aUb
+bll
aab
aab
aab
@@ -34160,77 +39165,77 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -34241,28 +39246,28 @@ aab
aab
aab
aab
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aOi
-aOi
-aOi
-aHc
-aHc
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+blJ
+blJ
+blJ
+bdS
+bdS
aab
aab
aab
@@ -34302,77 +39307,77 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acq
-akx
-acq
-acq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+akX
+aqt
+akX
+akX
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -34383,28 +39388,28 @@ aab
aab
aab
aab
-aHc
-aHs
-aIX
-aIy
-aIY
-aHs
-aIX
-aIy
-aLs
-aHs
-aIX
-aIy
-aMP
-aUK
-aIX
-aIy
-aOJ
-aHt
-aHt
-aHt
-aPy
-aHc
+bdS
+bkt
+beG
+bfj
+bfJ
+bkt
+beG
+bfj
+bim
+bkt
+beG
+bfj
+bjU
+bkt
+beG
+bfj
+blm
+bek
+bek
+bek
+bmi
+bdS
aab
aab
aab
@@ -34444,77 +39449,77 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acq
-acq
-aky
-akH
-acq
-acq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+akX
+akX
+aqu
+arn
+akX
+akX
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -34525,28 +39530,28 @@ aab
aab
aab
aab
-aHc
-aHO
-aHt
-aHt
-aIY
-aHt
-aKj
-aHt
-aLs
-aHt
-aMg
-aHt
-aMP
-aHt
-aHt
-aHt
-aOJ
-aHt
-aHt
-aHt
-aWM
-aHc
+bdS
+bej
+bek
+bek
+bfJ
+bek
+bgW
+bek
+bim
+bek
+bjk
+bek
+bjU
+bek
+bek
+bek
+blm
+bek
+bek
+bek
+bmj
+bdS
aab
aab
aab
@@ -34585,78 +39590,78 @@ aab
aab
aab
aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acq
-acq
-ajU
-akd
-akI
-akP
-acq
-acq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+akX
+akX
+apn
+anf
+aro
+asr
+akX
+akX
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -34667,28 +39672,28 @@ aab
aab
aab
aab
-aHc
-aHt
-aHt
-aHt
-aIY
-aHt
-aHt
-aHt
-aLs
-aHt
-aHt
-aHt
-aMP
-aHt
-aHt
-aHt
-aOJ
-aHt
-aHt
-aHt
-aOK
-aHc
+bdS
+bek
+bek
+bek
+bfJ
+bek
+bek
+bek
+bim
+bek
+bek
+bek
+bjU
+bek
+bek
+bek
+blm
+bek
+bek
+bek
+bmk
+bdS
aab
aab
aab
@@ -34726,79 +39731,79 @@ aab
aab
aab
aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acq
-acq
-akh
-akp
-akj
-akj
-akQ
-akV
-acq
-acq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+akX
+akX
+aoe
+apo
+aog
+aog
+ass
+atF
+akX
+akX
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -34809,29 +39814,29 @@ aab
aab
aab
aab
-aHc
-aHt
-aHt
-aIz
-aIY
-aVI
-aHt
-aHt
-aLs
-aVI
-aHt
-aHt
-aMP
-aVI
-aHt
-aHt
-aHc
-aHc
-aNw
-aOD
-aOH
-aHc
-aHc
+bdS
+bek
+bek
+bfk
+bfJ
+bgk
+bek
+bek
+bim
+bgk
+bek
+bek
+bjU
+bgk
+bek
+bek
+bdS
+bdS
+blU
+bmc
+bml
+bdS
+bdS
aab
aab
aab
@@ -34868,79 +39873,79 @@ aab
aab
aab
aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acq
-acq
-akc
-aki
-akq
-akz
-akJ
-akk
-akQ
-akZ
-acq
-acq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+abn
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+akX
+akX
+ane
+aof
+app
+aqv
+arp
+aoh
+ass
+aui
+akX
+akX
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -34951,29 +39956,29 @@ aab
aab
aab
aab
-aHc
-aHw
-aHe
-aIA
-aHc
-aJA
-aHS
-aKY
-aHc
-aLO
-aKk
-aMD
-aHc
-aNk
-aKq
-aND
-aHc
-aVn
-aJa
-aJa
-aWK
-aWI
-aHc
+bdS
+bel
+beH
+bfl
+bdS
+bgl
+bgX
+bhK
+bdS
+biM
+bjl
+bjG
+bdS
+bku
+bkH
+bkP
+bdS
+blK
+bfL
+bfL
+bmm
+bmq
+bdS
aab
aab
aab
@@ -35010,79 +40015,79 @@ aab
aab
aab
aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acq
-ajv
-akd
-akj
-akr
-akA
-akK
-akR
-akW
-akQ
-alb
-acq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+akX
+amc
+anf
+aog
+apq
+aqw
+arq
+ast
+atG
+ass
+avi
+akX
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -35093,29 +40098,29 @@ aab
aab
aab
aab
-aHc
-aHd
-aIC
-aIB
-aIZ
-aJB
-aHT
-aKZ
-adF
-aJB
-aKl
-aKZ
-aUJ
-aNl
-aKr
-aKZ
-aNT
-aMj
-aNx
-aOV
-aWH
-aWJ
-aHc
+bdS
+bem
+beI
+bfm
+bfK
+bgm
+bgY
+bhL
+bin
+bgm
+bjm
+bhL
+bjV
+bkv
+bkI
+bhL
+bln
+blL
+blV
+bmd
+bmn
+bmr
+bdS
aab
aab
aab
@@ -35152,112 +40157,112 @@ aab
aab
aab
aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acO
-ajF
-ake
-akj
-aks
-akB
-akB
-akS
-akW
-akM
-alc
-acq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+akY
+amd
+ang
+aog
+apr
+aqx
+aqx
+asu
+atG
+ars
+avj
+akX
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
aab
aab
-aaS
-aaS
-aaS
+ael
+ael
+ael
aab
aab
aab
-aHc
-aHy
-aIC
-aIC
-aJa
-aMQ
-aJa
-aID
-aJa
-aMQ
-aJa
-aID
-aJa
-aMQ
-aJa
-aKu
-aMh
-aMl
-aNy
-aOF
-aJa
-aJa
-aOR
+bdS
+ben
+beI
+beI
+bfL
+bgn
+bfL
+bhM
+bfL
+bgn
+bfL
+bhM
+bfL
+bgn
+bfL
+bkQ
+blo
+blM
+blW
+bme
+bfL
+bfL
+bmu
aab
aab
aab
@@ -35293,113 +40298,113 @@ aab
aab
aab
aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acq
-acq
-akf
-akk
-akt
-akC
-akL
-akT
+abn
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
akX
-ala
-acq
-acq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-akb
-aka
-aka
-ank
-ank
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aac
-aac
-aac
-aac
+akX
+anh
+aoh
+aps
+aqy
+arr
+asv
+atH
+auj
+akX
+akX
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+aHm
+aHE
+aHE
+aIJ
+aIJ
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+adt
+adt
+adt
+adt
aab
aab
aab
aab
aab
aab
-aaS
-aaS
-aaS
+ael
+ael
+ael
aab
aab
aab
-aHc
-adE
-aHu
-aHx
-aHR
-fHc
-cHg
-aMf
-aMk
-aMR
-aKm
-aMf
-aNU
-aMR
-aJD
-aKW
-aOq
-aMm
-aNS
-aJa
-aJa
-aJa
-aOR
+bdS
+beo
+beJ
+bfn
+bfM
+bgo
+bgZ
+bhN
+bio
+biN
+bjn
+bhN
+bjW
+biN
+bkJ
+bkR
+blp
+blN
+blX
+bfL
+bfL
+bfL
+bmu
aab
aab
aab
@@ -35435,113 +40440,113 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acq
-acq
-akl
-aku
-akD
-akj
-akM
-akY
-akx
-acq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-ahD
-ahD
-ahD
-ahD
-ahD
-ahD
-ahD
-ahD
-aac
-aac
-akb
-akb
-amT
-anl
-anA
-anL
-aog
-aog
-aog
-aog
+abn
+abn
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+akX
+akX
+aoi
+apt
+aqz
aog
ars
-asg
-asg
-aog
-auh
-aog
-avr
-awa
-aog
-axF
-aog
-aog
-aog
-aAK
-aBp
-aka
-aac
-aac
-aac
-aac
+atI
+aqt
+akX
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+azs
+azs
+azs
+azs
+azs
+azs
+azs
+azs
+adt
+adt
+aHm
+aHm
+aqp
+aYD
+arg
+aJz
+arm
+arm
+arm
+arm
+arm
+ask
+aOb
+aOb
+arm
+aQt
+arm
+ats
+atw
+arm
+aOb
+arm
+arm
+arm
+aQt
+ayA
+aHE
+adt
+adt
+adt
+adt
aab
aab
aab
aab
aab
aab
-aaS
-aaS
-aaS
+ael
+ael
+ael
aab
aab
aab
-aHc
-aHA
-aIC
-aIC
-aJa
-aNu
-aJa
-aJb
-aJa
-aNu
-aJa
-aJb
-aJa
-aNu
-aJa
-aKX
-aMi
-aNv
-aNV
-aOM
-aJa
-aJa
-aOR
+bdS
+bep
+beI
+beI
+bfL
+bgp
+bfL
+bhO
+bfL
+bgp
+bfL
+bhO
+bfL
+bgp
+bfL
+bkS
+blq
+blO
+blY
+bmf
+bfL
+bfL
+bmu
aab
aab
aab
@@ -35574,81 +40579,81 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acq
-acq
-akv
-akE
-akM
-akU
-acq
-acq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-ahD
-als
-alz
-alR
-aRE
-alz
-als
-ahD
-aac
-aac
-akb
-akb
-akb
-anm
-anB
-anB
-aoh
-anm
-anm
-aqa
-anm
-anm
-anm
-aoG
-anm
-anm
-auS
-aqa
-anm
-anm
-anm
-anm
-anm
-aoG
-anm
-aBq
-aka
-aac
-aac
-aac
-aac
+abn
+abn
+abn
+abn
+abn
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+akX
+akX
+apu
+aqA
+ars
+asw
+akX
+akX
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+azs
+aBB
+aCm
+aDj
+aDV
+aCm
+aBB
+azs
+adt
+adt
+aHm
+aHm
+aHm
+aJf
+aJf
+aJf
+arv
+aJf
+aJf
+arY
+aJf
+aJf
+aJf
+arR
+aJf
+aJf
+atk
+arY
+aJf
+aJf
+aJf
+aJf
+aJf
+arR
+aJf
+ayC
+aHE
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -35661,29 +40666,29 @@ aab
aab
aab
aab
-aHc
-aHQ
-aIC
-aIE
-aJe
-aJF
-aHY
-aLa
-aLu
-aJF
-aKo
-aLa
-adX
-aJF
-aKs
-aLa
-aNT
-aKX
-aOj
-aPA
-aJa
-aPw
-aHc
+bdS
+beq
+beI
+bfo
+bfN
+bgq
+bha
+bhP
+bip
+bgq
+bjo
+bhP
+bjX
+bgq
+bkK
+bhP
+bln
+bkS
+blZ
+bmg
+bfL
+bms
+bdS
aab
aab
aab
@@ -35715,82 +40720,82 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acq
-acq
-akF
-akN
-acq
-acq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-ahD
-alo
-alA
-alS
-alS
-amo
-alo
-ahD
-aac
-aac
-akb
-akb
-aco
-anm
-anm
-anm
-aoi
-aoG
-anm
-anm
-anm
-anm
-anm
-aqa
-anm
-anm
-aoi
-anm
-aoi
-anm
-anm
-anm
-anm
-aqa
-anm
-aKn
-aka
-aac
-aac
-aac
-aac
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+akX
+akX
+aqB
+art
+akX
+akX
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+azs
+aBd
+aCn
+aDk
+aDk
+aEx
+aBd
+azs
+adt
+adt
+aHm
+aHm
+aqq
+aJf
+aJf
+aJf
+arw
+arR
+aJf
+aJf
+aJf
+aJf
+aJf
+arY
+aJf
+aJf
+arw
+aJf
+arw
+aJf
+aJf
+aJf
+aJf
+arY
+aJf
+ayD
+aHE
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -35803,29 +40808,29 @@ aab
aab
aab
aab
-aHc
-aHB
-aHv
-aIF
-aHc
-aJG
-aHZ
-aLb
-aHc
-aLP
-aKp
-aME
-aHc
-aNm
-aKt
-aNE
-aNW
-aOk
-aJa
-aJa
-aWL
-aPx
-aHc
+bdS
+ber
+beK
+bfp
+bdS
+bgr
+bhb
+bhQ
+bdS
+biO
+bjp
+bjH
+bdS
+bkw
+bkL
+bkT
+blr
+blP
+bfL
+bfL
+bmo
+bmt
+bdS
aab
aab
aab
@@ -35856,83 +40861,83 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
abn
abn
-acq
-akG
-akO
-acq
abn
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-ahD
-ahs
-alj
-alS
-alS
-amp
-ahs
-ahD
-aac
-aac
-akb
-akb
-amU
-ann
-anC
-anM
-aoj
-anC
-apr
-aqb
-aqL
-art
-anC
-anC
-atv
-anC
-auT
-anC
-awb
-awP
-axG
-ayr
-azb
-anm
-aAL
-aBr
-aka
-aac
-aac
-aac
-aac
+abn
+abn
+abn
+abn
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+ajV
+ajV
+ajV
+ajV
+ajV
+akX
+aqC
+aru
+akX
+ajV
+ajV
+ajV
+ajV
+ajV
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+azs
+azq
+aAw
+aDk
+aDk
+aEy
+azq
+azs
+adt
+adt
+aHm
+aHm
+aqr
+are
+arh
+ari
+arQ
+arh
+arW
+arZ
+asa
+asl
+arh
+arh
+ata
+arh
+atl
+arh
+atx
+auc
+auP
+awE
+axh
+aJf
+ayj
+ayG
+aHE
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -35945,29 +40950,29 @@ aab
aab
aab
aab
-aHc
-aHt
-aHt
-aIG
-aJd
-aPc
-aHt
-aHt
-aLv
-aPc
-aHt
-aHt
-aMS
-aPc
-aHt
-aHt
-aHc
-aHc
-aOl
-aOG
-aOO
-aHc
-aHc
+bdS
+bek
+bek
+bfq
+bfO
+bgs
+bek
+bek
+biq
+bgs
+bek
+bek
+bjY
+bgs
+bek
+bek
+bdS
+bdS
+bma
+bmh
+bmp
+bdS
+bdS
aab
aab
aab
@@ -35998,83 +41003,83 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
abn
-akm
-abp
-akw
-abB
-abX
abn
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aho
-aho
-aho
-aho
-ahD
-ahs
-alj
-alS
-alS
-amp
-ahs
-ahD
-aac
-aac
-ajy
-aka
-acM
-aka
-aka
-aka
-aok
-aok
-aok
-aok
-aok
-aok
-aok
-aok
-aok
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-azV
-aka
-aka
-aka
-aac
-aac
-aac
-aac
+abn
+abn
+abn
+abn
+abn
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+ajV
+akZ
+ame
+ani
+aoj
+apv
+aqD
+aga
+amQ
+atJ
+auk
+auk
+avQ
+ajV
+adt
+adt
+adt
+awY
+awY
+awY
+awY
+azs
+azq
+aAw
+aDk
+aDk
+aEy
+azq
+azs
+adt
+adt
+aGy
+aHE
+aqs
+aHE
+aHE
+aHE
+aKb
+aKb
+aKb
+aKb
+aKb
+aKb
+aKb
+aKb
+aKb
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aWz
+aHE
+aHE
+aHE
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -36087,28 +41092,28 @@ aab
aab
aab
aab
-aHc
-aHt
-aHt
-aHt
-aJd
-aHt
-aHt
-aHt
-aLv
-aHt
-aHt
-aHt
-aMT
-aHt
-aHt
-aHt
-aNX
-aHt
-aHt
-aHt
-aOK
-aHc
+bdS
+bek
+bek
+bek
+bfO
+bek
+bek
+bek
+biq
+bek
+bek
+bek
+bjZ
+bek
+bek
+bek
+bls
+bek
+bek
+bek
+bmk
+bdS
aab
aab
aab
@@ -36140,117 +41145,117 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
abn
-akn
-akn
-abq
-abC
-abY
abn
-aac
-aac
-aac
-aac
-aac
-aho
-aho
-aho
-ahs
-ahs
-aho
-alm
-ano
-alB
-alS
-alS
-amq
-ano
-alm
-aho
-aho
-ajy
-abz
-acp
-aii
-ajy
-ajy
-aok
-aoH
-aps
-aqc
-aqM
-aru
-ash
-asR
-aok
-aui
-auk
-avs
-aui
-auj
-aka
-aka
-aka
-azW
-aka
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aHc
-aHO
-aHt
-aHt
-aJd
-aHt
-aKj
-aHt
-aLv
-aHt
+abn
+abn
+abn
+abn
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+ajV
+ala
+amf
+anj
+anj
+apw
+aqE
+aiE
+asy
+ajV
+ajV
+ajV
+avR
+ajV
+adt
+awY
+awY
+awY
+azq
+azq
+awY
+aBb
+aBC
+aCo
+aDk
+aDk
+aEz
+aBC
+aBb
+awY
+awY
+aGy
+aql
+aql
+aGw
+aGy
+aGy
+aKb
+aKL
+aLt
aMg
-aHt
-aMS
-aHt
-aHt
-aHt
-aNX
-aHt
-aHt
-aHt
-aWM
-aHc
+aMP
+aNr
+aOc
+aOS
+aKb
+aQu
+aQw
+aRL
+aQu
+aQv
+aHE
+aHE
+aHE
+axZ
+aHE
+adt
+adt
+adt
+adt
+adt
+adt
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+bdS
+bej
+bek
+bek
+bfO
+bek
+bgW
+bek
+biq
+bek
+bjk
+bek
+bjY
+bek
+bek
+bek
+bls
+bek
+bek
+bek
+bmj
+bdS
aab
aab
aab
@@ -36282,28 +41287,6 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-abn
-abn
-abn
-abn
-abn
-aaK
abn
abn
abn
@@ -36311,55 +41294,77 @@ abn
abn
abn
abn
-aho
-aho
-ahq
-ahr
-ahs
-ahs
-alj
-aln
-alh
-alC
-alT
-alT
-amr
-alh
-amC
-amE
-aho
-ajy
-amH
-anp
-anp
-anp
-anp
-aok
-aoI
-apt
-aqd
-aqN
-arv
-asi
-asS
-aok
-auj
-auU
-auk
-auk
-auk
-axH
-ays
-ajP
-azX
-aka
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+adt
+agr
+agr
+agr
+agr
+agr
+agr
+agr
+agr
+ahn
+apx
+aqF
+aqF
+aqF
+aqF
+aul
+aqF
+avR
+ajV
+awY
+awY
+axR
+ayw
+azq
+azq
+aAw
+aBc
+aAc
+aCp
+aDl
+aDl
+aEA
+aAc
+aFO
+aGu
+awY
+aGy
+aHG
+aIi
+aIi
+aIi
+aIi
+aKb
+aKM
+aLu
+aMh
+aMQ
+aNs
+aOd
+aOT
+aKb
+aQv
+aRj
+aQw
+aQw
+aQw
+aUj
+awF
+axi
+aya
+aHE
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -36371,28 +41376,28 @@ aab
aab
aab
aab
-aHc
-aHC
-aJc
-aIH
-aJd
-aHC
-aJc
-aIH
-aLv
-aHC
-aJc
-aIH
-aMS
-aHC
-aJc
-aIH
-aNX
-aHt
-aHt
-aHt
-aPy
-aHc
+bdS
+bes
+beL
+bfr
+bfO
+bes
+beL
+bfr
+biq
+bes
+beL
+bfr
+bjY
+bes
+beL
+bfr
+bls
+bek
+bek
+bek
+bmi
+bdS
aab
aab
aab
@@ -36424,85 +41429,85 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
abn
-aal
-aak
-aaR
-abo
-abA
-aaR
-abZ
-aaR
-aaR
+abn
+abn
+abn
+abn
acm
-abB
-abn
-aho
-ahp
-ahq
-ahr
-ahs
-ahs
-ahs
-alo
-alo
-alD
-alU
-alU
-ams
-ams
-ams
-ahq
-aho
-ajy
-abz
-anp
-anD
-anN
-asZ
+acm
+acm
+acm
+acm
+acm
+acm
+ahd
+ahR
+aiY
+ajW
+alb
+ald
+agr
aok
+apy
+aqF
+arx
+asz
atK
-apu
-aqe
-aqO
-arw
-aqO
-asT
-aok
-auk
-auk
-auk
-auk
-auU
-aka
-ayt
-aka
-aka
-aka
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aum
+aqF
+avS
+ajV
+awY
+axQ
+axR
+ayw
+azq
+azq
+azq
+aBd
+aBd
+aCq
+aDm
+aDm
+aEB
+aEB
+aEB
+axR
+awY
+aGy
+aql
+aIi
+aIN
+aJh
+aJB
+aKb
+aKN
+aLv
+aMi
+aMR
+aNt
+aMR
+aOU
+aKb
+aQw
+aQw
+aQw
+aQw
+aRj
+aHE
+aUW
+aHE
+aHE
+aHE
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -36513,28 +41518,28 @@ aab
aab
aab
aab
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aHc
-aOr
-aOr
-aOr
-aHc
-aHc
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+blQ
+blQ
+blQ
+bdS
+bdS
aab
aab
aab
@@ -36566,85 +41571,85 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aam
-aam
-aam
-aam
-aae
-aae
-aat
-aae
-aae
-aae
-aae
-aae
abn
abn
abn
abn
abn
-aho
-ahq
-ahr
-ahr
-ahs
-ahs
-ahs
-ahs
-ahs
-ahr
-ahq
-ahq
-ahq
-ahq
-ahq
-amF
-amG
-ajx
-abz
-anp
-anE
-anO
-aMn
-aok
-aoK
-apv
-aqf
-aqP
-arx
-asj
-asU
-aok
-aul
-aui
-auk
-awc
-auk
-aka
-ayu
-aka
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+acn
+acL
+adu
+aed
+aeH
+afv
+acm
+ahe
+ahS
+aiZ
+ajX
+alc
+amg
+ank
+aol
+apz
+aqF
+aqF
+aqF
+atL
+aiQ
+aqF
+aqF
+ajV
+awY
+axR
+ayw
+ayw
+azq
+azq
+azq
+azq
+azq
+ayw
+axR
+axR
+axR
+axR
+axR
+aGv
+aGY
+aEc
+aql
+aIi
+aIO
+aJi
+aJC
+aKb
+aKO
+aLw
+aMj
+aMS
+aNu
+aOe
+aOV
+aKb
+aQx
+aQu
+aQw
+aSt
+aQw
+aHE
+awI
+aHE
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -36671,7 +41676,7 @@ aab
aab
aab
aab
-aUj
+blt
aab
aab
aab
@@ -36708,86 +41713,86 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aam
-aSf
-aSf
-aSf
-aSf
-aSf
-aTi
-aSf
-aSf
-aSf
-aWP
-aam
-acW
-acW
-acW
-acW
-acW
-aho
-ahq
-ahr
-ahs
-ahs
-aij
-ahs
-ahs
-ahs
-ahr
-ahr
-ahr
-ahq
-ahq
-ahq
-ahq
-aho
-ajy
-abz
-anp
-acF
-anF
-anP
-acF
-acF
-acF
-aqg
-acF
-acF
-ask
-aok
-aok
-aum
-aum
-aum
-awd
-auj
-aka
-ayv
-aka
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+abn
+abn
+abn
+abn
+abn
+acn
+acM
+adv
+aee
+aeI
+afw
+ags
+ahf
+ahf
+aja
+ajY
+ald
+amh
+agr
+aom
+apA
+aqF
+ary
+asz
+atM
+auo
+avk
+aqF
+aww
+awY
+awY
+awY
+ayw
+ayw
+azZ
+azq
+azq
+azq
+ayw
+ayw
+ayw
+axR
+axR
+axR
+axR
+awY
+aGy
+aql
+aIi
+aIP
+aJj
+aJD
+aIP
+aIP
+aIP
+aMk
+aIP
+aIP
+aOf
+aKb
+aKb
+aQy
+aQy
+aQy
+aSu
+aQv
+aHE
+awN
+aHE
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -36850,86 +41855,86 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aam
-aSf
-aSf
-aSf
-aSf
-aSf
-aWr
-aSf
-aSf
-aSf
-aWP
-aam
-acW
-acW
-acW
-acW
-acW
-aho
-aho
-ahr
-ahs
-ahs
-ahs
-ahs
-ahs
-ahs
-ahs
-ahs
-ahr
-ahr
-ahq
-ahq
-aho
-aho
-ajy
-amH
-amV
-acF
-atC
-anQ
-aol
-aoL
-apw
-ajE
-aqQ
-ary
-asl
-asV
-atw
-asX
-auV
-avt
-awe
-aka
-aka
+abn
+abn
+abn
+abn
+abn
+acn
+acN
+adw
+aef
+aeJ
+afx
+acm
+ahg
+ahT
+ajb
+ajZ
+ald
+ami
+agr
+aon
+apB
+aqF
+aqF
+aqF
+atN
+aqF
+aqF
+aqF
+aww
+awY
+awY
+awY
+awY
ayw
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aac
-apq
-apq
+azq
+azq
+azq
+azq
+azq
+azq
+ayw
+ayw
+axR
+axR
+awY
+awY
+aGy
+aHG
+aIj
+aIP
+aJk
+aJE
+aKc
+aKP
+aLx
+aJH
+aMT
+aNv
+aOg
+aOW
+aPE
+aOY
+aRk
+aRM
+aSv
+aHE
+aHE
+awR
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+adt
+abn
+abn
aab
aab
aab
@@ -36993,86 +41998,86 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aam
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
-aam
-acW
-acW
-acW
-acW
-acW
-acW
-aho
-ahs
-ahs
-ahs
-ahs
-ahs
-ahr
-ahr
-ahr
-ahs
-ahs
-ahr
-ahq
-amD
-aho
-aho
-aii
-ail
-ail
-acF
-anG
-anR
-aom
-aoM
-ajE
-ajE
-aqR
-ary
-asm
-asW
-asX
-asX
-auV
-avt
-awf
-awQ
-axI
-ayx
-azc
-azc
-aAM
-azc
-azc
-azc
-aCN
-aDl
-aka
-aac
-apq
-apq
-apq
+abn
+abn
+abn
+abn
+acm
+acO
+adx
+aeg
+aeJ
+afy
+acm
+agu
+agu
+agu
+agu
+agu
+agu
+agu
+aoo
+apC
+ake
+ali
+asA
+atO
+aup
+avl
+avT
+avT
+avT
+avT
+avT
+awY
+ayw
+azq
+azq
+ayw
+ayw
+ayw
+azq
+azq
+ayw
+axR
+aFP
+awY
+awY
+aGw
+aEc
+aEc
+aIP
+aJl
+aJF
+aKd
+aKQ
+aJH
+aJH
+aMU
+aNv
+aOh
+aOX
+aOY
+aOY
+aRk
+aRM
+aty
+aug
+avu
+awS
+axn
+axn
+ayn
+axn
+axn
+axn
+azv
+aAg
+aHE
+adt
+abn
+abn
+abn
aab
aab
aab
@@ -37136,85 +42141,85 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aam
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
-aam
-acW
-acW
-acW
-acW
-acW
-acW
-aho
-aho
-ahs
-ahs
-ahs
-ahs
-ahr
-ahq
-ahr
-ahr
-ahs
-ahr
-ahq
-ahq
-ahq
-aho
-aho
-ail
-abz
-acF
-adP
-anS
-aon
-aoN
-apx
-aqh
-aeg
-arz
-asn
-asX
-atx
-aun
-aun
-avt
-awg
-awR
-axJ
-ayy
-ayy
-azY
-aAN
-aBs
-aBs
-aBs
-aCO
-aDm
+abn
+abn
+abn
+acn
+acP
+ady
+aeh
+aeK
+afz
+acm
+ahh
+ahU
+ajc
aka
-aac
-apq
-apq
-apq
+ale
+amj
+agu
+aop
+apD
+aqG
+arz
+asB
+atP
+auq
+avm
+avU
+awx
+awZ
+axS
+avT
+awY
+ayw
+azq
+azq
+ayw
+axR
+ayw
+ayw
+azq
+ayw
+axR
+axR
+axR
+awY
+awY
+aEc
+aql
+aIP
+aJm
+aJG
+aKe
+aKR
+aLy
+aMl
+aMV
+aNw
+aOi
+aOY
+aPF
+aQz
+aQz
+aRM
+atz
+aun
+avC
+axf
+axf
+ayb
+ayx
+ayK
+ayK
+ayK
+azw
+aAu
+aHE
+adt
+abn
+abn
+abn
aab
aab
aab
@@ -37280,83 +42285,83 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aam
-aam
-aam
-aam
-aam
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
-aam
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-aho
-ahs
-ahs
-ahs
-ahs
-ahr
-ahq
-alE
-ahr
-ahs
-ahr
-ahq
-ahq
-ahq
-ahq
-aho
-abz
-abz
-acF
-afQ
-ajE
-aoo
-aoO
-apy
-aqi
-aqS
-ary
-aso
-asY
-aty
+abn
+acn
+acQ
+adz
+aei
+aeL
+afA
+agt
+ahi
+ahV
+ajd
+akb
+alf
+amk
+agu
+aoq
+apA
+ahn
+arA
+arA
+ahn
+aur
+avn
+avT
+awy
+axa
+axT
+avT
+awY
+ayw
+azq
+azq
+ayw
+axR
+aCr
+ayw
+azq
+ayw
+axR
+axR
+axR
+axR
+awY
+aql
+aql
+aIP
+aJn
+aJH
+aKf
+aKS
+aLz
+aMm
+aMW
+aNv
+aOj
+aOZ
+aPG
+aPH
+aPH
+aRM
atz
-atz
-avt
-awg
-awS
-axK
-axK
-axK
-axK
-axK
-axK
-axK
-aka
-aka
-aDn
-aka
-aac
-apq
-apq
-apq
+auB
+aUm
+aUm
+aUm
+aUm
+aUm
+aUm
+aUm
+aHE
+aHE
+aZV
+aHE
+adt
+abn
+abn
+abn
aab
aab
aab
@@ -37423,89 +42428,89 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aam
-aam
-aam
-aam
-aam
-aam
-aam
-aam
-acW
-acW
-acW
-adx
-acW
-acW
-acW
-aho
-aho
-ahs
-ahs
-ahs
-ahr
-ahr
-ahr
-ahr
-ahs
-ahr
-ahr
-ahq
-ahq
-aho
-aho
-ajy
-ail
-acF
-aiw
-anT
-aop
-aoP
-apz
-aqj
-avL
-ary
-asp
-asX
-atz
-atz
-atz
-avt
-awh
-awT
-axK
-ayz
-azd
-azZ
-aAO
-aBt
-axK
-aCq
-aCP
-aDo
-aka
-aka
-aEi
-aEi
-aka
-aEi
-aEi
-aka
-aac
-aac
-aac
-aac
+acn
+acR
+adA
+aej
+aeM
+afB
+acm
+ahj
+ahW
+aje
+akc
+alg
+aml
+anl
+aol
+apE
+ahn
+arB
+arB
+atQ
+aus
+avo
+avT
+awz
+awz
+awz
+avT
+awY
+azq
+azq
+azq
+ayw
+ayw
+ayw
+ayw
+azq
+ayw
+ayw
+axR
+axR
+awY
+awY
+aGy
+aEc
+aIP
+aJo
+aJI
+aKg
+aKT
+aLA
+aMn
+aMX
+aNv
+aOk
+aOY
+aPH
+aPH
+aPH
+aRM
+atA
+auC
+aUm
+aVc
+aVH
+aWD
+aXs
+aXZ
+aUm
+ayZ
+azy
+aZW
+aHE
+aHE
+baP
+baP
+aHE
+baP
+baP
+aHE
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -37565,89 +42570,89 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-acW
-acW
-acW
-adQ
-adx
-adx
-adx
-acW
-acW
-aho
-ahC
-ahs
-ahs
-ahs
-ahs
-ahs
-ahs
-ahs
-ahs
-ahr
-ahq
-ahq
-aho
-aii
-aii
-acE
-acF
-acF
-acF
-acF
-acF
-acF
-acF
-acF
-acF
-asq
-axO
-atA
+acm
+acm
+acm
+acm
+aeN
+acm
+acm
+ahk
+ahX
+ajf
+akd
+alh
+ale
+agu
+aom
+apF
+ahn
+arB
+arB
+atR
+aut
+avp
+avT
+awA
+axb
+axU
+avT
+awY
+azr
+azq
+azq
+azq
+azq
+azq
+azq
+azq
+azq
+ayw
+axR
+axR
+awY
+aGw
+aGw
+aqY
+aIP
+aIP
+aIP
+aIP
+aIP
+aIP
+aIP
+aIP
+aIP
+aOl
+aPa
+aPI
+aPH
+aPH
+aRM
atz
-atz
-avt
-awg
-awU
-axK
-ayA
-aze
-azZ
-axK
-axK
-axK
-aCr
-aCQ
-aDp
-aDG
-aDR
-aEj
-aEt
-aEL
-aEX
-aFl
-aka
-aac
-aac
-aac
-aac
+auD
+aUm
+aVd
+aVI
+aWD
+aUm
+aUm
+aUm
+aZa
+azT
+aZX
+aCe
+bay
+baQ
+bba
+bbt
+aGs
+bbT
+aHE
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -37707,90 +42712,90 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aUc
-aUc
-aUc
-aUc
-aUN
-aUN
-aUN
-aUN
-aUN
-aUN
-aUN
-aUN
-acW
-acW
-adx
-adx
-adx
-aeU
-adx
-acW
-aho
-ahs
-ahs
-ahs
-aij
-ahs
-ahs
-ahs
-ahs
-ahs
-ahr
-ahq
-amD
-aho
-aii
-aii
-amW
-anq
-ail
-anU
-aoq
-aoQ
-apA
-aqk
-aqk
-aqk
-asr
-aqk
-atB
-atB
-atB
-atB
-awi
-atB
-atB
-ayB
-azf
+aco
+acS
+adB
+aco
+aeO
+afC
+agu
+agu
+agu
+agu
+agu
+agu
+agu
+agu
+aor
+apG
+ahn
+arA
+arA
+ahn
+auu
+avq
+avV
+awB
+axc
+axV
+avT
+awY
+azq
+azq
+azq
azZ
-aAP
-aBu
-axK
-aCs
-aCR
-aka
-aka
-aka
-aEk
-aEu
-aEM
-aEY
-aFm
-aka
-aac
-aac
-aac
-aac
-aac
+azq
+azq
+azq
+azq
+azq
+ayw
+axR
+aFP
+awY
+aGw
+aGw
+aqZ
+arf
+aEc
+aJJ
+aKh
+aKU
+aLB
+aMo
+aMo
+aMo
+aOm
+aMo
+aPJ
+aPJ
+aPJ
+aPJ
+aSz
+aPJ
+aPJ
+aVe
+aVJ
+aWD
+aXt
+aYa
+aUm
+aZb
+aAf
+aHE
+aHE
+aHE
+aEj
+aEG
+aFU
+bbG
+bbU
+aHE
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -37849,90 +42854,90 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aUc
+aco
+acT
+adC
+aco
+aeP
+afD
+agv
+ahl
+akR
+ajg
+ake
+ali
+ahY
+ahl
+aos
+apH
+aqH
+arC
+asC
+atS
+auv
+avr
+avT
+awC
+axd
+axW
+avT
+awY
+ayw
+ayw
+ayw
+azq
+azq
+azq
+azq
+azq
+ayw
+ayw
+axR
+axR
+awY
+aGw
+aGw
+aEc
+aEc
+aEc
+aJJ
+aKi
+aKV
+aLC
+aMo
+aMY
+aNx
+aOn
+aMo
+aPK
+aQA
+aRl
+aRN
+aSA
+aTw
+aPJ
+aVf
+aVK
aUm
-aWy
-aUz
-aUN
-aVg
-aVx
-akg
-aVQ
-aWe
-ada
-aUN
-acW
-adw
-adR
-aeh
-adx
-adx
-adx
-acW
-aho
-ahr
-ahr
-ahr
-ahs
-ahs
-ahs
-ahs
-ahs
-ahr
-ahr
-ahq
-ahq
-aho
-aii
-aii
-ail
-ail
-ail
-anU
-aor
-aoR
-auK
-aqk
-aqU
-arA
-ass
-aqk
-dgA
-auo
-qXI
-avu
-awj
-aAi
-atB
-ayC
-azg
-axK
-axK
-axK
-axK
-aCr
-aCS
-aka
-akb
-aka
-aEl
-aEv
-aEN
-aEY
-aFn
-aka
-aac
-aac
-aac
-aac
-aac
+aUm
+aUm
+aUm
+aZa
+aZD
+aHE
+aHm
+aHE
+baS
+bbc
+aFV
+bbG
+aGO
+aHE
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -37991,92 +42996,92 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aUc
+aco
+acU
+adD
+aek
+aeQ
+afE
+agw
+ahm
+ahZ
+ahZ
+akf
+alj
+amm
+anm
+aot
+apI
+aqI
+arD
+asD
+atT
+auw
+avs
+avT
+avT
+avT
+avT
+avT
+awY
+axR
+axR
+ayw
+ayw
+azq
+ayw
+ayw
+ayw
+ayw
+axR
+axR
+awY
+awY
+aGw
+aqm
+aEc
+aEc
+aEc
+aJJ
+aKj
+aKW
+aLD
+aMo
+aMZ
+aNy
+aOo
+aMo
+aPL
+aQB
+aRm
+aRm
+aSB
+aTx
aUn
-aUA
-aUL
-aUN
-aVh
-aVy
-aVj
-aVJ
-aWd
-aWq
-aUN
-acW
-adx
-adx
-adx
-aeB
-adx
-adx
-acW
-aho
-ahq
-ahq
-ahr
-ahr
-ahs
-ahr
-ahr
-ahr
-ahr
-ahq
-ahq
-aho
-aho
-aii
-amI
-ail
-ail
-ail
-anU
-aos
-aoS
-apC
-aqk
-aqV
-arB
-ast
-aqk
-atD
-dEl
-atJ
-atJ
-awk
-awW
-axL
-ayD
-azh
-aAa
-azZ
-aBv
-axK
-aCt
-aCT
-aka
-akb
-aka
-aEm
-aEw
-aEO
-aEZ
-aFo
-aka
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aVg
+aVL
+aWE
+aWD
+aYb
+aUm
+aZa
+aZC
+aHE
+aHm
+aHE
+baT
+aEH
+bbw
+bbH
+bbW
+aHE
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -38133,92 +43138,92 @@ aab
aab
aab
aab
-aab
-aab
-aab
-abE
-abE
-abE
-abE
-abE
-aUo
-aUB
-aWz
-aUN
-aUO
-aUX
-aVK
-aVR
-aWf
-aWt
-aUN
-aWi
-adx
-adx
-adx
-adx
-adx
-acW
-acW
-aho
-aho
-ahq
-ahq
-ahr
-ahr
-ahr
-ahq
-ahq
-ahq
-ahq
-ahq
-aho
-ajy
-aii
-amJ
-amX
-ail
-ail
-anV
-aot
-anU
-apD
-aqk
-aqW
-arC
-asu
-ata
-atE
-auq
-auX
-avv
-awl
-awX
-atB
-ayE
-azi
-axK
-aAQ
-aBw
-axK
-aCu
-aCU
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aka
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aac
+aco
+acV
+adE
+aco
+aeR
+afF
+agx
+ahn
+aia
+ajh
+ahn
+alk
+amn
+ann
+ann
+ann
+aqJ
+arE
+aqJ
+ann
+aux
+ahn
+ajE
+awD
+awD
+awD
+awD
+awY
+awY
+axR
+axR
+ayw
+ayw
+ayw
+axR
+axR
+axR
+axR
+axR
+awY
+aGy
+aGw
+aqn
+aIm
+aEc
+aEc
+aJK
+aKk
+aJJ
+aLE
+aMo
+aNa
+aNz
+aOp
+aPb
+aPM
+aQC
+aRn
+aRO
+aSC
+aTy
+aPJ
+aVh
+aVM
+aUm
+aXu
+aYc
+aUm
+aZe
+aZD
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+aHE
+baz
+baz
+baz
+baz
+baz
+baz
+adt
aab
aab
aab
@@ -38275,104 +43280,104 @@ aab
aab
aab
aab
-aab
-aab
-aab
-abE
-acd
-aTu
-aPl
-abE
-abE
-aUC
-aWA
-aUN
-aVk
-aVC
-aVL
-aVz
-aWg
-aVN
-aVJ
-aWi
-adx
-adx
-adx
-adx
+aco
acW
-acW
-acW
-acW
-aho
-alf
-alf
-alf
-alf
-alf
-alf
-alf
-alf
-alf
-ahq
-aho
-ajy
-aii
-aii
-amY
-ajN
-anH
-anW
+adF
+aco
+aeS
+afG
+agy
+ahn
+aib
+aji
+ahn
+all
+amo
+ano
aou
-aoT
-apE
-aql
-aqX
-arD
-asv
-aqk
-atF
-aur
-atJ
-atF
-awm
+apJ
+aqK
+arF
+asE
+ann
+auy
+auA
+ajE
+aAA
+awD
+aAA
+awD
+awD
awY
-atB
-atB
-axK
-axK
-axK
-axK
-axK
-aCv
-aCT
-aBV
-aDH
-aDS
-aEn
-aEx
-aEP
-aDS
-aFp
-aFC
-aDS
-aFT
-aGh
-aGx
-aFC
-aDS
-aac
-aac
-aac
+aAa
+aAa
+aAa
+aAa
+aAa
+aAa
+aAa
+aAa
+aAa
+axR
+awY
+aGy
+aGw
+aGw
+ara
+aEd
+aEd
+aJL
+aKl
+arV
+arX
+aMp
+aNb
+aNA
+aOq
+aMo
+aPN
+aQD
+aRm
+aPN
+aSD
+aTz
+aPJ
+aPJ
+aUm
+aUm
+aUm
+aUm
+aUm
+aZe
+aZC
+aYD
+bap
+baz
+baU
+aEI
+aFW
+baz
+bbX
+bck
+baz
+bcB
+bcP
+bdk
+bck
+baz
+adt
+adt
+adt
aab
aab
aab
aab
aab
-aac
-aac
-aac
-apq
-apq
+adt
+adt
+adt
+abn
+abn
aab
aab
aab
@@ -38417,104 +43422,104 @@ aab
aab
aab
aab
-aab
-aab
-aab
-abE
-ami
-aTv
-aTP
-aUf
-abE
-afs
-aUN
-aUN
-aTB
-aUN
-aVM
-aUZ
-aUN
-aVS
-aWs
-aUN
-adx
-adS
-adx
-acW
-acW
-acW
-acW
-acW
-ahD
-alg
-alk
-alp
-alu
-alF
-alV
-amg
-amt
-amB
-aho
-aho
-ajy
-aii
-aii
-amZ
-ajx
-anI
-anX
+aco
+aco
+aco
+aco
+aeT
+aeT
+aeT
+aeT
+aeT
+aeT
+aeT
+alm
+amp
+anp
aov
-anX
-apF
-aqm
-aqU
-arE
-asw
-aqk
-atG
-aur
-atJ
-atF
-awn
-awZ
-axM
-atB
-auk
+apK
+aqL
+arG
+asF
+ann
+auy
+auA
+ajE
+aAA
+axe
+aAA
+aAA
+awD
+azs
aAb
-aAR
-aBx
-aBV
-auk
-aCW
-aDq
-aDI
-aDS
-aEo
-aEo
-aEn
-aDS
-aFq
-aFD
-aFI
-aFC
-aGi
+aAx
+aBe
+aBD
+aCs
+aDn
+aDW
+aEC
+aFf
+awY
+awY
aGy
-aGT
-aDS
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-apq
-apq
+aGw
+aGw
+aIp
+aEc
+aJq
+aJM
+aKm
+aJM
+aLG
+aMq
+aMY
+aNB
+aOr
+aMo
+aPO
+aQD
+aRm
+aPN
+aSE
+aTA
+aUo
+aPJ
+aQw
+aQw
+aXv
+aYd
+aYD
+aQw
+aZC
+aAX
+aCf
+baz
+baU
+baU
+baU
+baz
+bbY
+bcl
+bcq
+bck
+bcQ
+bdl
+bdG
+baz
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+abn
+abn
aab
aab
aab
@@ -38559,104 +43564,104 @@ aab
aab
aab
aab
+acp
aab
aab
aab
-abF
-aTo
-aTw
-aTN
-aUg
-aTz
-aVq
-aUN
-aBG
-aVm
-aUN
-aBG
-aVU
-aUN
-aUV
-aVm
-aUN
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-ale
-alh
-all
-alq
-aoJ
-ahD
-alW
-amh
-ahD
-ahD
-ahD
-aii
-aii
-aii
-aii
-ana
-ajx
-anI
-anY
+aeU
+afH
+agz
+aho
+aic
+ajj
+aeT
+aln
+amq
+ann
aow
-aoU
-apG
-aqm
-aqm
-aqm
-aqk
-aqk
-atH
-aus
-auY
-avw
-awo
-axa
-axa
-ayF
-azj
+apL
+aqM
+arH
+asG
+ann
+auy
+auA
+ajE
+aAA
+aAA
+aAA
+aod
+aAA
+azt
aAc
-aAS
-aBy
-aAS
-aCw
-aCX
-aDr
-aDr
-aDT
-aEp
-aEy
-aEQ
-aDS
-aFr
-aFD
-aDS
-aFU
-aEn
-aGz
-aEn
-aDS
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-apq
+aAy
+aBf
+aBE
+azs
+aDo
+aDX
+azs
+azs
+azs
+aGw
+aGw
+aGw
+aGw
+aIp
+aEc
+aJq
+aJN
+aKn
+aKY
+aLH
+aMq
+aMq
+aMq
+aMo
+aMo
+aPP
+aQE
+aRo
+aRP
+aSF
+aTB
+aTB
+aVi
+axJ
+aWG
+ayy
+aZf
+ayy
+aZf
+aZF
+aBx
+aBx
+baA
+baW
+bbf
+baW
+baz
+bbZ
+bcl
+baz
+bcC
+baU
+bdm
+baU
+baz
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+abn
aab
aab
aab
@@ -38701,105 +43706,105 @@ aab
aab
aab
aab
+acp
aab
aab
aab
-abF
-aTp
-aTx
-aTO
-aWE
-aTz
-aUF
-aUN
-aUW
-ahy
-aUN
-aUW
-aPi
-aUN
-aUW
-ahy
-aUN
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-ahD
-ali
-ahE
-alr
-ahF
-ahD
-alQ
-alX
-adY
-aiO
-aje
-ajw
-ajw
-ajN
-ajN
-anb
-ajy
-anI
-anZ
-anZ
-anZ
-anZ
-anZ
-anZ
-arF
-asx
-atb
-atI
-aut
-aut
-aut
-aut
-atJ
-axN
-atB
-azk
+aeV
+afI
+agA
+ahp
+aid
+ajk
+akg
+alo
+amr
+anq
+aox
+apL
+apL
+arH
+asH
+ann
+auy
+auA
+ajE
+anV
+aAA
+aAA
+aAA
+awD
+azs
aAd
-auk
-aAT
-aAT
-aAT
-avd
-aAT
-aAT
-aAT
-aEq
-aEz
-aEQ
-aDS
-aFs
-aFE
-aDS
-aFV
-aEn
-aEn
-aFC
-aDS
-aac
-aac
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aac
-aac
-aac
-aac
-apq
-apq
+aAz
+aBg
+aBF
+azs
+aDp
+aDY
+avD
+aFg
+aFQ
+aEd
+aEd
+aEd
+aEd
+arb
+aGy
+aJq
+aJO
+aJO
+aJO
+aJO
+aJO
+aJO
+aNC
+aOs
+aPc
+aPQ
+aQF
+aQF
+aQF
+aQF
+aRm
+aUp
+aPJ
+aYd
+aWH
+aQw
+aXx
+aXx
+aXx
+aZG
+aXx
+aXx
+aXx
+baX
+aEJ
+baW
+baz
+bca
+bcm
+baz
+bcD
+baU
+baU
+bck
+baz
+adt
+adt
+baz
+baz
+baz
+baz
+baz
+baz
+adt
+adt
+adt
+adt
+abn
+abn
aab
aab
aab
@@ -38843,108 +43848,108 @@ aab
aab
aab
aab
+acp
aab
aab
aab
-abE
-aas
-aTy
-aUe
-aWF
-aTz
-afd
-aUN
-aUd
-aVo
-aUN
-aVp
-aVW
-aUN
-aWx
-aVo
-aUN
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-aap
-ahD
-ahD
-ahD
-ahD
-ahD
-ahD
-alY
-amj
-adY
-aiB
-ajf
-ajx
-ajx
-ajy
-ajy
-ajy
-ajy
-anI
-anZ
-aox
-aox
-aox
-aox
-anZ
-arF
-asx
-atb
-axC
-aut
-aut
-aut
-aut
-atJ
-axP
-auv
-azl
-adq
-aAT
-aAT
-aBW
-aCx
-aCZ
-aOZ
-aDJ
-aAT
-aAT
-aEA
-aEQ
-aDS
-aDS
-aDS
-aDS
-aDS
-aGj
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aEQ
-aEQ
-aKw
-aLc
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aNF
-aNF
-aDS
+aeU
+afJ
+agB
+ahq
+aie
+ajl
+akh
+alp
+ams
+ano
+aoy
+apL
+aqN
+arI
+asI
+ann
+auz
+avt
+ajE
+aAA
+anY
+aAA
+aoG
+ajE
+azs
+azs
+azs
+azs
+azs
+azs
+aDq
+aDZ
+avD
+aFh
+aFl
+aEc
+aEc
+aGy
+aGy
+aGy
+aGy
+aJq
+aJO
+aKo
+aKo
+aKo
+aKo
+aJO
+aNC
+aOs
+aPc
+aPR
+aQF
+aQF
+aQF
+aQF
+aRm
+aUq
+aQH
+aVP
+aWI
+aXx
+aXx
+aYE
+aZg
+aZH
+baa
+bar
+aXx
+aXx
+aFk
+baW
+baz
+baz
+baz
+baz
+baz
+bcR
+baz
+baz
+baz
+baz
+baz
+baz
+baW
+baW
+aLs
+bhR
+baz
+baz
+baz
+baz
+baz
+baz
+baz
+bkU
+bkU
+baz
aab
aab
aab
@@ -38985,108 +43990,108 @@ aab
aab
aab
aab
+acp
aab
aab
aab
-abE
-abE
-aTz
-aTz
-aUh
-abE
-aUM
-aUN
-aUY
-aUi
-aUN
-aUY
-aVl
-aUN
-aUY
-aWh
-aUN
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-aap
-agK
-agZ
-aha
-adY
-ahG
-aqq
-alZ
-amk
-adY
-aiP
-aiT
-ajx
-ajy
-ajy
-ajy
-ajy
-ajy
-anI
-anZ
-aox
-aox
-aox
-aox
-anZ
-arF
-asx
-atb
-awV
-auu
-auZ
-auu
-auu
-axb
-aBF
-auv
-tKq
-wRZ
-aAU
-aBz
-aBX
-aCy
-aDa
-aDt
-aBX
-aDU
-aAT
-aEB
-aEQ
-aDS
-aFt
-aFF
-aDS
-aFW
-aEo
-aEn
-aDS
-aHf
-aHD
-aIb
-aEQ
-aEQ
-aEQ
-aEQ
-aEQ
-aEp
-aLQ
-aMo
-aHj
-aMU
-aNn
-aNA
-aEQ
-aNY
+aeU
+afK
+agB
+ahr
+aif
+ajm
+akh
+alq
+amt
+ann
+ann
+apM
+ann
+ann
+ann
+ann
+auA
+auy
+ajE
+aAA
+aAA
+aAA
+awD
+ajE
+azu
+auA
+aAe
+avD
+aBG
+aCt
+aDr
+aEa
+avD
+aFh
+aFl
+aEc
+aGy
+aGy
+aGy
+aGy
+aGy
+aJq
+aJO
+aKo
+aKo
+aKo
+aKo
+aJO
+aNC
aOs
+aPc
+aPS
+aQG
+aRp
+aQG
+aQG
+aTC
+aUr
+aQH
+aVQ
+aWJ
+aXy
+aYf
+aYF
+aZh
+aZI
+bab
+aYF
+baB
+aXx
+aFn
+baW
+baz
+aHn
+aHI
+baz
+aIg
+baU
+baU
+baz
+bdT
+bet
+bka
+baW
+baW
+baW
+baW
+baW
+baW
+bdK
+aMf
+aJg
+bka
+bkx
+aNp
+baW
+blu
+blR
aab
aab
aab
@@ -39127,109 +44132,109 @@ aab
aab
aab
aab
+acp
aab
aab
aab
-aab
-aTr
-aTC
-aTR
-aTX
-aVi
-aUP
-aTA
-aVT
-aWB
-aUG
-aWj
-aWO
-aVD
-aWk
-aXc
-aTr
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-aap
-agL
-aha
-ahm
-adY
-aiy
-alH
-ama
-aml
-adY
-aiP
-ajf
-ajx
-ajy
-ajy
-ajy
-ajy
-ajy
-anI
-anZ
-aox
-aox
-aox
-aox
-anZ
-arF
-arG
-atb
-atB
-auv
-auv
-auv
-auv
-auv
-auv
-auv
-vgb
-nOG
-aAU
-toV
-iRp
-aCz
-aDb
-aDu
-aDK
-aDU
-aAT
-aEC
-aEQ
-aDS
-aDS
-aDS
-aDS
-aEp
-aEp
-aEQ
-aDT
-aEQ
-aFX
-aIc
-aEQ
-aGk
-aJH
-aEq
-aFG
-aEp
-aEQ
-aEp
-aEQ
-aMV
-aEp
-aEQ
-aEQ
-aNZ
-aOs
-aac
+aeV
+afL
+agC
+ahs
+aig
+ajn
+aki
+alr
+amu
+anr
+aoz
+apN
+aqO
+arJ
+asJ
+anr
+auA
+auy
+ajE
+aAA
+aAA
+aob
+awD
+ajE
+auA
+aAe
+aAA
+avD
+aBH
+aCu
+aDs
+aEb
+avD
+aFh
+aFl
+aEc
+aGy
+aGy
+aGy
+aGy
+aGy
+aJq
+aJO
+aKo
+aKo
+aKo
+aKo
+aJO
+aNC
+aND
+aPc
+aPJ
+aQH
+aQH
+aQH
+aQH
+aQH
+aQH
+aQH
+aVR
+aWK
+aXy
+aYg
+aYG
+aZi
+aZJ
+bac
+bas
+baB
+aXx
+aFo
+baW
+baz
+baz
+baz
+baz
+baW
+baW
+baW
+baA
+baW
+bbf
+aJX
+baW
+aIn
+aJZ
+baX
+aHJ
+baW
+baW
+baW
+baW
+bkV
+baW
+baW
+baW
+blu
+blR
+adt
aab
aab
aab
@@ -39269,111 +44274,111 @@ aab
aab
aab
aab
+acp
aab
aab
aab
-aab
-aTs
+aeT
+afM
+agD
+aht
+aih
+ajo
+aeT
+als
+amv
+ans
+aoA
+apO
+aqP
+arK
+asK
+anr
+auA
+auy
+ajE
+awD
+awD
+awD
+awD
+ajE
+aoP
+auA
+aAB
+avD
+aBI
+aCv
+avD
+avD
+avD
+aFh
+aFl
+aGy
+aGy
+aGy
+aGy
+aGy
+aGy
+aJq
+aJO
+aKo
+aKo
+aKo
+aKo
+aJO
+aND
+aOt
+asQ
+aPT
+aQI
+aRq
+aRQ
+aSG
aTD
-aTS
-aVf
-aUr
-aVa
-aWu
-aVZ
-aWw
-aWC
-aWD
-ako
-aWT
-aPf
-aXb
-aTr
-acW
-acW
-acW
-acW
-acW
-acW
-acW
-aap
-agM
-agZ
-ahn
-adY
-acf
-aiz
-adY
-adY
-adY
-aiP
-ajg
-ajy
-ajy
-ajy
-ajy
-ajy
-ajy
-anI
-anZ
-aox
-aox
-aox
-aox
-anZ
-arG
-asy
-atc
-atL
-auw
-ava
-avx
-awp
-axc
-axQ
-avA
-azo
-aAh
-aAV
-tgA
-wVF
-aBZ
-aDc
-aDv
-aDL
-aOp
-aAT
-aED
-aEp
-aEp
-aEp
-aEQ
-aEQ
-aEQ
-aGk
-aGA
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aGj
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aEp
-aOa
-aDS
-aac
-aac
-aac
+aUs
+aRT
+aVS
+aWL
+aXz
+aYh
+aYH
+aZj
+aZK
+bad
+bat
+baC
+aXx
+bbk
+baW
+baW
+baW
+baW
+baW
+baW
+aIn
+baX
+baz
+baz
+baz
+baz
+baz
+baz
+baz
+baz
+baz
+bcR
+baz
+baz
+baz
+baz
+baz
+baz
+baW
+aNq
+baz
+adt
+adt
+adt
aab
aab
aab
@@ -39411,111 +44416,111 @@ aab
aab
aab
aab
+acp
aab
aab
-aab
-aab
-aTs
+ael
+aeW
+aeW
+agE
+aeW
+aeW
+aeW
+aeW
+alt
+amw
+anr
+aoB
+apN
+aqQ
+arL
+asL
+anr
+auA
+auy
+ajE
+ajE
+ajE
+ajE
+ajE
+ajE
+azx
+azx
+ajE
+avD
+aBJ
+aCw
+avD
+aEc
+aED
+aFi
+aFT
+aGy
+aGy
+aGy
+aGy
+aGy
+aGy
+aJq
+aJO
+aJO
+aKo
+aKo
+aMr
+aJO
+aND
+aso
+asR
+atc
+aQI
+aRr
+aRR
+aSH
aTE
-aaX
-aTr
-aUs
-aPh
-aUQ
-afC
-aUQ
-aUQ
-aUQ
-aUQ
-aWv
-aUQ
-aTr
-aTr
-acW
-acW
-acW
-aap
-aap
-aap
-aap
-aap
-agN
-ahb
-aap
-adY
-acg
-alI
-adY
-ajx
-aix
-aiQ
-ajh
-ajy
-ajy
-ajy
-ajy
-ajy
-ajy
-anI
-anZ
-anZ
-aox
-aox
-aqn
-anZ
-arG
-asz
-atd
-atM
-auw
-acn
-avy
-awq
-axd
-axR
-ayG
-azp
-aDs
-aAU
-aBC
-aCa
-aCA
-aCA
-aCA
-aCa
-aDW
-aAT
-aEo
-aEz
-aEp
-aFu
-aFG
-aEp
-aEQ
-aGl
-aDS
-aDS
-aHg
-aHE
-aId
-aII
-aJf
-aDS
-aDS
-aLd
-aEn
-aLR
-aMp
-aMq
-aMq
-aMq
-aDS
-aNG
-aOt
-aDS
-aac
-aac
-aac
+aUt
+aVj
+aVT
+aWM
+aXy
+aYi
+aYI
+aZk
+aZk
+aZk
+aYI
+baD
+aXx
+baU
+aEJ
+baW
+aHo
+aHJ
+baW
+baW
+bcT
+baz
+baz
+aIQ
+beu
+beO
+bfP
+bfP
+baz
+baz
+bhS
+baU
+aMe
+bjr
+bjs
+bjs
+bjs
+baz
+bkV
+blx
+baz
+adt
+adt
+adt
aab
aab
aab
@@ -39553,111 +44558,111 @@ aab
aab
aab
aab
+acp
aab
aab
-aab
-aab
-aTr
-aTF
-aTU
-aTr
-aUt
-aUt
-aUQ
-aVc
-ajK
-aVF
-aVP
-aWa
-aWl
-aUQ
-acW
-acW
-acW
-adT
-aei
-aeC
-aeV
-aap
-afP
-agd
-ags
+ael
+aeW
+afN
agF
-agO
-ahI
-alw
-vvJ
-ppI
-ajN
-drH
-aiR
-aji
-ajy
-ajy
-ajy
-ajy
-ajy
-ajy
+ahu
aii
-adY
-tIb
-bvS
-bvS
-eXR
-aqZ
-arG
-asA
-ate
-atN
-auw
-avb
-avz
-awr
-axe
-axS
-avA
-azq
-aAj
-aAU
-aAU
-aCb
-aCb
-aCb
-aCb
-aCb
-aAU
-aAT
-azl
-azl
-avp
-azl
-azl
-aEp
-aEQ
-aGm
-aDS
-aGU
-aHh
-aHF
-aIe
-aEo
-aEn
-aJI
-aDS
-aLe
-aEo
-aLS
-aMp
-aMq
-aMq
-aMq
-aDS
-aEQ
-aOb
-aDS
-aac
-aac
-aac
+ajp
+aeW
+alu
+amx
+aeX
+aeX
+apP
+aeX
+aeX
+aeX
+aeX
+auA
+anG
+avW
+awG
+axg
+ajE
+ayz
+ayV
+ayV
+aoS
+aAC
+aBh
+aBK
+aCx
+aDt
+aEd
+aEE
+aFj
+apk
+aGy
+aGy
+aGy
+aGy
+aGy
+aGy
+aGw
+avD
+aKp
+aKZ
+aKZ
+azg
+aNc
+aND
+asp
+aPf
+atf
+aQI
+aRs
+aRS
+aSI
+aTF
+aUu
+aRT
+aVU
+aWN
+aXy
+aXy
+aYJ
+aYJ
+aYJ
+aYJ
+aYJ
+aXy
+aXx
+aVP
+aVP
+bbI
+aVP
+aVP
+baW
+baW
+bcU
+baz
+bdH
+aJe
+bev
+beP
+baU
+baU
+aKa
+baz
+bhT
+baU
+biR
+bjr
+bjs
+bjs
+bjs
+baz
+baW
+aNW
+baz
+adt
+adt
+adt
aab
aab
aab
@@ -39695,112 +44700,112 @@ aab
aab
aab
aab
+acp
aab
aab
-aab
-aab
-aTr
-aTG
-aTW
-aUk
-aUk
-aUk
-aUQ
-aVd
-aVv
-aVG
-aPj
-aWb
-aWm
-aUQ
-acW
-acW
-ady
-adl
-adV
-aeD
+ael
aeW
-aap
-ald
-age
-age
-age
-age
-ahc
-alx
-tXA
-age
-aFB
-omx
-aiS
-ajj
-ajy
-ajy
-ajy
-ajy
-ajy
-ajy
-ajy
-adY
-aoz
-aoW
-apH
-aqp
-ara
-arG
-arG
-atf
-arG
-auw
-auw
-avA
-avA
-axf
-avA
-ayH
-azr
-aAk
-aHz
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aER
-aFb
-aOX
-azl
-aEp
-aEQ
-aGn
-aDS
-aGV
-aHh
-aEo
-aEn
-aEn
-aJg
-aJJ
-aDS
-aEo
-aEn
-aLT
-aMp
-aMq
-aMq
-aMq
-aDS
-aEQ
-aOc
-aDS
-aac
-aac
-aac
-aac
+afO
+agG
+ahv
+aij
+ajq
+aeW
+alv
+amy
+ant
+aoC
+afR
+aqR
+arM
+aeX
+aeX
+amY
+anG
+avX
+awH
+anZ
+ajE
+aoN
+ayW
+ayW
+ayW
+ayW
+aBi
+aBL
+aCy
+ayW
+aEe
+aEF
+aph
+apl
+aGy
+aGy
+aGy
+aGy
+aGy
+aGy
+aGy
+avD
+aKq
+aLa
+aLI
+aMs
+aNd
+aND
+aND
+aPg
+aND
+aQI
+aQI
+aRT
+aRT
+aTG
+aRT
+aVk
+aVV
+aWO
+aXA
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+bbz
+bbJ
+bcd
+aVP
+baW
+baW
+bcV
+baz
+bdI
+aJe
+baU
+baU
+baU
+beQ
+aKK
+baz
+baU
+baU
+biS
+bjr
+bjs
+bjs
+bjs
+baz
+baW
+aNX
+baz
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -39837,111 +44842,111 @@ aab
aab
aab
aab
+acp
aab
aab
-aab
-aab
-aTs
-aTH
-aPe
-aUk
-aUu
-aUH
-aUQ
-aVe
-aVw
-aVH
-aVP
-aWc
-aWn
-aUQ
-acW
-adk
-adz
-adU
-adV
-aeE
-aeX
-aap
-afR
-age
-agt
-agt
-agt
-agt
-aiD
-rim
-age
+ael
+aeW
+afP
+agH
+ahw
aik
-iBn
-aiT
-ail
-ajz
-ajy
-ajy
-ajy
-ajy
-aii
-aii
-adY
-ahY
-aoX
-afG
-aqE
-arb
-arc
-axv
-atg
-atO
-aux
-avc
-avB
-aws
-axg
-axT
-avG
-azs
-aAl
-aAX
-aAX
-aCc
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aES
-aFb
-aFb
-azl
-aEn
-aEp
-aGl
-aDS
-aGW
-aHh
-aHG
-aIf
-aHm
-aEn
-aJK
-aDS
-aLf
-aLw
-aLR
-aMp
-aMq
-aMq
-aMq
-aDS
-aEQ
-aOd
-aDS
-aac
-aac
-aac
+ajr
+akj
+alw
+amz
+afR
+afR
+afR
+aqS
+arN
+aeX
+aeX
+amZ
+avv
+avX
+awH
+aoa
+ajE
+ayB
+ayW
+azz
+azz
+azz
+azz
+aBM
+aCz
+ayW
+apb
+ape
+aFl
+aEc
+aGz
+aGy
+aGy
+aGy
+aGy
+aGw
+aGw
+avD
+aDv
+aLb
+ayd
+aMt
+aNe
+aNf
+aOw
+aPh
+aPW
+aQJ
+aRt
+aRU
+aSJ
+aTH
+aUv
+aRZ
+aVW
+aWP
+aXB
+aXB
+aYK
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+bbA
+bbJ
+bbJ
+aVP
+baU
+baW
+bcT
+baz
+aIK
+aJe
+aJp
+beQ
+aIg
+baU
+bgw
+baz
+bhU
+aLF
+aMe
+bjr
+bjs
+bjs
+bjs
+baz
+baW
+aOu
+baz
+adt
+adt
+adt
aab
aab
aab
@@ -39979,111 +44984,111 @@ aab
aab
aab
aab
+acp
aab
aab
-aab
-aab
-aTs
-aTL
-aTV
-afE
-aUv
-aUI
-aUQ
-afD
-aUQ
-aUQ
-aUQ
-aUQ
-aUQ
-aUQ
-acW
-cne
-adz
-adV
-acc
-aeF
+ael
+aeW
+aeW
+aeW
+aeW
+aeW
+aeW
+aeW
+alx
+amA
+anu
+aoD
+apQ
+aqT
+arO
aeX
-aap
-afR
-age
-agt
-agt
-agP
-agt
-alM
-pvh
-age
-ail
-aiB
-aiU
-ail
-ajA
-aii
-aii
-aii
-aii
-aii
-aWU
-ail
-aoA
-aoY
-afG
-aqr
-arc
-arH
-asC
-ath
-atP
-auy
-avc
-avC
-awt
-axh
-axU
-avG
-azs
-aAl
-aAY
-aAY
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aFc
-aFb
-azl
-aEo
-aFX
-aDS
-aDS
-aDS
-aHi
-aOn
-aIg
-aIJ
-aEo
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aEy
-aEQ
-aDS
-aac
-aac
-aac
+aeX
+ana
+avw
+avY
+awJ
+aoa
+ajE
+ayB
+ayW
+azz
+azz
+aAD
+azz
+aBN
+aCA
+ayW
+aEc
+aFh
+aFm
+aEc
+aGA
+aGw
+aGw
+aGw
+aGw
+aGw
+aJr
+aEc
+aKr
+aLc
+ayd
+aMu
+aNf
+aNE
+aOx
+aPi
+aPX
+aQK
+aRt
+aRV
+aSK
+aTI
+aUw
+aRZ
+aVW
+aWP
+aXC
+aXC
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+bbK
+bbJ
+aVP
+baU
+bbf
+baz
+baz
+baz
+bdW
+bex
+beR
+bft
+baU
+baz
+baz
+baz
+baz
+baz
+baz
+baz
+baz
+baz
+baz
+bbf
+baW
+baz
+adt
+adt
+adt
aab
aab
aab
@@ -40120,111 +45125,111 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aTr
-aTQ
-aUp
-aUk
-aUw
-afq
-aUR
-oXN
-aUS
aac
aac
-aac
-aac
-aac
-aap
-adm
-adA
-acc
-acc
-aeG
-aeY
-aap
-afS
-age
-age
-age
-age
-ahe
-ahH
-alO
-age
-aim
-aiB
-aiV
-ajk
-aWQ
-amy
-aWS
-amy
-amy
-amy
-aWR
+aab
+aab
+ael
+aeX
+afQ
+afQ
+ahx
ail
-adY
-aoZ
-afG
-aqs
-ard
-arH
-asD
-ath
-atQ
-auz
-avc
+ajs
+akk
+aly
+amB
+anv
+aoE
+apR
+aqU
+aqU
+aeX
+aeX
+anb
+avx
+avY
+awK
+axj
+ajE
+ayB
+ayW
+ayW
+ayW
+ayW
+aBj
+aBO
+aCB
+ayW
+aGz
+aFh
+api
+apm
+aqg
+apj
+aqj
+apj
+apj
+apj
+aLH
+aEc
avD
-awu
-axi
-axV
-avG
-azs
-aAm
-aAZ
-aBD
-aAW
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aES
-aFv
-azl
-aEo
-aEQ
-aEp
-aEp
-aDS
-aDS
-aDS
-aDS
-aDS
-aHm
-aDS
-aJh
-aJh
-aJh
-aDS
-aMq
-aMq
-aMq
-aMq
-aEo
-aEp
-aEp
-aDS
-aac
-aac
+aLd
+ayd
+aMv
+aNg
+aNE
+aOy
+aPi
+aPY
+aQL
+aRt
+aRW
+aSL
+aTJ
+aUx
+aRZ
+aVW
+aWQ
+aXD
+aYj
+aYL
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+bbA
+bce
+aVP
+baU
+baW
+baW
+baW
+baz
+baz
+baz
+baz
+baz
+aIg
+baz
+bfR
+bfR
+bfR
+baz
+bjs
+bjs
+bjs
+bjs
+baU
+baW
+baW
+baz
+adt
+adt
aab
aab
aab
@@ -40262,112 +45267,112 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aTt
-aTt
-aTY
-aUk
-aUx
-aUI
-aUR
-oXN
-aUS
aac
aac
-aac
-aac
-aac
-aap
-adn
-adA
-acc
-acc
-aap
-aap
-aap
-afT
-age
-agu
-age
-agQ
-ahf
-aiA
-alP
-age
-ail
-qNo
-amy
-aUE
+aab
+aab
+ael
+aeX
+afR
+afR
+ahy
+aim
+ajt
+akl
+alz
+amC
+anw
+aoF
+apS
+aqU
+arP
+aeX
+aeX
+anc
+avx
+avY
+ajE
+ajE
+ajE
+aoO
+ayW
+azA
+ayW
+aAE
+aBk
+aBP
+aCC
+ayW
+aEc
+apf
+apj
+apU
+aLH
+aGw
+aGw
+avD
+avD
+avD
+avD
+avD
+avD
+aLe
+aLJ
+aMw
+aNg
+aNE
+aOz
+aPi
+aPZ
+aQK
+aRt
+aRX
+aSM
+aTK
+aUy
+aRZ
+aVX
aWR
-aii
-aii
-adY
-adY
-adY
-adY
-adY
-adY
-apa
-apI
-aqt
-ard
-arH
-asE
-ath
-atR
-auy
-avc
-avE
-awv
-axj
-axW
-avG
-azt
-aAn
-aBa
-aBE
-aAW
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aES
-aFb
-azl
-aEn
-aEp
-aEQ
-aEQ
-aGX
-aHj
-aHj
-aIh
-aDS
-aEo
-aDS
-aJh
-aJh
-aJh
-aDS
-aMq
-aMq
-aMq
-aMq
-aEo
-aEQ
-aEp
-aDS
-aac
-aac
-aac
+aXE
+aYk
+aYL
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+bbA
+bbJ
+aVP
+baU
+baW
+baW
+baW
+bdK
+aJg
+aJg
+beS
+baz
+baU
+baz
+bfR
+bfR
+bfR
+baz
+bjs
+bjs
+bjs
+bjs
+baU
+baW
+baW
+baz
+adt
+adt
+adt
aab
aab
aab
@@ -40402,114 +45407,114 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aTt
-acZ
-aTZ
-aUk
-aUy
-aPg
-aUR
-uch
-aUS
-aap
-aap
-aap
-aap
-aap
-aap
-adn
-adB
-adW
-aej
-aeH
-aeZ
-afA
-afU
-age
-agu
-age
-agQ
-aTM
-aly
-pkv
-knh
-ail
-nKP
-ail
-ajf
-ail
-aii
-ajG
-amK
-adY
-aen
-adY
-aen
-aeK
-apb
-apJ
-aqs
-ard
-arI
-asF
-ath
-atS
-auA
-avc
-avF
-aww
+ahc
+ahc
+ahc
+ahc
+ahc
+ahc
+adX
+aeX
+afS
+agI
+afS
+ain
+aju
+akm
+alA
+aeX
+aeX
+aeX
+aeX
+aeX
+aeX
+aeX
+aeX
+and
+avy
+avZ
+awL
axk
-axX
-avG
-azu
-aAo
-aBb
-aBb
-aBc
-aBc
-aBc
-aBc
-aAX
-aAX
-aAX
-aAX
-aAX
-aES
-aFb
-azl
-aFJ
-aEp
-aEp
-aEQ
-aEQ
-aEQ
-aEQ
-aIi
-aDS
-aEn
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aDS
-aac
-aac
-aac
+axY
+ayE
+ayW
+azA
+ayW
+aAE
+aBl
+aBQ
+aCD
+aDu
+aEc
+apg
+aEc
+aFl
+aEc
+aGw
+aqk
+aqo
+avD
+awd
+avD
+awd
+awO
+aLf
+aLK
+aMv
+aNg
+aNF
+aOA
+aPi
+aQa
+aQM
+aRt
+aRY
+aSN
+aTL
+aUz
+aRZ
+aVY
+aWS
+aXF
+aXF
+aXG
+aXG
+aXG
+aXG
+aXB
+aXB
+aXB
+aXB
+aXB
+bbA
+bbJ
+aVP
+bcr
+baW
+baW
+baW
+baW
+baW
+baW
+beT
+baz
+baU
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+baz
+adt
+adt
+adt
aab
aab
aab
@@ -40544,113 +45549,113 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aTt
-aTJ
-aTT
-aUk
-aUk
-aUk
-aUR
-bkW
-aUS
-abD
-aca
-aca
-aca
-aca
-acX
-ado
-adC
-acc
-aek
-adY
-adY
-adY
-adY
-adY
-adY
-adY
-adY
-ahg
-aht
-ahJ
-ahY
-adY
-adY
-aiF
-ajl
-adY
-adY
-adY
-adY
-adY
-anr
-adY
-adY
-adY
-apc
-apK
-aqu
-arc
-arJ
-asF
-ath
-atS
-auB
-avc
-avG
-avG
-axl
-avG
-ayI
-azv
-aAp
-aBb
-aGS
-aCd
-aCB
-aDd
-aBc
-aBc
-aAX
-aAX
-aAX
-aAX
-aES
-aFb
-azl
-aFJ
-aFZ
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aEo
-aJL
-aKx
-aKx
-aLx
-aKx
-aJL
-aMF
-aLh
-aMH
-aLU
-aMF
-aJL
-aac
-aac
-aac
+ahc
+abK
+abU
+abU
+acE
+adj
+adX
+aeX
+afT
+afR
+ahz
+aio
+ajv
+akn
+akn
+aeX
+aeX
+aeX
+aeX
+aeX
+aeX
+aeX
+aeX
+anz
+avz
+awa
+avD
+avD
+avD
+avD
+avD
+avD
+avD
+avD
+aBm
+aBR
+aCE
+aDv
+avD
+avD
+aEU
+aFY
+avD
+avD
+avD
+avD
+avD
+aIR
+avD
+avD
+avD
+aLg
+aLL
+aMx
+aNf
+aNG
+aOA
+aPi
+aQa
+aQN
+aRt
+aRZ
+aRZ
+aTM
+aRZ
+aVl
+aVZ
+aWT
+aXF
+aYl
+aYM
+aZl
+aZL
+aXG
+aXG
+aXB
+aXB
+aXB
+aXB
+bbA
+bbJ
+aVP
+bcr
+bcG
+baz
+baz
+baz
+baz
+baz
+baz
+baz
+baU
+bgx
+bhd
+bhd
+bis
+bhd
+bgx
+bjI
+bhW
+bjI
+bhh
+bjI
+bgx
+adt
+adt
+adt
aab
aab
aab
@@ -40686,111 +45691,111 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aTt
-aPm
-acN
-aaS
-aWG
-aUq
-aUS
-kYW
-aUS
-aVs
-acb
-acr
-acr
-acr
-acY
-adp
-adD
-acc
-ael
-adY
-afa
-acs
-afV
-ktW
-aRV
-agG
-afV
-amf
-ahu
-ahK
-ahZ
-afV
-aSU
-afV
-ajm
-afV
-agG
-afB
-ajQ
-afV
-ans
-agG
-afV
-qrg
-apd
-apJ
-afG
-arf
-arK
-asF
-ati
-atT
-auC
-agX
-avH
-awx
-axm
-axY
-ayJ
-azw
-aAq
-aBc
-ave
-aCe
-aCC
-aDe
+ahc
+abL
+abZ
+acl
+acF
+adk
+adX
+aeX
+afU
+agJ
+ahA
+aip
+ajw
+ako
+alB
+aeX
+aeX
+aau
+apT
+apT
+bpO
+asM
+atU
+anB
+avA
+awb
+avD
+axl
+agU
+ayF
+agZ
+azB
+aAh
+ayF
+aBn
+aBS
+aCF
aDw
-aBc
-aAX
-aAX
-aAX
-aAX
-aES
-aFb
-azl
-aFK
-aEQ
-aGo
-aDS
-boO
-aHk
-aHm
-aEn
-aIK
-aEn
-aJL
-aKy
-aKy
+ayF
+aEK
+ayF
+aFZ
+ayF
+aAh
+aHp
+aHK
+ayF
+aIS
+aAh
+ayF
+aKs
aLh
-aLU
-aMr
-aMG
-aLU
-aKy
-aLh
-aLh
-aJL
-aac
+aLK
+ayd
+aNh
+aNH
+aOA
+aPj
+aQb
+aQO
+aRu
+aSa
+aSO
+aTN
+aUA
+aVm
+aWa
+aWU
+aXG
+aYm
+aYN
+aZm
+aZM
+bae
+aXG
+aXB
+aXB
+aXB
+aXB
+bbA
+bbJ
+aVP
+bcr
+baW
+bcW
+baz
+bdL
+bdY
+aIg
+baU
+bfu
+baU
+bgx
+bhW
+bhW
+bhW
+bhh
+bjt
+bjJ
+bhh
+bhW
+bhW
+bhW
+bgx
+adt
aab
aab
aab
@@ -40828,111 +45833,111 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aTt
-aTt
-aTt
-aaS
-aUq
-aUq
-aUS
-exx
-msI
-olz
-kuw
-uEH
-uEH
-uEH
-fIH
-tRh
-mFg
-tRh
-oIf
-iJj
-kDh
-cZo
-afW
-isi
-agg
-agg
-agg
-agg
-agg
-ahL
-agm
-agm
-agm
-agm
-ajn
-ajB
-ajB
-ajB
-ajB
-ajB
-ajB
-ajB
-ajB
-gjq
-ajB
-hCD
-nVB
-ard
-arL
-asF
-atj
-atU
-auD
-are
-avI
-awy
-axn
-axZ
-ayK
-azx
-aAr
-aBd
-aBH
-aCf
-aCD
-aDf
-aOW
-aBc
-aAX
-aAX
-aAX
-aAX
-aES
-aFx
-azl
-aFL
-aEQ
-aGp
-aDS
-aEo
-aEo
-aHG
-aIj
-aDS
-aDS
-aJL
-aKz
-aLg
-aLy
-aLV
-aJL
-aMH
-aLh
-aMF
-aLh
-aNH
-aJL
-aac
+ahc
+abM
+aca
+acq
+acG
+adl
+adX
+aeX
+aeX
+aeX
+aeX
+aeX
+aeX
+aeX
+aeX
+aeX
+aeX
+aqV
+avY
+avY
+avY
+boM
+atV
+auJ
+avB
+awc
+awM
+axm
+agV
+ayf
+ahB
+azC
+azC
+azC
+azC
+azC
+aCG
+aDx
+aDx
+aDx
+aDx
+aGa
+aGD
+aGD
+aGD
+aGD
+aGD
+aGD
+aGD
+aGD
+aKt
+aGD
+aLM
+aMy
+aNg
+aNI
+aOA
+aPk
+aQc
+aQP
+aRv
+aSb
+aSP
+aTO
+aUB
+aVn
+aWb
+aWV
+aXH
+aYn
+aYO
+aZn
+aZN
+baf
+aXG
+aXB
+aXB
+aXB
+aXB
+bbA
+bcf
+aVP
+bcu
+baW
+bcX
+baz
+baU
+baU
+aJp
+beU
+baz
+baz
+bgx
+bhf
+bhV
+bhV
+biU
+bgx
+bjI
+bhW
+bjI
+bhW
+bkW
+bgx
+adt
aab
aab
aab
@@ -40970,111 +45975,111 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-acD
-aan
-aan
-aan
-aUT
-aap
-abG
-qfL
-adW
-ceC
-adW
-adW
-ukB
-mDI
-rjE
-ukB
-pGt
-pUx
-xUz
-afX
-ksZ
-agh
-agh
-agh
-agh
-agh
-ahM
-aia
-aia
-aia
-aia
-aia
-aia
-aia
-aia
-aia
-aia
-aia
-aia
-aia
-pwQ
-ape
-apM
-aqw
-arh
-arM
-asG
-atk
-atV
-auE
-ahj
-avJ
-awz
-axo
-aCI
-ayL
-azy
-aAs
-aBc
-aBI
-aCg
-aCE
-aDg
+ahc
+ahc
+ahc
+ahc
+ahc
+afg
+adX
+apW
+aiJ
+aaK
+aiJ
+aiJ
+ajI
+alI
+apW
+amD
+amD
+amD
+amD
+ajE
+ajE
+boN
+aeF
+agj
+agl
+agK
+agL
+agR
+agW
+agY
+ahC
+azD
+azD
+azD
+azD
+azD
+aCH
aDy
-aBc
-aAX
-aAX
-aAX
-aAX
-aES
-aFb
-azl
-aFM
-aEQ
-aGq
-aDS
-aGY
-aHl
-aHI
-aIk
-aDS
-aJh
-aJL
-aKA
-aKB
-aLh
-aLW
-aJL
-aLh
-aLh
-aLU
-aLU
-aLh
-aJL
-aac
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+aKu
+aLi
+aLN
+aMz
+aNi
+aNJ
+aOB
+aPl
+aQd
+aQQ
+aRw
+aSc
+aSQ
+aTP
+aUC
+aVo
+aWc
+aWW
+aXG
+aYo
+aYP
+aZo
+aZO
+bag
+aXG
+aXB
+aXB
+aXB
+aXB
+bbA
+bbJ
+aVP
+bcu
+baW
+bcY
+baz
+aIL
+bdZ
+bey
+beV
+baz
+bfR
+bgx
+bjJ
+bhh
+bhW
+biV
+bgx
+bhW
+bhW
+bhh
+bhh
+bhW
+bgx
+adt
aab
aab
aab
@@ -41113,110 +46118,110 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aan
-aaw
-aaL
-aUU
-aan
-abH
-ace
-aap
-aap
-aap
-aap
-aap
-aap
-aap
-aap
+ahc
+acb
+acr
+acH
+aag
adY
-alv
-afL
-afY
-agi
-agv
-agv
-aXR
-agv
-agv
-agv
-agv
-agv
-agv
-agv
-agv
-agv
-agv
-agv
-agv
-agv
-aXR
-agv
-agv
-aoB
-apf
-apN
-aqx
-arc
-arN
-asH
-atl
-atW
-auF
-avc
-avK
-awA
-axp
-avK
-avK
-azz
-aAt
-aBb
-aBJ
-aCh
-aCF
-aDh
-aBc
-aBc
-aAX
-aAX
-aAX
-aAX
-aES
-aFb
-azl
-aFM
-aEQ
-aFZ
-aGj
-aEo
-aHm
-aHJ
-aEo
-aDS
-aJh
-aJL
-aKB
-aLh
-aLh
-aLX
-aMs
-aMI
-aMI
-aLy
-aMI
-aNI
-aJL
-aac
+akM
+aiR
+aiR
+aiR
+aiR
+ajJ
+alJ
+akM
+amE
+apc
+asc
+alD
+ajE
+ajE
+asS
+afr
+ajE
+ajE
+ajE
+avD
+axo
+ayc
+ayH
+aza
+azE
+azE
+aAF
+azE
+azE
+azE
+azE
+azE
+azE
+azE
+azE
+azE
+azE
+azE
+azE
+azE
+aAF
+azE
+azE
+aKv
+aLj
+aLO
+aMA
+aNf
+aNK
+aOC
+aPm
+aQe
+aQR
+aRt
+aSd
+aSR
+aTQ
+aSd
+aSd
+aWd
+aWX
+aXF
+aYp
+aYQ
+aZp
+aZP
+aXG
+aXG
+aXB
+aXB
+aXB
+aXB
+bbA
+bbJ
+aVP
+bcu
+baW
+bcG
+bcR
+baU
+aIg
+bez
+baU
+baz
+bfR
+bgx
+bhh
+bhW
+bhW
+biW
+bju
+bjL
+bjL
+bhV
+bjL
+bkX
+bgx
+adt
aab
aab
aab
@@ -41255,112 +46260,112 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aNz
-aNz
-aNz
-aan
-aax
-aaM
-aaT
-aan
-acQ
-ach
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-adY
-afe
-afG
-afY
-agj
-agw
-agw
-aXS
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-agw
-aXS
-agw
-agw
-aoC
-apf
-apN
-aqs
-arg
-aAe
-aAe
-aBg
-aAe
-aAe
-avf
-avN
-awB
-axq
-ayb
-avK
-azA
-aAu
-aBb
-aBb
-aBc
-aBc
-aBc
-aBc
-aAX
-aAX
-aAX
-aAX
-aAX
-aES
-aFb
-azl
-aFN
-aEQ
-aGr
-aDS
-aGZ
-aEo
-aEn
-aEn
-aDS
-aJh
-aJL
-aKC
-aLi
-aLz
-aLY
-aJL
-aLh
-aKy
-aNo
-aLh
-aKB
-aJL
-aac
-aac
+abN
+acc
+acs
+aiV
+adr
+adZ
+akM
+aiW
+aiW
+aiW
+aiW
+ajN
+alK
+akM
+amF
+apV
+asd
+alD
+boR
+tpu
+bpG
+afs
+laD
aac
+adt
+avD
+axp
+ayd
+ayH
+azb
+azF
+azF
+aAG
+azF
+azF
+azF
+azF
+azF
+azF
+azF
+azF
+azF
+azF
+azF
+azF
+azF
+aAG
+azF
+azF
+aKw
+aLj
+aLO
+aMv
+aNj
+aNk
+aNk
+aPn
+aNk
+aNk
+aRx
+aSe
+aSS
+auE
+aUD
+aSd
+aWe
+aWY
+aXF
+aXF
+aXG
+aXG
+aXG
+aXG
+aXB
+aXB
+aXB
+aXB
+aXB
+bbA
+bbJ
+aVP
+bcv
+baW
+bcZ
+baz
+aIM
+baU
+baU
+baU
+baz
+bfR
+bgx
+bhi
+bhX
+biu
+biX
+bgx
+bhW
+bhW
+aMO
+bhW
+bhh
+bgx
+adt
+adt
+adt
aab
aab
aab
@@ -41397,113 +46402,113 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aNz
-aPW
-ahh
-aan
-ahd
-aaN
-aaU
-aan
-abI
-abJ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-adY
-aff
-afG
-afY
-agj
-agw
-agw
-aXS
-agw
-agw
-agw
-agw
-agw
-agw
-asc
-asc
-baN
-asc
-asc
-baN
-asc
-asc
-agw
-agw
-aoC
-apf
-apN
-aqz
-arg
-arO
-asI
-atn
-atX
-auG
-avf
-avM
-awC
-axr
-ayc
-avK
-azB
-aAv
-aBe
-aBK
-aAW
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aES
-aFb
-azl
-aFL
-aGb
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aDS
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aJL
-aac
-aac
-aac
+abN
+acd
+act
+acJ
+ads
+aax
+aeY
+aft
+aft
+aft
+aiX
+ajO
+alL
+akM
+amG
+aqb
+ase
+auN
+boQ
+bpe
+bpH
+afr
+laD
aac
+adt
+avD
+axq
+ayd
+ayH
+azb
+azF
+azF
+aAG
+azF
+azF
+azF
+azF
+azF
+azF
+aFp
+aFp
+aGE
+aFp
+aFp
+aGE
+aFp
+aFp
+azF
+azF
+aKw
+aLj
+aLO
+aMB
+aNj
+aNL
+aOD
+aPo
+aQf
+aQS
+aRx
+aSf
+aST
+aTS
+avE
+aSd
+aWf
+aWZ
+aXI
+aYq
+aYL
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+bbA
+bbJ
+aVP
+bcu
+aIh
+baz
+baz
+baz
+baz
+baz
+baz
+baz
+baz
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+bgx
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -41539,113 +46544,113 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
+abN
+ace
+aiV
+acK
+adG
+aea
+akM
+afu
+afu
+afu
+ajx
+ajP
+alN
+akM
+amH
+alD
+asN
+alD
+anC
+anC
+boS
+nFT
aac
-aNz
-ayf
-aer
-aan
-aaz
-aan
-aaV
-aan
-aap
-ach
-aac
-aac
-aac
-aac
-aac
-aac
-adY
-adY
-adY
-afg
-afG
-afY
-agj
-agw
-agw
-aXS
-agw
-agw
-agw
-agw
-agw
-agw
-asc
-asO
-aSx
-aXd
-aYX
-aSx
-aXW
-asc
-asc
-aXS
-aXV
-apf
-apN
-aqs
-arg
-arP
-asJ
-ato
-atY
-auH
-avf
-avN
-awD
-axs
+avD
+avD
+avD
+axr
ayd
-avK
-azC
-aAw
-aAZ
-aBL
-aAW
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aES
-aFb
-azl
-aFO
-aGc
-aDS
-aGB
-aDN
-aDN
-aDN
-aDN
-aDN
-aDN
-aJM
-aKD
-arZ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+ayH
+azb
+azF
+azF
+aAG
+azF
+azF
+azF
+azF
+azF
+azF
+aFp
+aGb
+aGF
+aGZ
+aHq
+aGF
+aIr
+aFp
+aFp
+aAG
+aKx
+aLj
+aLO
+aMv
+aNj
+aNM
+aOE
+aPp
+aQg
+aQT
+aRx
+aSe
+aSS
+aTT
+aUF
+aSd
+aWg
+aXa
+aXD
+aYr
+aYL
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+bbA
+bbJ
+aVP
+aIe
+bcG
+baz
+bdo
+aLX
+aLX
+aLX
+aLX
+aLX
+aLX
+bgy
+bhj
+aLY
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -41681,113 +46686,113 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aNz
-aPY
-aQw
-aap
-aRm
-aaO
-aRW
-abr
-aap
-aci
-act
-acH
-acP
-adb
-aac
-aac
-adY
+ahc
+acf
+acu
+acX
+adH
aen
-aeK
-afh
-afG
-agk
-agl
-agl
-agl
-agl
-aob
-aob
-aob
-aob
-aob
-aob
-asc
-asP
-aWV
-aXe
-aXm
-aXO
-aSx
-aYc
-baN
-aXS
-aoC
-apf
-apN
-aqs
-aAe
-arQ
-asK
-atp
-atZ
-auI
-avf
-avN
-awD
-axt
-aye
-avK
-azC
-aAx
-aBf
-aBf
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aFd
-aFb
-azl
-aFP
-aGd
-aDT
-aGC
+akM
+afV
+ago
+ago
+aiv
+aiA
+aku
+akM
+aoI
+aiq
+boC
+boC
+boI
+boI
+kRb
+ylZ
+anC
+avD
+awd
+awO
+axs
+ayd
+ayI
+azc
+azc
+azc
+azc
+aAJ
+aAJ
+aAJ
+aAJ
+aAJ
+aAJ
+aFp
+aGc
+aGG
aHa
-aHn
-aHK
-aIl
-aIL
-aJi
-aJN
-aKE
-arZ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aHr
+aHL
+aGF
+aIT
+aGE
+aAG
+aKw
+aLj
+aLO
+aMv
+aNk
+aNN
+aOF
+aPq
+aQh
+aQU
+aRx
+aSe
+aSS
+aTU
+aUG
+aSd
+aWg
+aXb
+aXJ
+aXJ
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+bbL
+bbJ
+aVP
+bcx
+aIk
+baA
+bdp
+bdO
+beb
+beA
+beW
+bfv
+bfS
+bgz
+bhk
+aLY
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -41823,113 +46828,113 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aac
-aaf
-aaf
-aNz
-aNz
-aQx
-aap
-aaB
-aaP
-aRX
-aaP
-abK
-acj
-acu
-abK
-abK
-adc
-aac
-aac
-adY
-adY
-adY
-afi
-afG
-agk
-agl
-anz
-apV
-aXJ
-aob
-apT
-aXU
-atu
-aOw
-aXU
-asd
-asQ
-aWW
-aXf
-aXn
-aXP
-aSx
-aYf
-baN
-aXS
-aoC
-apf
-apN
-aqs
-aAe
-arR
-asL
-atq
-aua
-auJ
-avf
-avO
-awE
-axu
-aDV
-avK
-azC
-aAx
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aES
-aFb
-aFb
-azl
-aDS
-aDS
-aDS
-aGD
-aDN
-arZ
-arZ
-arZ
-aIM
-aJj
-aJO
-aKF
-aIM
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+ahc
+ahc
+acv
+acY
+ahc
+acv
+akM
+akM
+akM
+akM
+aiw
+akM
+akM
+akM
+ajG
+ajG
+ajG
+ajG
+ajG
+ajE
+amR
+amU
+ajE
+avD
+avD
+avD
+axt
+ayd
+ayI
+azc
+azG
+aAi
+aAH
+aAJ
+aBT
+aCI
+aDz
+aEi
+aCI
+aFq
+aGd
+aGH
+aHb
+aHs
+aHM
+aGF
+aIU
+aGE
+aAG
+aKw
+aLj
+aLO
+aMv
+aNk
+aNO
+aOG
+aPr
+aQi
+aQV
+aRx
+att
+aSV
+aTV
+awe
+aSd
+aWg
+aXb
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+bbA
+bbJ
+bbJ
+aVP
+baz
+baz
+baz
+bdq
+aLX
+aLY
+aLY
+aLY
+bfw
+bfT
+bgA
+bhl
+bfw
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -41965,111 +46970,111 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aac
+aad
aaf
-aaj
-aOx
-aPZ
-aQy
-aap
-aRn
-aRD
-aRY
-aap
-aap
-aap
-aap
-aap
-acQ
-ach
-aac
-aac
-aac
-aac
-adY
-afj
-afG
-agk
-agl
-apg
-apW
-aXL
-aob
-aXl
-aYi
-aYz
-apS
-avq
-asf
-aYA
-aWX
-aXg
-aXx
-aXQ
-aXX
-aYh
-baN
-aXS
-aoC
-apf
-apN
-aqs
-aAe
-arS
-asK
-atp
-atZ
-arS
-avf
-avK
-avK
-avK
-avK
-avK
-azD
-aAy
-aOY
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aAX
-aET
-aFb
-aFb
-azl
-aac
-aac
-arZ
+aal
+aao
+aat
+aay
+aaB
+aaC
+aaI
+ada
+agT
+aiT
+afW
+aoJ
+xbt
+uKv
+axu
+akp
+bpK
+anC
+asT
+anC
+anC
+fxr
+anC
+ajT
+axp
+ayd
+ayI
+azc
+azH
+aAj
+aAI
+aAJ
+aBU
+aCJ
+aDA
+aBo
+aEL
+aFr
+aGe
+aGI
+aHc
+aHt
+aHN
+aIs
+aIV
aGE
-aDN
-arZ
-aac
-aac
-aIM
-aJk
-aJP
-aKG
-aIM
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aAG
+aKw
+aLj
+aLO
+aMv
+aNk
+aNP
+aOF
+aPq
+aQh
+aNP
+aRx
+aSd
+aSd
+aSd
+aSd
+aSd
+aWh
+aXc
+aXK
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+bbB
+bbJ
+bbJ
+aVP
+adt
+adt
+aLY
+bdr
+aLX
+aLY
+adt
+adt
+bfw
+bfU
+bgB
+bhm
+bfw
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -42107,111 +47112,111 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aac
-aaf
-acT
-aao
-aao
-aQz
+aad
+aah
+aam
aap
-aRp
-aap
-aap
-aSr
-aPr
-aSM
-alt
-aSr
-acQ
-add
-aac
-aac
-aac
-aac
-adY
-afk
-afG
-agk
-agl
-apl
-aXw
-aob
-aob
-aYg
-aXY
-aqy
-aob
-agD
-asc
-avj
-aWY
-aXh
-aXz
-aWY
-aXZ
-aON
-baN
-aXS
-aXV
-apf
-apN
-aqA
-arg
-arT
-arS
-atr
-arS
-arS
-avf
-avP
-awF
-aDx
-avP
-ayM
-azE
-aAz
-azl
-azl
-azl
-azl
-azl
-azl
-azl
-azl
-azl
-azl
-azl
-azl
-azl
-azl
-aac
-aac
-arZ
+aaz
+aaz
+aaz
+aaE
+aaL
+aes
+aha
+abj
+agX
+cJE
+unM
+nPO
+axv
+adJ
+bpL
+anC
+sZp
+anC
+anC
+xSO
+anC
+anC
+axp
+ayd
+ayI
+azc
+azI
+aAk
+aAJ
+aAJ
+aBV
+aCK
+aDB
+aAJ
+aEM
+aFp
+aGf
+aGJ
+aHd
+aHu
+aGJ
+aIt
+aIW
aGE
-aDN
-arZ
-aac
-aac
-aIM
-aJl
-aJQ
-aKH
-aIM
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aAG
+aKx
+aLj
+aLO
+aMC
+aNj
+aNQ
+aNP
+aPs
+aNP
+aNP
+aRx
+aSh
+aSW
+aTW
+aSh
+aVp
+aWi
+aXd
+aVP
+aVP
+aVP
+aVP
+aVP
+aVP
+aVP
+aVP
+aVP
+aVP
+aVP
+aVP
+aVP
+aVP
+adt
+adt
+aLY
+bdr
+aLX
+aLY
+adt
+adt
+bfw
+bfV
+aKX
+bhn
+bfw
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -42249,111 +47254,111 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aac
-aaf
-aao
-aDX
-aQa
-aRo
-aap
-aRq
-aap
-aRZ
-aSr
-aSG
-aSN
-aSV
-aSr
-acQ
-ach
+aad
+aai
+aan
+aaq
+abu
+abX
+aam
+aaF
+aaM
+aam
+ahb
+ajF
+djt
+alF
+anH
+anH
+amL
+akv
+ajG
+ajE
+amS
+amU
+ajE
aac
aac
-aac
-aac
-adY
-aff
-afH
-aiW
-anx
-apU
-arp
-afw
-apS
-aXG
-aYa
-aYs
-aob
-aXN
-asc
-aYN
-aWZ
-aXj
-aXM
-aSx
-aYb
-asc
-asc
-aXS
-aoC
-apf
-apN
-aqs
-arg
-arU
-asM
-ats
-aub
-auL
-avf
-avQ
-awG
-axw
-ayg
-ayN
-azF
-aFw
-azl
-aBM
-aCi
-aCG
-aCH
-aDz
-aDM
-aDN
-arZ
-aEE
-aEU
-aFe
-aFy
-arZ
-aac
-aac
-arZ
+avD
+mnt
+aye
+ayJ
+azd
+azJ
+aAl
+aAK
+aBo
+aBW
+aCL
+aDC
+aAJ
+aEN
+aFp
+aGg
+aGK
+aHe
+aHv
aGF
-aDN
-arZ
-aac
-aac
-aIM
-aJm
-aJR
-aKI
-aIM
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aIu
+aFp
+aFp
+aAG
+aKw
+aLj
+aLO
+aMv
+aNj
+aNR
+aOH
+aPt
+aQj
+aQW
+aRx
+aSi
+aSX
+auF
+awf
+aVq
+aWj
+aXe
+aVP
+aYs
+aYR
+aZq
+aZr
+bcK
+aLX
+aLX
+aLY
+bbl
+aFX
+bbM
+bcg
+aLY
+adt
+adt
+aLY
+bds
+aLX
+aLY
+adt
+adt
+bfw
+bfW
+bgD
+bho
+bfw
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -42391,112 +47396,112 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aac
-aaf
-aaq
-aOS
-aQb
-aQA
-aap
-aRO
-aap
-acD
-aSr
-qaW
-aSO
-aSW
-aSr
-acQ
-ach
-aac
-aac
-aac
-aac
-adY
-afl
-afG
-apB
-anK
-anK
-anK
-anK
-anK
-anK
-aYn
-aYL
-aob
-aXN
-asc
-asc
-asc
-asc
-asc
-asc
-asc
-asc
-aXS
-aXS
-aXV
-apf
-apN
-aqB
-arg
-arg
-arg
-arg
-arg
-arg
-avf
-avR
+aae
+aaj
+aaj
+aar
+abV
+abY
+aas
+aaG
+aaN
+aet
+ahD
+ajF
+ebp
+lsC
+amK
+amK
+amL
+apX
+ajG
+tpu
+kPb
+tpu
awH
-axx
-ayh
-ayO
-azG
-aAB
-atm
-aBN
-aCj
-aBO
-aBO
-aDA
-aDN
-aDN
-arZ
-aEF
-aEV
-aBO
-aBO
-arZ
-aac
-aac
-arZ
-aGG
-aDN
-aHo
-aHr
-aHr
-aIr
-aIr
-aJS
-aIr
-aIr
-aLA
-aLA
-aLA
-aLA
-aLA
-aLA
-aac
-aac
-aac
-aac
-aac
aac
+adt
+avD
+axw
+ayd
+ahM
+aze
+aze
+aze
+aze
+aze
+aze
+aCM
+aDD
+aAJ
+aEN
+aFp
+aFp
+aFp
+aFp
+aFp
+aFp
+aFp
+aFp
+aAG
+aAG
+aKx
+aLj
+aLO
+aMD
+aNj
+aNj
+aNj
+aNj
+aNj
+aNj
+aRx
+atu
+aSY
+auG
+aSY
+aVr
+aWk
+aXf
+aXL
+ayL
+ayX
+aZr
+aZr
+aTo
+aLX
+aLX
+aLY
+bbm
+bbM
+aZr
+aZr
+aLY
+adt
+adt
+aLY
+bdt
+aLX
+bec
+bef
+bef
+bfc
+bfc
+bgE
+bfc
+bfc
+biv
+biv
+biv
+biv
+biv
+biv
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -42536,108 +47541,108 @@ aab
aab
aab
aab
-aab
-aac
-aaf
-aaf
-aaf
-aQc
-aQB
-aQp
-aRr
-aPp
-aSa
-aSs
-aSI
-aSP
-aSX
-aSr
-acR
-ade
-aad
-aad
-aad
-aad
-adY
-afm
-afG
-agk
-anK
-aoa
-apm
-aqH
-aqH
-anK
-aOo
-aYJ
-aob
-aZe
-aZh
-baH
-aZg
-aXS
-aXS
-aXS
-aXS
-aXS
-aXS
-agw
-aoC
-apf
-apN
-aqC
-ari
-aen
-adY
-aac
-aac
-aac
-avg
-avS
-awI
-axy
-axy
-ayM
-azH
-aAC
-azl
-aBO
-aCk
-aCH
-aCH
-aDB
-aDN
-aDY
-arZ
-aBO
-aCH
-aFf
-aFz
-arZ
-aac
-aac
-arZ
-aGH
-aHb
-aHp
-aHL
-aIm
-aIr
-aJn
-aJT
-aKJ
+aar
+abW
+acw
+acx
+aaH
+aaO
+afa
+ahG
+ajG
+akw
+lsC
+fIS
+fIS
+amL
+apY
+ajG
+amN
+amT
+tHa
+amV
+atY
+atY
+avD
+axx
+ayd
+ayI
+aze
+azK
+aAm
+aAL
+aAL
+aze
+aCN
+aDE
+aAJ
+aEO
+aFs
+aGh
+aEQ
+aAG
+aAG
+aAG
+aAG
+aAG
+aAG
+azF
+aKw
aLj
-aLB
-aLZ
-aMt
-aMJ
-aMW
-aLA
-aac
-aac
-aac
-aac
-aac
+aLO
+aME
+aNl
+awd
+avD
+adt
+adt
+adt
+aRy
+aTZ
+atB
+aTZ
+aTZ
+aVp
+aWl
+aXg
+aVP
+aZr
+ayY
+aZr
+aZr
+baj
+aLX
+aCZ
+aLY
+aZr
+aZr
+aGx
+aHF
+aLY
+adt
+adt
+aLY
+bdu
+bdP
+bed
+beB
+beX
+bfc
+bfX
+bgF
+bhp
+bhY
+biw
+biY
+bjv
+bjM
+bkc
+biv
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -42674,112 +47679,112 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aac
-aaf
-aar
-aPz
-aQd
-aQC
-aQT
-aRs
-aRF
-aSb
-aSs
-aSJ
-aSQ
-aSY
-aSr
-acy
-adf
-adr
-aaG
-aaG
-aeo
-adY
-afn
-afG
-agk
-anK
-aoc
-apn
-aqI
-aXH
-asb
-aYr
-aYT
-aob
-aXv
-aXw
-baI
-aZg
-aXS
-agw
-agw
-agw
-aXS
-aXS
-agw
-aoC
-apf
-apN
-aTq
-adY
-adY
-adY
-aac
-aac
-aac
-avg
-avg
-avg
-avg
-avg
-ayP
-ayP
-ayP
-ayP
-arl
-aCl
-arl
-arl
-arl
-aDN
-aDZ
-arZ
-arZ
-aCH
-arZ
-arZ
-arZ
-aac
-aac
-arZ
-aGI
-aDN
-aHq
-aHM
-aIn
-aIr
-aJo
-aJU
-aJs
-aLk
-aLB
-aMa
-aMu
-aMK
-aMX
-aLA
-aac
-aac
-aac
-aac
-aac
+abz
+abz
+abz
+adh
+adh
+abz
+abz
+abz
+abz
+aaQ
+agc
+ahQ
+ajF
+akx
+xpO
+amM
+anF
+amL
+apZ
+ajG
+arS
+asV
+amV
+anD
+anD
+anO
+avD
+axy
+ayf
+ayM
+aze
+azL
+aAn
+aAM
+aBp
+aBX
+aCO
+aDF
+aAJ
+aEP
+aAk
+aGi
+aEQ
+aAG
+azF
+azF
+azF
+aAG
+aAG
+azF
+aKw
+aLj
+aLO
+aMF
+avD
+avD
+avD
+adt
+adt
+adt
+aRy
+aRy
+aRy
+aRy
+aRy
+aVs
+aVs
+aVs
+aVs
+aNo
+aYU
+aNo
+aNo
+aNo
+aLX
+baF
+aLY
+aLY
+aZr
+aLY
+aLY
+aLY
+adt
+adt
+aLY
+bdv
+aLX
+bee
+beC
+beY
+bfc
+bfY
+bgG
+bgc
+bhZ
+biw
+biZ
+bjw
+bjN
+bkd
+biv
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -42816,114 +47821,114 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aaf
-aar
-aPC
-aaf
-aQD
-aQq
-aRt
-aRG
-aSb
-aSr
-aSr
-aSR
-aSr
-aSr
-acy
-fYA
-adr
-aaG
-aaG
-aaG
-adY
-afo
-afG
-agk
-anK
-aoe
-apo
-aqK
-amA
-anK
-aob
-aob
-aob
-aZg
-aZf
-baI
-aZg
-baP
-agw
-agw
-agw
-adY
-aXS
-agw
-aoC
-apf
-apN
-aqE
-adY
-arV
-arl
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-arl
-azI
-azI
-azI
-aRR
-aCm
-aCK
-aDi
-arl
-aDN
-aEa
-arZ
-aEG
-aCH
-aFg
-aFA
-arZ
-aac
-aac
-arZ
-aGJ
-aDN
-aHr
-aHN
-aIo
-aIN
-aJp
-aJV
-aKK
-aLl
-aLC
-aMb
-aMv
-aMK
-aMY
-aLA
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+abz
+abO
+acg
+acz
+adb
+adI
+aeo
+afc
+abz
+aaR
+aam
+aiy
+ajF
+aky
+lsC
+rJc
+rJc
+aoQ
+aqa
+ajG
+arS
+asW
+amV
+anD
+anD
+anD
+avD
+axz
+ahH
+ahO
+aze
+azM
+aAo
+aAN
+aBq
+aze
+aAJ
+aAJ
+aAJ
+aEQ
+aFt
+aGi
+aEQ
+aHf
+azF
+azF
+azF
+avD
+aAG
+azF
+aKw
+aLj
+aLO
+aMt
+avD
+aNS
+aNo
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+aNo
+aWm
+aWm
+aWm
+aYv
+aYV
+aZs
+aZQ
+aNo
+aLX
+baK
+aLY
+bbn
+aZr
+aGB
+bci
+aLY
+adt
+adt
+aLY
+bdw
+aLX
+bef
+aJA
+beZ
+bfx
+bfZ
+bgH
+bhq
+bia
+bix
+bja
+bjx
+bjN
+bke
+biv
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -42958,114 +47963,114 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aag
-aag
-aag
-aag
-aag
-aag
-aag
-aRH
-aSc
-aSt
-aSK
-aTl
-aPs
-aTc
-aTd
-aTf
-ads
-adG
-adG
-aaG
-adY
-acU
-afG
-agk
-anK
-aof
-apR
-aiC
-arr
-anK
-anv
-aXs
-aVu
-alJ
-aXt
-baI
-baO
-aXS
-agw
-agw
-agw
-adY
-aXS
-aXS
-aXV
-apf
-apN
-aqD
-adY
-arW
-arl
-arl
-arl
-arl
-arl
-arl
-arl
-arl
-arl
-arl
-azI
-azI
-azI
-aBP
-aCn
-aCJ
-aDj
-arl
-aDO
-aEa
-arZ
-aEH
-aBO
-aCH
-aCH
-arZ
-aac
-aac
-arZ
-aGK
-aDN
-aHr
-aHV
-aIp
-aIO
-aJq
-aJW
-aJs
+abJ
+abP
+ach
+ach
+ach
+ach
+ach
+afd
+acy
+aaS
+aam
+aiB
+ajG
+akz
+lsC
+amL
+amL
+bpW
+akr
+aqX
+arT
+asX
+amW
+anE
+anL
+anD
+avD
+axA
+ahI
+ahP
+aze
+azN
+aAp
+aAO
+aBr
+aze
+aCP
+aDG
+apd
+aER
+aFu
+aGi
+aGL
+aAG
+azF
+azF
+azF
+avD
+aAG
+aAG
+aKx
aLj
-aLB
-aMc
-aMw
-aML
-aLA
-aLA
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aLO
+aMG
+avD
+aNT
+aNo
+aNo
+aNo
+aNo
+aNo
+aNo
+aNo
+aNo
+aNo
+aNo
+aWm
+aWm
+aWm
+aYw
+aYW
+aZt
+aZR
+aNo
+bau
+baK
+aLY
+bbo
+aZr
+aZr
+aZr
+aLY
+adt
+adt
+aLY
+bdx
+aLX
+bef
+beE
+bfa
+bfy
+bga
+bgG
+bgc
+bhY
+biw
+bjb
+bjy
+bjO
+biv
+biv
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -43100,114 +48105,114 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aag
-aav
-aeb
-aem
-aQE
-aQV
-aRu
-aRI
-aao
-aao
-aao
-aTm
-aTa
-aaf
-aTe
-adg
-adt
-adt
-adZ
+abJ
+abQ
+aci
+acA
+adc
+adK
aep
-adY
-afp
-afG
-agk
-anK
-aph
-apY
-apY
-aOL
-anK
-apX
-aXE
-aZl
-aXr
-apW
-baI
-baL
-aXS
-aXS
-aXS
-aXS
-adY
-agw
-agw
-aoC
-apf
-azm
-aqF
-arj
-arX
-asN
-att
-auc
-aHH
-aHW
-aIs
-aLt
-aOA
-axz
-ayQ
-azJ
-azJ
-aBh
-aBQ
-aCo
-aCK
-aDk
-arl
-aDN
-aEa
-aEr
-aCH
-aEV
-aFh
-aBO
-arZ
-aac
-aac
-arZ
-aGL
-arZ
-aHr
-aHr
-aIq
-aIr
-aJr
-aJX
-aKL
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aac
-aac
-aac
+afe
+agb
+aaT
+agd
+aiC
+adW
+ahE
+anN
+amO
+anI
+bpX
+abk
+ajG
+arU
+asY
+aub
+auQ
+avF
+anP
+avD
+axB
+ayh
+ayI
+aze
+azO
+aAq
+aAq
+aBs
+aze
+aCQ
+aDH
+aEk
+aCS
+aAj
+aGi
+aGM
+aAG
+aAG
+aAG
+aAG
+avD
+azF
+azF
+aKw
+aLj
+aLP
+aMH
+aNm
+aNU
+aOI
+aPu
+aQk
+aQX
+aRz
+aSl
+aTa
+aUa
+aUK
+aVt
+aWn
+aWn
+aXM
+aYx
+aYX
+aZs
+aZS
+aNo
+aLX
+baK
+baY
+aZr
+bbM
+aGC
+aZr
+aLY
+adt
+adt
+aLY
+bdy
+aLY
+bef
+bef
+bfb
+bfc
+bgb
+bgJ
+bhr
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+adt
+adt
+adt
aab
aab
aab
@@ -43242,115 +48247,115 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aag
-aaA
-aPE
-aQf
-aQF
-aPt
-aRu
-aRJ
-aao
-aSu
-ahO
-aST
-aTn
-aaf
+abJ
+abS
+acj
+acB
+add
+adL
+ach
+abP
acy
-adh
-acy
-acy
-adf
-aeq
-adY
-alG
-afI
-agk
-anK
-apk
-apZ
-arn
-asa
-anK
-aXp
-baU
-aXF
-awJ
-aZQ
-baJ
-baO
-agw
-agw
-agw
-agw
-adY
-agw
-agw
-aoC
-apf
-azn
-aqp
-ark
-arY
-arY
-arY
-arY
-auN
-aAA
-aJC
-aMA
-aOB
-arY
-ark
-arY
-aAD
-aBi
-aBR
-aCp
-aCL
-aCL
-arl
-aDM
-aEb
-arZ
-aEI
-aCH
-aBO
-aBO
-arZ
-arZ
-arZ
-arZ
+aaU
+age
+aiH
+ajy
+ahF
+abc
+amP
+anJ
+aoT
+aqc
+ajG
+arS
+asZ
+arS
+auR
+asV
+anS
+avD
+axC
+ayi
+ayI
+aze
+azP
+aAr
+aAP
+aBt
+aze
+aCR
+aDI
+aEl
+aES
+aFv
+aGj
aGL
-arZ
-aac
-aac
-aIr
-aIP
-aJs
-aJY
-aKM
-aKh
-aLD
-aLD
-aLD
-aMM
-aMZ
-aLD
-aNB
-aLD
-aLI
-aKh
-aac
-aac
-aac
-aac
+azF
+azF
+azF
+azF
+avD
+azF
+azF
+aKw
+aLj
+aLQ
+aMs
+aNn
+aNV
+aNV
+aNV
+aNV
+aQY
+aRA
+aSm
+aTb
+aUb
+aNV
+aNn
+aNV
+aXh
+aXN
+aYy
+aYY
+aZu
+aZu
+aNo
+aLX
+aEf
+aLY
+aFR
+aZr
+aZr
+aZr
+aLY
+aLY
+aLY
+aLY
+bdy
+aLY
+adt
+adt
+bfc
+bfz
+bgc
+bgK
+bhs
+bgT
+biy
+biy
+biy
+bjP
+bkf
+biy
+bkN
+biy
+biD
+bgT
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -43384,113 +48389,113 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aag
-aaC
-aOu
-aQg
-aQG
-aQX
-aRv
-aRK
-aao
-aSv
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-acS
-adf
-acy
-wBk
-rGt
-lkN
-agk
-anK
-anK
-anK
-anK
-anK
-anK
-aXr
-aXr
-aXr
-aXr
-aZg
-baK
-aZg
-adY
-adY
-adY
-adY
-adY
-agx
-agx
-aoD
-apf
-azn
-aqD
-arl
-arl
-arl
-arl
-arl
-arl
-arl
-arl
-aNc
-axB
-axB
-axB
-aeI
-axB
-aBj
-axB
-axB
-aCK
-aCK
-arl
-aDM
-aEc
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-aFQ
-aDN
-aGs
-aGM
-arZ
-aac
-aac
-aIr
-aIQ
+abz
+abT
+ack
+acD
+ade
+adM
+aeq
+aff
+abz
+aaV
+agq
+aiL
+akq
+akq
+any
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+akq
+auS
+avG
+awh
+awP
+axD
+ahL
+ayM
+aze
+aze
+aze
+aze
+aze
+aze
+aCS
+aCS
+aCS
+aCS
+aEQ
+aGk
+aEQ
+avD
+avD
+avD
+avD
+avD
aJs
-aJZ
-aKN
-aKh
-aLD
-aLM
-aMx
-aLM
-aNa
-aNp
-aLM
-aNJ
-aOe
-aKh
-aac
-aac
+aJs
+aKy
+aLj
+aLQ
+aMG
+aNo
+aNo
+aNo
+aNo
+aNo
+aNo
+aNo
+aNo
+aTc
+aUc
+aUc
+aUc
+aWo
+aUc
+aXO
+aUc
+aUc
+aZs
+aZs
+aNo
+aLX
+aEg
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+bcy
+bcK
+bda
+bdz
+aLY
+adt
+adt
+bfc
+bfA
+bgc
+bgL
+bht
+bgT
+biy
+biH
+bjz
+biH
+bkg
+bkz
+biH
+bkY
+blB
+bgT
+adt
+adt
aab
aab
aab
@@ -43526,113 +48531,113 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aag
-aay
-aPG
-aQh
-aQH
-aQY
-aRu
-aRL
-aSd
-aPq
-aad
-aaY
-abs
-abL
-ack
-acv
-aad
-adH
-dQj
-gPa
-aOQ
-ldx
-nQX
-cIm
-mLQ
-iwn
-pbf
-pbf
-fGk
-uin
-uin
-oWH
-oWH
-uin
-prG
-xPU
-vmO
-okd
-xiE
-aXA
-svN
-bcC
-nUt
-nUt
-emJ
-iGv
-azK
-aqE
-adY
-aac
-aac
-aac
-aac
-aac
-aac
-arZ
-aZZ
-axB
-ayi
-ayR
-azL
-aAE
-aBk
-aBS
-axB
-aCM
-aCM
-arl
-aDM
-aDM
-aEs
-aDN
-aDM
-aDM
-aDN
-aEs
-aDN
-aGe
-aGt
-aZC
-arZ
-aac
-aac
-aIr
-aIR
+abz
+abz
+abz
+abz
+abz
+abz
+abz
+abz
+abz
+aaW
+aam
+aiM
+akq
+alO
+abd
+aoK
+aqd
+asP
+akq
+boZ
+bpi
+bpI
+akq
+auT
+avH
+awi
+awQ
+axE
+ayk
+ayN
+azf
+azQ
+aAs
+aAs
+aBu
+aBY
+aBY
+aDJ
+aDJ
+aBY
+aFw
+aGl
+aGN
+aHg
+aHw
+aHO
+aIv
+aIX
aJt
-aKa
-aKO
-aKh
-aLD
-aLM
-aMy
-aLM
-aNb
-aNq
-aLM
-aNK
-aLD
-aKh
-aac
-aac
+aJt
+aKz
+aLk
+aLR
+aMt
+avD
+adt
+adt
+adt
+adt
+adt
+adt
+aLY
+aTd
+aUc
+aUL
+aVu
+aWp
+aXi
+aXP
+aYz
+aUc
+aZv
+aZv
+aNo
+aLX
+aLX
+baZ
+aLX
+aLX
+aLX
+aLX
+baZ
+aLX
+aIl
+bdb
+bdA
+aLY
+adt
+adt
+bfc
+aJY
+bgd
+aLp
+bhu
+bgT
+biy
+biH
+bjA
+biH
+bkh
+bkA
+biH
+bkZ
+biy
+bgT
+adt
+adt
aab
aab
aab
@@ -43668,113 +48673,113 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aag
-aaD
-aPH
-aQi
-aQI
-aQZ
-aRu
-aRM
-aSe
-aSw
-aad
-aaZ
-aai
-aaG
-aai
-abN
-aad
-adI
+aeG
+aeG
+aeG
+abn
adf
-aet
-adY
-aft
-afL
-afG
-eXR
-gDW
-afG
-afG
-afG
-afG
-afG
-afG
-afG
-afG
-xkH
-afG
-afG
-afG
-afF
-afG
-afL
-afG
-afG
-afG
-wQg
-afG
-afG
-aqD
-adY
-aZw
-aZy
-aac
-aac
-aac
-aac
-arZ
-baa
-axB
-ayj
-ayS
-azM
-ayS
-aBl
-aIa
-axB
-arl
-arl
-arl
-aDN
-aEd
-arZ
-aEJ
-aEW
-aFi
-aOm
-arZ
-aFR
-azS
-aGu
-aGO
-arZ
-aac
+adN
+aev
+afh
+aem
+aaX
+aam
+aiN
+akq
+alO
+anA
+aoL
+aqe
+abi
+abl
+abo
+bpj
+bpJ
+akq
+auU
+asV
+awj
+avD
+axF
+ayc
+ayd
+azg
+ayh
+ayd
+ayd
+ayd
+ayd
+ayd
+ayd
+ayd
+ayd
+aFx
+ayd
+ayd
+ayd
+aHx
aHP
-aHP
-aHP
-aHP
-aKb
-aHP
-aKh
-aLE
-aLM
-aMz
-aLM
-aLM
-aLM
-aLM
-aNL
-aOf
-aKh
-aac
-aac
+ayc
+ayd
+ayd
+ayd
+aKA
+ayd
+ayd
+aMG
+avD
+asm
+asx
+adt
+adt
+adt
+adt
+aLY
+aTe
+aUc
+aUM
+aVv
+aWq
+aVv
+aXQ
+aYA
+aUc
+aNo
+aNo
+aNo
+aLX
+baJ
+aLY
+aFS
+bbE
+bbQ
+aHH
+aLY
+aOa
+bcM
+bdb
+aIo
+aLY
+adt
+beF
+beF
+beF
+beF
+bgN
+beF
+bgT
+biz
+biH
+bjB
+biH
+biH
+biH
+biH
+bla
+blC
+bgT
+adt
+adt
aab
aab
aab
@@ -43811,114 +48816,114 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aQU
-aTb
-aRe
-aad
-aba
-aai
-abM
-abu
-acw
-aad
-aTg
+aeG
+abn
+abn
adf
-aXo
-adY
-afu
-afM
-uoL
-maZ
-agz
-agH
-agR
-anc
-afM
-ahN
-aib
-afM
-aiE
-aja
-ajS
-aZN
-aZP
-ajC
-ajI
-asB
-afG
-anu
-jnL
-jfi
-afM
-afM
-aCV
-adY
-aZx
-aZz
-aZA
-aac
-aac
-aac
-arZ
-avi
-axB
-ayk
-ayT
-ayS
-aAF
-aBm
-aBT
-axB
-aac
-arZ
-aDC
-aDM
-aEe
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-aDN
-aGf
-aGu
-aGO
-arZ
-aac
-aHP
-afr
-aIS
-aJv
-aKd
-aKP
-aLm
-aLF
-aMd
-aMd
-aMd
-aLJ
-aMd
-aMd
-aNM
-aLD
-aKh
-aac
-aac
-aac
-aac
+adO
+aew
+abr
+agg
+aaY
+agM
+aiO
+akq
+abw
+anK
+aoM
+aqf
+aoM
+akq
+abp
+bpC
+akq
+akq
+auV
+avI
+awk
+avD
+axG
+ayl
+ayO
+azh
+azR
+aAt
+aAQ
+aBv
+ayl
+aCT
+aDK
+aGp
+aET
+aFy
+aGm
+aHh
+aHh
+aHy
+aHQ
+aIw
+ayd
+aJu
+aJP
+aKB
+ayl
+ayl
+aMI
+avD
+asn
+asO
+asU
+adt
+adt
+adt
+aLY
+aTf
+aUc
+aUN
+aVw
+aVv
+aXj
+aXR
+aYB
+aUc
+adt
+aLY
+bak
+aLX
+baK
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+aLX
+bcM
+bdb
+aIo
+aLY
+adt
+beF
+bfd
+bfC
+bge
+bgO
+bhv
+bib
+biA
+bjc
+bjc
+bjc
+bki
+bjc
+bjc
+blb
+biy
+bgT
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -43953,114 +48958,114 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aah
-aaF
-aPI
-aQj
-aQJ
-aPn
-aah
-aRN
-aao
-aSb
-aad
-abb
-aaG
-abN
-aad
-aad
-aad
-adK
+aeG
+abn
+abn
adf
-aad
-adY
-adY
-adY
-adY
-adY
-agA
-adY
-agS
-adY
-adY
-adY
-adY
-adY
-aiF
-ajd
-adY
-adY
-adY
-aYd
-amN
-agY
-aqJ
-aoE
-aoE
-api
-aoE
-api
-aoE
-aoE
-arZ
-arZ
-arZ
-arZ
-arZ
-aac
-arZ
-bac
-axB
-ayl
-ayU
-azN
-aAG
-aeJ
-aBU
-axB
-aac
-arZ
-aDD
-aDM
-aEf
-arZ
-aac
-aac
-aac
-aac
-arZ
-aDN
-aGg
-aGv
-aGP
-arZ
-aac
-aHP
-aIt
-aIT
+adP
+aex
+afj
+agh
+aaU
+aam
+aiP
+akq
+alS
+akq
+alS
+akq
+alS
+akq
+abp
+bpC
+bpI
+akq
+auW
+asV
+atY
+avD
+avD
+avD
+avD
+avD
+azS
+avD
+aAR
+avD
+avD
+avD
+avD
+avD
+aEU
+aFz
+aDP
+aGo
+aGo
+aDP
+aHR
+aFG
+aIY
+aJv
+aJv
aJw
-aKe
-aKQ
-aLn
-aLG
-aLM
-aLM
-aLM
-aNd
-aLM
-aLM
-aLM
-aLD
-aKh
-aac
-aac
-aac
-aac
+aJv
+aJw
+aJv
+aJv
+aLY
+aLY
+aLY
+aLY
+aLY
+adt
+aLY
+aTg
+aUc
+aUO
+aVx
+aWr
+aXk
+aXS
+aYC
+aUc
+adt
+aLY
+bal
+aLX
+aEh
+aLY
+adt
+adt
+adt
+adt
+aLY
+aLX
+bcM
+bdb
+aIq
+aLY
+adt
+beF
+bfe
+bfD
+bgf
+bgP
+bhw
+bic
+biB
+biH
+biH
+biH
+biy
+biH
+biH
+biH
+biy
+bgT
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -44095,113 +49100,113 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aah
-aaH
-aQK
-aQk
-aQK
-aRb
-aRw
-aSS
-aao
-aSb
-aad
-abc
-abt
-abO
-aad
-acx
-acy
-adJ
-adf
-aad
-aTh
-aac
-any
-any
-adY
-aen
-adu
-agT
-adu
-ahv
-aau
-aau
-ahR
-adu
-lVd
-alK
-amm
-amm
-aYd
-amR
-ant
-aro
-api
-aup
-avh
-awK
-aAf
-amS
-aoE
-baj
-bam
-bap
-aud
-arZ
-arZ
-arZ
-bae
-axB
+aeG
+aeG
+abn
+aeZ
+aeZ
+aeZ
+aeZ
+aeZ
+aaW
+aam
+ajz
+akq
+alT
+akq
+alT
+akq
+atb
+akq
+bpd
+bpD
+bpJ
+akq
+auX
+asV
+atY
+anW
+axH
aym
-ayU
-azO
-axB
-axB
-axB
-axB
-aac
-arZ
-aDE
-aDM
-aEe
-arZ
-aac
-aac
-aac
-aac
-arZ
-aDN
-aDN
-aGw
-aGQ
-arZ
-aac
-aHP
-aIu
-aIU
-aJx
-aKf
-aXa
-aLo
-aLH
-aMe
-aLD
-aMN
-aNe
-aNr
-aLD
-aNN
-aOg
-aKh
-aac
-aac
-aac
+aym
+avD
+awd
+ard
+aAS
+ard
+aBZ
+aCU
+aCU
+aEm
+ard
+aFA
+aDP
+aGP
+aqi
+aDP
+aHS
+aIx
+aGR
+aJw
+aJQ
+aKC
+aLl
+aLS
+aMJ
+aJv
+aNY
+aOL
+aPw
+aQl
+aLY
+aLY
+aLY
+aTh
+aUc
+aUP
+aVx
+aWs
+aUc
+aUc
+aUc
+aUc
+adt
+aLY
+bam
+aLX
+baK
+aLY
+adt
+adt
+adt
+adt
+aLY
+aLX
+bcN
+bdd
+bdD
+aLY
+adt
+beF
+bff
+bfE
+bgg
+bgQ
+bhx
+bid
+biC
+bjd
+biy
+bjQ
+bkj
+bkB
+biy
+blc
+blD
+bgT
+adt
+adt
+adt
aab
aab
aab
@@ -44237,113 +49242,113 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aah
-aaI
-aQK
-aPN
-aQL
-aRc
-aRx
-aRP
-aSg
-aSb
-aad
-abd
-aai
-abP
-aad
-acy
-aad
-adJ
-adf
-aad
-aTh
-aZt
-any
-any
-adY
-adY
-adu
-agT
-adu
-ahw
-ahP
-ahP
-ain
-adu
-lVd
-alN
-amm
-amm
-aYd
-and
-anw
-aqT
-aoE
-auM
-avo
-awL
-aAg
-aPD
-aoE
-bak
-avX
-avX
-baw
-arZ
-aZB
-avV
-aNg
-axB
-ayn
-ayV
-azP
-axB
-aac
-aac
-aac
-aac
-arZ
-aDF
-aDN
-aEe
-arZ
-arZ
-arZ
-aac
-arZ
-arZ
-arZ
-arZ
-arZ
-aGL
-arZ
-aac
-aHP
-aIv
-aJu
-aKc
-aKR
-aXI
-aLp
-aLI
-aLM
-aLM
-aLM
-aNf
-aLM
-aLM
-aLM
-aLD
-aKh
-aac
-aac
-aac
+aeG
+aeG
+abn
+adg
+adQ
+aey
+afl
+agk
+abq
+agN
+ajH
+aar
+aar
+aar
+aiK
+aiK
+akH
+aiK
+aiK
+aiK
+aiK
+aiK
+auX
+asV
+atY
+anW
+axI
+aym
+aym
+avD
+avD
+ard
+aAS
+ard
+aCa
+aoZ
+aoZ
+aEn
+ard
+aFA
+aGo
+lOO
+tPB
+aGo
+aHT
+aIy
+aIZ
+aJv
+aJR
+aKD
+aLm
+aLT
+aMK
+aJv
+aNZ
+mWq
+mWq
+aQm
+aLY
+atr
+aSn
+atC
+aUc
+aUQ
+aVy
+aWt
+aUc
+adt
+adt
+adt
+adt
+aLY
+ban
+aLX
+baK
+aLY
+aLY
+aLY
+adt
+aLY
+aLY
+aLY
+aLY
+aZr
+bdy
+aLY
+adt
+beF
+bfg
+bfF
+bgh
+bgR
+bhy
+bie
+biD
+biH
+biH
+biH
+biy
+biH
+biH
+biH
+biy
+bgT
+adt
+adt
+adt
aab
aab
aab
@@ -44379,112 +49384,112 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aah
-aaQ
-aPJ
-aPO
-aQM
-aRd
-aRw
-aQa
-aSh
-aSb
-aad
-abe
-aai
-abQ
-aad
-acy
-aad
-adJ
-adf
-aad
-aTh
-aTh
-aeN
-any
-any
-any
-adu
-agU
-adu
-ahx
-aju
-aju
-aip
-aiI
-ajH
-amb
-amm
-amx
-aYd
-ane
-aoy
-aqY
-arm
-auP
-avT
-awM
-aih
-aih
-aoE
-aFR
-aDN
-aDM
-aDM
-arZ
-avk
-avW
-aNC
-axB
-axB
-ayW
-axB
-axB
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-aDP
-arZ
-arZ
-acG
-arZ
-arZ
-arZ
-aFH
-aFS
+aeG
+abn
+abn
+adg
+adR
+aez
+abG
+agm
+abs
+agM
+ajR
+aar
+abF
+aer
+ajK
+akA
+akI
+akS
+akV
+alM
+alU
+aiK
+auX
+asV
+atY
+anW
+anW
+aoc
+aym
+aym
+aym
+ard
+aAT
+ard
+aCb
+aGR
+aGR
+aEo
aEV
-aEr
-aGL
-arZ
-aac
-aHP
-aIw
-aIV
-aJy
-aKg
-aKS
-aLq
-aLJ
-aMd
-aMd
-aMd
-aLJ
-aMd
-aMd
-aNO
-aLD
-aKh
-aac
-aac
+aFB
+aDP
+djo
+aHi
+aDP
+aHU
+aIz
+aJa
+aJx
+aJS
+aKE
+aLn
+aJU
+aJU
+aJv
+wqU
+qpA
+dSO
+tED
+aLY
+aRC
+bcM
+atW
+aUc
+aUc
+aVz
+aUc
+aUc
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+aCY
+aLY
+aLY
+bbr
+aLY
+aLY
+aLY
+aId
+aIf
+baY
+aZr
+bdy
+aLY
+adt
+beF
+bfh
+bfG
+bgi
+bgS
+bhz
+bif
+biE
+bjc
+bjc
+bjc
+bkk
+bjc
+bjc
+bld
+biy
+bgT
+adt
+adt
aab
aab
aab
@@ -44521,112 +49526,112 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aah
-aaE
-aPM
-aQl
-aQN
-aQS
-aah
-aQb
-aSh
-aTj
-aad
-abf
-aai
-abR
-aad
-acy
-adu
-adL
-aec
-adu
-adu
-adu
-aZa
-aXK
-adu
-adu
-adu
-agV
-adu
-aSF
-aju
-aju
-ais
-adu
-dQd
-alN
-amm
-amm
-aYd
-anf
-aoV
-aro
-aoE
-auW
-avU
-avU
-aBn
-aCY
-aoE
-aDN
-ban
-aDN
-aDM
-arZ
-avl
-avW
-aNC
-aDM
-ayo
-ayX
-aOT
-azQ
-aBo
-azQ
-azQ
-azQ
-azQ
-azQ
-azQ
-aEg
-aEg
-aEg
-azQ
-aFj
-arZ
-arZ
-arZ
-arZ
-arZ
-aGL
-arZ
-aac
-aHP
-aIx
-aIW
-aJz
-aKh
-aKT
-aKh
-aLK
-aLM
-aLM
-aLM
-aLM
-aLM
-aLM
-aNP
-aOh
-aKh
-aac
-aac
+aeG
+aeG
+abn
+adg
+adS
+aeA
+afn
+aeZ
+aaU
+aam
+ajS
+aar
+abF
+aer
+ajL
+akB
+akJ
+akT
+akW
+akJ
+alV
+aiK
+auY
+avJ
+ard
+ard
+ard
+ard
+ayP
+ard
+ard
+ard
+aAU
+ard
+aCc
+aGR
+aGR
+aEp
+ard
+aFC
+aGo
+tPB
+tPB
+pah
+aHV
+aIA
+aGR
+aJv
+aJT
+aKF
+aKF
+aLU
+aML
+aJv
+aRC
+aON
+tuO
+pLH
+aLY
+aRD
+bcM
+atX
+auH
+aUR
+aVA
+aWu
+aSo
+aXT
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+bbR
+aLY
+aLY
+aLY
+aLY
+aZr
+bdy
+aLY
+adt
+beF
+bfi
+bfH
+bgj
+bgT
+bhA
+bgT
+biF
+biH
+biH
+biH
+biH
+biH
+biH
+ble
+blE
+bgT
+adt
+adt
aab
aab
aab
@@ -44663,112 +49668,112 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aah
-aah
-aah
-afc
-aah
-aah
-aah
-aQb
-aSh
-aTk
-aad
-abg
-aai
-abS
-aad
-acy
-adu
-adL
-aec
-aev
-aeO
-afv
-afv
-agb
-agn
-agB
-adu
-agT
-adu
-ahz
-ahQ
-aid
-aiq
-adu
-dQd
-alK
-amm
-amm
-aYd
-anf
-aoV
-aro
-api
-aih
-aih
-axA
-aBA
-aFa
-aoE
-aDN
-aDN
-bal
-arZ
-arZ
-avm
-avW
-aOv
-axD
-ayp
-ayY
-aDN
-aDN
-aug
-aDN
-arZ
-arZ
-arZ
-arZ
-aDQ
-aEh
-aDM
-aEK
-aDN
-aFk
-azQ
-azQ
-azQ
-azQ
-azQ
+aeG
+abn
+abn
+acC
+acC
+acC
+acC
+acC
+abt
+agq
+akE
+aar
+abH
+agP
+ajM
+akC
+akK
+akJ
+alE
+alE
+alW
+aiK
+auY
+avJ
+awl
+anX
+ayQ
+ayQ
+ayQ
+azi
+aoR
+ard
+aAS
+ard
+aCd
+aCW
+aDL
+aEq
+ard
+aFC
+aDP
+aqh
+lOO
+aDP
+sVf
+aIA
aGR
-arZ
-aac
-aHP
-aHP
-aHP
-aHP
-aKh
-aKU
-aKh
-aLL
-aLM
-aMB
-aLM
-aNh
-aNs
-aLM
-aNQ
-aLD
-aKh
-aac
-aac
+aJw
+aJU
+aJU
+aLo
+aLV
+aMM
+aJv
+voE
+aON
+aPy
+aLY
+aLY
+aRE
+bcM
+aTl
+auI
+awg
+aVB
+aLX
+aLX
+aQo
+aLX
+aLY
+aLY
+aLY
+aLY
+baw
+baN
+aLX
+bcN
+aLX
+bbS
+aSo
+aSo
+aSo
+aSo
+bde
+bdE
+aLY
+adt
+beF
+beF
+beF
+beF
+bgT
+bhB
+bgT
+biG
+biH
+bjC
+biH
+bkl
+bkC
+biH
+blf
+biy
+bgT
+adt
+adt
aab
aab
aab
@@ -44805,112 +49810,112 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aah
-aaW
-aPK
-aQn
-aQO
-aRf
-aah
-aRQ
-aSh
-aSv
-aad
-abh
-aaG
-abT
-aad
-acz
-adu
-aeL
+aeG
+aeG
+abn
+adm
+adp
aec
-aew
-aeP
-peO
-cHq
-peO
-ago
-agC
-adu
-agW
-adu
-adu
-aie
-aiu
-adu
-adu
-ajc
-aYd
-aYd
-aYd
-aYd
-anf
-aoV
-aro
-aoE
-api
-api
-aoE
-aoE
-aoE
-aoE
-arZ
-bao
-arZ
-arZ
-auO
-avn
-avX
-aOy
-axE
+afb
+afX
+abq
+agN
+akN
+abC
+acZ
+agS
+aiK
+akD
+akJ
+akJ
+akJ
+akJ
+alX
+aiK
+auZ
+avJ
+awm
+awT
+axK
ayp
-ayZ
-azR
-aAH
-arZ
-arZ
-arZ
-aac
-aac
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-aac
-aac
-aac
-aac
-aac
-aKh
-aKV
-aLr
-aLM
-aLM
-aMC
-aLM
-aNi
-aNt
-aLM
-aNR
-aOe
-aKh
-aac
-aac
+axK
+azj
+azU
+ard
+aAV
+ard
+ard
+aGr
+aDM
+ard
+ard
+aFD
+aDP
+aGo
+aGo
+aDP
+dXv
+aIA
+aGR
+aJv
+aJw
+aJw
+aJv
+aJv
+aJv
+aJv
+aLY
+aOO
+aLY
+aLY
+aQZ
+aRF
+atv
+atZ
+auK
+awg
+aVC
+aWv
+aPC
+aLY
+aLY
+aLY
+adt
+adt
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+bdf
+aLY
+aLY
+adt
+adt
+adt
+adt
+adt
+bgT
+bhC
+big
+biH
+biH
+bjD
+biH
+bkm
+bkD
+biH
+blg
+blB
+bgT
+adt
+adt
aab
aab
aab
@@ -44948,111 +49953,111 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aah
+aeG
+aeG
+adm
+adq
aeu
-aPL
-aQo
-aQP
-aRg
-aah
-aPo
-aSi
-aSy
-aad
-abi
-aai
-abN
-aad
-acy
-adu
-adL
-aed
-aex
-aeQ
-nTp
-afN
-hNH
-agp
-agc
-agc
-alL
-afx
-ahA
-ahS
-aic
-aif
-aiH
-aiX
-ajs
-amn
-amn
-amL
-ang
-apL
-amn
-auf
-amn
-amn
-aya
-aBB
-aFY
-aFY
-aFY
-aFY
-aFY
-aGa
-aHU
-aHX
-aJE
-aOz
-awN
+afi
+agi
+abA
+agO
+akO
+abD
+adn
+air
+aks
+akF
+akJ
+akJ
+akJ
+akJ
+alY
+amJ
+ava
+avK
+awn
+awU
+axL
ayq
-aza
-azS
-aAI
-arZ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aKh
-aKh
-aKh
-aLN
-aLD
-aLD
-aMO
-aNj
-aLD
-aLD
-aLD
-aLI
-aKh
-aac
-aac
+ayR
+azk
+azV
+azV
+aAW
+aBw
+aoY
+aDN
+aDN
+aEr
+aEW
+aFE
+aGq
+aGQ
+aGQ
+aHz
+aHW
+aIB
+aGQ
+aJy
+aGQ
+aGQ
+abI
+aLW
+aMN
+aMN
+aMN
+vTb
+aMN
+aQn
+aRa
+aRG
+aSo
+aua
+auO
+awq
+aVD
+axN
+aPC
+aLY
+adt
+adt
+adt
+adt
+adt
+adt
+bax
+bax
+bax
+baO
+bax
+bax
+bax
+adt
+bax
+bdg
+baO
+bdQ
+beg
+bdQ
+bdQ
+bdQ
+bdQ
+bgT
+bgT
+bgT
+biI
+biy
+biy
+bjR
+bkn
+biy
+biy
+biy
+biD
+bgT
+adt
+adt
aab
aab
aab
@@ -45091,110 +50096,110 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aKv
-aSj
-aKv
-aad
-abj
-abu
-abU
-aad
-acy
-adu
-adL
-aee
-aey
-aeR
-peO
-cHq
-peO
-agq
-aee
-aee
-amc
-ahk
-ahB
-ahT
-ahU
-ahT
-ahT
-aiY
-ajJ
-aro
-aro
-aro
-anh
-aOP
-aPk
-aOI
-aPv
-baY
-aYd
-aDN
-aDN
-aDN
-aDN
-aDN
-aDN
-aug
-auQ
-aDN
-aDN
-awO
-aDN
-aDN
-aDN
-azT
-aAJ
-arZ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aKh
-aac
-aab
+aeG
+adm
+adT
+aeB
+afk
+acC
+acI
+agQ
+akP
+abE
+adV
+aiG
+akt
+akG
+akQ
+akU
+alG
+alP
+alZ
+aiK
+avb
+avL
+awo
+awV
+axK
+ayp
+axK
+azl
+avL
+avL
+avL
+aoX
+apa
+aDO
+aDO
+aDO
+aDO
+aFF
+aGr
+aGR
+aGR
+aGR
+aHX
+aIC
+aJb
+aIb
+aJV
+aKG
+aDP
+aLX
+aLX
+aLX
+aLX
+aLX
+aLX
+aQo
+aRb
+aLX
+aLX
+aTo
+aLX
+aLX
+aLX
+axX
+ayg
+aLY
+adt
+adt
+adt
+adt
+adt
+bax
+bax
+baO
+baO
+baO
+baO
+baO
+bax
+bax
+bax
+bdg
+baO
+bdR
+beg
+beg
+beg
+bdQ
+bdQ
+adt
+adt
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+bgT
+blh
+abn
aab
aab
aab
@@ -45234,109 +50239,109 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aKi
-aPP
-aQr
-aQQ
-aRh
-aRy
-aRS
-aSk
-aSz
-aad
-aad
-abv
-aad
-aad
-acA
-adu
-adM
-aee
-aez
-aeS
-afy
-aXT
-afy
-agr
-agE
-agI
-aee
-adL
-adu
-amP
-aYd
-ahW
-ahW
-agY
-aYd
-aro
-aro
-aro
-ani
-apP
-aXy
-aro
-ani
-aXk
-aYd
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-auR
-aod
-avZ
-apj
-avZ
-avZ
-avZ
-azU
-arZ
-arZ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
+adi
+adi
+adi
+adi
+adi
+agp
+aiu
+adi
+bpV
+amI
+anM
+ahN
+ahN
+ahN
+ahN
+ahN
+alQ
+ama
+aiK
+avc
+avL
+awp
+awW
+axM
+ayr
+axM
+azm
+azW
+aoU
+avL
+agf
+ard
+aDa
+aCV
+ard
+ard
+boD
+aDP
+aGR
+aGR
+aGR
+aHY
+aID
+aJc
+aGR
+aHY
+aKH
+aDP
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+aRc
+aRH
+aSp
+aTp
+aSp
+aSp
+aSp
+aWy
+aLY
+aLY
+adt
+adt
+adt
+adt
+adt
+bax
+baO
+baO
+baO
+baO
+baO
+baO
+baO
+bcA
+bcO
+bdh
+baO
+bdR
+bdR
+beg
+beg
+beg
+bdQ
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+blh
+blF
+blF
+blh
+abn
aab
aab
aab
@@ -45376,109 +50381,109 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aKi
-aPQ
-aQs
-aQs
-aQs
-aQs
-aQs
-aSl
-aSA
-aad
-abk
-abw
-abV
-abV
-acB
-adu
-adL
-aee
-aeA
-aeT
-afz
-afO
-afO
-afz
-afO
-agJ
-aee
-adL
-adu
-ahP
-ahW
-ait
+ado
+adU
+aeC
+afo
+afY
+aaJ
+afm
+adi
+aaZ
+ajU
+abx
+aby
+abB
+abR
+boF
+ahN
+alR
+amb
aiK
-ajL
-aYd
-amu
-ajY
-ajY
-aZE
-apQ
-aXy
-aro
-aZE
-avY
-aGN
-bag
-aYd
-aac
-aac
-aac
-aac
-arZ
-anJ
-anJ
-anJ
-arZ
-arZ
-arZ
-arZ
-arZ
-arZ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
+avb
+avL
+anU
+awX
+ays
+ays
+ays
+ays
+ays
+aAv
+avL
+qDE
+ard
+aoZ
+aDQ
+ard
+aEX
+aFH
+aDP
+aGS
+aGT
+aGT
+aHZ
+aIE
+aJc
+aGR
+aHZ
+aKI
+aLq
+aLZ
+aDP
+adt
+adt
+adt
+adt
+aLY
+aRd
+aRd
+aRd
+aLY
+aLY
+aLY
+aLY
+aLY
+aLY
+adt
+adt
+adt
+adt
+adt
+adt
+bax
+bax
+baO
+baO
+baO
+baO
+baO
+bax
+bax
+bax
+bdg
+baO
+baO
+baO
+baO
+baO
+bfI
+bax
+bgU
+bgU
+bgU
+bgU
+bgU
+bgU
+bgU
+bgU
+bgU
+bgU
+blh
+blG
+blG
+blh
+abn
aab
aab
aab
@@ -45518,108 +50523,108 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aKi
-aPR
-aQs
-aQs
-aRi
-aRz
-aRT
-aSm
-aeM
-aad
-abl
-abx
-abV
-abW
-abV
-adu
-adL
-aee
-aee
-aee
-aee
-aee
-aee
-aee
-aee
-aee
-aee
-adL
-adu
-afJ
-aYd
-aiv
-aiL
-aiL
-amd
-ajY
-apO
-aqG
-aOE
-aOU
-aro
-aro
-aro
-aro
-aYd
-aue
-aYd
-aac
-arZ
-arZ
-arZ
-arZ
-arZ
-baD
-arZ
-arZ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
+ado
+aav
+aeD
+afp
+afp
+afp
+aaP
+adi
+aba
+aiz
+anQ
+aoV
+aqW
+atd
+boG
+ahN
+bpE
+ajE
+ajE
+avb
+avL
+avL
+avL
+avL
+avL
+avL
+avL
+avL
+avL
+avL
+avb
+ard
+aDb
+aCX
+ard
+aEY
+mUP
+aDP
+aGT
+aHj
+aHA
+aIa
+aIF
+aGR
+aGR
+aGR
+aGR
+aDP
+aMa
+aDP
+adt
+aLY
+aLY
+aLY
+aLY
+aLY
+aRI
+aLY
+aLY
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+bax
+bax
+bax
+baO
+bax
+bax
+bax
+adt
+bax
+bdi
+bdF
+bdF
+beh
+bdF
+bdF
+bdF
+bdF
+bgV
+bhD
+bih
+biJ
+bje
+bjE
+bjE
+bko
+bkE
+bgU
+bli
+blG
+blG
+bmb
aab
aab
aab
@@ -45660,108 +50665,108 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aKi
-aPS
-aQs
-aQs
-aRj
-aRA
-aQs
-aSn
-afb
-aad
-abm
-aby
-abW
-acl
-acC
-adu
-adN
-aef
-aef
-aef
-aef
-aef
-aef
-aef
-aef
-aef
-aef
-ahl
-adu
-ahX
-aYd
-aiG
-aiZ
-ait
-aYd
-amv
-amz
-ajY
-ajY
-aqv
-ajY
-ajY
-ajY
-aro
-ase
-aBY
-aYd
-aac
-arZ
-baq
-bat
+ado
+aaw
+aeE
+afq
+afZ
+ahJ
+ais
+adi
+aeb
+aiS
+anR
+alH
+alH
+alH
+boH
+ahN
+bpF
+anC
+ajE
+avd
+avM
+avM
+avM
+avM
+avM
+avM
+avM
+avM
+avM
+avM
+aBy
+ard
+aDc
+aEt
+aEu
+aEZ
+llG
+aDP
+aGU
+aHk
+aGT
+aGT
+aIG
+aGT
+aGT
+aGT
+aGR
+aLr
+aMb
+aDP
+adt
+aLY
+aOP
+aPz
+aQp
+ati
+aRC
+aOP
+aLY
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
bax
-baA
-avk
-baq
-arZ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
+bax
+bax
+adt
+adt
+adt
+bax
+bdj
+bdj
+bdj
+bax
+bdj
+bdj
+bdj
+bax
+bgU
+bhE
+bii
+biK
+bjf
+bii
+bjS
+bkp
+bkF
+bkO
+blj
+blH
+blS
+bmb
aab
aab
aab
@@ -45802,108 +50807,108 @@ aab
aab
aab
aab
-aab
-aab
-aac
-aKv
-aaJ
-aQs
-aQs
-aRk
-aRB
-aRU
-aSo
-aPa
-aad
-aad
-aad
-aad
-aad
-aad
-adu
-adu
-adu
-adu
-adu
-afJ
-adu
-adu
-adu
-adu
-adu
-ahV
-adu
-adu
-aig
-aYd
+ado
+aak
+aaA
+aaA
+aaD
+ahK
ait
-ajb
-ajO
-ahW
-ajY
-aqo
-aOC
-aOI
-aPb
-aro
-aro
-aro
-aro
-aYd
-aYd
-aYd
-aac
-arZ
-baq
-bau
-bax
-baB
-baE
-baq
-arZ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
+adi
+aix
+aiU
+abe
+aoW
+aoW
+ate
+abm
+ahN
+ajE
+ajE
+ajE
+ard
+avN
+ard
+ard
+axO
+ard
+ard
+ard
+ard
+ard
+aAY
+ard
+ard
+aDd
+aGn
+aEs
+aFa
+aFI
+aDP
+aGT
+aHl
+aHB
+aIb
+aIH
+aGR
+aGR
+aGR
+aGR
+aDP
+aDP
+aDP
+adt
+aLY
+aOP
+aPC
+aQp
+atj
+aRC
+aOP
+aLY
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+abn
+abn
+abn
+adt
+abn
+abn
+abn
+adt
+bgU
+bhF
+bij
+biL
+bjg
+bjF
+bjT
+bkq
+bkG
+bgU
+blk
+blG
+blT
+bmb
aab
aab
aab
@@ -45944,108 +50949,108 @@ aab
aab
aab
aab
+adi
+adi
+adi
+adi
+agn
+adi
+adi
+adi
+ahN
+ajC
+ahN
+ahN
+ahN
+ahN
+ahN
+ahN
+asf
+atn
+aud
+ave
+avO
+awr
+ard
+ato
+ayt
+ayS
+azn
+azX
+ard
+ato
+ard
+ard
+ard
+ard
+ard
+ard
+ard
+aDP
+aGS
+aGT
+aGT
+aHY
+aID
+aJc
+aGR
+aHY
+aKH
+aDP
+adt
+adt
+adt
+aLY
+aOQ
+bcM
+atg
+atg
+bcM
+aSq
+aLY
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+abn
+abn
+abn
+adt
+adt
+abn
aab
-aab
-aac
-aKv
-aPU
-aQs
-aQs
-aQs
-aQs
-aQs
-aQs
-aSD
-aKv
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-adu
-ahP
-ajt
-ajt
-adu
-aac
-adu
-ahP
-adu
-adu
-adu
-aYd
-aYd
-ahW
-aYd
-aYd
-amu
-ajY
-ajY
-ani
-apP
-aXy
-aro
-ani
-aXk
-aYd
-aac
-aac
-aac
-arZ
-kaa
-avW
-bay
-bay
-avW
-baF
-arZ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aac
-aab
-aab
-aab
+abn
+abn
+bgU
+bhG
+bgU
+bgU
+bjh
+bgU
+bgU
+bkr
+bgU
+bgU
+blh
+blI
+blh
+blh
aab
aab
aab
@@ -46087,82 +51092,82 @@ aab
aab
aab
aab
-aac
-aac
-aKv
-aPV
-aQt
-aes
-aRl
+adt
+adt
+adt
+adt
+ahN
+aiD
+ajA
+akL
+abb
+anT
+ahN
+arc
+ath
+boL
+ahN
+asg
+ato
+ato
+ato
+ato
+aws
+ard
+ato
+ayu
+ayT
+azo
+azY
+ard
+ato
+aBz
+aCg
+aDe
+aDR
+aEv
+aFb
+aFJ
+aBz
+aGR
+aGR
+aGR
+aHZ
+aIE
+aJc
+aGR
+aHZ
+aKI
+aDP
+aMc
+aMc
+adt
+aLY
+aOP
+aPC
+aQr
+aQr
aRC
-ahi
-aSp
-aSE
-aKv
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-adu
-ahP
-ahP
-ahP
-adu
-aac
-adu
-ahP
-ajT
-afZ
-aga
-air
-aiJ
-ajo
-ajR
-ajT
-aro
-aro
-aro
-aZE
-apQ
-aXy
-aro
-aZE
-avY
-aYd
-aoF
-aoF
-aac
-arZ
-baq
-bau
-baz
-baz
-baE
-baq
-arZ
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aOP
+aLY
+adt
+adt
+adt
+adt
+adt
+abn
+abn
+abn
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
+adt
aab
aab
aab
@@ -46172,21 +51177,21 @@ aab
aab
aab
aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
+abn
+abn
+bgU
+bhH
+bik
+bgU
+bji
+bik
+bgU
+bks
+bik
+bgU
+abn
+abn
+abn
aab
aab
aab
@@ -46229,95 +51234,82 @@ aab
aab
aab
aab
-aac
-aac
-aKv
-aKv
-aKv
-aKv
-aKv
-aKv
-aKv
-aSq
-aSq
-aKv
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-adu
-aio
-amQ
-aiM
-adu
-aac
-adu
-ahP
-amO
-aYp
-aYp
-aYM
-ajT
-ajp
-ajV
-ame
-amw
-amw
-amw
-anj
-aPd
-aPu
-aOE
-aPB
-aro
-aYd
-app
-app
-aoF
-arZ
-baq
-bav
-bar
-baC
-baE
-baq
-arZ
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+adt
+adt
+adt
+adt
+ahN
+aiD
+ajB
+alC
+amX
+abf
+ajQ
+abg
+atm
+boP
+ahN
+ash
+ato
+aue
+avf
+ato
+awt
+ard
+axP
+ayv
+ayU
+azp
+azY
+ard
+aAZ
+aBA
+aCh
+aCh
+aDS
+aBz
+aFc
+aFK
+aGt
+aGV
+aGV
+aGV
+aIc
+aII
+aJd
+aIa
+aJW
+aGR
+aDP
+aMd
+aMd
+aMc
+aLY
+aOP
+aPC
+aQs
+aQs
+aRC
+aOP
+aLY
+adt
+adt
+adt
+adt
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+aab
+adt
+adt
+adt
aab
aab
aab
@@ -46328,6 +51320,19 @@ aab
aab
aab
aab
+abn
+bgU
+bhI
+bil
+bgU
+bhI
+bil
+bgU
+bhI
+bil
+bgU
+abn
+abn
aab
aab
aab
@@ -46371,89 +51376,76 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aea
-aea
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-adu
-adu
-adu
-adu
-adu
-aac
-adu
-ahP
-ajT
-arq
-agf
-aYM
-aYZ
-ajq
-ajW
-ajT
-aiN
-aro
-amM
-aro
-aro
-aro
-amM
-aro
-aQu
-aYd
-apq
-apq
-apq
-arZ
-bas
-arZ
-bas
-bas
-arZ
-bas
-arZ
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+adt
+adt
+adt
+adt
+ahN
+alH
+ajD
+alH
+anx
+alH
+ahN
+abh
+auL
+ahN
+ahN
+asi
+ato
+ato
+ato
+ato
+awu
+ard
+ard
+ard
+ard
+ard
+ard
+ard
+ato
+aBz
+aCi
+aDf
+aDS
+aEw
+aFd
+aFL
+aBz
+aGW
+aGR
+aHC
+aGR
+aGR
+aGR
+aHC
+aGR
+aKJ
+aDP
+abn
+abn
+abn
+aLY
+aOR
+aLY
+aOR
+aOR
+aLY
+aOR
+aLY
+adt
+adt
+adt
+adt
+adt
+abn
+abn
+abn
+aab
+aab
+abn
+abn
aab
aab
aab
@@ -46470,6 +51462,19 @@ aab
aab
aab
aab
+abn
+bgU
+bhJ
+bhJ
+bgU
+bjj
+bjj
+bgU
+bjj
+bjj
+bgU
+abn
+abn
aab
aab
aab
@@ -46513,83 +51518,71 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aea
-aea
-aea
-aea
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
-aab
-adu
-afK
-ajT
-aYp
-agy
-aYM
-aYZ
-ajq
-ajX
-ajT
-ajr
-ajr
-aYd
-ajr
-ajr
-ajr
-aYd
-ajr
-ajr
-aYd
-apq
-apq
-apq
-apq
-apq
-ajM
-apq
-apq
-apq
-ajM
-ajM
-ajM
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+adt
+adt
+adt
+adt
+ahN
+aiF
+ahN
+aiF
+ahN
+aiF
+ahN
+abh
+auL
+boL
+ahN
+asj
+atp
+auf
+avg
+avP
+awv
+ard
aab
aab
+abn
+abn
+abn
+ard
+aBa
+aBz
+aCj
+aDg
+aDS
+aEw
+aFd
+aFM
+aBz
+aGX
+aGX
+aDP
+aGX
+aGX
+aGX
+aDP
+aGX
+aGX
+aDP
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
aab
aab
aab
@@ -46611,6 +51604,18 @@ aab
aab
aab
aab
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
aab
aab
aab
@@ -46655,74 +51660,70 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-apq
-aea
-aea
-aea
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-ajT
-aYq
-aYE
-aYO
-aYZ
-ajq
-ajX
-ajT
-apq
-ajM
-aUa
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-apq
-apq
-apq
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-aab
-aab
-aab
-aab
-aab
-aab
+adt
+adt
+adt
+adt
+ahN
+aiI
+ahN
+aiI
+ahN
+aoH
+ahN
+asb
+auM
+boP
+ahN
+ard
+atq
+atq
+atq
+atq
+ard
+ard
aab
aab
aab
+abn
+abn
+abn
+abn
+aBz
+aCk
+aDh
+aDT
+aEw
+aFd
+aFM
+aBz
+abn
+abn
+aHD
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
aab
aab
aab
@@ -46749,6 +51750,10 @@ aab
aab
aab
aab
+abn
+abn
+abn
+abn
aab
aab
aab
@@ -46798,20 +51803,20 @@ aab
aab
aab
aab
-aac
-aac
-aac
-aac
-aac
-aac
-apq
-apq
-apq
-apq
-aac
-aac
-aac
-aac
+adt
+adt
+adt
+ahN
+ahN
+ahN
+ahN
+ahN
+ahN
+ahN
+ahN
+ahN
+ahN
+ahN
aab
aab
aab
@@ -46824,42 +51829,42 @@ aab
aab
aab
aab
-aab
-aab
-ajT
-aYW
-aYF
-aYP
-aYZ
-ajD
-ajZ
-ajT
-aab
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-aab
-aab
-aab
-aab
+abn
+abn
+aBz
+aCl
+aDi
+aDU
+aEw
+aFe
+aFN
+aBz
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
aab
aab
aab
@@ -46942,65 +51947,65 @@ aab
aab
aab
aab
+adt
+adt
+adt
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+abn
+aBz
+aBz
+aBz
+aBz
+aBz
+aBz
+aBz
+aBz
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
aac
aac
-aac
-apq
-apq
-apq
-apq
-apq
-apq
-apq
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-ajT
-aab
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-aab
-aab
-aab
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
aab
aab
aab
@@ -47085,15 +52090,12 @@ aab
aab
aab
aab
-apq
-apq
-apq
-apq
-apq
-apq
-aab
-aab
-aab
+abn
+abn
+abn
+abn
+abn
+abn
aab
aab
aab
@@ -47112,36 +52114,39 @@ aab
aab
aab
aab
+abn
+abn
+abn
+adt
+adt
+adt
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
aac
aac
+abn
+abn
+abn
+abn
+abn
aac
-aab
-aab
-aab
-aab
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-aab
-aab
+aac
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
aab
aab
aab
@@ -47252,37 +52257,37 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-aab
+abn
+abn
+abn
+abn
+aeG
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+aac
+aac
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
aab
aab
aab
@@ -47395,36 +52400,36 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-aab
+abn
+abn
+abn
+aeG
+aeG
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
aab
aab
aab
@@ -47538,35 +52543,35 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-aab
+abn
+abn
+aeG
+aeG
+aeG
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
aab
aab
aab
@@ -47681,33 +52686,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
+abn
+aeG
+aeG
+aeG
+aeG
+aeG
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+aeG
+abn
+abn
+abn
aab
aab
aab
@@ -47823,33 +52828,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-acD
-acD
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
+abn
+aeG
+aeG
+aeG
+aeG
+aeG
+aac
+aac
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
aab
aab
aab
@@ -47965,33 +52970,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-acD
-acD
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
-ajM
+abn
+aeG
+aeG
+aeG
+aeG
+aeG
+aac
+aac
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+abn
+aeG
+abn
+abn
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
aab
aab
aab
@@ -48107,33 +53112,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+abn
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+abn
+abn
+abn
+abn
+abn
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
aab
aab
aab
@@ -48250,32 +53255,32 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+abn
+abn
+abn
+abn
+aeG
+abn
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
aab
aab
aab
@@ -48392,32 +53397,32 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
aab
aab
aab
@@ -48534,32 +53539,32 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
aab
aab
aab
diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm
index 47deba118b1..f30a7570b25 100644
--- a/maps/tether/tether-03-surface3.dmm
+++ b/maps/tether/tether-03-surface3.dmm
@@ -9,83 +9,74 @@
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside3)
"aad" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aae" = (
-/obj/structure/flora/pottedplant/stoutbush,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
-"aaf" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/upperhall)
-"aag" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/medical/triage)
-"aah" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced{
dir = 1
},
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"aae" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/iaa)
+"aaf" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/iaa)
+"aag" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"aah" = (
+/turf/simulated/wall,
/area/tether/surfacebase/medical/triage)
"aai" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/breakroom)
-"aaj" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"aak" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
-"aal" = (
-/obj/structure/bed/chair,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
-"aam" = (
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
-"aan" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
- dir = 1
+ dir = 8
},
/obj/machinery/door/blast/regular{
density = 0;
@@ -94,121 +85,290 @@
name = "Security Blast Doors";
opacity = 0
},
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/upperhall)
-"aao" = (
-/obj/machinery/alarm{
- pixel_y = 22
+/area/tether/surfacebase/security/breakroom)
+"aaj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
},
-/turf/simulated/open,
-/area/tether/surfacebase/medical/triage)
-"aap" = (
-/obj/machinery/light{
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 22;
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"aak" = (
+/obj/machinery/vending/snack{
dir = 1
},
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"aal" = (
+/obj/machinery/vending/cola{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/camera/network/security{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"aam" = (
+/obj/machinery/vending/coffee{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"aan" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/security,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"aao" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/storage)
+"aap" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"aaq" = (
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/surfacebase/outside/outside3)
"aar" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aas" = (
-/obj/effect/floor_decal/borderfloorwhite/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aat" = (
-/turf/simulated/open,
-/area/tether/surfacebase/medical/triage)
-"aau" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"aas" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/clean,
+/obj/random/medical/lite,
+/obj/random/maintenance/medical,
+/obj/random/toy,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/medsec_maintenance)
+"aat" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
/obj/structure/window/reinforced{
dir = 8;
health = 1e+006
},
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/breakroom)
-"aav" = (
-/obj/structure/bed/chair{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Security Officer"
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"aau" = (
+/obj/structure/table/bench/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"aav" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/cups,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
"aaw" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
-"aax" = (
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
-"aay" = (
-/obj/structure/bed/chair{
+/obj/structure/reagent_dispensers/water_cooler/full{
dir = 8
},
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"aax" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"aay" = (
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
"aaz" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/medical/patient_a)
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/storage)
"aaA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/door/airlock/multi_tile/glass{
+ id_tag = "MedbayTriage";
+ name = "Medbay Airlock";
+ req_one_access = list(5)
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"aaB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/machinery/vending/medical{
dir = 4
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/storage)
"aaC" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/storage)
"aaD" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/medical/triage)
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aaE" = (
/turf/simulated/wall,
/area/maintenance/lower/medsec_maintenance)
@@ -222,242 +382,359 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/medsec_maintenance)
"aaG" = (
-/obj/item/device/radio/intercom/department/security{
- dir = 4;
- pixel_x = 24
+/obj/machinery/door/airlock/glass_security{
+ name = "Break Room";
+ req_one_access = list(1,38)
},
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/breakroom)
"aaH" = (
-/obj/machinery/disposal,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/obj/structure/catwalk,
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/outside/outside3)
"aaI" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/obj/machinery/atmospherics/portables_connector,
+/obj/item/weapon/tool/wrench,
+/obj/machinery/door/window/brigdoor/southright{
+ req_access = list();
+ req_one_access = list(5)
+ },
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"aaJ" = (
-/obj/machinery/sleeper{
- dir = 8
- },
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aaK" = (
-/obj/machinery/sleep_console,
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aaL" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aaM" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
-"aaN" = (
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
-"aaO" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/donut,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
-"aaP" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
-"aaQ" = (
/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
+ dir = 4
},
/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/structure/sink/kitchen{
- name = "sink";
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aaR" = (
-/obj/effect/floor_decal/borderfloorwhite/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aaS" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/weapon/soap/nanotrasen,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aaT" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 5
+/area/tether/surfacebase/medical/storage)
+"aaK" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aaU" = (
-/obj/structure/closet/secure_closet/paramedic,
-/obj/effect/floor_decal/borderfloorwhite{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 9
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aaV" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"aaW" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"aaX" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/weapon/soap/nanotrasen,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"aaL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/storage)
+"aaM" = (
+/obj/structure/railing{
+ dir = 1
+ },
/turf/simulated/open,
/area/tether/surfacebase/security/upperhall)
-"aaY" = (
+"aaN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"aaO" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"aaP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/security,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"aaQ" = (
+/turf/simulated/open,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"aaR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/storage)
+"aaS" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"aaT" = (
+/obj/structure/sign/nosmoking_1{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/weapon/soap/nanotrasen,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"aaU" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"aaV" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"aaW" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"aaX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"aaY" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 9
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
"aaZ" = (
+/obj/structure/table/standard,
+/obj/item/device/defib_kit/loaded,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/surgery2)
"aba" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"abb" = (
-/obj/machinery/bodyscanner{
- dir = 8
- },
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"abc" = (
-/obj/machinery/body_scanconsole,
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"abd" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "surfmedint-a"
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/medical/patient_a)
-"abe" = (
-/turf/simulated/wall,
-/area/tether/surfacebase/reading_room)
-"abf" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
+/obj/machinery/light{
dir = 1
},
+/turf/simulated/open,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"abb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/table/standard,
+/obj/random/tetheraid,
+/obj/random/tetheraid,
+/obj/item/weapon/storage/secure/briefcase/ml3m_pack_med,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"abc" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"abd" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"abe" = (
+/obj/structure/closet,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/reading_room)
+/area/maintenance/lower/medsec_maintenance)
+"abf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"abg" = (
/obj/machinery/door/blast/shutters{
id = "hangarsurface";
@@ -467,12 +744,35 @@
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
"abh" = (
-/obj/machinery/camera/network/medbay{
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/medical_stand,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/structure/medical_stand,
+/obj/structure/medical_stand,
+/obj/structure/medical_stand,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"abi" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/turf/simulated/open,
-/area/tether/surfacebase/medical/triage)
-"abi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -485,24 +785,27 @@
/obj/effect/floor_decal/corner/red/bordercorner2{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/structure/sign/poster{
+ pixel_x = 32
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
"abj" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
+/area/tether/surfacebase/security/upperhall)
"abk" = (
/obj/machinery/firealarm{
layer = 3.3;
@@ -520,6 +823,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
/turf/simulated/floor/wood,
/area/maintenance/lower/medsec_maintenance)
"abm" = (
@@ -540,163 +846,133 @@
/turf/simulated/floor/wood,
/area/maintenance/lower/medsec_maintenance)
"abn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/effect/floor_decal/techfloor{
- dir = 6
- },
-/obj/effect/landmark{
- name = "morphspawn"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/triage)
+/obj/structure/railing,
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/tether/surfacebase/outside/outside3)
"abo" = (
-/obj/structure/bed/chair{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
-"abp" = (
-/obj/structure/bed/chair,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/pink/bordercorner2{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_a)
-"abq" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
-"abr" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 1
- },
+"abp" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
+"abq" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"abr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
-/obj/machinery/button/windowtint{
- id = "surfmedint-a";
- pixel_x = -12;
- pixel_y = 28
- },
-/obj/machinery/button/windowtint{
- id = "surfmedext-a";
- pixel_x = 12;
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_a)
-"abs" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/structure/disposalpipe/segment{
dir = 8
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 5
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 28
- },
/obj/structure/cable/green{
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_a)
+/area/tether/surfacebase/medical/triage)
+"abs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
"abt" = (
-/obj/structure/table/glass,
-/obj/item/device/flashlight/lamp/green,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"abu" = (
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"abv" = (
-/obj/structure/table/glass,
-/obj/item/roller,
-/obj/item/roller{
- pixel_y = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/roller{
- pixel_y = 16
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/machinery/light,
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- id = "surfmed";
- name = "Medical Shutters";
- pixel_y = -24;
- req_access = list(5)
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"abu" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ on = 0;
+ pixel_x = 24;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/weapon/soap/nanotrasen,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"abv" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"abw" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/obj/structure/table/glass,
-/obj/machinery/recharger,
+/obj/machinery/door/airlock/medical,
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"abx" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/random/action_figure,
-/obj/random/cigarettes,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"aby" = (
/obj/machinery/alarm{
pixel_y = 25
@@ -723,10 +999,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
+/obj/effect/floor_decal/corner/red/border{
dir = 1
},
/turf/simulated/floor/tiled,
@@ -744,121 +1017,208 @@
/turf/simulated/floor/plating,
/area/tether/surfacebase/surface_three_hall)
"abC" = (
-/obj/machinery/vending/snack{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
+/area/tether/surfacebase/security/iaa)
"abD" = (
-/obj/structure/bed/chair{
- dir = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"abE" = (
-/obj/structure/bed/chair{
+/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet/blue,
-/area/tether/surfacebase/security/breakroom)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"abF" = (
-/obj/machinery/status_display{
- pixel_x = 32
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
+/area/tether/surfacebase/security/iaa)
"abG" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
+/area/tether/surfacebase/security/iaa)
"abH" = (
-/obj/structure/railing{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/effect/floor_decal/borderfloor{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
+/area/tether/surfacebase/security/iaa)
"abI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"abJ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
},
/obj/machinery/alarm{
- dir = 8;
- pixel_x = 22
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
+/area/tether/surfacebase/security/iaa)
+"abJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
"abK" = (
-/obj/machinery/light{
- dir = 1
+/obj/machinery/computer/security,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 24
},
-/obj/structure/closet/l3closet/security,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"abL" = (
-/obj/structure/table/rack,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"abM" = (
-/obj/structure/table/rack,
-/obj/item/weapon/gun/energy/stunrevolver,
-/obj/machinery/firealarm{
- layer = 3.3;
- pixel_y = 26
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/weapon/gun/energy/stunrevolver,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"abN" = (
-/obj/structure/closet/bombclosetsecurity,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"abM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"abN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
"abO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
"abP" = (
/obj/machinery/alarm{
dir = 4;
@@ -876,188 +1236,261 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/medsec_maintenance)
"abS" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/steel,
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ desc = "Taste liberty";
+ name = "Cup of Liber-tea"
+ },
/turf/simulated/floor/plating,
/area/maintenance/lower/medsec_maintenance)
"abT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/clean,
-/obj/random/medical/lite,
-/obj/random/maintenance/medical,
-/obj/random/toy,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
-"abU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"abV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"abW" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"abU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"abX" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/red/border{
dir = 4
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"abV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 28
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
},
/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"abW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"abX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
/area/tether/surfacebase/security/breakroom)
"abY" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
"abZ" = (
-/obj/structure/railing{
- dir = 1
+/obj/machinery/vending/wallmed1{
+ pixel_x = 32
},
+/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
- dir = 1
+ dir = 4
},
/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/landmark{
- name = "lightsout"
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
"aca" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "surfmedext-a"
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
},
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"acb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 4
},
/turf/simulated/floor/plating,
-/area/tether/surfacebase/medical/patient_a)
-"acb" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"acc" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"acd" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/triage)
-"ace" = (
-/obj/machinery/atmospherics/unary/freezer,
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/triage)
-"acf" = (
-/turf/simulated/wall/r_wall,
-/area/rnd/xenobiology/xenoflora)
-"acg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/button/remote/airlock{
- id = "ReadingRoom1";
- name = "Room 1 Bolt";
- pixel_x = -30;
- specialfunctions = 4
- },
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"ach" = (
-/obj/machinery/alarm{
- dir = 8;
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
pixel_x = 24
},
-/obj/structure/bed/chair/comfy/black{
- dir = 1
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"acd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"aci" = (
-/obj/machinery/light/small{
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
+"ace" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"acf" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/xenobiology/xenoflora)
+"acg" = (
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/medical/chemistry)
+"ach" = (
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
+"aci" = (
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre 2";
+ req_access = list(45)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
"acj" = (
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_hallway)
@@ -1107,77 +1540,104 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"aco" = (
-/obj/structure/railing{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/effect/floor_decal/borderfloor{
- dir = 1
+ dir = 8
},
/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
+/area/tether/surfacebase/security/iaa)
"acp" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/machinery/light{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
"acq" = (
+/obj/machinery/vending/security{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
+/area/tether/surfacebase/security/upperhall)
"acr" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"acs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"act" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/red/border{
dir = 4
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"acu" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/machinery/light{
- dir = 4
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"acs" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"act" = (
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"acu" = (
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_mob/vore/aggressive/mimic,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
+/area/tether/surfacebase/security/iaa)
"acv" = (
/obj/structure/table/rack,
/obj/random/tetheraid,
@@ -1190,22 +1650,54 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/medsec_maintenance)
"acx" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30
+/obj/structure/table/glass,
+/obj/item/device/radio{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/device/radio{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"acy" = (
-/obj/structure/lattice,
-/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 32;
- d2 = 2;
- icon_state = "32-2"
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/open,
-/area/maintenance/lower/medsec_maintenance)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"acy" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/surgery2)
"acz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"acA" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Internal Affairs"
+ },
+/obj/machinery/door/firedoor/multi_tile,
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -1213,329 +1705,281 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"acA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
+/area/tether/surfacebase/security/iaa)
"acB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
+/area/tether/surfacebase/security/iaa)
"acC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/item/weapon/pen/multi,
+/obj/random/tetheraid,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"acD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/effect/floor_decal/corner/red/border{
dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"acE" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Break Room";
- req_access = list(63)
+/area/tether/surfacebase/security/upperhall)
+"acD" = (
+/obj/structure/table/steel,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/packageWrap,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = -30
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"acF" = (
-/obj/structure/table/rack,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/power/apc{
+/area/tether/surfacebase/security/upperhall)
+"acE" = (
+/obj/machinery/computer/secure_data,
+/obj/item/device/radio/intercom/department/security{
dir = 1;
- name = "north bump";
- pixel_y = 28
+ pixel_y = 24
},
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
+"acF" = (
+/obj/structure/closet/secure_closet/hos2,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"acG" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
+/obj/structure/table/steel,
+/obj/item/weapon/folder/red,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
"acH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/table/steel,
+/obj/machinery/photocopier/faxmachine{
+ department = "Security"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
"acI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
"acJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
"acK" = (
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/command_guide,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
+"acL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"acM" = (
+/obj/structure/railing,
+/obj/machinery/light,
+/turf/simulated/open,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"acN" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"acO" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"acP" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"acQ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"acR" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"acS" = (
+/obj/machinery/vending/wallmed1{
+ pixel_x = -30
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/structure/filingcabinet/chestdrawer{
+ name = "Scan Records"
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"acT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"acL" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"acM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
-"acN" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"acO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"acP" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"acQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"acR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"acU" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
},
-/obj/machinery/light_switch{
- dir = 1;
- on = 0;
- pixel_x = -10;
- pixel_y = -24
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/machinery/light{
+ dir = 1
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_a)
-"acS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/button/remote/airlock{
- id = "ReadingRoom2";
- name = "Room 2 Bolt";
- pixel_x = -30;
- specialfunctions = 4
- },
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"acT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/button/remote/airlock{
- id = "ReadingRoom3";
- name = "Room 3 Bolt";
- pixel_x = -30;
- specialfunctions = 4
- },
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"acU" = (
-/obj/machinery/door/airlock{
- id_tag = "ReadingRoom1";
- name = "Room 1"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/area/tether/surfacebase/medical/storage)
"acV" = (
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora)
"acW" = (
-/obj/machinery/atmospherics/pipe/cap/visible/scrubbers,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_site/gateway)
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
"acX" = (
-/obj/structure/cable/green{
+/obj/machinery/photocopier,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/cap/visible/supply,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_site/gateway)
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"acY" = (
/obj/effect/floor_decal/spline/plain{
dir = 5
@@ -1550,301 +1994,41 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"ada" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
-"adb" = (
-/obj/machinery/light_switch{
- pixel_x = 25
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
-"adc" = (
-/obj/machinery/vending/medical{
- dir = 4
- },
/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
+ dir = 10
},
/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
dir = 9
},
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/vitals_monitor,
+/obj/machinery/vitals_monitor,
+/obj/machinery/light,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"adb" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"adc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"add" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"ade" = (
-/obj/machinery/door/airlock/security{
- name = "Equipment Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/armory)
-"adf" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/item/device/retail_scanner/security,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"adg" = (
-/obj/structure/table/steel,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"adh" = (
-/obj/machinery/vending/cola{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/camera/network/security{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"adi" = (
-/obj/machinery/vending/coffee{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"adj" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"adk" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"adl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"adm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"adn" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"ado" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"adp" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"adq" = (
-/obj/structure/flora/pottedplant/stoutbush,
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/breakroom)
-"adr" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/wardrobe/red,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"ads" = (
-/obj/item/weapon/tool/screwdriver,
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
-"adt" = (
-/obj/structure/closet,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
-"adu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/pink/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2,
-/obj/effect/floor_decal/corner/pink/bordercorner2,
-/obj/machinery/light/small,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_a)
-"adv" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/vending/wallmed1{
- pixel_y = -30
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_a)
-"adw" = (
-/obj/effect/floor_decal/borderfloorwhite/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"adx" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/evidence,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"ady" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -1852,89 +2036,492 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"ade" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"adf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"adg" = (
+/obj/structure/table/steel,
+/obj/item/device/camera,
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/item/device/retail_scanner/security,
+/obj/item/device/taperecorder,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"adh" = (
+/obj/machinery/papershredder,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa/officecommon)
+"adi" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.8;
+ name = "Security";
+ req_one_access = list(38,63)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"adj" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"adk" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/button/windowtint{
+ id = "iaal";
+ pixel_x = 25;
+ pixel_y = 7
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"adl" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"adm" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"adn" = (
+/obj/machinery/door/airlock/glass_security,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"ado" = (
+/obj/structure/table/reinforced,
+/obj/item/device/radio{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/device/radio{
+ pixel_x = -4
+ },
+/obj/machinery/recharger,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"adp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"adq" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/breakroom)
+"adr" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"ads" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"adt" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/vacant/vacant_shop)
+"adu" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/computer/guestpass{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"adv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"adw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/vending/medical{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"adx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/device/flashlight/lamp/green,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"ady" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"adz" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals6,
-/obj/machinery/button/remote/airlock{
- desc = "A remote control switch for the medbay foyer.";
- id = "SurfMedbayFoyer";
- name = "Medbay Doors Control";
- pixel_x = 20;
- pixel_y = -26
+/obj/structure/table/glass,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/backup_implanter{
+ pixel_y = -12
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -5
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 2
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 9
+ },
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"adA" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
},
-/obj/effect/floor_decal/borderfloorwhite/corner2,
-/obj/effect/floor_decal/corner/paleblue/bordercorner2,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/machinery/button/windowtint/multitint{
+ id = "medbayfoyer";
+ pixel_x = -8;
+ pixel_y = -24
},
-/obj/random/tetheraid,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"adB" = (
-/obj/machinery/firealarm{
- layer = 3.3;
- pixel_y = 26
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
"adC" = (
-/obj/structure/table/glass,
-/obj/item/weapon/book/codex,
-/obj/machinery/recharger,
-/obj/machinery/newscaster{
- pixel_y = -28
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
"adD" = (
-/obj/machinery/light_switch{
- pixel_y = 25
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
"adE" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 28
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
},
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/window/eastleft{
+ req_access = list(5)
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
"adF" = (
-/obj/structure/table/glass,
-/obj/machinery/photocopier/faxmachine{
- department = "Reading Room"
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/status_display{
- pixel_y = 30
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/camera/network/civilian{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
"adG" = (
/obj/structure/catwalk,
/turf/simulated/open/virgo3b,
@@ -1973,123 +2560,135 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"adL" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/effect/floor_decal/rust,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
+/area/rnd/research_storage)
"adM" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/spray/cleaner{
- pixel_x = -1;
- pixel_y = -2
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/effect/floor_decal/borderfloorwhite{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 8
},
-/obj/effect/floor_decal/corner/paleblue/border{
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"adN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"adO" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/briefingroom)
+"adP" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
+/obj/item/device/flashlight/lamp/green,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"adQ" = (
+/obj/structure/table/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
/obj/machinery/light_switch{
- pixel_x = -25
+ dir = 8;
+ pixel_x = 28
},
-/obj/item/device/defib_kit/loaded,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"adN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"adO" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/armory)
-"adP" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/common)
-"adQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/upperhall)
-"adR" = (
-/obj/machinery/door/airlock/glass_security{
- id_tag = "SurfaceBrigAccess";
- layer = 2.8;
- name = "Security";
- req_access = list(63)
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"adR" = (
+/turf/simulated/wall,
/area/tether/surfacebase/security/upperhall)
"adS" = (
-/obj/machinery/door/airlock/glass_security{
- id_tag = "SurfaceBrigAccess";
- layer = 2.8;
- name = "Security";
- req_access = list(63)
- },
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
"adT" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/breakroom)
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"adU" = (
-/obj/structure/table/reinforced,
-/obj/effect/landmark{
- name = "lightsout"
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/evidence,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"adV" = (
-/obj/structure/ladder,
-/obj/effect/floor_decal/industrial/outline/blue,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
-"adW" = (
-/turf/simulated/wall,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"adX" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/secure_closet/security,
-/obj/item/device/holowarrant,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"adY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+"adV" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/radiation,
+/obj/item/clothing/head/radiation,
+/obj/item/bodybag/cryobag{
+ pixel_x = -2;
+ pixel_y = -2
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"adZ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/bodybag/cryobag{
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/item/weapon/storage/toolbox/emergency{
+ pixel_x = 2;
+ pixel_y = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
-"aea" = (
-/obj/structure/table/glass,
/obj/machinery/light{
dir = 8
},
@@ -2099,78 +2698,23 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 8
},
-/obj/item/device/radio/intercom/department/medbay{
- dir = 8;
- pixel_x = -24
+/obj/item/weapon/storage/box/lights/mixed{
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -2
},
-/obj/machinery/recharger,
-/obj/item/weapon/tool/screwdriver,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aeb" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/item/device/retail_scanner/security,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"aec" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/syringes,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Medical Department";
- departmentType = 3;
- name = "Medical RC";
- pixel_x = -30
- },
-/obj/machinery/camera/network/medbay{
- dir = 10
- },
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/device/sleevemate,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aed" = (
+/area/tether/surfacebase/medical/storage)
+"adW" = (
/turf/simulated/wall,
-/area/tether/surfacebase/medical/patient_b)
-"aee" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/tether/surfacebase/security/processing)
+"adX" = (
+/obj/machinery/camera/network/security,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/multi_tile/glass{
- id_tag = "SurfMedbayFoyer";
- name = "Infirmary";
- req_access = list(5)
- },
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 8
- },
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "surfmed";
- layer = 3.1;
- name = "Medical Shutters"
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 8
- },
-/area/tether/surfacebase/medical/triage)
-"aef" = (
-/obj/machinery/papershredder,
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -2178,16 +2722,98 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/area/tether/surfacebase/security/lobby)
+"adY" = (
+/obj/structure/table/steel,
+/obj/item/weapon/folder/red,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"adZ" = (
+/obj/machinery/light_switch{
+ pixel_x = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/medsec_maintenance)
+"aea" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"aeb" = (
+/obj/structure/table/steel,
+/obj/item/weapon/folder/red,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"aec" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/loading,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"aed" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"aee" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 5;
+ pixel_y = -25
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -10;
+ pixel_y = -30
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
+"aef" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
"aeg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"aeh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -2196,46 +2822,78 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"aeh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/standard,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/weapon/storage/box/syringes{
+ pixel_y = 9
+ },
+/obj/item/weapon/storage/box/syringes{
+ pixel_y = 9
+ },
+/obj/random/medical,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 14;
+ pixel_y = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aei" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/newscaster{
+ pixel_y = 30
},
/obj/structure/cable/green{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
"aej" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
"aek" = (
-/obj/structure/table/glass,
-/obj/item/weapon/pen,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
"ael" = (
/obj/effect/floor_decal/corner_oldtile/green{
dir = 9
@@ -2264,74 +2922,59 @@
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
"aep" = (
-/obj/random/maintenance/security,
-/obj/random/maintenance/security,
-/obj/random/maintenance/security,
-/mob/living/simple_mob/vore/aggressive/mimic,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
-"aeq" = (
-/obj/structure/table/steel,
-/obj/item/weapon/folder/red{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/weapon/folder/red,
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = 27
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"aer" = (
-/obj/machinery/computer/secure_data,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/item/device/radio/intercom/department/security{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"aes" = (
-/obj/structure/table/steel,
-/obj/item/device/flashlight/lamp,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"aet" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
/obj/machinery/firealarm{
- layer = 3.3;
pixel_y = 26
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"aeu" = (
+/area/tether/surfacebase/security/lobby)
+"aeq" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/camera/network/security,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa/officecommon)
+"aer" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa/officecommon)
+"aes" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
/obj/structure/cable/green{
icon_state = "0-2"
},
@@ -2341,114 +2984,187 @@
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 28
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"aev" = (
-/obj/structure/flora/pottedplant/stoutbush,
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
+/area/tether/surfacebase/security/lobby)
+"aet" = (
/obj/machinery/firealarm{
layer = 3.3;
pixel_y = 26
},
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/structure/closet/walllocker_double{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/random/drinkbottle,
+/obj/item/device/camera_film,
+/obj/item/device/tape/random,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/iaa/officecommon)
+"aeu" = (
+/obj/machinery/atmospherics/pipe/zpipe/up,
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "16-0"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/disposalpipe/up{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/rnd/research_storage)
+"aev" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
"aew" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 30
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/processing)
"aex" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/processing)
"aey" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security/polarized{
+ id_tint = "sec_processing";
+ name = "Security Processing";
+ req_access = list(63)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/security/processing)
"aez" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"aeA" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ id_tag = null;
+ name = "Medbay Airlock";
+ req_access = list(5);
+ req_one_access = list(5)
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"aeB" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"aeA" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/machinery/reagentgrinder,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"aeB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/red/border{
dir = 4
},
-/obj/machinery/camera/network/security{
- dir = 8
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"aeC" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"aeC" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 28
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
+/area/tether/surfacebase/security/briefingroom)
"aeD" = (
/obj/effect/floor_decal/techfloor{
- dir = 8
+ dir = 9
},
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/structure/table/steel,
-/obj/random/tech_supply,
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/medsec_maintenance)
"aeE" = (
@@ -2473,99 +3189,77 @@
/turf/simulated/wall,
/area/tether/surfacebase/medical/lobby)
"aeH" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aeI" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/secure_closet/security,
-/obj/item/device/holowarrant,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"aeJ" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"aeK" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/remote/airlock{
- id = "SurfaceFoyer";
- name = "Brig Foyer";
- pixel_y = -6;
- req_access = list(1)
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/button/remote/airlock{
- id = "SurfaceBrigAccess";
- name = "Brig Access";
- pixel_y = 6;
- req_access = list(1)
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"aeL" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lobby)
-"aeM" = (
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/junction,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 4
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aeI" = (
+/obj/structure/table/bench/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"aeJ" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/lobby)
+"aeK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/rnd/research_storage)
+"aeL" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lobby)
+/area/tether/surfacebase/medical/admin)
+"aeM" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
"aeN" = (
-/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/borderfloorwhite{
dir = 5
},
@@ -2578,61 +3272,122 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 4
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"aeO" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
"aeP" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Medical Storage";
+ sortType = "Medical Storage"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
"aeQ" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"aeR" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"aeS" = (
-/obj/structure/bookcase,
-/obj/machinery/light/small,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"aeT" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/device/radio/intercom{
- pixel_y = -24
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"aeR" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/masks,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"aeS" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/device/healthanalyzer,
+/obj/machinery/alarm{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"aeT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
"aeU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -2643,13 +3398,29 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"aeV" = (
-/obj/structure/table/glass,
-/obj/item/device/flashlight/lamp/green,
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/triage)
"aeW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
@@ -2687,52 +3458,38 @@
/turf/simulated/floor/grass,
/area/hydroponics)
"afa" = (
-/obj/machinery/door/airlock/maintenance/medical{
- name = "Medical Maintenance Access";
- req_access = list(5)
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/medical/triage)
-"afb" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = -32
},
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/admin)
+"afb" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
"afc" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/processing)
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/iaa/officecommon)
"afd" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
@@ -2820,43 +3577,73 @@
/turf/simulated/open,
/area/tether/surfacebase/surface_three_hall)
"afl" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 30;
- pixel_y = -4
+/obj/structure/bed/chair{
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"afm" = (
-/obj/random/maintenance/security,
-/obj/random/mre/dessert,
-/obj/item/toy/bosunwhistle,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/medsec_maintenance)
-"afn" = (
-/obj/structure/table/steel,
-/obj/item/device/camera,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/item/device/retail_scanner/security,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"afo" = (
-/obj/structure/bed/chair/office/dark{
+/area/tether/surfacebase/security/briefingroom)
+"afm" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"afn" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Security Officer"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
+/area/tether/surfacebase/security/iaa/officecommon)
+"afo" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa/officecommon)
"afp" = (
/obj/machinery/firealarm{
layer = 3.3;
@@ -2887,14 +3674,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/lobby)
"aft" = (
/obj/structure/cable/green{
d1 = 4;
@@ -2907,17 +3690,79 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/lobby)
"afu" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
/obj/structure/cable/green{
- d1 = 4;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"afv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"afw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"afx" = (
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre 2";
+ req_access = list(45)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2926,64 +3771,19 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"afv" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"afw" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"afx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/surgery1)
"afy" = (
-/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
/obj/structure/window/reinforced/polarized/full{
- id = "surfmedint-b"
+ id = "surfsurgery2"
},
/turf/simulated/floor/plating,
-/area/tether/surfacebase/medical/patient_b)
+/area/tether/surfacebase/medical/surgery1)
"afz" = (
/obj/structure/bed/chair/office/light,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -2993,100 +3793,111 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"afA" = (
-/obj/structure/bed/chair,
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 6;
+ pixel_y = -22
},
-/obj/effect/floor_decal/corner/pink/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/pink/bordercorner2{
- dir = 10
+/obj/machinery/button/windowtint{
+ id = "surfsurgery2";
+ pixel_x = -3;
+ pixel_y = -22
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_b)
+/area/tether/surfacebase/medical/surgery1)
"afB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"afC" = (
-/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"afD" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/effect/floor_decal/borderfloorwhite{
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/effect/floor_decal/corner/pink/border{
- dir = 1
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
},
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/button/windowtint{
- id = "surfmedint-b";
- pixel_x = -12;
- pixel_y = 28
- },
-/obj/machinery/button/windowtint{
- id = "surfmedext-b";
- pixel_x = 12;
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_b)
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/triage)
"afE" = (
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/item/roller{
+ pixel_y = 16
+ },
/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/light{
dir = 8
},
/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 5
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 28
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_b)
-"afF" = (
-/obj/machinery/disposal,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
+ dir = 8
},
/obj/effect/floor_decal/corner/paleblue/border{
- dir = 9
+ dir = 8
},
-/obj/structure/disposalpipe/trunk{
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"afF" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/status_display{
- pixel_y = 30
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
},
-/obj/machinery/camera/network/medbay{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ dir = 1;
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ pixel_x = -10;
+ pixel_y = 28
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
@@ -3094,23 +3905,41 @@
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/tether/surfacebase/reading_room)
+/area/tether/surfacebase/medical/triage)
"afH" = (
-/obj/machinery/door/airlock{
- name = "Reading Room"
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 4
},
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/surfacebase/reading_room)
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"afI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -3127,28 +3956,22 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"afJ" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/reading_room)
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"afK" = (
/turf/simulated/wall,
/area/rnd/staircase/thirdfloor)
"afL" = (
-/obj/machinery/atmospherics/pipe/zpipe/up,
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
-/obj/machinery/atmospherics/pipe/zpipe/up/supply,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "16-0"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/up{
- dir = 8
- },
+/obj/effect/floor_decal/rust,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
"afM" = (
@@ -3182,18 +4005,23 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
"afR" = (
-/obj/effect/floor_decal/borderfloor{
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/obj/structure/bed/chair{
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/obj/machinery/flasher{
- id = "Drunk Tank";
- pixel_x = -28
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
"afS" = (
/turf/simulated/wall/r_wall,
/area/rnd/xenobiology/xenoflora_storage)
@@ -3211,51 +4039,62 @@
/turf/simulated/floor/grass,
/area/hydroponics)
"afU" = (
-/obj/machinery/door/airlock/security{
- name = "Security Processing";
- req_access = list(63)
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel_grid,
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
"afV" = (
-/obj/structure/table/reinforced,
-/obj/item/device/radio/headset/headset_sec,
-/obj/item/device/radio/headset/headset_sec,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
+/obj/effect/floor_decal/rust,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/research_storage)
"afW" = (
/obj/effect/floor_decal/techfloor{
dir = 8
},
-/obj/structure/table/steel,
-/obj/item/weapon/reagent_containers/food/drinks/cup{
- desc = "Taste liberty";
- name = "Cup of Liber-tea"
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/tech_supply,
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 4
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/medsec_maintenance)
"afX" = (
-/obj/machinery/door/airlock{
- id_tag = "ReadingRoom2";
- name = "Room 2"
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
},
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"afY" = (
/obj/machinery/atmospherics/pipe/manifold/visible,
/obj/machinery/meter,
@@ -3268,178 +4107,196 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"aga" = (
-/obj/structure/table/glass,
-/obj/item/weapon/backup_implanter{
- pixel_y = 8
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"agb" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/weapon/backup_implanter{
- pixel_y = -8
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
},
-/obj/item/weapon/backup_implanter,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"agc" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"agd" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"age" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Internal Affairs"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa/officecommon)
+"agf" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"agg" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"agh" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"agi" = (
+/obj/structure/filingcabinet/medical{
+ desc = "A large cabinet with hard copy medical records.";
+ name = "Medical Records"
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"agj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"agk" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 8
},
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -30
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
},
-/obj/structure/cable/green,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"agb" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/clothing/accessory/badge/holo,
-/obj/item/clothing/accessory/badge/holo,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/item/clothing/accessory/badge/holo/cord,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"agc" = (
-/obj/structure/table/reinforced,
-/obj/item/device/radio/headset/headset_sec/alt,
-/obj/item/device/radio/headset/headset_sec/alt,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"agd" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
+/obj/item/roller{
+ pixel_y = 16
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"age" = (
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"agf" = (
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/light{
dir = 8
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/obj/machinery/camera/network/security{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"agg" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"agh" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"agi" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "surfmedext-b"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/medical/patient_b)
-"agj" = (
+/obj/structure/window/reinforced,
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/door/window/southleft{
- req_access = list(5)
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lobby)
-"agk" = (
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/window/southright{
- req_access = list(5)
- },
-/obj/item/weapon/backup_implanter,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"agl" = (
+/obj/machinery/door/window/southleft{
+ req_access = list(5)
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"agm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"agn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "surfmed";
- layer = 3.1;
- name = "Medical Shutters"
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
},
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"ago" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
@@ -3450,34 +4307,18 @@
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 9
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
- dir = 1
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"agq" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"agr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -3539,13 +4380,13 @@
/turf/simulated/floor/plating,
/area/tether/surfacebase/surface_three_hall)
"agy" = (
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/steel,
+/obj/item/weapon/storage/bag/circuits/basic,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
-/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
@@ -3615,14 +4456,6 @@
/turf/simulated/open,
/area/rnd/research_storage)
"agD" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/steel,
-/obj/item/weapon/storage/bag/circuits/basic,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
@@ -3661,67 +4494,80 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"agG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/machinery/computer/secure_data{
+ pixel_y = -4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/lobby)
"agH" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"agI" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
-"agJ" = (
-/obj/effect/floor_decal/techfloor{
dir = 8
},
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
},
-/obj/structure/table/rack,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/medical,
-/obj/random/tech_supply,
-/turf/simulated/floor/tiled/techfloor/grid,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"agI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/briefingroom)
+"agJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ d1 = 32;
+ d2 = 4;
+ icon_state = "32-4"
+ },
+/turf/simulated/open,
/area/maintenance/lower/medsec_maintenance)
"agK" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/techfloor/corner,
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/medsec_maintenance)
"agL" = (
-/obj/structure/bed/chair{
- dir = 4
- },
/obj/structure/cable/green{
d2 = 8;
icon_state = "0-8"
@@ -3730,153 +4576,181 @@
name = "south bump";
pixel_y = -28
},
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/medical,
+/obj/structure/closet,
+/obj/effect/floor_decal/techfloor,
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/medsec_maintenance)
"agM" = (
/obj/effect/floor_decal/techfloor{
dir = 6
},
-/obj/effect/decal/cleanable/vomit,
-/obj/structure/table,
-/obj/random/tech_supply,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/medsec_maintenance)
"agN" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"agO" = (
-/obj/structure/table/steel,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/machinery/photocopier,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
},
-/obj/item/weapon/pen,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
+/area/tether/surfacebase/security/iaa/officecommon)
"agP" = (
-/obj/machinery/computer/secure_data,
-/obj/effect/floor_decal/borderfloor{
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/machinery/door/window/brigdoor/eastright{
dir = 1
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
+/obj/machinery/recharger,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/area/tether/surfacebase/security/lobby)
"agQ" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/floor_decal/borderfloor{
- dir = 10
+/obj/structure/grille,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
+/obj/structure/window/reinforced/polarized/full{
+ id = "hos_office"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/hos)
"agR" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
"agS" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
+/obj/structure/bed/chair,
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
"agT" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"agU" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/light,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/weapon/storage/box/donut,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"agV" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/area/tether/surfacebase/security/lobby)
+"agU" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"agW" = (
+/area/tether/surfacebase/security/lobby)
+"agV" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/lobby)
+"agW" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"agX" = (
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"agY" = (
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lobby)
+/area/tether/surfacebase/medical/triage)
"agZ" = (
-/obj/structure/table/steel,
-/obj/item/weapon/tool/wrench,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/techfloor{
- dir = 9
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
-/turf/simulated/floor/tiled/dark,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"aha" = (
/obj/effect/floor_decal/borderfloor{
@@ -3894,16 +4768,20 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"ahb" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Medical Storage";
+ sortType = "Medical Storage"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
"ahc" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -3945,7 +4823,6 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"ahg" = (
-/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/obj/structure/railing,
/obj/structure/disposalpipe/segment,
@@ -3996,7 +4873,6 @@
name = "west bump";
pixel_x = -28
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
"ahl" = (
@@ -4014,30 +4890,31 @@
/area/tether/surfacebase/surface_three_hall)
"ahm" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
"ahn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/rnd/research_storage)
+"aho" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"aho" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/rnd/research_storage)
"ahp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -4083,43 +4960,31 @@
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
"ahu" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/table/bench/steel,
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/corner/red/border{
dir = 4
},
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/lobby)
"ahv" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/door/airlock/security{
+ name = "Internal Affairs";
+ req_access = list(38);
+ req_one_access = newlist()
},
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
-"ahw" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/cable/green,
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
@@ -4127,62 +4992,87 @@
name = "Security Blast Doors";
opacity = 0
},
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/processing)
-"ahx" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/frontdesk)
-"ahy" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Front Desk";
- req_access = list(63)
- },
/obj/structure/cable/green{
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa/officecommon)
+"ahw" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.8;
+ name = "Security";
+ req_one_access = list(38,63)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"ahz" = (
-/obj/machinery/door/airlock{
- id_tag = "ReadingRoom3";
- name = "Room 3"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"ahx" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"ahy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
-"ahA" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/structure/bed/chair/office/dark,
+/obj/effect/floor_decal/corner/red{
+ dir = 6
},
-/obj/machinery/firealarm{
- layer = 3.3;
- pixel_y = 26
+/obj/effect/floor_decal/corner/red{
+ dir = 9
},
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/area/tether/surfacebase/security/lobby)
+"ahz" = (
+/obj/structure/window/reinforced,
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"ahA" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
"ahB" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -4206,16 +5096,14 @@
/area/tether/surfacebase/surface_three_hall)
"ahC" = (
/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/area/tether/surfacebase/security/lobby)
"ahD" = (
/obj/structure/closet/crate,
/obj/random/maintenance/medical,
@@ -4237,97 +5125,117 @@
/obj/machinery/light/small{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/medsec_maintenance)
+"ahF" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"ahG" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/security/lobby)
+"ahH" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/security/lobby)
+"ahI" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"ahJ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
-"ahF" = (
-/obj/machinery/photocopier,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"ahG" = (
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
-"ahH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
-"ahI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/junction,
/obj/machinery/hologram/holopad,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"ahJ" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/random/tetheraid,
-/obj/machinery/vending/wallmed1{
- pixel_x = 32
- },
-/obj/random/tetheraid,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/upperhall)
"ahK" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"ahL" = (
@@ -4348,63 +5256,64 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"ahN" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals6,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"ahO" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/random/medical{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"ahP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"ahQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/medical{
- name = "Patient Room B";
- req_one_access = list()
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_b)
-"ahP" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/machinery/station_map{
- dir = 4;
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
-"ahQ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/item/device/radio/beacon,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/area/tether/surfacebase/medical/admin)
"ahR" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
@@ -4438,53 +5347,70 @@
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
"ahV" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 28
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/airlock{
+ id = "BrigFoyer";
+ name = "Brig Foyer";
+ pixel_x = -6;
+ req_access = list(1)
},
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
+/obj/effect/floor_decal/corner/red{
+ dir = 6
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"ahW" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
+/obj/effect/floor_decal/corner/red{
+ dir = 9
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
+/obj/item/weapon/paper_bin{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"ahW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"ahX" = (
/obj/structure/table/reinforced,
-/obj/effect/floor_decal/borderfloor{
- dir = 5
+/obj/effect/floor_decal/corner/red{
+ dir = 6
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
+/obj/effect/floor_decal/corner/red{
+ dir = 9
},
-/obj/item/weapon/storage/box/donut,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/eastright{
+ dir = 8
+ },
+/obj/machinery/door/window/westleft{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/area/tether/surfacebase/security/lobby)
"ahY" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -4492,71 +5418,35 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"ahZ" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/light_switch{
- name = "light switch ";
- pixel_y = 26
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"aia" = (
/obj/structure/disposalpipe/segment{
- dir = 4;
+ dir = 2;
icon_state = "pipe-c"
},
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/area/tether/surfacebase/security/lobby)
+"aia" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
"aib" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -4578,72 +5468,96 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/medsec_maintenance)
"aie" = (
-/obj/structure/closet,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/medical,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
-"aif" = (
-/obj/effect/floor_decal/techfloor{
- dir = 5
- },
-/obj/structure/closet/firecloset,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/medical,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
-"aig" = (
-/obj/structure/bed/chair/office/light,
-/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/effect/landmark/start{
name = "Medical Doctor"
},
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- id = "surfmed";
- name = "Medical Shutters";
- pixel_x = -16;
- pixel_y = -24;
- req_access = list(5)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"aif" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 32
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = -8
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"aih" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+"aig" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"aih" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/machinery/light_switch{
- dir = 1;
- on = 0;
- pixel_x = -10;
- pixel_y = -24
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_b)
+/area/tether/surfacebase/medical/triage)
"aii" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
dir = 4
},
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/monofloor{
dir = 4
},
@@ -4681,23 +5595,25 @@
dir = 8;
pixel_x = -24
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
-"aim" = (
-/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"aim" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"ain" = (
/obj/structure/cable/green{
d1 = 2;
@@ -4822,50 +5738,34 @@
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
"aiz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/research_storage)
+"aiA" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/obj/machinery/vending/assist{
dir = 4
},
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"aiA" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/rnd/research_storage)
"aiB" = (
-/obj/effect/floor_decal/borderfloorwhite{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/effect/floor_decal/corner/paleblue/border{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/window/eastleft{
- req_access = list(5)
- },
+/obj/effect/floor_decal/corner/paleblue/full,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lobby)
+/area/tether/surfacebase/medical/triage)
"aiC" = (
/obj/structure/disposalpipe/junction{
dir = 4;
@@ -4955,7 +5855,10 @@
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/borderfloor/corner2,
/obj/effect/floor_decal/corner/lightgrey/bordercorner2,
-/obj/machinery/door/firedoor/glass/hidden/steel{
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
/turf/simulated/floor/tiled,
@@ -4965,111 +5868,66 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
"aiL" = (
-/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/surface_three_hall)
-"aiM" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
-"aiN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
-"aiO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
-"aiP" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_x = 25
- },
-/obj/item/weapon/storage/firstaid/regular,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"aiQ" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"aiR" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner,
-/obj/effect/floor_decal/corner/red/bordercorner,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"aiS" = (
-/obj/structure/table/reinforced,
-/obj/item/device/radio{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/device/radio{
- pixel_x = -4
- },
-/obj/machinery/alarm{
- alarm_id = "anomaly_testing";
- breach_detection = 0;
- dir = 8;
- pixel_x = 22;
- report_danger_level = 0
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"aiT" = (
/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/camera/network/security{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"aiM" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/security/lobby)
+"aiN" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"aiO" = (
+/obj/machinery/door_timer/cell_3{
+ id = "Cell A";
+ name = "Cell A";
+ pixel_y = -32
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -5077,57 +5935,132 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"aiU" = (
-/obj/machinery/computer/security{
- dir = 4
- },
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"aiV" = (
+/area/tether/surfacebase/security/upperhall)
+"aiP" = (
/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
-"aiW" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/tether/surfacebase/security/upperhall)
+"aiQ" = (
+/obj/structure/window/reinforced{
dir = 4
},
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"aiR" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"aiS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"aiT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals6,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/area/tether/surfacebase/security/lobby)
+"aiU" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/security/lobby)
+"aiV" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"aiW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/lobby)
"aiX" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"aiY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/effect/floor_decal/techfloor{
dir = 8
},
/obj/structure/cable/green{
icon_state = "1-2"
},
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/medsec_maintenance)
"aiZ" = (
@@ -5138,21 +6071,11 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"aja" = (
-/obj/machinery/computer/crew{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Medical Department";
- departmentType = 3;
- name = "Medical RC";
- pixel_x = -30
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 8;
+ pixel_x = -4;
+ pixel_y = 4
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
@@ -5209,30 +6132,30 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"ajf" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
+/obj/structure/window/reinforced,
+/obj/structure/filingcabinet/chestdrawer{
+ name = "Medical Forms"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
"ajg" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"ajh" = (
/obj/machinery/light{
dir = 1
@@ -5247,6 +6170,11 @@
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aji" = (
@@ -5263,6 +6191,11 @@
/obj/effect/floor_decal/industrial/danger{
dir = 1
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"ajj" = (
@@ -5281,20 +6214,31 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"ajk" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/bordercorner{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
"ajl" = (
/obj/structure/bed/padded,
/obj/effect/floor_decal/techfloor{
@@ -5418,21 +6362,29 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"ajy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/table/steel,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/item/device/gps/science,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
"ajz" = (
-/obj/structure/flora/tree/sif,
-/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/surface_three_hall)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/southleft{
+ dir = 1;
+ id = "Cell B";
+ name = "Cell B";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "techmaint"
+ },
+/area/tether/surfacebase/security/upperhall)
"ajA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -5532,22 +6484,30 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"ajI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/up{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/railing{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
+/obj/structure/table/steel,
+/obj/effect/floor_decal/rust,
+/obj/item/device/gps/science,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
"ajJ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/southleft{
+ dir = 1;
+ id = "Cell A";
+ name = "Cell A";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "techmaint"
+ },
+/area/tether/surfacebase/security/upperhall)
"ajK" = (
/obj/machinery/alarm{
pixel_y = 22
@@ -5558,25 +6518,27 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
"ajL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Security Lobby"
},
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals_central1{
dir = 8
},
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/monofloor{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/lobby)
"ajM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5587,82 +6549,53 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"ajN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/computer/secure_data{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"ajO" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"ajP" = (
/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/vending/security{
dir = 8
},
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/upperhall)
+"ajO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/steeldecal/steel_decals_central1{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/monofloor{
+ dir = 4
+ },
+/area/tether/surfacebase/security/lobby)
+"ajP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"ajQ" = (
+/obj/structure/bed/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/upperhall)
"ajR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -5676,17 +6609,12 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"ajS" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
-"ajT" = (
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/security/lobby)
+"ajT" = (
+/obj/structure/sign/directions/evac,
+/turf/simulated/wall,
+/area/tether/surfacebase/security/lobby)
"ajU" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
@@ -5749,6 +6677,11 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"aka" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -5758,22 +6691,27 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
"akb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"akc" = (
/obj/structure/cable/green{
d1 = 1;
@@ -5786,10 +6724,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"akd" = (
@@ -5809,22 +6743,16 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"ake" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/computer/security/telescreen/entertainment{
- desc = "Is that, The worlds slowest spaceship chase?";
- icon_state = "frame";
- pixel_y = 32
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"akf" = (
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
@@ -5995,16 +6923,13 @@
"aku" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
/obj/machinery/alarm{
dir = 1;
pixel_y = -25
},
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"akv" = (
@@ -6020,20 +6945,18 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"akw" = (
-/obj/machinery/computer/security{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/paleblue/full{
dir = 8
},
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/machinery/camera/network/security{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"akx" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -6046,57 +6969,60 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aky" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark{
- name = "morphspawn"
+/obj/structure/table,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
+/obj/random/action_figure,
+/obj/random/cigarettes,
/turf/simulated/floor/plating,
/area/maintenance/lower/medsec_maintenance)
"akz" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"akA" = (
-/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
-/obj/structure/cable/green,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 1
},
+/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/frontdesk)
+/area/tether/surfacebase/medical/chemistry)
"akB" = (
-/obj/structure/bed/chair/office/dark,
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/landmark/start{
- name = "Security Officer"
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/beakers,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
"akC" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -6132,26 +7058,9 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"akF" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced,
-/obj/machinery/recharger,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/medical/chemistry)
"akG" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
@@ -6245,6 +7154,11 @@
name = "Library Desk Door";
req_access = list(37)
},
+/obj/machinery/light_switch{
+ dir = 4;
+ on = 0;
+ pixel_x = -24
+ },
/turf/simulated/floor/carpet,
/area/library)
"akN" = (
@@ -7436,7 +8350,9 @@
/area/tether/surfacebase/surface_three_hall)
"ani" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"anj" = (
@@ -7478,6 +8394,12 @@
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
},
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"ann" = (
@@ -7751,14 +8673,14 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora_storage)
"anN" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
"anO" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/universal,
@@ -8592,18 +9514,27 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = 26
+ },
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
"api" = (
-/obj/machinery/light{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/machinery/appliance/cooker/grill,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 5
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/button/remote/blast_door{
+ id = "kitchen2";
+ name = "Kitchen shutters";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 9
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
@@ -9693,11 +10624,8 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aqS" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/lower/third_south)
+/turf/simulated/wall,
+/area/rnd/robotics)
"aqT" = (
/obj/structure/sign/directions/medical{
dir = 1;
@@ -10351,17 +11279,11 @@
/turf/simulated/floor/grass,
/area/hydroponics)
"asa" = (
-/obj/machinery/computer/rdconsole/robotics{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/rnd/robotics)
"asb" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -10473,12 +11395,20 @@
/turf/simulated/floor/grass,
/area/hydroponics)
"asl" = (
-/obj/machinery/recharge_station,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_research{
+ name = "Robotics Lab";
+ req_access = list(29,47)
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
+/area/rnd/robotics)
"asm" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -10589,12 +11519,12 @@
/area/tether/surfacebase/surface_three_hall)
"asw" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/alarm{
- pixel_y = 25
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
},
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"asx" = (
@@ -10635,24 +11565,18 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"asA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/uppersouthstairwell)
"asB" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
@@ -10775,24 +11699,6 @@
dir = 1
},
/obj/structure/closet/secure_closet/freezer/fridge,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"asM" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/firealarm{
- layer = 3.3;
- pixel_y = 26
- },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"asN" = (
@@ -10899,15 +11805,13 @@
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
"asZ" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
/obj/machinery/light{
dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 8
},
+/obj/structure/table/woodentable,
/turf/simulated/floor/grass,
/area/hydroponics)
"ata" = (
@@ -10946,9 +11850,10 @@
/turf/simulated/floor/tiled/eris/cafe,
/area/hydroponics)
"atf" = (
-/obj/machinery/appliance/cooker/fryer,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 4
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
@@ -11090,10 +11995,8 @@
/obj/machinery/camera/network/outside{
dir = 5
},
-/obj/machinery/appliance/cooker/oven,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 4
- },
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/grey/diagonal,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"atx" = (
@@ -11132,9 +12035,9 @@
"atA" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
@@ -11164,16 +12067,14 @@
/turf/simulated/wall,
/area/rnd/research_storage)
"atF" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/disposalpipe/up{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/tiled,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
/area/rnd/research_storage)
"atG" = (
/turf/simulated/wall/r_wall,
@@ -11204,7 +12105,7 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/grey/diagonal,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"atK" = (
@@ -11217,24 +12118,11 @@
},
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora)
-"atL" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
- pixel_x = 3
- },
-/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
- pixel_x = -3
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
"atM" = (
/obj/structure/table/standard,
-/obj/machinery/microwave,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/item/weapon/material/knife/butch,
+/obj/item/weapon/material/kitchen/rollingpin,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"atN" = (
@@ -11246,29 +12134,28 @@
/area/crew_quarters/bar)
"atO" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/effect/landmark/start{
- name = "Chef"
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/obj/item/weapon/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"atP" = (
-/obj/machinery/button/remote/blast_door{
- id = "kitchen";
- name = "Kitchen shutters";
- pixel_x = -24;
- pixel_y = -24
- },
/obj/machinery/light{
dir = 8
},
+/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/appliance/mixer/cereal,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 4
+ dir = 8
},
+/obj/structure/closet/secure_closet/freezer/kitchen,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"atQ" = (
@@ -11277,9 +12164,14 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
/obj/structure/table/standard,
-/obj/item/weapon/material/knife/butch,
-/obj/item/weapon/material/kitchen/rollingpin,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"atR" = (
@@ -11320,21 +12212,24 @@
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
"atX" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
/obj/effect/floor_decal/borderfloor{
- dir = 4
+ dir = 9
},
/obj/effect/floor_decal/corner/mauve/border{
- dir = 4
+ dir = 9
},
-/obj/machinery/camera/network/research{
- dir = 8
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"atY" = (
/obj/structure/table/steel,
/obj/machinery/recharger,
@@ -11349,8 +12244,21 @@
/turf/simulated/floor/tiled/techfloor,
/area/rnd/workshop)
"atZ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aua" = (
/obj/structure/cable/green{
icon_state = "0-4"
@@ -11436,6 +12344,7 @@
dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"auh" = (
@@ -11991,6 +12900,7 @@
/obj/structure/disposalpipe/segment{
dir = 8
},
+/obj/structure/table/woodentable,
/turf/simulated/floor/grass,
/area/hydroponics)
"avh" = (
@@ -12191,13 +13101,6 @@
/obj/effect/floor_decal/corner/beige{
dir = 6
},
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/machinery/computer/guestpass{
- dir = 8;
- pixel_x = 25
- },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"avB" = (
@@ -12214,13 +13117,13 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"avD" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/appliance/mixer/candy,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 6
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/button/remote/blast_door{
+ id = "kitchen";
+ name = "Kitchen shutters";
+ pixel_x = -24
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
@@ -12296,8 +13199,12 @@
/turf/simulated/floor/plating,
/area/crew_quarters/bar)
"avL" = (
-/obj/machinery/chem_master/condimaster,
-/turf/simulated/floor/tiled/white,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_one_access = list(35,28)
+ },
+/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/kitchen)
"avM" = (
/obj/effect/floor_decal/corner/beige{
@@ -12453,18 +13360,8 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
-"awc" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
"awd" = (
/obj/machinery/librarycomp,
-/obj/machinery/light/small{
- dir = 8
- },
/obj/structure/table/woodentable,
/turf/simulated/floor/carpet,
/area/library)
@@ -12559,6 +13456,13 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/captain)
"awm" = (
+/obj/machinery/button/remote/airlock{
+ id = "barbackdoor";
+ name = "Back Door Locks";
+ pixel_x = -29;
+ pixel_y = 30;
+ specialfunctions = 4
+ },
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
"awn" = (
@@ -12630,14 +13534,15 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora)
"awv" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -25
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ id = "kitchen2";
+ layer = 3.3;
+ name = "Kitchen Shutters"
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
@@ -12843,36 +13748,15 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"awI" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/structure/disposalpipe/junction{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_security{
- id_tag = "SurfaceFoyer";
- layer = 2.8;
- name = "Security";
- req_access = list(63)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- layer = 1;
- name = "Security Blast Doors";
- opacity = 0;
- open_layer = 1
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/surfacebase/security/lobby)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"awJ" = (
/obj/machinery/smartfridge,
/obj/effect/floor_decal/borderfloor{
@@ -13233,20 +14117,27 @@
/turf/simulated/floor/plating,
/area/rnd/xenobiology/xenoflora)
"axn" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1
+/obj/machinery/door/airlock/glass_security{
+ name = "Front Desk";
+ req_access = list(63);
+ req_one_access = list(63)
},
+/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment{
- dir = 8
+ dir = 4
},
-/turf/simulated/floor/tiled/eris/cafe,
-/area/hydroponics)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
"axo" = (
/obj/structure/bed/chair/comfy,
/obj/effect/landmark/start{
name = "Bartender"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
"axp" = (
@@ -13257,17 +14148,8 @@
info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest.";
name = "Shotgun permit"
},
-/obj/machinery/light_switch{
- pixel_x = 25
- },
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
-"axq" = (
-/obj/machinery/camera/network/civilian{
- dir = 4
- },
-/turf/simulated/floor/grass,
-/area/maintenance/lower/xenoflora)
"axr" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
@@ -13302,16 +14184,14 @@
},
/obj/machinery/door/firedoor/glass,
/obj/effect/floor_decal/spline/plain{
- dir = 5
- },
-/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
- pixel_x = 3
+ dir = 1
},
/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
pixel_x = -3
},
-/obj/machinery/chemical_dispenser/bar_soft/full,
-/obj/machinery/recharger,
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"axu" = (
@@ -13728,27 +14608,37 @@
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
"aya" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
+/obj/machinery/space_heater,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/barbackmaintenance)
"ayb" = (
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
+/obj/structure/bed/chair/comfy/beige,
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/area/tether/surfacebase/barbackmaintenance)
"ayc" = (
-/obj/machinery/vending/wallmed1/public{
- pixel_y = 28
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
+/obj/machinery/button/windowtint{
+ id = "secreet";
+ name = "Window Tint Control";
+ pixel_x = -25;
+ range = 15
+ },
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/area/tether/surfacebase/barbackmaintenance)
"ayd" = (
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/area/tether/surfacebase/barbackmaintenance)
"aye" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -13775,11 +14665,17 @@
/turf/simulated/wall/r_wall,
/area/tether/surfacebase/botanystorage)
"ayh" = (
-/obj/machinery/door/airlock{
- name = "Unit 3"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/barbackmaintenance)
"ayi" = (
/obj/structure/disposalpipe/sortjunction{
name = "Research";
@@ -13851,23 +14747,35 @@
/turf/simulated/floor/tiled,
/area/rnd/research)
"ayp" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/surgery,
-/obj/item/weapon/paper{
- desc = "";
- info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management";
- name = "note to science staff"
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
-/obj/item/device/robotanalyzer,
-/obj/item/device/robotanalyzer,
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
"ayq" = (
-/obj/machinery/optable{
- name = "Robotics Operating Table"
+/obj/structure/bed/chair,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
},
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
"ayr" = (
/obj/structure/extinguisher_cabinet{
dir = 4;
@@ -13958,6 +14866,10 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
"ayx" = (
@@ -13984,42 +14896,52 @@
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
"ayC" = (
-/obj/machinery/door/airlock{
- name = "Unit 2"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
-"ayD" = (
-/obj/machinery/door/airlock{
- name = "Unit 1"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
-"ayE" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
-"ayF" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/toilet{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
-"ayG" = (
-/obj/effect/floor_decal/spline/plain{
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/effect/floor_decal/spline/plain{
- dir = 1
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
},
-/turf/simulated/floor/grass,
-/area/hydroponics)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"ayD" = (
+/obj/structure/bed/chair/comfy/beige{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/area/tether/surfacebase/barbackmaintenance)
+"ayE" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/barbackmaintenance)
+"ayF" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/barbackmaintenance)
+"ayG" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
"ayH" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
@@ -14046,17 +14968,27 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"ayI" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
},
-/turf/simulated/floor/grass,
-/area/hydroponics)
+/obj/effect/landmark/start{
+ name = "Librarian"
+ },
+/turf/simulated/floor/carpet,
+/area/library)
"ayJ" = (
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/sink{
+ pixel_y = 20
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
+/obj/structure/mirror{
+ dir = 4;
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"ayK" = (
/obj/machinery/door/airlock/glass_research{
name = "Xenoflora Research";
@@ -14391,9 +15323,6 @@
dir = 8
},
/obj/machinery/disposal,
-/obj/machinery/light/small{
- dir = 4
- },
/turf/simulated/floor/wood,
/area/library)
"azi" = (
@@ -14460,21 +15389,43 @@
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
"azn" = (
-/obj/random/tech_supply,
-/obj/structure/table/steel,
-/obj/random/maintenance/engineering,
-/obj/item/stack/cable_coil/random,
-/obj/machinery/light/small{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/substation/bar{
- name = "\improper Surface Civilian Substation"
- })
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled,
+/area/rnd/research_storage)
"azo" = (
-/turf/simulated/wall,
-/area/rnd/research/researchdivision)
+/obj/structure/closet{
+ name = "materials"
+ },
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
"azp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -14535,15 +15486,26 @@
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
"azu" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/medical_stand,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
/obj/effect/floor_decal/borderfloorwhite/corner2{
dir = 9
},
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 9
},
-/obj/machinery/mech_recharger,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
"azv" = (
@@ -14648,11 +15610,119 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"azD" = (
-/turf/simulated/wall,
-/area/assembly/chargebay)
+/obj/structure/closet{
+ name = "mechanical equipment"
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/device/multitool{
+ pixel_x = 3
+ },
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/machinery/requests_console{
+ department = "Robotics";
+ departmentType = 2;
+ name = "Robotics RC";
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
"azE" = (
-/turf/simulated/wall,
-/area/assembly/robotics)
+/obj/structure/closet{
+ name = "robotics parts"
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/camera/network/research,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
"azF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -14672,11 +15742,8 @@
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
/turf/simulated/floor/plating,
-/area/assembly/robotics)
+/area/rnd/robotics)
"azI" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -14876,6 +15943,8 @@
icon_state = "1-2"
},
/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/microwave,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"aAa" = (
@@ -14922,16 +15991,19 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"aAe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"aAf" = (
/obj/structure/cable/green{
d1 = 2;
@@ -14986,36 +16058,23 @@
/turf/simulated/floor/plating,
/area/rnd/xenobiology/xenoflora)
"aAi" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
+/area/library)
"aAj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/vending/wallmed1/public{
+ pixel_x = -28
},
/obj/structure/cable/green{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"aAk" = (
/obj/structure/flora/pottedplant/unusual,
/obj/machinery/firealarm{
@@ -15088,21 +16147,17 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"aAq" = (
-/obj/structure/bed/chair,
+/obj/machinery/light{
+ dir = 8
+ },
/obj/effect/floor_decal/borderfloor{
- dir = 1
+ dir = 8
},
/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 4
+ dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aAr" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
@@ -15180,11 +16235,23 @@
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
"aAx" = (
-/obj/structure/railing{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/bar{
+ name = "\improper Surface Civilian Substation"
+ })
"aAy" = (
/obj/structure/table/woodentable,
/obj/item/weapon/paper_bin{
@@ -15196,6 +16263,9 @@
/turf/simulated/floor/carpet,
/area/tether/surfacebase/library/study)
"aAz" = (
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/carpet,
/area/library)
"aAA" = (
@@ -15236,9 +16306,14 @@
/turf/simulated/floor/plating,
/area/tether/surfacebase/botanystorage)
"aAE" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/carpet,
+/area/library)
"aAF" = (
/obj/structure/cable/green{
d1 = 1;
@@ -15316,12 +16391,13 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/table/standard,
-/obj/item/device/destTagger{
- pixel_x = 4;
- pixel_y = 3
+/obj/machinery/chem_master/condimaster,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 10
},
-/obj/item/weapon/packageWrap,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"aAM" = (
@@ -15421,46 +16497,18 @@
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
"aAU" = (
-/obj/structure/bed/chair,
-/obj/machinery/firealarm{
- layer = 3.3;
- pixel_y = 26
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aAV" = (
-/obj/structure/closet{
- name = "materials"
- },
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/item/stack/material/plasteel{
- amount = 10
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
- },
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aAW" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15481,45 +16529,12 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"aAX" = (
-/obj/structure/closet{
- name = "mechanical equipment"
- },
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/glasses/welding,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/device/multitool{
- pixel_x = 3
- },
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/machinery/requests_console{
- department = "Robotics";
- departmentType = 2;
- name = "Robotics RC";
- pixel_y = 30
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aAY" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -15544,79 +16559,11 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"aAZ" = (
-/obj/structure/closet{
- name = "robotics parts"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 5
- },
-/obj/machinery/camera/network/research,
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aBa" = (
/obj/structure/table/standard,
/obj/item/device/lightreplacer,
@@ -15804,11 +16751,14 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/botanystorage)
"aBn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
"aBo" = (
/obj/machinery/door/airlock/command{
name = "Site Manager's Quarters";
@@ -15851,11 +16801,13 @@
/turf/simulated/floor/wood,
/area/library)
"aBt" = (
-/obj/structure/bed/chair/office/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
},
-/turf/simulated/floor/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
/area/library)
"aBu" = (
/obj/machinery/holoplant,
@@ -15868,8 +16820,12 @@
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
"aBv" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/wood,
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/weapon/paper,
+/turf/simulated/floor/carpet,
/area/library)
"aBw" = (
/obj/machinery/door/firedoor/glass,
@@ -15890,14 +16846,13 @@
/turf/simulated/floor/tiled,
/area/rnd/staircase/thirdfloor)
"aBx" = (
-/obj/structure/table/standard,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/disposalpipe/segment{
dir = 8
},
-/obj/machinery/microwave,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"aBy" = (
@@ -15963,21 +16918,16 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/botanystorage)
"aBD" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 5
},
-/obj/item/weapon/reagent_containers/glass/beaker{
- pixel_x = 5
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 6
},
-/obj/item/weapon/reagent_containers/food/snacks/mint,
+/obj/machinery/appliance/mixer/cereal,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"aBE" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -16110,8 +17060,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aBP" = (
/obj/structure/lattice,
/obj/structure/window/reinforced/full,
@@ -16348,8 +17302,11 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"aCf" = (
-/obj/structure/table/standard,
-/obj/item/weapon/book/manual/chef_recipes,
+/obj/machinery/appliance/mixer/candy,
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"aCg" = (
@@ -16419,8 +17376,10 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
"aCn" = (
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/turf/simulated/floor/tiled/techmaint,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
"aCo" = (
/obj/structure/grille,
@@ -16450,11 +17409,6 @@
dir = 8
},
/obj/structure/closet/secure_closet/freezer/meat,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"aCr" = (
@@ -16496,46 +17450,50 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"aCu" = (
-/obj/machinery/r_n_d/circuit_imprinter{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Robotics Desk";
+ req_access = list(7);
+ req_one_access = list(47)
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"aCv" = (
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aCv" = (
-/obj/machinery/mecha_part_fabricator/pros{
- dir = 1
- },
-/obj/structure/reagent_dispensers/acid{
- density = 0;
- pixel_y = -30
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/mauve/border,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aCw" = (
-/obj/machinery/autolathe{
- dir = 1;
- hacked = 1
- },
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
/obj/effect/floor_decal/corner/mauve/border{
- dir = 6
+ dir = 8
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
+ dir = 10
},
/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 6
+ dir = 10
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
+"aCw" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
"aCx" = (
/obj/structure/table/reinforced,
/obj/machinery/light_switch{
@@ -16554,38 +17512,18 @@
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
"aCz" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start{
- name = "Roboticist"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aCA" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/glass_research{
- name = "Robotics Lab";
- req_access = list(29,47)
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aCB" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
@@ -16640,22 +17578,26 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aCF" = (
-/obj/machinery/light/small{
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
+ },
+/obj/machinery/light{
dir = 4
},
-/turf/simulated/floor/wood,
+/turf/simulated/floor/carpet,
/area/library)
"aCG" = (
/obj/machinery/bookbinder,
-/obj/machinery/light/small{
- dir = 8
- },
/turf/simulated/floor/wood,
/area/library)
"aCH" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
+/obj/structure/table/woodentable,
+/obj/machinery/photocopier/faxmachine{
+ department = "Library Conference Room"
+ },
/turf/simulated/floor/wood,
/area/library)
"aCI" = (
@@ -16739,25 +17681,6 @@
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_stairs)
"aCP" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/substation/bar{
- name = "\improper Surface Civilian Substation"
- })
-"aCQ" = (
/obj/structure/cable{
icon_state = "0-8"
},
@@ -16770,9 +17693,21 @@
dir = 8;
pixel_x = 24
},
-/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
+/area/maintenance/substation/bar{
+ name = "\improper Surface Civilian Substation"
+ })
+"aCQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
/area/maintenance/substation/bar{
name = "\improper Surface Civilian Substation"
})
@@ -16990,24 +17925,18 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
"aDp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/pink/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2,
-/obj/effect/floor_decal/corner/pink/bordercorner2,
-/obj/machinery/light/small,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ dir = 9
},
+/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_b)
+/area/tether/surfacebase/medical/triage)
"aDq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -17639,14 +18568,9 @@
"aEu" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 4
},
-/obj/item/weapon/tape_roll,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/simulated/floor/wood,
+/turf/simulated/floor/carpet,
/area/library)
"aEv" = (
/obj/structure/disposalpipe/segment{
@@ -17714,13 +18638,13 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
"aEz" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/wood,
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
/area/library)
"aEA" = (
/obj/structure/railing{
@@ -17736,23 +18660,31 @@
/turf/simulated/floor/grass,
/area/hydroponics)
"aEC" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bookcase{
+ name = "bookcase (Adult)"
},
/turf/simulated/floor/wood,
/area/library)
"aED" = (
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Library Conference Room"
+/obj/structure/bookcase{
+ name = "bookcase (Fiction)"
},
+/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke,
+/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath,
+/obj/item/weapon/book/custom_library/fiction/myrock,
+/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones,
+/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart,
/turf/simulated/floor/wood,
/area/library)
"aEE" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
+/obj/structure/bookcase{
+ name = "bookcase (Adult)"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/wood,
/area/library)
@@ -17761,29 +18693,29 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/botanystorage)
"aEG" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
+/obj/structure/bed/chair/office/dark,
/turf/simulated/floor/carpet,
/area/library)
"aEH" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper,
-/obj/item/weapon/pen,
-/obj/item/weapon/book/codex,
-/turf/simulated/floor/carpet,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bookcase/bookcart,
+/turf/simulated/floor/wood,
/area/library)
"aEI" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 8
+/obj/structure/bookcase{
+ name = "bookcase (Non-Fiction)"
},
-/turf/simulated/floor/carpet,
+/obj/item/weapon/book/codex/lore/robutt,
+/obj/item/weapon/book/codex,
+/obj/item/weapon/book/custom_library/nonfiction/freesirisailightbulbs,
+/turf/simulated/floor/wood,
/area/library)
"aEJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -17792,14 +18724,17 @@
/turf/simulated/floor/wood,
/area/library)
"aEK" = (
-/obj/structure/table/woodentable,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/random/tech_supply,
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/item/stack/cable_coil/random,
+/obj/machinery/light/small{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/library)
+/turf/simulated/floor/plating,
+/area/maintenance/substation/bar{
+ name = "\improper Surface Civilian Substation"
+ })
"aEL" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/effect/floor_decal/borderfloor{
@@ -17851,27 +18786,29 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/botanystorage)
"aEO" = (
-/obj/item/weapon/dice/d20,
-/obj/item/weapon/dice,
+/obj/structure/cable/green,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/structure/table/woodentable,
-/turf/simulated/floor/wood,
-/area/library)
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Surface Civilian Subgrid";
+ name_tag = "Surface Civilian Subgrid"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/bar{
+ name = "\improper Surface Civilian Substation"
+ })
"aEP" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Librarian"
+/obj/structure/bed/chair/office/dark{
+ dir = 8
},
/turf/simulated/floor/carpet,
/area/library)
"aEQ" = (
-/obj/structure/table/woodentable,
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -17880,37 +18817,28 @@
/obj/structure/cable/green{
icon_state = "0-8"
},
-/obj/machinery/recharger,
/turf/simulated/floor/wood,
/area/library)
"aER" = (
-/obj/structure/bookcase{
- name = "bookcase (Reference)"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/weapon/book/manual/anomaly_spectroscopy,
-/obj/item/weapon/book/manual/anomaly_testing,
-/obj/item/weapon/book/manual/atmospipes,
-/obj/item/weapon/book/manual/barman_recipes,
-/obj/item/weapon/book/manual/chef_recipes,
-/obj/item/weapon/book/manual/command_guide,
-/obj/item/weapon/book/manual/detective,
-/obj/item/weapon/book/manual/engineering_construction,
-/obj/item/weapon/book/manual/engineering_guide,
-/obj/item/weapon/book/manual/engineering_particle_accelerator,
-/obj/item/weapon/book/manual/engineering_singularity_safety,
-/obj/item/weapon/book/manual/evaguide,
-/obj/item/weapon/book/manual/excavation,
-/turf/simulated/floor/wood,
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
/area/library)
"aES" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/food/condiment/enzyme{
- layer = 5
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/item/weapon/reagent_containers/food/condiment/enzyme{
- layer = 5
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/item/weapon/reagent_containers/dropper,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"aET" = (
@@ -17921,30 +18849,16 @@
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
"aEU" = (
-/obj/structure/bookcase{
- name = "bookcase (Reference)"
- },
-/obj/item/weapon/book/manual/hydroponics_pod_people,
-/obj/item/weapon/book/manual/mass_spectrometry,
-/obj/item/weapon/book/manual/materials_chemistry_analysis,
-/obj/item/weapon/book/manual/medical_cloning,
-/obj/item/weapon/book/manual/medical_diagnostics_manual,
-/obj/item/weapon/book/manual/research_and_development,
-/obj/item/weapon/book/manual/resleeving,
-/obj/item/weapon/book/manual/ripley_build_and_repair,
-/obj/item/weapon/book/manual/robotics_cyborgs,
-/obj/item/weapon/book/manual/rust_engine,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/obj/item/weapon/book/manual/stasis,
-/obj/item/weapon/book/manual/supermatter_engine,
-/turf/simulated/floor/wood,
+/turf/simulated/floor/carpet,
/area/library)
"aEV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/turf/simulated/floor/wood,
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
/area/library)
"aEW" = (
/obj/effect/floor_decal/spline/plain{
@@ -17954,6 +18868,9 @@
/obj/machinery/chemical_dispenser/bar_soft/full{
dir = 8
},
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
"aEX" = (
@@ -17966,9 +18883,6 @@
/turf/simulated/floor/grass,
/area/hydroponics)
"aEY" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18006,9 +18920,6 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/botanystorage)
"aFc" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -18020,23 +18931,38 @@
/turf/simulated/floor/wood,
/area/library)
"aFd" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen,
+/obj/structure/bookcase{
+ name = "bookcase (Religious)"
+ },
+/obj/item/weapon/book/custom_library/religious/feastofkubera,
+/obj/item/weapon/book/custom_library/religious/storyoflordganesha,
+/obj/item/weapon/book/custom_library/religious/sungoddessofkorea,
+/obj/item/weapon/book/custom_library/religious/wayofbleedingswan,
/turf/simulated/floor/wood,
/area/library)
"aFe" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/deck/cards,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/library)
"aFf" = (
-/obj/effect/decal/cleanable/blood,
-/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/outside/outside3)
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/vending/nifsoft_shop,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
"aFg" = (
/obj/structure/cable/green{
d1 = 2;
@@ -18052,10 +18978,19 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/botanystorage)
"aFh" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/remains/deer,
-/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/outside/outside3)
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/bar{
+ name = "\improper Surface Civilian Substation"
+ })
"aFi" = (
/obj/structure/table/glass,
/obj/machinery/cell_charger,
@@ -18141,12 +19076,8 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"aFn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/wood,
/area/library)
@@ -18197,15 +19128,15 @@
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_north_airlock)
"aFq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/clothing/gloves/fyellow,
+/obj/item/weapon/book{
+ author = "Urist McHopefulsoul";
+ desc = "It contains fourty blank pages followed by the entire screenplay of a movie called 'Requiem for a Dream'";
+ name = "A Comprehensive Guide to Assisting"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/shuttle_pad)
"aFr" = (
/obj/structure/cable/green{
d1 = 1;
@@ -18215,36 +19146,34 @@
/turf/simulated/floor/wood,
/area/library)
"aFs" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/wood,
+/turf/simulated/floor/carpet,
/area/library)
"aFt" = (
-/obj/structure/bookcase{
- name = "bookcase (Fiction)"
- },
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
/turf/simulated/floor/wood,
/area/library)
"aFu" = (
-/obj/structure/bookcase{
- name = "bookcase (Fiction)"
+/obj/structure/bed/chair/office/dark{
+ dir = 4
},
-/turf/simulated/floor/wood,
+/obj/effect/landmark/start{
+ name = "Librarian"
+ },
+/turf/simulated/floor/carpet,
/area/library)
"aFv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/robotics)
"aFw" = (
/obj/structure/closet/crate,
/obj/item/target,
@@ -18259,34 +19188,16 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
"aFx" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
+/obj/item/clothing/under/color/grey,
+/obj/item/clothing/mask/gas/wwii,
+/obj/item/weapon/storage/belt/utility/full,
/turf/simulated/floor/plating,
-/area/maintenance/substation/bar{
- name = "\improper Surface Civilian Substation"
- })
+/area/tether/surfacebase/shuttle_pad)
"aFy" = (
-/obj/machinery/light/small{
+/obj/structure/bed/chair/comfy/beige{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
"aFz" = (
/obj/structure/cable/green{
@@ -18298,19 +19209,10 @@
/turf/simulated/floor/grass,
/area/hydroponics/cafegarden)
"aFA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/structure/bed/chair/comfy/beige{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/eris/steel/bar_light,
/area/tether/surfacebase/barbackmaintenance)
"aFB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -18322,18 +19224,13 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/botanystorage)
"aFC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals5,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/shuttle_pad)
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"aFD" = (
/obj/structure/cable/green{
d1 = 4;
@@ -18584,44 +19481,26 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"aFU" = (
-/obj/structure/bookcase{
- name = "bookcase (Religious)"
- },
-/turf/simulated/floor/wood,
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet,
/area/library)
"aFV" = (
-/obj/structure/cable/green,
/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Surface Civilian Subgrid";
- name_tag = "Surface Civilian Subgrid"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/bar{
- name = "\improper Surface Civilian Substation"
- })
-"aFW" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/robotics)
+"aFW" = (
+/obj/machinery/optable{
+ name = "Robotics Operating Table"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/substation/bar{
- name = "\improper Surface Civilian Substation"
- })
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/robotics/surgeryroom2)
"aFX" = (
/obj/random/tech_supply,
/obj/structure/table/steel,
@@ -18761,10 +19640,17 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"aGh" = (
-/obj/structure/disposalpipe/segment{
- dir = 8
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/freezer{
+ name = "Kitchen";
+ req_access = list(28)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/floor_decal/corner/grey/diagonal,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"aGi" = (
@@ -18773,9 +19659,13 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/table/standard,
-/obj/machinery/reagentgrinder,
+/obj/machinery/appliance/cooker/fryer,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 9
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"aGj" = (
@@ -18811,26 +19701,19 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
"aGm" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
},
-/obj/effect/floor_decal/corner/pink/border{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/vending/wallmed1{
- pixel_y = -30
+/obj/machinery/camera/network/medbay{
+ dir = 1
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_b)
+/area/tether/surfacebase/medical/triage)
"aGn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18897,15 +19780,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
-"aGr" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
"aGs" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/research{
@@ -18964,22 +19838,34 @@
/area/tether/surfacebase/surface_three_hall)
"aGw" = (
/obj/structure/bookcase{
- name = "bookcase (Non-Fiction)"
+ name = "bookcase (Reference)"
},
-/obj/item/weapon/book/codex/lore/robutt,
+/obj/item/weapon/book/manual/hydroponics_pod_people,
+/obj/item/weapon/book/manual/mass_spectrometry,
+/obj/item/weapon/book/manual/materials_chemistry_analysis,
+/obj/item/weapon/book/manual/medical_cloning,
+/obj/item/weapon/book/manual/medical_diagnostics_manual,
+/obj/item/weapon/book/manual/research_and_development,
+/obj/item/weapon/book/manual/resleeving,
+/obj/item/weapon/book/manual/ripley_build_and_repair,
+/obj/item/weapon/book/manual/robotics_cyborgs,
+/obj/item/weapon/book/manual/rust_engine,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/stasis,
+/obj/item/weapon/book/manual/supermatter_engine,
/turf/simulated/floor/wood,
/area/library)
"aGx" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
+/obj/structure/sink{
+ pixel_y = 20
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/mirror{
+ dir = 4;
+ pixel_y = 32
},
-/turf/simulated/floor/wood,
-/area/library)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"aGy" = (
/obj/structure/railing,
/obj/structure/grille,
@@ -19178,37 +20064,24 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"aGS" = (
-/obj/machinery/transhuman/resleever,
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 1
+/obj/machinery/r_n_d/circuit_imprinter{
+ dir = 8
},
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aGT" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/mecha_part_fabricator/pros{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
+/obj/structure/reagent_dispensers/acid{
+ density = 0;
+ pixel_y = -30
},
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/mauve/border,
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aGU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -19259,9 +20132,18 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"aGY" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/dice,
+/obj/item/weapon/dice/d20,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/folder/yellow,
+/obj/structure/closet/walllocker_double{
+ dir = 8;
+ pixel_x = -28
},
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
/turf/simulated/floor/wood,
/area/library)
"aGZ" = (
@@ -19323,16 +20205,21 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"aHc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/simulated/floor/wood,
+/turf/simulated/floor/carpet,
/area/library)
"aHd" = (
/obj/machinery/newscaster{
pixel_y = 28
},
-/turf/simulated/floor/wood,
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/simulated/floor/carpet,
/area/library)
"aHe" = (
/obj/structure/table/woodentable,
@@ -19356,8 +20243,22 @@
/area/hallway/lower/third_south)
"aHg" = (
/obj/structure/bookcase{
- name = "bookcase (Non-Fiction)"
+ name = "bookcase (Reference)"
},
+/obj/item/weapon/book/manual/anomaly_spectroscopy,
+/obj/item/weapon/book/manual/anomaly_testing,
+/obj/item/weapon/book/manual/atmospipes,
+/obj/item/weapon/book/manual/barman_recipes,
+/obj/item/weapon/book/manual/chef_recipes,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/detective,
+/obj/item/weapon/book/manual/engineering_construction,
+/obj/item/weapon/book/manual/engineering_guide,
+/obj/item/weapon/book/manual/engineering_particle_accelerator,
+/obj/item/weapon/book/manual/engineering_singularity_safety,
+/obj/item/weapon/book/manual/evaguide,
+/obj/item/weapon/book/manual/excavation,
+/obj/item/weapon/book/custom_library/reference/fistfulofd6splayersguide,
/turf/simulated/floor/wood,
/area/library)
"aHh" = (
@@ -19500,11 +20401,10 @@
/turf/simulated/floor/plating,
/area/crew_quarters/bar)
"aHs" = (
-/obj/structure/table/gamblingtable,
-/obj/item/weapon/storage/pill_bottle/dice,
/obj/structure/disposalpipe/segment{
dir = 8
},
+/obj/item/weapon/stool/padded,
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/bar)
"aHt" = (
@@ -19591,38 +20491,25 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"aHB" = (
-/obj/structure/table/gamblingtable,
/obj/structure/disposalpipe/segment{
dir = 8
},
+/obj/structure/table/marble,
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/bar)
"aHC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/spiderling_remains,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/light/small{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
"aHD" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/mirror{
- pixel_x = 27
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/robotics)
"aHE" = (
/obj/structure/window/basic/full,
/obj/structure/grille,
@@ -19646,31 +20533,49 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
"aHG" = (
-/obj/machinery/cryopod/robot,
-/obj/machinery/camera/network/research{
- dir = 1
+/obj/machinery/autolathe{
+ dir = 1;
+ hacked = 1
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 6
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
+/area/rnd/robotics)
"aHH" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/red/border{
dir = 4
},
-/obj/item/device/radio/intercom/department/security{
- dir = 4;
- pixel_x = 24
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/upperhall)
"aHI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
@@ -19695,35 +20600,34 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"aHJ" = (
-/obj/machinery/transhuman/synthprinter,
-/obj/machinery/light{
+/obj/effect/floor_decal/industrial/warning/corner{
dir = 8
},
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/turf/simulated/floor/tiled,
+/area/hallway/lower/third_south)
"aHK" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ name = "Robotics Lab";
+ req_access = list(29,47)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aHL" = (
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aHM" = (
/obj/machinery/light{
dir = 8
@@ -19736,24 +20640,31 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
"aHN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Robotics";
+ sortType = "Robotics"
},
-/obj/effect/floor_decal/industrial/loading{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aHO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aHP" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
@@ -19789,24 +20700,28 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"aHS" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 1
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
},
-/obj/machinery/door/window/westright{
- dir = 2
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
},
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ alarm_id = "anomaly_testing";
+ breach_detection = 0;
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = -7;
+ report_danger_level = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"aHT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -19943,6 +20858,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"aIc" = (
@@ -19971,19 +20887,15 @@
/area/hallway/lower/third_south)
"aId" = (
/obj/effect/floor_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/generic,
+/obj/structure/railing{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/barbackmaintenance)
"aIe" = (
-/obj/structure/railing{
- dir = 4
- },
/obj/effect/floor_decal/industrial/warning/corner{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/generic,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/barbackmaintenance)
"aIf" = (
@@ -20001,13 +20913,13 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"aIg" = (
-/obj/item/weapon/stool/padded,
/obj/effect/floor_decal/spline/plain{
dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 8
},
+/obj/item/weapon/stool/padded,
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/bar)
"aIh" = (
@@ -20136,51 +21048,44 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
"aIt" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/camera/network/security{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aIu" = (
-/obj/machinery/computer/transhuman/resleeving{
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/bed/chair/office/dark{
dir = 4
},
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"aIv" = (
+/obj/machinery/computer/rdconsole/robotics{
+ dir = 8
+ },
/obj/effect/floor_decal/borderfloor{
- dir = 8
+ dir = 4
},
/obj/effect/floor_decal/corner/mauve/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 10
- },
-/obj/item/weapon/book/manual/resleeving,
-/obj/item/weapon/storage/box/backup_kit,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aIv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aIw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/turf/simulated/wall,
+/area/rnd/robotics/mechbay)
"aIx" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/sign/department/robo{
@@ -20271,23 +21176,16 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"aIE" = (
-/obj/machinery/light/small{
- dir = 1
- },
+/obj/machinery/photocopier,
/turf/simulated/floor/wood,
/area/library)
"aIF" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/secure_closet/security,
-/obj/item/device/holowarrant,
-/obj/machinery/camera/network/security{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
"aIG" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -20308,7 +21206,7 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"aIH" = (
-/obj/structure/table/gamblingtable,
+/obj/structure/table/marble,
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/bar)
"aII" = (
@@ -20338,8 +21236,24 @@
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
"aIL" = (
-/obj/machinery/camera/network/security,
-/turf/simulated/open,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
"aIM" = (
/obj/structure/table/marble,
@@ -20352,12 +21266,20 @@
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
"aIN" = (
-/obj/structure/table/gamblingtable,
-/obj/item/weapon/deck/cards,
-/turf/simulated/floor/carpet/turcarpet,
-/area/crew_quarters/bar)
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
"aIO" = (
-/obj/item/weapon/stool/padded,
/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/bar)
@@ -20379,21 +21301,11 @@
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
"aIR" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/obj/structure/railing{
+ dir = 1
},
-/obj/machinery/disposal,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/machinery/camera/network/medbay{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
+/turf/simulated/open,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aIS" = (
/obj/machinery/vending/cigarette{
dir = 1
@@ -20570,67 +21482,6 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"aJg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_research{
- name = "Robotics Lab";
- req_access = list(29,47)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aJh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aJi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge_hallway)
-"aJj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aJk" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aJl" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/machinery/chemical_dispenser/full{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"aJm" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/regular{
dir = 4;
@@ -20638,7 +21489,79 @@
name = "Mech Bay"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
+/area/rnd/robotics/mechbay)
+"aJh" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"aJi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge_hallway)
+"aJj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"aJk" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"aJl" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/beakers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"aJm" = (
+/obj/machinery/mecha_part_fabricator{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
"aJn" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
@@ -20660,6 +21583,7 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_external/public,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"aJq" = (
@@ -20710,11 +21634,11 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"aJv" = (
-/obj/structure/table/gamblingtable,
-/obj/item/weapon/storage/pill_bottle/dice_nerd,
/obj/structure/disposalpipe/segment{
dir = 8
},
+/obj/structure/table/marble,
+/obj/machinery/recharger,
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/bar)
"aJw" = (
@@ -20848,7 +21772,6 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"aJK" = (
-/obj/item/weapon/stool/padded,
/obj/effect/floor_decal/spline/plain{
dir = 4
},
@@ -20856,6 +21779,7 @@
dir = 2;
icon_state = "pipe-c"
},
+/obj/item/weapon/stool/padded,
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/bar)
"aJL" = (
@@ -20936,63 +21860,6 @@
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
"aJQ" = (
-/obj/structure/table/standard,
-/obj/machinery/cell_charger,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aJR" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aJS" = (
-/obj/effect/floor_decal/industrial/loading{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aJT" = (
-/obj/machinery/mecha_part_fabricator{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 5
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aJU" = (
/obj/machinery/recharge_station,
/obj/machinery/light{
dir = 8
@@ -21001,7 +21868,37 @@
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
+/area/rnd/robotics/mechbay)
+"aJR" = (
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/mechbay)
+"aJS" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ icon_state = "frame";
+ pixel_x = -64
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"aJT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/rnd/robotics/mechbay)
+"aJU" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/rnd/robotics/mechbay)
"aJV" = (
/obj/structure/table/glass,
/obj/structure/window/reinforced{
@@ -21019,33 +21916,46 @@
/turf/simulated/floor/tiled,
/area/hydroponics)
"aJW" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/button/remote/blast_door{
- id = "mechbay";
- name = "Mech Bay Access";
- pixel_x = -30;
- pixel_y = 30
- },
-/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
+/turf/simulated/wall,
+/area/rnd/robotics/surgeryroom2)
"aJX" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
-"aJY" = (
-/obj/machinery/alarm{
+/obj/machinery/power/apc{
dir = 8;
- pixel_x = 24
+ name = "west bump";
+ pixel_x = -28
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"aJY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
"aJZ" = (
/obj/effect/floor_decal/borderfloorblack/corner,
/obj/effect/floor_decal/industrial/danger/corner,
@@ -21122,22 +22032,20 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"aKj" = (
/turf/simulated/wall,
/area/tether/surfacebase/shuttle_pad)
"aKk" = (
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/clothing/gloves/fyellow,
-/obj/item/weapon/book{
- author = "Urist McHopefulsoul";
- desc = "It contains fourty blank pages followed by the entire screenplay of a movie called 'Requiem for a Dream'";
- name = "A Comprehensive Guide to Assisting"
+/obj/machinery/optable{
+ name = "Robotics Operating Table"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/shuttle_pad)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/robotics/surgeryroom1)
"aKl" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -21177,11 +22085,11 @@
/turf/simulated/floor/tiled/techmaint,
/area/crew_quarters/bar)
"aKo" = (
-/obj/item/weapon/stool/padded,
/obj/effect/floor_decal/spline/plain{
dir = 4
},
/obj/structure/disposalpipe/segment,
+/obj/item/weapon/stool/padded,
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/bar)
"aKp" = (
@@ -21230,10 +22138,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"aKv" = (
@@ -21279,16 +22185,11 @@
/area/tether/surfacebase/surface_three_hall)
"aKy" = (
/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+ dir = 10
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
@@ -21298,7 +22199,15 @@
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel,
+/obj/structure/disposalpipe/segment,
+/obj/structure/window/basic,
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_first_aid)
"aKA" = (
/obj/machinery/door/airlock/glass_medical{
@@ -21379,52 +22288,11 @@
/turf/simulated/floor/reinforced,
/area/tether/surfacebase/shuttle_pad)
"aKJ" = (
-/obj/structure/table/standard,
-/obj/machinery/cell_charger,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/floor/reinforced,
+/turf/simulated/shuttle/plating/carry,
+/area/shuttle/tether)
"aKK" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aKL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"aKM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -21432,8 +22300,8 @@
dir = 4
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aKN" = (
+/area/rnd/robotics)
+"aKL" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -21443,8 +22311,8 @@
name = "Mech Bay"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
-"aKO" = (
+/area/rnd/robotics/mechbay)
+"aKM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -21452,27 +22320,58 @@
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
-"aKP" = (
+/area/rnd/robotics/mechbay)
+"aKN" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
-"aKQ" = (
+/area/rnd/robotics/mechbay)
+"aKO" = (
/obj/machinery/mech_recharger,
/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
-"aKR" = (
+/area/rnd/robotics/mechbay)
+"aKP" = (
/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
-"aKS" = (
+/area/rnd/robotics/mechbay)
+"aKQ" = (
/obj/machinery/mech_recharger,
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
+/area/rnd/robotics/mechbay)
+"aKR" = (
+/obj/structure/closet/secure_closet/medical_wall/anesthetics{
+ pixel_x = -32;
+ req_access = list();
+ req_one_access = list(29,45)
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/button/windowtint{
+ id = "robo_surg_2";
+ pixel_y = 25
+ },
+/obj/machinery/light_switch{
+ pixel_x = -22;
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom2)
+"aKS" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom2)
"aKT" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 4
@@ -21514,15 +22413,16 @@
dir = 8;
pixel_x = 24
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"aKY" = (
-/obj/item/clothing/under/color/grey,
-/obj/item/clothing/mask/gas/wwii,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/shuttle_pad)
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/turf/simulated/shuttle/plating/carry,
+/area/shuttle/tourbus/engines)
"aKZ" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -21537,14 +22437,13 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"aLa" = (
-/obj/item/stack/material/plastic,
-/obj/structure/table/rack,
-/obj/item/stack/material/steel{
- amount = 3
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/random/maintenance/engineering,
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/tiled/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
"aLb" = (
/obj/structure/closet/crate,
@@ -21556,9 +22455,6 @@
/area/tether/surfacebase/servicebackroom)
"aLc" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
/obj/effect/landmark/start{
name = "Chef"
},
@@ -21696,24 +22592,36 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
"aLq" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/paper{
+ desc = "";
+ info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management";
+ name = "note to science staff"
},
-/obj/machinery/light{
- dir = 8
+/obj/item/device/robotanalyzer,
+/obj/item/device/robotanalyzer,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom2)
+"aLr" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized/full{
+ id = "robo_surg_2"
},
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom2)
+"aLs" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/mauve/border{
dir = 8
},
-/obj/effect/floor_decal/industrial/warning,
+/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aLr" = (
+/area/rnd/robotics)
+"aLt" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -21722,30 +22630,24 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aLs" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"aLt" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aLu" = (
+/obj/machinery/atmospherics/pipe/tank/air,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/topairlock)
+"aLv" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"aLw" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -21755,8 +22657,8 @@
dir = 4
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aLv" = (
+/area/rnd/robotics)
+"aLx" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 4;
@@ -21768,8 +22670,8 @@
name = "Mech Bay"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
-"aLw" = (
+/area/rnd/robotics/mechbay)
+"aLy" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -21779,34 +22681,15 @@
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
-"aLx" = (
+/area/rnd/robotics/mechbay)
+"aLz" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
-"aLy" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
-"aLz" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
+/area/rnd/robotics/mechbay)
"aLA" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_external/public,
@@ -21822,6 +22705,7 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/glass_external/public,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"aLC" = (
@@ -21915,11 +22799,8 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"aLL" = (
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/shuttle_pad)
+/turf/simulated/open,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aLM" = (
/obj/machinery/light{
dir = 8
@@ -21949,7 +22830,11 @@
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
"aLP" = (
-/obj/machinery/camera/network/civilian,
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
/turf/simulated/floor/wood,
/area/library)
"aLQ" = (
@@ -21983,81 +22868,82 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
"aLU" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/turf/simulated/floor/bluegrid,
+/area/rnd/robotics/mechbay)
"aLV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "0-8"
},
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/turf/simulated/floor/bluegrid,
+/area/rnd/robotics/mechbay)
"aLW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
},
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/topairlock)
"aLX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/floor_decal/industrial/warning{
- dir = 4
+ dir = 8
},
-/obj/machinery/button/remote/blast_door{
- id = "mechbay-inner";
- name = "Mech Bay";
- pixel_x = 26;
- pixel_y = -26;
- req_access = list(29,47);
- req_one_access = list(47)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics/surgeryroom2)
"aLY" = (
-/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/blast/regular{
- id = "mechbay-inner";
- name = "Mech Bay"
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
+/area/rnd/robotics/surgeryroom2)
"aLZ" = (
+/obj/machinery/door/airlock/research{
+ name = "Robotics Surgery Room";
+ req_one_access = list(29,47)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/button/remote/blast_door{
- id = "mechbay-inner";
- name = "Mech Bay";
- pixel_x = -26;
- pixel_y = -26;
- req_access = list(29,47);
- req_one_access = list(47)
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
+/area/rnd/robotics/surgeryroom2)
"aMa" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
+/area/rnd/robotics)
"aMb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -22085,14 +22971,16 @@
/obj/structure/cable/green{
icon_state = "1-8"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"aMd" = (
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/shuttle_pad)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aMe" = (
/obj/structure/cable/green{
icon_state = "0-2"
@@ -22212,60 +23100,59 @@
/area/rnd/outpost/xenobiology/outpost_main)
"aMr" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aMs" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/atmospherics/binary/passive_gate/on{
dir = 4
},
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/topairlock)
"aMt" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aMu" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/corner/mauve/border{
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/mauve/bordercorner2{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
+/obj/machinery/button/remote/blast_door{
+ id = "mechbay-inner";
+ name = "Mech Bay";
+ pixel_x = 26;
+ pixel_y = -26;
+ req_access = list(29,47);
+ req_one_access = list(47)
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aMv" = (
-/obj/machinery/cryopod/robot,
-/obj/machinery/light{
- dir = 8
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
+/obj/machinery/door/blast/regular{
+ id = "mechbay-inner";
+ name = "Mech Bay"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/chargebay)
+/area/rnd/robotics/mechbay)
"aMw" = (
/obj/structure/sink{
dir = 8;
@@ -22280,34 +23167,46 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
"aMx" = (
-/obj/machinery/computer/cryopod/robot{
- dir = 1;
- pixel_y = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "mechbay-inner";
+ name = "Mech Bay";
+ pixel_x = -26;
+ pixel_y = -26;
+ req_access = list(29,47);
+ req_one_access = list(47)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/mechbay)
"aMy" = (
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 2;
- pixel_y = -28
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/mechbay)
"aMz" = (
-/obj/machinery/firealarm{
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/alarm{
dir = 4;
- pixel_x = 24
+ pixel_x = -22
},
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom2)
"aMA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/monotile,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"aMB" = (
/obj/structure/cable/green{
@@ -22315,6 +23214,7 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
"aMC" = (
@@ -22323,7 +23223,7 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/tiled/monotile,
+/turf/simulated/wall,
/area/tether/surfacebase/shuttle_pad)
"aMD" = (
/obj/structure/cable/green{
@@ -22409,6 +23309,18 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
"aMP" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom2)
+"aMQ" = (
/obj/structure/table/standard,
/obj/item/device/defib_kit/jumper_kit,
/obj/item/weapon/storage/box/gloves,
@@ -22416,28 +23328,26 @@
pixel_x = -1;
pixel_y = -2
},
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"aMQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/effect/floor_decal/industrial/warning{
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom2)
+"aMR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aMR" = (
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aMS" = (
/obj/machinery/vending/fitness,
/obj/machinery/camera/network/civilian,
@@ -22535,7 +23445,9 @@
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether)
"aNa" = (
-/obj/machinery/computer/shuttle_control/tether_backup,
+/obj/machinery/computer/shuttle_control/tether_backup{
+ req_one_access = list()
+ },
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether)
"aNb" = (
@@ -22564,52 +23476,47 @@
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
"aNe" = (
-/obj/structure/closet/secure_closet/medical_wall/anesthetics{
- pixel_x = -32;
- req_access = list();
- req_one_access = list(29,45)
- },
-/obj/effect/floor_decal/borderfloor{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aNf" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aNg" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Roboticist"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aNh" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = -1;
- pixel_y = 4
- },
-/obj/machinery/light{
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"aNg" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"aNh" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/mauve/border{
dir = 4
},
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aNi" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
@@ -22623,7 +23530,7 @@
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/simulated/floor/tiled/monotile,
+/turf/simulated/wall,
/area/tether/surfacebase/shuttle_pad)
"aNk" = (
/obj/structure/bed/chair/shuttle{
@@ -22692,87 +23599,83 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/research/testingrange)
"aNs" = (
-/obj/structure/table/standard,
-/obj/item/weapon/book/manual/robotics_cyborgs,
-/obj/item/clothing/glasses/omnihud/rnd,
+/obj/machinery/cryopod/robot,
/obj/machinery/light{
dir = 8
},
-/obj/machinery/light_switch{
- pixel_x = -25
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aNt" = (
-/obj/structure/table/standard,
-/obj/item/device/mmi,
-/obj/item/device/mmi/digital/posibrain,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/mauve/border,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aNu" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/mauve/border,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"aNv" = (
-/obj/structure/table/standard,
-/obj/machinery/computer/med_data/laptop{
+/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/mauve/border,
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics/mechbay)
+"aNt" = (
+/obj/machinery/cryopod/robot,
+/obj/machinery/camera/network/research{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/mechbay)
+"aNu" = (
+/obj/machinery/computer/cryopod/robot{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/simulated/floor/bluegrid,
+/area/rnd/robotics/mechbay)
+"aNv" = (
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 2;
+ pixel_y = -28
+ },
+/turf/simulated/floor/bluegrid,
+/area/rnd/robotics/mechbay)
"aNw" = (
-/obj/structure/table/standard,
-/obj/item/weapon/pen,
-/obj/item/weapon/pen,
-/obj/item/weapon/pen,
-/obj/machinery/newscaster{
- pixel_x = 25
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/obj/effect/floor_decal/borderfloor{
- dir = 6
+/obj/item/device/radio/intercom{
+ pixel_y = -24
},
-/obj/effect/floor_decal/corner/mauve/border{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/turf/simulated/floor/bluegrid,
+/area/rnd/robotics/mechbay)
"aNx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"aNy" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = -6
+/obj/structure/sign/poster{
+ pixel_x = -32
},
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = -6
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
},
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = 4
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
},
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = 4
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/shuttle_pad)
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aNz" = (
/obj/machinery/door/airlock/glass_external{
frequency = 1380;
@@ -22845,29 +23748,36 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aNF" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
+/turf/simulated/wall,
+/area/rnd/robotics/surgeryroom1)
"aNG" = (
/turf/simulated/floor/tiled/monofloor{
dir = 1
},
/area/tether/surfacebase/shuttle_pad)
"aNH" = (
-/obj/structure/bed/chair{
+/obj/structure/window/reinforced{
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/shuttle_pad)
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aNI" = (
-/obj/machinery/computer/atmos_alert{
- dir = 8
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/shuttle_pad)
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25;
+ target_temperature = 270
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aNJ" = (
/obj/structure/bed/chair/shuttle{
dir = 1
@@ -22901,11 +23811,19 @@
/turf/simulated/floor/tiled/monofloor,
/area/tether/surfacebase/shuttle_pad)
"aNO" = (
-/obj/machinery/computer/shuttle_control/tether_backup{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/shuttle_pad)
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
"aNP" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
@@ -22963,7 +23881,7 @@
/obj/structure/closet/hydrant{
pixel_y = -32
},
-/turf/simulated/floor/tiled/monotile,
+/turf/simulated/wall,
/area/tether/surfacebase/shuttle_pad)
"aNY" = (
/obj/machinery/button/remote/blast_door{
@@ -23032,6 +23950,7 @@
dir = 8;
pixel_x = 30
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"aOe" = (
@@ -23158,6 +24077,10 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"aOv" = (
@@ -23167,6 +24090,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"aOw" = (
@@ -23216,8 +24140,8 @@
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
"aOA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -23347,6 +24271,11 @@
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
"aOO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/shuttle_pad)
+"aOP" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
@@ -23357,11 +24286,6 @@
/obj/item/weapon/weldingtool,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
-"aOP" = (
-/obj/machinery/light/small,
-/obj/item/weapon/tank/phoron,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/shuttle_pad)
"aOQ" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 4
@@ -23436,27 +24360,26 @@
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_breakroom)
"aOX" = (
-/obj/structure/window/basic/full,
-/obj/structure/window/basic{
+/obj/structure/disposalpipe/junction,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
},
-/obj/structure/window/basic,
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/rnd/outpost/xenobiology/outpost_breakroom)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
"aOY" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
dir = 1
},
/obj/structure/window/basic,
-/obj/structure/window/basic{
- dir = 4
- },
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
@@ -23479,27 +24402,19 @@
/turf/simulated/floor/plating,
/area/tether/surfacebase/shuttle_pad)
"aPc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/hatch,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"aPd" = (
-/obj/structure/window/basic/full,
-/obj/structure/window/basic{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/rnd/outpost/xenobiology/outpost_office)
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_main)
"aPe" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -23598,20 +24513,17 @@
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
"aPo" = (
-/obj/structure/window/basic/full,
-/obj/structure/window/basic{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/rnd/outpost/xenobiology/outpost_breakroom)
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_main)
"aPp" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -23620,45 +24532,56 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"aPq" = (
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28;
+ req_access = list(67)
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/shuttle_pad)
-"aPr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"aPr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
},
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/shuttle_pad)
-"aPs" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
},
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/shuttle_pad)
-"aPt" = (
-/obj/structure/frame/computer,
-/obj/item/weapon/material/twohanded/baseballbat{
- name = "Swatta"
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
+"aPs" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/southhall)
+"aPt" = (
+/obj/machinery/light/small,
+/obj/item/weapon/tank/phoron,
+/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
"aPu" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/door/airlock/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/shuttle_pad)
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"aPv" = (
/obj/structure/window/basic/full,
/obj/structure/window/basic{
@@ -23802,14 +24725,23 @@
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_breakroom)
"aPL" = (
-/obj/structure/table/rack,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/shuttle_pad)
+/obj/machinery/door/airlock/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"aPM" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/shuttle_pad)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"aPN" = (
/obj/machinery/photocopier,
/turf/simulated/floor/wood,
@@ -23882,16 +24814,29 @@
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
"aPZ" = (
-/obj/structure/bed/chair,
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/shuttle_pad)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"aQa" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/shuttle_pad)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"aQb" = (
/obj/machinery/papershredder,
/turf/simulated/floor/wood,
@@ -23917,18 +24862,22 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
"aQf" = (
-/obj/machinery/camera/network/outside{
- dir = 6
+/obj/structure/sink{
+ pixel_y = 20
},
-/turf/simulated/floor/outdoors/grass/sif/virgo3b,
-/area/tether/surfacebase/outside/outside3)
+/obj/structure/mirror{
+ dir = 4;
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"aQg" = (
/obj/machinery/vending/cola{
dir = 4
@@ -23975,6 +24924,7 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
name = "Xenobiology";
sortType = "Xenobiology"
},
@@ -24171,13 +25121,21 @@
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
"aQF" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 8
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aQG" = (
/obj/structure/bed/chair/wood{
dir = 8
@@ -24260,18 +25218,12 @@
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
"aQQ" = (
-/obj/structure/window/basic/full,
-/obj/structure/window/basic{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/structure/window/basic,
-/obj/structure/window/basic{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/rnd/outpost/xenobiology/outpost_office)
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_main)
"aQR" = (
/obj/structure/table/glass,
/obj/item/bodybag,
@@ -24319,41 +25271,32 @@
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/tether/surfacebase/outside/outside3)
"aQX" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/eastleft{
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/door/window/westright{
- dir = 2
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/frontdesk)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aQY" = (
/obj/machinery/light,
/obj/machinery/media/jukebox,
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_breakroom)
"aQZ" = (
-/obj/structure/window/basic/full,
-/obj/structure/window/basic{
- dir = 4
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Xenobiology";
+ sortType = "Xenobiology"
},
-/obj/structure/window/basic,
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/rnd/outpost/xenobiology/outpost_breakroom)
+/turf/simulated/floor/tiled/dark,
+/area/rnd/outpost/xenobiology/outpost_main)
"aRa" = (
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_autopsy)
@@ -24672,31 +25615,18 @@
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_decon)
"aRG" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 6
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/admin)
"aRH" = (
/obj/structure/sink/kitchen{
name = "sink";
@@ -24711,27 +25641,23 @@
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
"aRJ" = (
-/obj/machinery/camera/network/outside{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/surfacebase/outside/outside3)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
"aRK" = (
-/obj/machinery/door/airlock/medical{
- name = "Cryogenics Maintenance"
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/triage)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aRL" = (
/obj/machinery/washing_machine,
/turf/simulated/floor/tiled/white,
@@ -24756,13 +25682,17 @@
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
"aRN" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
+/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
"aRO" = (
/obj/item/device/radio/intercom,
/turf/simulated/wall,
@@ -24813,20 +25743,18 @@
/turf/simulated/wall,
/area/rnd/outpost/xenobiology/outpost_decon)
"aRW" = (
-/obj/structure/window/basic/full,
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/structure/window/basic{
+/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 4
},
-/obj/structure/window/basic{
- dir = 8
+/obj/structure/cable/green{
+ icon_state = "1-4"
},
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/rnd/outpost/xenobiology/outpost_main)
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
"aRX" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
@@ -24866,14 +25794,8 @@
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
"aSb" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aSc" = (
/obj/machinery/door/firedoor/glass/hidden,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -24935,23 +25857,26 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"aSi" = (
-/obj/structure/window/basic/full,
-/obj/structure/window/basic{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 1
},
-/obj/structure/window/basic{
+/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
-/obj/structure/window/basic{
- dir = 4
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ dir = 1;
+ id = "MedbayTriage";
+ name = "Medbay Doors Control";
+ pixel_x = -25;
+ pixel_y = -30
},
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/rnd/outpost/xenobiology/outpost_main)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
"aSj" = (
/obj/structure/window/basic/full,
-/obj/structure/window/basic,
/obj/structure/window/basic{
dir = 4
},
@@ -24963,14 +25888,29 @@
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_main)
"aSk" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 5
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/obj/machinery/alarm{
+ alarm_id = "anomaly_testing";
+ breach_detection = 0;
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = -7;
+ report_danger_level = 0
},
+/obj/machinery/firealarm{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = 23;
+ pixel_y = 13
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
"aSl" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -24978,79 +25918,50 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"aSm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4
+/obj/machinery/door/airlock/medical{
+ name = "Medical Admin Access"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/techfloor/corner,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/triage)
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppersouthstairwell)
"aSn" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/triage)
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/admin)
"aSo" = (
-/obj/structure/table/steel,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/medical,
-/obj/effect/floor_decal/techfloor{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
-/obj/machinery/firealarm{
- layer = 3.3;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/triage)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aSp" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/firstaid/o2,
+/obj/effect/floor_decal/corner/blue/full{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/standard,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/storage)
"aSq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/item/weapon/storage/firstaid/adv{
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/item/weapon/storage/firstaid/adv,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
},
+/obj/structure/table/standard,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/storage)
"aSr" = (
/obj/structure/lattice,
/obj/machinery/door/firedoor,
@@ -25085,11 +25996,6 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_x = 30;
- pixel_y = -22
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -25138,7 +26044,6 @@
/area/hydroponics)
"aSz" = (
/obj/structure/window/basic/full,
-/obj/structure/window/basic,
/obj/structure/window/basic{
dir = 8
},
@@ -25156,25 +26061,39 @@
/obj/structure/window/basic/full,
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel,
-/area/rnd/outpost/xenobiology/outpost_first_aid)
-"aSC" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- name = "Robotics";
- sortType = "Robotics"
+/obj/structure/window/basic,
+/obj/structure/window/basic{
+ dir = 1
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/window/basic{
dir = 8
},
+/turf/simulated/floor/plating,
+/area/rnd/outpost/xenobiology/outpost_first_aid)
+"aSC" = (
+/obj/machinery/light_switch{
+ pixel_x = -25;
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = -25;
+ pixel_y = -7
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aSD" = (
/obj/structure/sign/redcross,
/turf/simulated/wall,
@@ -25202,32 +26121,19 @@
dir = 4;
pixel_x = 26
},
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 2;
- pixel_y = -28
- },
/obj/machinery/librarypubliccomp,
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
/area/library)
"aSG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 6
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/storage)
"aSH" = (
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -25242,201 +26148,82 @@
/obj/structure/window/basic/full,
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/techmaint,
+/obj/structure/window/basic,
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_storage)
"aSK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/effect/floor_decal/corner/green/full,
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/standard,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/storage)
"aSL" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
+/obj/item/weapon/storage/firstaid/fire,
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 4
},
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/security/lobby)
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aSM" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 5
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized/full{
+ id = "medbayfoyer"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/triage)
-"aSN" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aSO" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 1
- },
-/obj/structure/closet/hydrant{
- pixel_x = 32
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aSP" = (
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/medical/chemistry)
"aSQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"aSR" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"aSU" = (
+/obj/machinery/vending/medical,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"aSV" = (
+/obj/machinery/vending/blood,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
dir = 1
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aSS" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aST" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aSU" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
-"aSV" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Chemistry";
- req_one_access = list(33)
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
+/area/tether/surfacebase/medical/admin)
"aSW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -25461,31 +26248,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"aSZ" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/machinery/light_switch{
- name = "light switch ";
- on = 0;
- pixel_y = 36
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
"aTa" = (
/obj/machinery/alarm{
dir = 4;
@@ -25498,45 +26260,9 @@
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
"aTb" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 4
- },
-/obj/item/device/radio/headset/headset_med,
-/obj/item/weapon/storage/box/syringes,
-/obj/item/weapon/storage/fancy/vials,
-/obj/item/weapon/storage/fancy/vials,
-/obj/item/weapon/storage/box/pillbottles,
-/obj/item/weapon/storage/box/pillbottles,
-/obj/structure/closet/wardrobe/chemistry_white,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Medical Department";
- departmentType = 3;
- name = "Medical RC";
- pixel_y = 30
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
+/area/tether/surfacebase/medical/admin)
"aTc" = (
/obj/structure/cable/green{
d1 = 1;
@@ -25550,32 +26276,7 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"aTd" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/obj/item/device/mass_spectrometer/adv,
-/obj/item/device/mass_spectrometer/adv,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/obj/item/weapon/storage/box/beakers,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/packageWrap,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/weapon/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
- name = "Chemistry Cleaner"
- },
-/turf/simulated/floor/tiled/white,
+/turf/simulated/wall,
/area/tether/surfacebase/medical/chemistry)
"aTe" = (
/obj/machinery/door/firedoor/glass,
@@ -25592,9 +26293,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"aTg" = (
-/turf/simulated/wall,
-/area/maintenance/lower/mining)
"aTh" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
@@ -25615,103 +26313,83 @@
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
"aTj" = (
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/admin)
"aTk" = (
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
-"aTl" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
"aTm" = (
-/obj/machinery/smartfridge/chemistry/chemvator,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"aTn" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"aTo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
+/turf/simulated/wall/r_wall,
+/area/tether/surfacebase/medical/admin)
"aTp" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"aTq" = (
-/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
+ dir = 5
},
/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/weapon/soap/nanotrasen,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"aTq" = (
+/obj/structure/table/standard,
+/obj/item/device/healthanalyzer,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
dir = 4
},
-/obj/item/stack/material/phoron,
-/obj/item/stack/material/phoron,
-/obj/item/stack/material/phoron,
-/obj/item/stack/material/phoron,
-/obj/item/stack/material/phoron,
-/obj/machinery/alarm{
- alarm_id = "anomaly_testing";
- breach_detection = 0;
- dir = 8;
- pixel_x = 22;
- report_danger_level = 0
- },
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
+/area/tether/surfacebase/medical/surgery2)
"aTr" = (
/obj/effect/floor_decal/techfloor/corner{
dir = 1
},
-/obj/effect/floor_decal/techfloor,
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/medsec_maintenance)
"aTs" = (
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/contraband,
-/obj/structure/closet,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
"aTt" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/maintenance/command{
@@ -25774,6 +26452,9 @@
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/basic,
+/obj/structure/window/basic{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/rnd/outpost/xenobiology/outpost_first_aid)
"aTy" = (
@@ -25850,15 +26531,8 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_south_airlock)
"aTE" = (
-/obj/structure/table/woodentable,
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"aTF" = (
/obj/structure/closet/crate/plastic,
/obj/structure/disposalpipe/segment{
@@ -25902,52 +26576,49 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"aTK" = (
-/obj/structure/table/glass,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
/obj/structure/window/reinforced,
-/obj/item/device/flashlight/lamp/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 10;
+ pixel_y = 14
+ },
+/obj/item/weapon/storage/box/body_record_disk{
+ pixel_x = -3;
+ pixel_y = -3
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"aTL" = (
+/obj/structure/table/standard,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
"aTM" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/surgery2)
"aTN" = (
-/obj/structure/bed/chair/office/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/wood,
-/area/tether/surfacebase/reading_room)
+/obj/structure/table/standard,
+/obj/item/stack/nanopaste,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
"aTO" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -26026,56 +26697,69 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/hop)
"aTV" = (
-/turf/simulated/wall,
-/area/vacant/vacant_site/gateway)
-"aTW" = (
-/turf/simulated/floor/plating,
-/area/vacant/vacant_site/gateway)
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aTX" = (
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
-"aTY" = (
-/turf/simulated/wall/r_wall,
-/area/vacant/vacant_site/gateway)
-"aTZ" = (
-/turf/simulated/open,
-/area/vacant/vacant_site/gateway)
-"aUa" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/multi_tile/metal/mait{
- name = "Maintenance Access"
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/obj/structure/cable/green{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/surface_three_hall)
-"aUb" = (
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/surface_three_hall)
-"aUc" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/upperhall)
+"aTY" = (
+/obj/machinery/door/airlock/security{
+ name = "Internal Affairs";
+ req_access = list(38);
+ req_one_access = newlist()
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa/officecommon)
+"aUb" = (
+/obj/structure/bed/chair,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
+"aUc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aUd" = (
@@ -26090,32 +26774,12 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aUe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
"aUf" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
@@ -26132,45 +26796,46 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
-"aUh" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
"aUi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/door_timer{
- id = "Drunk Tank";
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"aUj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/donut,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor/hole,
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/medical/triage)
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"aUj" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aUk" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -26237,6 +26902,7 @@
/area/hallway/lower/third_south)
"aUq" = (
/obj/structure/closet/secure_closet/freezer/meat,
+/obj/machinery/camera/network/civilian,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
"aUr" = (
@@ -26247,46 +26913,36 @@
/turf/simulated/floor/grass,
/area/hydroponics)
"aUs" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor/corner,
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
-"aUt" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
-"aUu" = (
-/obj/effect/landmark{
- name = "morphspawn"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/tether/surfacebase/shuttle_pad)
-"aUv" = (
-/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
+ dir = 10
},
/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
+ dir = 10
},
-/obj/machinery/chemical_dispenser/biochemistry/full{
+/obj/machinery/computer/transhuman/designer{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
+"aUt" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
+/area/tether/surfacebase/medical/storage)
+"aUu" = (
+/obj/item/stack/material/plastic,
+/obj/structure/table/rack,
+/obj/item/stack/material/steel{
+ amount = 3
+ },
+/obj/random/maintenance/engineering,
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
+"aUv" = (
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aUw" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
@@ -26298,23 +26954,17 @@
/area/tether/surfacebase/public_garden_three)
"aUx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/upperhall)
"aUy" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_command{
@@ -26349,13 +26999,20 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
"aUA" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/structure/filingcabinet/chestdrawer{
- name = "Scan Records"
+/obj/machinery/status_display{
+ pixel_x = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/weapon/soap/nanotrasen,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/storage)
"aUB" = (
/obj/structure/plasticflaps,
/obj/machinery/conveyor{
@@ -26370,27 +27027,14 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
"aUD" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
},
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"aUE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
+/area/tether/surfacebase/medical/triage)
"aUF" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lime/border,
@@ -26401,64 +27045,57 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
"aUG" = (
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/structure/closet/crate/freezer,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
"aUH" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
"aUI" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
+/obj/effect/floor_decal/industrial/loading{
dir = 4
},
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "surfmed";
- layer = 3.1;
- name = "Medical Shutters"
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 4
- },
-/area/tether/surfacebase/medical/triage)
-"aUJ" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/chem_master{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"aUK" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Chemist"
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"aUL" = (
-/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
+"aUJ" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
+"aUK" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
},
/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
+"aUL" = (
+/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aUM" = (
/obj/effect/floor_decal/borderfloor{
@@ -26472,13 +27109,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"aUN" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
"aUO" = (
/obj/effect/floor_decal/techfloor{
dir = 6
@@ -26486,44 +27116,35 @@
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/public_garden_three)
"aUP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 8
},
-/obj/machinery/chemical_dispenser/full{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"aUQ" = (
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aUR" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aUS" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aUT" = (
@@ -26545,10 +27166,15 @@
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor,
/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
dir = 2;
- id = "surfmed";
- layer = 3.1;
- name = "Medical Shutters"
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
},
/turf/simulated/floor/plating,
/area/tether/surfacebase/medical/lobby)
@@ -26571,10 +27197,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"aUX" = (
-/obj/structure/table/reinforced,
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/window/eastright{
dir = 8;
@@ -26585,20 +27211,38 @@
name = "Chemistry";
req_one_access = list(33)
},
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "surfchemistry";
- layer = 3.1;
- name = "Chemistry Shutters"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "chemistry";
+ layer = 3.1;
+ name = "Chemistry Shutters"
+ },
+/obj/structure/table/reinforced,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aUY" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ dir = 1;
+ id = "chemistry";
+ name = "Chemistry Shutters";
+ pixel_x = -6;
+ pixel_y = -57;
+ req_access = list(5)
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
},
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -26609,22 +27253,13 @@
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aUZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/dropper,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aVa" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+/obj/structure/bed/chair/office/dark,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aVb" = (
@@ -26634,12 +27269,11 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
"aVc" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 24
+/obj/effect/landmark/start{
+ name = "Paramedic"
},
-/turf/simulated/floor/plating,
-/area/maintenance/lower/mining)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aVd" = (
/obj/machinery/conveyor{
dir = 1;
@@ -26652,108 +27286,120 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"aVe" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/cups,
-/obj/item/weapon/storage/box/cups,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"aVf" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Chemistry"
+ },
+/obj/machinery/door/window/westleft{
+ dir = 4;
+ name = "Chemistry";
+ req_one_access = list(33)
+ },
/obj/machinery/door/blast/shutters{
dir = 8;
- id = "surfchemistry";
+ id = "chemistry";
layer = 3.1;
name = "Chemistry Shutters"
},
-/turf/simulated/floor/plating,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aVg" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
+ },
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/packageWrap,
+/obj/item/device/mass_spectrometer/adv,
+/obj/item/device/mass_spectrometer/adv,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 10
},
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- id = "surfchemistry";
- name = "Chemistry Shutters";
- pixel_x = -6;
- pixel_y = -24;
- req_access = list(5)
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 7;
+ pixel_y = -30
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aVh" = (
+/obj/machinery/chemical_dispenser/full,
+/obj/structure/table/reinforced,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- pixel_y = -32
- },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aVi" = (
+/obj/machinery/chem_master,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
-/obj/structure/bed/chair/office/dark{
- dir = 4
+/obj/item/device/radio/intercom{
+ pixel_y = -28
},
-/obj/effect/landmark/start{
- name = "Chemist"
- },
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -32
- },
-/obj/structure/cable/green,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aVj" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
+/obj/structure/table/reinforced,
+/obj/item/device/radio/intercom/department/medbay{
+ pixel_y = -24
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 6
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
-/obj/machinery/chem_master{
- dir = 8
- },
-/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/chemical_dispenser/biochemistry/full,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
"aVk" = (
/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"aVl" = (
-/obj/machinery/disposal,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 4
},
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
/obj/machinery/light{
dir = 4
},
+/obj/structure/reagent_dispensers/water_cooler/full{
+ dir = 8
+ },
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
-"aVm" = (
-/obj/structure/sign/nosmoking_1,
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/medical/chemistry)
"aVn" = (
/obj/structure/bed/chair{
dir = 1
@@ -26775,12 +27421,20 @@
},
/obj/effect/floor_decal/borderfloorwhite/corner2,
/obj/effect/floor_decal/corner/paleblue/bordercorner2,
-/obj/machinery/newscaster{
- pixel_x = 25
+/obj/structure/cable/green{
+ icon_state = "0-8"
},
-/obj/structure/reagent_dispensers/water_cooler/full{
- dir = 8
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
},
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/cups{
+ pixel_x = 7;
+ pixel_y = 13
+ },
+/obj/machinery/recharger,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"aVp" = (
@@ -26819,6 +27473,17 @@
/area/tether/surfacebase/public_garden_three)
"aVs" = (
/obj/structure/lattice,
+/obj/structure/cable/green{
+ d1 = 32;
+ d2 = 4;
+ icon_state = "32-4"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 4
+ },
/turf/simulated/open,
/area/maintenance/lower/mining)
"aVt" = (
@@ -26829,6 +27494,20 @@
/obj/effect/floor_decal/steeldecal/steel_decals_central1{
dir = 8
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/monofloor{
dir = 8
},
@@ -26844,36 +27523,18 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aVv" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- pixel_x = -30
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
+/obj/structure/closet/secure_closet/medical2,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/triage)
+/area/tether/surfacebase/medical/surgery2)
"aVw" = (
-/obj/effect/floor_decal/spline/plain{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"aVx" = (
/obj/machinery/firealarm{
dir = 8;
@@ -26915,34 +27576,38 @@
/turf/simulated/floor/grass,
/area/hydroponics)
"aVC" = (
-/obj/structure/bed/chair/wood{
- dir = 1
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"aVD" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
},
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
+"aVD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/storage)
"aVE" = (
/obj/machinery/alarm{
pixel_y = 22
@@ -26955,19 +27620,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"aVF" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/lobby)
"aVG" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -26983,36 +27635,29 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aVH" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
-"aVI" = (
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
-"aVJ" = (
-/obj/effect/floor_decal/borderfloor,
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/door/window/brigdoor/eastright{
- id = "Drunk Tank";
- name = "holding cell";
- req_access = list(2)
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/upperhall)
+"aVI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light/small{
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/upperhall)
"aVK" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 10
@@ -27024,67 +27669,31 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/surface_three_hall)
"aVL" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/light,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -32
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"aVM" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/obj/machinery/photocopier,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
-"aVN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/sign/poster{
+ pixel_y = -32
},
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"aVN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "surfsurgery2"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/lobby)
+/area/tether/surfacebase/medical/surgery2)
"aVO" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -27139,13 +27748,23 @@
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
"aVT" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals6,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/obj/structure/table/standard,
+/obj/item/device/healthanalyzer,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
"aVU" = (
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
"aVV" = (
/obj/machinery/account_database{
dir = 8
@@ -27156,149 +27775,70 @@
/obj/structure/bed/chair{
dir = 1
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/obj/machinery/computer/guestpass{
- dir = 4;
- pixel_x = -28
- },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
"aVX" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
+/turf/simulated/wall{
+ can_open = 1
},
-/turf/simulated/floor/plating,
/area/tether/surfacebase/surface_three_hall)
"aVY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/obj/machinery/computer/operating,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
+"aVZ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/common)
-"aVZ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
},
-/obj/structure/window/reinforced,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/common)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
"aWa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 1
},
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/security/common)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"aWb" = (
/obj/structure/sign/directions/evac{
dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/lobby)
-"aWc" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Security Lobby"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 8
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 8
- },
-/area/tether/surfacebase/security/lobby)
+/turf/simulated/wall,
+/area/tether/surfacebase/security/upperhall)
"aWd" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "surfbriglockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 4
- },
-/area/tether/surfacebase/security/lobby)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aWe" = (
-/obj/structure/sign/directions/evac,
-/turf/simulated/wall/r_wall,
-/area/tether/surfacebase/security/lobby)
+/obj/structure/table/standard,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/device/radio{
+ pixel_x = 7;
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aWf" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
@@ -27333,21 +27873,13 @@
/turf/simulated/wall,
/area/tether/surfacebase/medical/lobby)
"aWi" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/machinery/newscaster{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
"aWj" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
@@ -27381,15 +27913,15 @@
/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/machinery/door/airlock/glass,
/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aWn" = (
@@ -27407,20 +27939,16 @@
/area/tether/surfacebase/surface_three_hall)
"aWo" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1
+ dir = 5
},
/obj/effect/floor_decal/corner/red/border{
- dir = 1
+ dir = 5
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/machinery/light{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/structure/sign/warning/high_voltage{
- pixel_y = 32
- },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/area/tether/surfacebase/security/breakroom)
"aWp" = (
/obj/machinery/alarm{
pixel_y = 22
@@ -27455,28 +27983,23 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aWr" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"aWs" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/machinery/firealarm{
- layer = 3.3;
- pixel_y = 26
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"aWs" = (
+/obj/machinery/suit_cycler/prototype,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"aWt" = (
/obj/effect/floor_decal/corner/red{
dir = 1
@@ -27491,9 +28014,7 @@
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/machinery/alarm{
- pixel_y = 22
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
@@ -27504,12 +28025,6 @@
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
@@ -27519,33 +28034,13 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aWv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"aWw" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
+/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 4
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/machinery/status_display{
- pixel_y = 30
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aWx" = (
@@ -27591,20 +28086,14 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aWA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aWB" = (
/obj/machinery/light{
dir = 1
@@ -27693,17 +28182,15 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aWJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"aWK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/disposalpipe/junction{
dir = 2;
icon_state = "pipe-j2"
@@ -27712,17 +28199,23 @@
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aWL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aWM" = (
@@ -27757,9 +28250,15 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aWP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 6
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
@@ -27829,96 +28328,68 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aWW" = (
-/obj/structure/bed/chair{
- dir = 8
- },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/obj/machinery/light{
- dir = 4
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
-"aWX" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/tether/surfacebase/security/lobby)
"aWY" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"aWZ" = (
+/obj/machinery/door/airlock/glass_security,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"aXb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"aWZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/upperhall)
-"aXa" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/obj/structure/cable/green,
-/obj/structure/table/reinforced,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -32
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
-"aXb" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/wardrobe/red,
-/obj/item/device/radio/intercom/department/security{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/tether/surfacebase/security/armory)
-"aXc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/effect/landmark{
- name = "lightsout"
- },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/common)
+/area/tether/surfacebase/security/briefingroom)
+"aXc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/button/windowtint{
+ id = "surfsurgery2";
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
"aXd" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -27964,8 +28435,8 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"aXf" = (
-/obj/structure/bookcase{
- name = "bookcase (Adult)"
+/obj/machinery/camera/network/civilian{
+ dir = 1
},
/turf/simulated/floor/wood,
/area/library)
@@ -28036,23 +28507,12 @@
},
/area/library)
"aXm" = (
+/obj/effect/decal/cleanable/blood/oil,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/westright{
- name = "Robotics Desk";
- req_access = list(7);
- req_one_access = list(47)
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -1;
- pixel_y = 4
- },
-/obj/item/weapon/pen,
/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
+/area/rnd/robotics)
"aXn" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
@@ -28061,9 +28521,6 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"aXo" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
/obj/structure/cable/green{
icon_state = "2-4"
},
@@ -28183,7 +28640,6 @@
/obj/structure/closet/hydrant{
pixel_x = 32
},
-/obj/structure/bookcase/bookcart,
/turf/simulated/floor/wood,
/area/library)
"aXx" = (
@@ -28268,17 +28724,11 @@
/turf/simulated/floor/plating,
/area/bridge)
"aXC" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/landmark/start{
- name = "Librarian"
- },
/turf/simulated/floor/wood,
/area/library)
"aXD" = (
@@ -28366,17 +28816,6 @@
/obj/item/weapon/implantcase/chem,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"aXI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table/steel,
-/obj/random/tech_supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/rnd/research_storage)
"aXJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -28424,45 +28863,12 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"aXN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/rnd/research_storage)
-"aXO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/rnd/research_storage)
"aXP" = (
/obj/structure/disposalpipe/up{
dir = 8
},
/turf/simulated/floor/plating,
/area/rnd/research_storage)
-"aXQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/rnd/research_storage)
-"aXR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/rnd/research_storage)
"aXS" = (
/obj/structure/bed/chair/comfy,
/obj/machinery/camera/network/civilian,
@@ -28654,26 +29060,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge)
-"aYk" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/vacant/vacant_shop)
"aYl" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/down,
@@ -29108,23 +29494,6 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_first_aid)
-"aZg" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
"aZh" = (
/obj/machinery/door/airlock/glass_command{
name = "Bridge";
@@ -29469,9 +29838,6 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"aZJ" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -29622,9 +29988,6 @@
/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/obj/effect/floor_decal/corner/beige/border{
- dir = 4
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
},
@@ -29637,11 +30000,21 @@
/obj/effect/floor_decal/corner/beige/bordercorner2{
dir = 6
},
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/beige/bordercorner2{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"aZX" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/foodcart,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"aZY" = (
@@ -29935,16 +30308,14 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/corner/beige/border{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
/turf/simulated/floor/tiled,
@@ -29975,13 +30346,13 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"baA" = (
-/obj/item/weapon/stool/padded,
/obj/structure/disposalpipe/segment{
dir = 8
},
/obj/machinery/light{
dir = 8
},
+/obj/item/weapon/stool/padded,
/turf/simulated/floor/carpet/turcarpet,
/area/crew_quarters/bar)
"baB" = (
@@ -29996,10 +30367,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor/grass,
+/turf/simulated/floor/tiled/eris/cafe,
/area/hydroponics)
"baC" = (
/obj/machinery/vending/cola{
@@ -30030,14 +30398,21 @@
/area/hallway/lower/third_south)
"baE" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"baF" = (
@@ -30144,21 +30519,18 @@
/area/tether/surfacebase/surface_three_hall)
"baM" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/button/remote/blast_door{
- id = "kitchen2";
- name = "Kitchen shutters";
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"baN" = (
@@ -30170,12 +30542,31 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/hop)
"baO" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/vending/dinnerware{
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/beige/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
"baP" = (
/obj/structure/table/woodentable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -30206,9 +30597,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"baR" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
"baS" = (
/obj/structure/disposalpipe/segment,
/obj/structure/window/reinforced/full,
@@ -30241,9 +30629,9 @@
dir = 1;
pixel_y = -25
},
-/obj/machinery/computer/security/telescreen/entertainment{
- icon_state = "frame";
- pixel_x = 32
+/obj/machinery/computer/guestpass{
+ dir = 8;
+ pixel_x = 25
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -30376,11 +30764,6 @@
/area/tether/surfacebase/entertainment)
"bbm" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/item/weapon/paper{
- desc = "";
- info = "Yes hello, the goat in the freezer is named 'Spike'. Please do not fuck with Spike. He doesn't have the best temper.";
- name = "Important notice from Rancher Jim"
- },
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
@@ -30648,6 +31031,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/obj/machinery/camera/network/civilian{
+ dir = 9
+ },
/turf/simulated/floor/tiled/eris/cafe,
/area/hydroponics)
"bbJ" = (
@@ -30780,26 +31166,24 @@
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
"bbW" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
-"bbX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"bbY" = (
/obj/effect/floor_decal/spline/plain,
/obj/item/weapon/stool/padded,
@@ -30832,7 +31216,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/camera/network/civilian,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bcb" = (
@@ -30862,16 +31249,8 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bcd" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/barbackmaintenance)
"bce" = (
/obj/structure/cable/green{
d1 = 1;
@@ -30888,8 +31267,15 @@
/area/tether/surfacebase/servicebackroom)
"bcf" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/structure/table/standard,
+/obj/item/weapon/paper{
+ desc = "";
+ info = "Yes hello, the goat in the freezer is named 'Spike'. Please do not fuck with Spike. He doesn't have the best temper.";
+ name = "Important notice from Rancher Jim"
+ },
+/obj/item/weapon/book/manual/chef_recipes,
+/obj/structure/noticeboard{
+ pixel_x = 32
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
@@ -31493,19 +31879,17 @@
/turf/simulated/floor/lino,
/area/tether/surfacebase/entertainment/stage)
"bda" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
},
-/obj/machinery/door/airlock/freezer{
- name = "Kitchen";
- req_access = list(28)
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 1
+/obj/item/weapon/reagent_containers/food/snacks/mint,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bdb" = (
@@ -31563,10 +31947,14 @@
/turf/simulated/floor/lino,
/area/tether/surfacebase/entertainment/backstage)
"bde" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/simulated/floor/reinforced,
-/turf/simulated/shuttle/plating/carry,
-/area/shuttle/tether)
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
"bdf" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -31739,10 +32127,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bdy" = (
@@ -31755,14 +32143,6 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/wood,
/area/tether/surfacebase/entertainment)
-"bdz" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
"bdA" = (
/obj/structure/lattice,
/turf/simulated/open,
@@ -31793,20 +32173,11 @@
/obj/structure/extinguisher_cabinet{
pixel_y = -32
},
+/obj/item/device/radio/intercom/entertainment{
+ pixel_y = -23
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"bdE" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
"bdF" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -31851,19 +32222,17 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bdK" = (
-/obj/structure/railing{
- dir = 4
- },
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/barbackmaintenance)
"bdL" = (
-/obj/machinery/floodlight,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"bdM" = (
/obj/structure/cable/green{
d1 = 1;
@@ -31874,10 +32243,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"bdN" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
"bdO" = (
/obj/structure/table/woodentable,
/obj/item/weapon/packageWrap,
@@ -31924,9 +32289,6 @@
/area/crew_quarters/bar)
"bdR" = (
/obj/structure/kitchenspike,
-/obj/machinery/camera/network/civilian{
- dir = 9
- },
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
"bdS" = (
@@ -31954,87 +32316,44 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
-"bdU" = (
-/obj/machinery/firealarm{
- layer = 3.3;
- pixel_y = 26
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
"bdV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
-"bdW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
-"bdX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+"bdZ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/tiled/techmaint,
-/area/tether/surfacebase/barbackmaintenance)
-"bdY" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
-"bdZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
-"bea" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
-"beb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
-"bec" = (
/obj/machinery/light/small{
- dir = 1
+ dir = 8
},
-/obj/machinery/space_heater,
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/area/tether/surfacebase/barbackmaintenance)
+"bea" = (
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/area/tether/surfacebase/barbackmaintenance)
+"beb" = (
+/obj/structure/bed/chair/comfy/beige,
+/turf/simulated/floor/tiled/eris/steel/bar_light,
+/area/tether/surfacebase/barbackmaintenance)
+"bec" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "secreet";
+ name = "Tintable Window"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "secreet";
+ name = "Tintable Window"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
/area/tether/surfacebase/barbackmaintenance)
"bed" = (
/obj/structure/disposalpipe/segment,
@@ -32058,21 +32377,20 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bef" = (
+/obj/structure/toilet{
+ dir = 8
+ },
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"beg" = (
-/obj/structure/bed/chair/comfy/beige,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/light/small{
dir = 4
},
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"beh" = (
/obj/machinery/newscaster{
pixel_y = -28
@@ -32090,28 +32408,34 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bei" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
},
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"bej" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
},
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 22
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bek" = (
@@ -32124,33 +32448,35 @@
/obj/item/device/radio/intercom{
pixel_y = -25
},
+/obj/machinery/vending/dinnerware{
+ dir = 1
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bel" = (
-/obj/structure/bed/chair/comfy/beige{
- dir = 4
+/obj/machinery/door/airlock{
+ name = "Unit 2"
},
-/turf/simulated/floor/tiled/eris/steel/bar_light,
-/area/tether/surfacebase/barbackmaintenance)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"bem" = (
-/obj/structure/table/gamblingtable,
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/barbackmaintenance)
"ben" = (
-/obj/structure/table/gamblingtable,
-/obj/item/weapon/storage/pill_bottle/dice,
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
-"beo" = (
-/obj/structure/bed/chair/comfy/beige{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/bar_light,
-/area/tether/surfacebase/barbackmaintenance)
-"bep" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/obj/structure/cable/green{
d1 = 1;
@@ -32159,6 +32485,21 @@
},
/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
+"beo" = (
+/obj/structure/table/gamblingtable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/area/tether/surfacebase/barbackmaintenance)
+"bep" = (
+/obj/structure/table/gamblingtable,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/weapon/storage/pill_bottle/dice,
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/area/tether/surfacebase/barbackmaintenance)
"beq" = (
/obj/machinery/door/airlock/freezer{
name = "Kitchen Cold Room";
@@ -32219,11 +32560,6 @@
/area/crew_quarters/kitchen)
"bev" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -32232,28 +32568,28 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
},
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bew" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/light_switch{
- pixel_x = 24
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bex" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
+/obj/machinery/computer/guestpass{
+ pixel_y = 23
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"bey" = (
@@ -32281,6 +32617,8 @@
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/standard,
+/obj/machinery/microwave,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"beA" = (
@@ -32335,8 +32673,8 @@
/area/hydroponics)
"beF" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
@@ -32364,9 +32702,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"beI" = (
@@ -32427,12 +32763,14 @@
/turf/simulated/floor/tiled,
/area/hydroponics)
"beN" = (
-/obj/machinery/atmospherics/unary/engine{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/turf/simulated/floor/reinforced,
-/turf/simulated/shuttle/plating/carry,
-/area/shuttle/tourbus/engines)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
"beO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -32455,6 +32793,12 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/freezer)
+"beQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
"beR" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
@@ -32469,6 +32813,31 @@
/obj/structure/bed/chair/wood,
/turf/simulated/floor/wood,
/area/tether/surfacebase/entertainment)
+"beT" = (
+/obj/structure/frame/computer,
+/obj/item/weapon/material/twohanded/baseballbat{
+ name = "Swatta"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
+"beU" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"beV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"beW" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
"beX" = (
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
@@ -32509,7 +32878,7 @@
"bfb" = (
/obj/machinery/door/airlock/freezer{
name = "Service";
- req_access = list(28)
+ req_one_access = list(35,28)
},
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -32528,18 +32897,13 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bfe" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/machinery/camera/network/civilian{
- dir = 1
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
@@ -32569,6 +32933,27 @@
},
/turf/simulated/wall,
/area/tether/surfacebase/entertainment)
+"bfh" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
+"bfi" = (
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
+"bfj" = (
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"bfk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -32614,20 +32999,15 @@
/area/tether/surfacebase/servicebackroom)
"bfn" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
+/obj/structure/table/standard,
+/obj/machinery/reagentgrinder,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bfo" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
+/obj/structure/table/gamblingtable,
/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
"bfp" = (
@@ -32737,47 +33117,64 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
"bfz" = (
-/obj/structure/bed/chair/comfy/beige{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
-"bfA" = (
-/obj/structure/table/gamblingtable,
-/obj/item/weapon/storage/pill_bottle/dice_nerd,
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
-"bfB" = (
-/obj/structure/bed/chair/wood,
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
-"bfC" = (
-/obj/structure/table/gamblingtable,
-/obj/item/weapon/deck/cards,
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
-"bfD" = (
/obj/structure/bed/chair/comfy/beige{
dir = 8
},
/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
-"bfE" = (
-/obj/machinery/light/small,
+"bfA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/barrestroom)
-"bfF" = (
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
-"bfG" = (
+"bfB" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
+"bfC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/obj/structure/cable/green{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/barbackmaintenance)
+"bfD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/area/tether/surfacebase/barbackmaintenance)
+"bfE" = (
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/area/tether/surfacebase/barbackmaintenance)
+"bfF" = (
+/obj/structure/bed/chair/comfy/beige{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/area/tether/surfacebase/barbackmaintenance)
+"bfG" = (
+/obj/structure/table/gamblingtable,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
"bfH" = (
@@ -32807,8 +33204,21 @@
},
/turf/simulated/floor/lino,
/area/tether/surfacebase/entertainment/backstage)
+"bfJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"bfK" = (
-/obj/machinery/light/small,
+/obj/structure/table/gamblingtable,
+/obj/item/weapon/deck/cards,
/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
"bfL" = (
@@ -32822,23 +33232,18 @@
/turf/simulated/floor/plating,
/area/tether/surfacebase/servicebackroom)
"bfM" = (
-/obj/structure/bed/chair/comfy/beige{
+/obj/machinery/door/airlock{
+ name = "Unit 3"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
+"bfN" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
-"bfN" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -30
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/barrestroom)
"bfO" = (
/obj/effect/floor_decal/spline/plain{
dir = 9
@@ -32851,22 +33256,16 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bfP" = (
-/obj/structure/bed/chair/comfy/beige{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/eris/steel/bar_light,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/barbackmaintenance)
"bfQ" = (
-/obj/structure/table/gamblingtable,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
},
/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
@@ -32875,10 +33274,11 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bfS" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/bed/chair/comfy/beige{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
@@ -32931,9 +33331,6 @@
/obj/machinery/chemical_dispenser/bar_alc/full{
dir = 8
},
-/obj/machinery/light{
- dir = 4
- },
/obj/machinery/light{
dir = 1
},
@@ -32963,6 +33360,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 9
},
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bga" = (
@@ -32996,7 +33396,9 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/servicebackroom)
"bgf" = (
-/obj/machinery/camera/network/civilian,
+/obj/structure/noticeboard{
+ pixel_y = 29
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bgg" = (
@@ -33055,24 +33457,38 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/entertainment/stage)
"bgl" = (
-/obj/structure/bed/chair/comfy/beige{
- dir = 8
+/obj/structure/table/gamblingtable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/eris/steel/bar_light,
+/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
+"bgm" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"bgn" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/beakers{
+ name = "box of measuring cups";
+ pixel_x = 2;
+ pixel_y = 3;
+ starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7)
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bgo" = (
@@ -33083,41 +33499,51 @@
/area/tether/surfacebase/entertainment/stage)
"bgp" = (
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bgq" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/structure/table/standard,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"bgr" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
+"bgq" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
+/obj/machinery/appliance/cooker/oven,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bgr" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/machinery/appliance/cooker/grill,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 10
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bgs" = (
-/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/table/standard,
+/obj/item/weapon/packageWrap,
+/obj/item/device/destTagger{
+ pixel_x = 4;
+ pixel_y = 3
+ },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bgt" = (
@@ -33138,8 +33564,19 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/obj/item/weapon/tool/wrench,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
+"bgu" = (
+/obj/structure/bed/chair,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
"bgv" = (
/obj/structure/bed/chair/wood{
dir = 8
@@ -33162,27 +33599,18 @@
icon_state = "4-8"
},
/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/sink/kitchen{
- pixel_y = 28
- },
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"bgy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/barrestroom)
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/barbackmaintenance)
"bgz" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
@@ -33267,24 +33695,25 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bgG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/button/windowtint{
- id = "secreet";
- name = "Window Tint Control";
- pixel_x = -25;
- range = 15
+/obj/structure/table/gamblingtable,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/tiled/eris/steel/bar_dance,
/area/tether/surfacebase/barbackmaintenance)
"bgH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "secreet";
+ name = "Tintable Window"
},
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "secreet";
+ name = "Tintable Window"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
/area/tether/surfacebase/barbackmaintenance)
"bgI" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -33298,6 +33727,7 @@
/area/tether/surfacebase/servicebackroom)
"bgJ" = (
/obj/machinery/door/airlock{
+ id_tag = "barbackdoor";
name = "Service";
req_access = list(25)
},
@@ -33356,10 +33786,6 @@
/obj/machinery/camera/network/civilian{
dir = 4
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
/turf/simulated/floor/wood,
/area/tether/surfacebase/bar_backroom)
"bgP" = (
@@ -33404,7 +33830,6 @@
/turf/simulated/floor/lino,
/area/tether/surfacebase/bar_backroom)
"bgR" = (
-/obj/machinery/door/airlock/maintenance/common,
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -33417,87 +33842,57 @@
dir = 8
},
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/techmaint,
-/area/crew_quarters/bar)
-"bgS" = (
/obj/machinery/door/airlock{
name = "Unisex Restrooms"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled/techmaint,
/area/crew_quarters/barrestroom)
-"bgT" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+"bgS" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/barbackmaintenance)
+"bgT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "secreet";
+ name = "Tintable Window"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "secreet";
+ name = "Tintable Window"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "secreet";
+ name = "Tintable Window"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/barbackmaintenance)
"bgU" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/firealarm{
- layer = 3.3;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
+/obj/machinery/vending/nifsoft_shop,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"bgV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "secreet";
- name = "Tintable Window"
+/obj/machinery/vending/sovietsoda{
+ dir = 8
},
-/obj/structure/window/reinforced/polarized{
- dir = 4;
- id = "secreet";
- name = "Tintable Window"
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/barbackmaintenance)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"bgW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "secreet";
- name = "Tintable Window"
+/obj/machinery/vending/cigarette{
+ dir = 8
},
-/obj/structure/window/reinforced/polarized{
- dir = 4;
- id = "secreet";
- name = "Tintable Window"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/structure/cable/green,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/barbackmaintenance)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"bgX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -33505,31 +33900,6 @@
/obj/machinery/camera/network/research/xenobio,
/turf/simulated/floor/tiled/white,
/area/rnd/outpost/xenobiology/outpost_autopsy)
-"bgY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "secreet";
- name = "Tintable Window"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 4;
- id = "secreet";
- name = "Tintable Window"
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/structure/cable/green,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/barbackmaintenance)
-"bgZ" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/simulated/floor/tiled/eris/steel/bar_dance,
-/area/tether/surfacebase/barbackmaintenance)
"bha" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -33551,63 +33921,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_main)
-"bhb" = (
-/obj/structure/grille,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/window/reinforced/polarized/full{
- id = "secreet";
- name = "Tintable Window"
- },
-/obj/structure/window/reinforced/polarized{
- id = "secreet";
- name = "Tintable Window"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/barbackmaintenance)
-"bhc" = (
-/obj/structure/grille,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/window/reinforced/polarized/full{
- id = "secreet";
- name = "Tintable Window"
- },
-/obj/structure/window/reinforced/polarized{
- id = "secreet";
- name = "Tintable Window"
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/barbackmaintenance)
-"bhd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "secreet";
- name = "Tintable Window"
- },
-/obj/structure/window/reinforced/polarized{
- id = "secreet";
- name = "Tintable Window"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 4;
- id = "secreet";
- name = "Tintable Window"
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/cable/green,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/barbackmaintenance)
"bhe" = (
/obj/machinery/hologram/holopad,
/obj/machinery/camera/network/research/xenobio{
@@ -33625,6 +33938,147 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/rnd/outpost/xenobiology/outpost_storage)
+"bhg" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
+"bhh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Long-Range Teleporter Access"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/southhall)
+"bhi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhk" = (
+/obj/structure/table/woodentable,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/item/device/radio/off,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{
+ pixel_x = -9;
+ pixel_y = -2
+ },
+/obj/item/device/taperecorder{
+ pixel_x = 10
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
+"bhl" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/southhall)
+"bhm" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/southhall)
+"bhn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
+"bho" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/southhall)
+"bhp" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhq" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhr" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/southhall)
+"bhs" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/southhall)
+"bht" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"bhu" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -33639,22 +34093,3061 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"bhv" = (
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhw" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhy" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/southhall)
+"bhz" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhB" = (
+/obj/structure/dogbed,
+/mob/living/simple_mob/animal/sif/shantak/scruffy,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
+"bhC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhD" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhE" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/topairlock)
+"bhF" = (
+/obj/structure/table/rack{
+ dir = 4
+ },
+/obj/random/maintenance/clean,
+/obj/item/clothing/mask/gas,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/topairlock)
+"bhG" = (
+/obj/machinery/atmospherics/pipe/tank/air,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/topairlock)
+"bhH" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhI" = (
+/turf/simulated/open,
+/area/tether/surfacebase/southhall)
+"bhJ" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"bhK" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/southhall)
+"bhN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/topairlock)
+"bhO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/topairlock)
+"bhP" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/topairlock)
+"bhQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/topairlock)
+"bhR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/topairlock)
+"bhT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9
+ },
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/topairlock)
+"bhU" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 30
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
+ frequency = 1379;
+ scrub_id = "southciv_airlock_scrubber"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/topairlock)
+"bhV" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
+ frequency = 1379;
+ scrub_id = "southciv_airlock_scrubber"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/topairlock)
+"bhW" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bhX" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/topairlock)
+"bhY" = (
+/obj/structure/railing,
+/obj/structure/grille,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "southciv_airlock_pump"
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bhZ" = (
+/obj/structure/railing,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "southciv_airlock_pump"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bia" = (
+/obj/machinery/washing_machine,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/civilian,
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"bib" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/vending/wallmed_airlock{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"bic" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"bid" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"bie" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "southciv_airlock_outer";
+ locked = 1
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/topairlock)
+"bif" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"big" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bih" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "southciv_airlock_inner";
+ locked = 1
+ },
+/obj/machinery/access_button/airlock_interior{
+ master_tag = "southciv_airlock";
+ pixel_x = 8;
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/topairlock)
+"bii" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bij" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bik" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central1{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monofloor{
+ dir = 1
+ },
+/area/tether/surfacebase/topairlock)
+"bil" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bim" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bin" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bio" = (
+/obj/machinery/access_button/airlock_exterior{
+ master_tag = "southciv_airlock";
+ pixel_x = -8;
+ pixel_y = -25
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "southciv_airlock_outer";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/topairlock)
+"bip" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"biq" = (
+/obj/machinery/embedded_controller/radio/airlock/phoron{
+ dir = 8;
+ id_tag = "southciv_airlock";
+ pixel_x = 25;
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/airlock_sensor/phoron{
+ id_tag = "southciv_airlock_sensor";
+ pixel_x = 25;
+ pixel_y = -40
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bir" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "southciv_airlock_inner";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/topairlock)
+"bis" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bit" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"biu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Surface EVA"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central1,
+/turf/simulated/floor/tiled/monofloor,
+/area/tether/surfacebase/topairlock)
+"biv" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"biw" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"bix" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Surface EVA"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/topairlock)
+"biy" = (
+/obj/machinery/camera/network/civilian{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/topairlock)
+"biz" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
+ frequency = 1379;
+ scrub_id = "southciv_airlock_scrubber"
+ },
+/obj/structure/sign/fire{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/topairlock)
+"biA" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{
+ frequency = 1379;
+ scrub_id = "southciv_airlock_scrubber"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether/surfacebase/topairlock)
+"biB" = (
+/obj/structure/table/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"biC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"biD" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"biE" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/industrial/warning,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"biF" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/cafeteria)
+"biG" = (
+/obj/machinery/door/airlock/glass{
+ name = "Cafeteria"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biH" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/cafeteria)
+"biI" = (
+/obj/machinery/door/airlock/glass{
+ name = "Cafeteria"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biJ" = (
+/obj/machinery/door/airlock{
+ name = "Decontamination"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"biK" = (
+/obj/machinery/door/airlock{
+ name = "Decontamination"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"biL" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biN" = (
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biO" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ desc = "Looks like it's set to Free-Anur-Entertanment, I wonder what else is on?";
+ icon_state = "frame";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biP" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biQ" = (
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biR" = (
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"biS" = (
+/obj/structure/sink{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"biT" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"biU" = (
+/obj/machinery/vending/snack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"biZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bja" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bje" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"bjf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"bjg" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"bjh" = (
+/obj/machinery/vending/fitness{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bji" = (
+/obj/structure/table/bench/sifwooden/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjj" = (
+/obj/structure/table/bench/sifwooden/padded,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjk" = (
+/obj/structure/table/bench/sifwooden/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjl" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/topairlock)
+"bjm" = (
+/obj/machinery/washing_machine,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"bjn" = (
+/obj/machinery/washing_machine,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/topairlock)
+"bjo" = (
+/obj/machinery/vending/coffee{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjp" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjq" = (
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjr" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjs" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjt" = (
+/obj/structure/table/bench/sifwooden/padded,
+/obj/machinery/computer/security/telescreen/entertainment{
+ desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?";
+ icon_state = "frame";
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bju" = (
+/obj/item/device/radio/intercom/entertainment{
+ pixel_y = -23
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjv" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bjw" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/cafeteria)
+"bjx" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
+"bjy" = (
+/obj/item/device/healthanalyzer,
+/obj/item/bodybag/cryobag,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"bjB" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/machinery/camera/network/medbay{
+ dir = 4
+ },
+/obj/item/device/sleevemate,
+/obj/item/weapon/storage/box/nifsofts_medical{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/weapon/storage/box/nifsofts_medical{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/device/flashlight{
+ pixel_x = 6;
+ pixel_y = 31
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"bjH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = -4
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bjI" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/medical/triage)
+"bjJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"bjO" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/machinery/door/window/brigdoor/southright{
+ req_access = list();
+ req_one_access = list(5,24)
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bjT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"bjU" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper{
+ desc = "";
+ info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing.";
+ name = "Body Designer Note"
+ },
+/obj/item/device/sleevemate,
+/obj/item/weapon/storage/box/body_record_disk,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"bjY" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/camera/network/medbay{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
+"bjZ" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/medical_stand,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery2)
+"bkc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"bkd" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"bke" = (
+/obj/machinery/computer/transhuman/designer{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"bkk" = (
+/obj/machinery/camera/network/medbay{
+ dir = 1
+ },
+/obj/machinery/chem_master,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bko" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"bkp" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light_switch{
+ pixel_x = -22;
+ pixel_y = 22
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom1)
+"bkq" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom1)
+"bkr" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/paper{
+ desc = "";
+ info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management";
+ name = "note to science staff"
+ },
+/obj/item/device/robotanalyzer,
+/obj/item/device/robotanalyzer,
+/obj/machinery/button/windowtint{
+ id = "robo_surg_1";
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom1)
+"bks" = (
+/obj/structure/window/reinforced/polarized/full{
+ id = "robo_surg_1"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom1)
+"bkt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"bku" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"bkv" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"bkw" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized/full{
+ id = "robo_resleeving"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/robotics/resleeving)
+"bkx" = (
+/obj/machinery/alarm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"bky" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/button/windowtint{
+ id = "robo_resleeving";
+ pixel_x = 10;
+ pixel_y = 22
+ },
+/obj/machinery/light_switch{
+ pixel_x = -10;
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"bkz" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"bkA" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"bkB" = (
+/obj/machinery/transhuman/synthprinter,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/robotics/resleeving)
+"bkC" = (
+/turf/simulated/wall,
+/area/rnd/robotics/resleeving)
+"bkE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom1)
+"bkF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom1)
+"bkG" = (
+/obj/machinery/door/airlock/research{
+ name = "Robotics Surgery Room";
+ req_one_access = list(29,47)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom1)
+"bkH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"bkI" = (
+/obj/machinery/door/airlock/research{
+ name = "Robotics Resleeving Room";
+ req_one_access = list(29,47)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"bkJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"bkK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"bkL" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"bkM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
"bkN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 8
},
+/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
- id = "shuttle blast";
+ id = "tourbus_windows";
name = "Shuttle Blast Doors";
opacity = 0
},
-/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating/eris/under,
/area/shuttle/tourbus/general)
+"bkO" = (
+/obj/machinery/transhuman/resleever,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/robotics/resleeving)
+"bkP" = (
+/obj/structure/closet/secure_closet/medical_wall/anesthetics{
+ pixel_x = -32;
+ req_access = list();
+ req_one_access = list(29,45)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom1)
+"bkQ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom1)
+"bkR" = (
+/obj/structure/table/standard,
+/obj/item/device/defib_kit/jumper_kit,
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = -1;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom1)
+"bkS" = (
+/obj/structure/table/standard,
+/obj/item/weapon/book/manual/robotics_cyborgs,
+/obj/item/clothing/glasses/omnihud/rnd,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"bkT" = (
+/obj/structure/table/standard,
+/obj/item/device/mmi,
+/obj/item/device/mmi/digital/posibrain,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/mauve/border,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"bkU" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/mauve/border,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"bkV" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/mauve/border,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"bkW" = (
+/obj/structure/table/standard,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics)
+"bkX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"bkY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/vending/loadout/uniform,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"bkZ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/book/manual/resleeving,
+/obj/item/weapon/storage/box/backup_kit,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"bla" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"blb" = (
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/resleeving)
+"blc" = (
+/obj/structure/window/reinforced/polarized/full{
+ id = "robo_surg_1"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ id = "robo_surg_1"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/surgeryroom1)
+"bld" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/rnd/robotics)
+"ble" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized/full{
+ id = "robo_resleeving"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "robo_resleeving"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/robotics/resleeving)
+"blf" = (
+/obj/structure/window/reinforced/polarized/full{
+ id = "robo_resleeving"
+ },
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized{
+ id = "robo_resleeving"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/robotics/resleeving)
+"blm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bln" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blq" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/surgery1)
+"blr" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"blt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blu" = (
+/obj/structure/table/rack,
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"blw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blx" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blA" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blB" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blC" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/machinery/recharger,
+/obj/random/medical,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blG" = (
+/obj/structure/sink{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"blH" = (
+/obj/structure/table/standard,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/item/device/defib_kit/loaded,
+/obj/item/stack/nanopaste,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"blK" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blM" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/camera/network/medbay,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"blN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"blP" = (
+/obj/structure/table/standard,
+/obj/item/device/glasses_kit,
+/obj/item/weapon/storage/box/rxglasses,
+/obj/item/weapon/storage/box/rxglasses,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"blR" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blS" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/medsec_maintenance)
+"blU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/medsec_maintenance)
+"blV" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blW" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"blZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"bmc" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmd" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmg" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/bed/chair/wheelchair{
+ dir = 4
+ },
+/obj/structure/bed/chair/wheelchair{
+ dir = 4
+ },
+/obj/structure/bed/chair/wheelchair{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -30
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"bmk" = (
+/obj/structure/closet/crate{
+ icon_state = "crate";
+ name = "Grenade Crate"
+ },
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/device/assembly/timer,
+/obj/item/device/assembly/timer,
+/obj/item/device/assembly/timer,
+/obj/item/device/assembly/igniter,
+/obj/item/device/assembly/igniter,
+/obj/item/device/assembly/igniter,
+/obj/item/weapon/tool/screwdriver,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/item/weapon/gun/launcher/syringe,
+/obj/item/weapon/storage/box/syringegun,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"bml" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/machinery/recharger,
+/obj/item/weapon/storage/box/syringegun,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"bmm" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmo" = (
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/medsec_maintenance)
+"bmp" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/medsec_maintenance)
+"bmq" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmr" = (
+/obj/machinery/body_scanconsole{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bms" = (
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmt" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/upperhall)
+"bmu" = (
+/obj/structure/table/glass,
+/obj/random/medical,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/item/weapon/tool/screwdriver,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmx" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"bmy" = (
+/obj/structure/medical_stand,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"bmz" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmC" = (
+/obj/machinery/optable,
+/obj/machinery/oxygen_pump/anesthetic{
+ dir = 1;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"bmE" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ id_tag = null;
+ name = "Medbay Storage";
+ req_access = list(5);
+ req_one_access = list(5)
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"bmG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmH" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmI" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmJ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmM" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/item/device/defib_kit/loaded,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmN" = (
+/obj/machinery/door/airlock/maintenance/medical{
+ name = "Medical Maintenance Access";
+ req_access = list(5)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tether/surfacebase/medical/triage)
+"bmP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bmY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bnc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"bng" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"bnj" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bnk" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bnn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bno" = (
+/obj/item/device/sleevemate,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
+"bnq" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"bnu" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"bnz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/smartfridge/chemistry,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/chemistry)
+"bnF" = (
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ dir = 1;
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ pixel_x = -25;
+ pixel_y = -30
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bnG" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
+"bnI" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Chemistry";
+ req_one_access = list(33)
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bnJ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bnK" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bnL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/device/radio/headset/headset_med,
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/fancy/vials,
+/obj/item/weapon/storage/fancy/vials,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/structure/closet/wardrobe/chemistry_white,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bnM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/closet/secure_closet/medical1,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bnN" = (
+/obj/machinery/chem_master,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bnP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bnQ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bnS" = (
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bnT" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bnU" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Chemistry";
+ req_one_access = list(33)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"bnX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/window/southright{
+ req_access = list(5)
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
+"bnY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 9
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 2
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -5
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -12
+ },
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
+"bod" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/lower/medsec_maintenance)
+"boe" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bof" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bog" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/beacon,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"boh" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bol" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bom" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bon" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"boo" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bop" = (
+/obj/structure/sign/department/medbay{
+ pixel_x = -32
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/multi_tile/glass/polarized{
+ id_tag = "MedbayFoyer";
+ id_tint = "medbayfoyer";
+ name = "Medbay Airlock";
+ req_one_access = list(5)
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
+"bou" = (
+/obj/structure/railing,
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"bov" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"bow" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/surfacebase/outside/outside3)
+"box" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"boy" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "iaar"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"boA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "iaar"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"boB" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "iaar"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"boC" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "iaar"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"bpw" = (
+/obj/structure/table/steel,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/storage/box/donut,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
"bqs" = (
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
@@ -33666,35 +37159,75 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"bxH" = (
+"bqw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/requests_console/preset/hos{
+ dir = 4;
+ pixel_x = -54
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/hos)
+"bsa" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
-"bzK" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bsb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
},
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"bsr" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"bxa" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
},
/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa/officecommon)
+"bzK" = (
+/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
"bEd" = (
/obj/effect/floor_decal/borderfloor{
@@ -33714,6 +37247,17 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"bJV" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell B"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/upperhall)
"bKS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
@@ -33742,6 +37286,32 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"bTC" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"bUM" = (
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"bUT" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/stamp/internalaffairs,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
"caw" = (
/obj/effect/floor_decal/steeldecal/steel_decals_central5{
dir = 4
@@ -33762,8 +37332,41 @@
dir = 4
},
/obj/effect/map_helper/airlock/door/simple,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "tourbus_windows";
+ name = "Shuttle Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/tiled/eris/techmaint_panels,
/area/shuttle/tourbus/general)
+"cbn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"cbM" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/closet/walllocker_double{
+ dir = 8;
+ pixel_x = -28
+ },
+/obj/item/device/camera,
+/obj/item/device/camera_film,
+/obj/item/device/taperecorder,
+/obj/item/device/tape/random,
+/obj/item/device/tape/random,
+/obj/item/weapon/storage/secure/briefcase,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
"ceN" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -33796,6 +37399,17 @@
},
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
+"cnO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
"cnZ" = (
/obj/structure/bed/chair/bay/chair{
dir = 4
@@ -33821,6 +37435,21 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"crh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"csd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
"cwI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -33836,9 +37465,18 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/light/small,
+/obj/machinery/light,
/turf/simulated/floor/wood,
/area/library)
+"cEx" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/stamp/internalaffairs,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
"cFA" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -33857,6 +37495,9 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"cGs" = (
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/bar)
"cGt" = (
/obj/structure/cable/green{
d1 = 4;
@@ -33869,6 +37510,13 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"cHf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"cJL" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
@@ -33881,6 +37529,16 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"cMO" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "iaal"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
"cRi" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -33895,25 +37553,28 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/library)
+"cSL" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
"cVg" = (
-/obj/structure/table/steel,
-/obj/effect/floor_decal/borderfloor{
- dir = 5
+/obj/structure/bed/chair/office/dark{
+ dir = 4
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
+/obj/machinery/button/windowtint/multitint{
+ id = "sec_processing";
+ pixel_x = 26;
+ pixel_y = 6;
+ req_access = list(1)
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 28
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
"cWe" = (
@@ -33931,21 +37592,112 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
+"cWU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/lower/third_south)
+"cYm" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"daN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"dbk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ id = "mechbay";
+ name = "Mech Bay"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "mechbay-inner";
+ name = "Mech Bay";
+ pixel_x = 27;
+ pixel_y = -5;
+ req_access = list(29,47);
+ req_one_access = list(47)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "mechbay";
+ name = "Mech Bay";
+ pixel_x = 27;
+ pixel_y = 6;
+ req_access = list(29,47);
+ req_one_access = list(47)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/robotics/mechbay)
+"ddl" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
"ddn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 1
},
+/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/regular{
density = 0;
dir = 4;
icon_state = "pdoor0";
- id = "shuttle blast";
+ id = "tourbus_windows";
name = "Shuttle Blast Doors";
opacity = 0
},
-/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating/eris/under,
/area/shuttle/tourbus/cockpit)
"dgA" = (
@@ -33955,6 +37707,11 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
+"dlX" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin,
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
"dmH" = (
/obj/structure/cable/green{
d1 = 1;
@@ -34012,6 +37769,43 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"dyV" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
+"dDQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Chemistry";
+ sortType = "Chemistry"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"dFg" = (
+/obj/structure/grille,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/polarized/full{
+ id = "hos_office"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/hos)
"dGZ" = (
/obj/structure/cable{
d1 = 2;
@@ -34062,6 +37856,31 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"dMk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"dSQ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"dVE" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -34084,48 +37903,101 @@
},
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
-"dYX" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"dVZ" = (
+/obj/structure/table/woodentable,
+/obj/item/clothing/accessory/permit/gun{
+ desc = "An example of a card indicating that the owner is allowed to carry a firearm. There's a note saying to fax CentCom if you want to order more blank permits.";
+ name = "sample weapon permit";
+ owner = 1
},
-/obj/machinery/light_switch{
- pixel_y = 25
- },
-/obj/random/junk,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
+/obj/item/weapon/pen/multi,
+/obj/item/device/megaphone,
+/obj/item/clothing/accessory/permit/gun,
+/obj/item/clothing/accessory/permit/gun,
+/obj/item/clothing/accessory/permit/gun,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
-"ehN" = (
-/obj/effect/floor_decal/techfloor/corner,
-/obj/effect/floor_decal/techfloor{
- dir = 1
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/hos)
+"dXv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/bed/chair{
+ dir = 8
},
-/obj/effect/floor_decal/techfloor/hole/right{
- dir = 1
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/shuttle_pad)
+"eeD" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
},
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"efc" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"efR" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"ehr" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
"eiO" = (
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
+"ely" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"erS" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -34143,37 +38015,34 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
-"eAM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+"exM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
"eCG" = (
/obj/machinery/computer/ship/helm,
/turf/simulated/floor/tiled/eris/white/orangecorner,
/area/shuttle/tourbus/cockpit)
+"eCP" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"eEW" = (
+/obj/machinery/door/airlock{
+ name = "Internal Affairs";
+ req_access = list(38)
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
"eFg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -34253,6 +38122,26 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"eSz" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"fcg" = (
/obj/structure/bed/chair/bay/chair{
dir = 8
@@ -34304,27 +38193,15 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"frq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+"fkn" = (
+/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/area/tether/surfacebase/surface_three_hall)
"fru" = (
/obj/machinery/embedded_controller/radio/simple_docking_controller{
dir = 8;
@@ -34378,15 +38255,53 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"fNt" = (
-/obj/structure/cable/green{
- dir = 1
+"fzy" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/iaa/officecommon)
+"fGm" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Briefing Room";
+ req_access = newlist();
+ req_one_access = list(1,38)
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"fKo" = (
+/obj/effect/floor_decal/techfloor/orange,
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"fLx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/shuttle/tourbus/engines)
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/storage)
+"fNA" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
"fOj" = (
/obj/structure/disposalpipe/sortjunction/flipped{
dir = 1;
@@ -34400,40 +38315,24 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"fRH" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/structure/window/reinforced/polarized/full{
+ id = "hos_office"
+ },
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/machinery/holoposter{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
-"fXv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/medical{
- name = "Patient Room A";
- req_one_access = list()
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/patient_a)
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/hos)
"fYr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 4
@@ -34452,6 +38351,24 @@
},
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/engines)
+"gae" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
+"geQ" = (
+/obj/machinery/holoposter{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
+"gfg" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/shuttle_pad)
"ghf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -34461,6 +38378,20 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
+"ghk" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
+"ghW" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
"giR" = (
/obj/structure/cable/green{
d1 = 4;
@@ -34475,6 +38406,26 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
+"gnE" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/hos)
+"gtn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
"gtp" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -34482,6 +38433,45 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
+"gvp" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 22;
+ pixel_y = -24
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
+"gym" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"gzd" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
"gAF" = (
/obj/structure/cable/green{
d1 = 4;
@@ -34492,6 +38482,21 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"gDk" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"gHh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 10
@@ -34504,6 +38509,10 @@
/obj/structure/cable/green{
icon_state = "1-8"
},
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
"gLg" = (
@@ -34514,32 +38523,30 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/pool)
-"gRX" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+"gRG" = (
+/obj/structure/closet/hydrant{
+ pixel_x = -32
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
-"gTN" = (
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
+/area/tether/surfacebase/southhall)
+"gSr" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28
},
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
+"gTL" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"gTN" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -34547,6 +38554,10 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"gUL" = (
@@ -34580,6 +38591,19 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"gZn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"gZR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
"haS" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -34593,6 +38617,16 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
+"heL" = (
+/obj/machinery/computer/operating,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/surgery1)
+"hfN" = (
+/obj/machinery/camera/network/civilian{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
"hgf" = (
/obj/machinery/door/firedoor/glass/hidden{
dir = 2
@@ -34613,6 +38647,16 @@
},
/turf/simulated/floor/tiled/eris/white/orangecorner,
/area/shuttle/tourbus/cockpit)
+"hmT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
"hoQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -34620,6 +38664,20 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"hqs" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/obj/machinery/camera/network/tether,
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"hth" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/shuttle_pad)
"hxc" = (
/obj/effect/floor_decal/borderfloor/corner,
/obj/effect/floor_decal/corner/lime/bordercorner,
@@ -34631,6 +38689,45 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
+"hxR" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"hxY" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"hCr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"hCz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/shuttle_pad)
"hCB" = (
/obj/structure/cable/green{
d1 = 1;
@@ -34645,6 +38742,15 @@
},
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
+"hEt" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
"hEN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -34652,6 +38758,17 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/library)
+"hId" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"hIu" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
"hJt" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
@@ -34662,28 +38779,30 @@
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_hallway)
"hLd" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/medsec_maintenance)
-"hYK" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
+"hQl" = (
+/obj/machinery/newscaster{
+ pixel_y = -29
},
-/obj/effect/floor_decal/techfloor/corner{
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
+"hVc" = (
+/obj/structure/table/woodentable,
+/obj/machinery/photocopier/faxmachine{
+ department = "Head of Security"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 1
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"ieb" = (
/obj/effect/floor_decal/borderfloorblack,
/obj/effect/floor_decal/industrial/danger,
@@ -34694,6 +38813,51 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
+"ieo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
+"ieE" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/shuttle_pad)
+"ieN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"ifI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/computer/atmos_alert{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/shuttle_pad)
"iiv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -34747,12 +38911,102 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"itr" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/upperhall)
"ivq" = (
/obj/machinery/computer/ship/engines{
dir = 8
},
/turf/simulated/floor/tiled/eris/white/orangecorner,
/area/shuttle/tourbus/cockpit)
+"ixw" = (
+/obj/structure/table/standard,
+/obj/item/weapon/book/codex,
+/obj/random/cigarettes,
+/obj/item/weapon/deck/cards,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/holoposter{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
+"iFr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"iHX" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"iLq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/storage)
+"iLF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/tether/surfacebase/security/briefingroom)
+"iLR" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
+"iOL" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/uppernorthstairwell{
+ name = "\improper North Medical Stairwell"
+ })
"iQr" = (
/obj/machinery/hologram/holopad,
/obj/effect/landmark/start{
@@ -34769,6 +39023,27 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
+"iUu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/storage)
"iXM" = (
/obj/structure/cable/green{
d1 = 1;
@@ -34787,24 +39062,32 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"jmQ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"jpB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 6
},
/turf/simulated/wall/shull,
/area/shuttle/tourbus/general)
-"jri" = (
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/surface_three_hall)
"jrn" = (
/obj/structure/cable/green{
d1 = 4;
@@ -34849,6 +39132,9 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"jBt" = (
+/turf/simulated/wall,
+/area/teleporter/departing)
"jBB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -34883,26 +39169,36 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"jDC" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloor/corner2{
+"jCE" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 8
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/southhall)
+"jFq" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder{
+ pixel_x = -4
},
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- pixel_y = -32
+/obj/item/weapon/folder/blue{
+ pixel_x = 5
},
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/obj/item/weapon/folder/red{
+ pixel_y = 3
+ },
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/storage/briefcase{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = 27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
"jFz" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -34940,6 +39236,32 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"jKY" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"jML" = (
/obj/effect/floor_decal/steeldecal/steel_decals_central5{
dir = 8
@@ -34961,8 +39283,55 @@
req_one_access = list(19,43,67);
specialfunctions = 4
},
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "tourbus_windows";
+ name = "Shuttle Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/tiled/eris/techmaint_panels,
/area/shuttle/tourbus/general)
+"jPW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"jRO" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/bar)
+"jSV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"jYd" = (
/obj/structure/cable/green{
d1 = 4;
@@ -34974,6 +39343,9 @@
},
/turf/simulated/floor/reinforced,
/area/tether/surfacebase/shuttle_pad)
+"jYD" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/iaa/officeb)
"jZe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/turf/simulated/floor/tiled/monotile,
@@ -34989,8 +39361,39 @@
/obj/structure/closet/emergsuit_wall{
pixel_y = 32
},
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "tourbus_windows";
+ name = "window blast shields"
+ },
/turf/simulated/floor/tiled/eris/white/orangecorner,
/area/shuttle/tourbus/cockpit)
+"keg" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/obj/machinery/station_map{
+ dir = 4;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"keV" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
"keX" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -35025,6 +39428,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"kkW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/hos)
"kmK" = (
/obj/structure/bed/chair/bay/chair{
dir = 4
@@ -35051,12 +39460,18 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"kun" = (
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28;
- req_access = list(67)
+"kqo" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/iaa/officea)
+"ksL" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"kun" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 4
},
@@ -35081,7 +39496,7 @@
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/corner/lightgrey/border{
+/obj/effect/floor_decal/corner/red/border{
dir = 1
},
/turf/simulated/floor/tiled,
@@ -35091,6 +39506,20 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
+"kwO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/upperhall)
"kyC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -35119,11 +39548,66 @@
},
/obj/effect/floor_decal/industrial/outline/red,
/obj/machinery/portable_atmospherics/canister/phoron,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ req_one_access = list(19,43,67)
},
/turf/simulated/floor/tiled/eris/dark/bluecorner,
/area/shuttle/tourbus/engines)
+"kCW" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"kFJ" = (
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"kGd" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "iaal"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"kQb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"kRa" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
"kTn" = (
/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -35131,6 +39615,12 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
+"kUh" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
"kXo" = (
/obj/structure/noticeboard{
pixel_y = -26
@@ -35151,6 +39641,20 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"laB" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"lcS" = (
/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -35158,6 +39662,17 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
+"lgb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ id_tag = "HoSdoor";
+ name = "Head of Security";
+ req_access = list(58)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"lgo" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
@@ -35174,6 +39689,21 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
+"lmq" = (
+/obj/machinery/computer/general_air_control/fuel_injection{
+ device_tag = "riot_inject";
+ dir = 8;
+ frequency = 1442;
+ name = "Riot Control Console"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
+"lpg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/hos)
"lpB" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor/corner,
@@ -35189,21 +39719,28 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"lqE" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"lqJ" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 4;
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
"lqX" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/turf/simulated/floor/plating,
/area/crew_quarters/recreation_area)
-"lsy" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
"lvH" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/mauve/border,
@@ -35221,12 +39758,58 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"lxa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+"lwp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
},
-/turf/simulated/floor/wood,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"lxa" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/carpet,
/area/library)
+"lzq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"lAW" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"lCq" = (
/obj/structure/handrail{
dir = 8
@@ -35242,6 +39825,35 @@
},
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
+"lFG" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/hos)
+"lMj" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/device/suit_cooling_unit,
+/obj/item/weapon/tank/oxygen,
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Protosuit Storage";
+ req_access = list(58)
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/security/prototype,
+/obj/item/clothing/head/helmet/space/void/security/prototype,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"lSv" = (
/obj/structure/cable/green{
d1 = 1;
@@ -35259,6 +39871,31 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
+"lWE" = (
+/obj/structure/grille,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/polarized/full{
+ id = "hos_office"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/hos)
+"lXo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
"lXv" = (
/obj/machinery/light/small{
dir = 8
@@ -35278,6 +39915,16 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"mdE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
"mel" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
@@ -35306,11 +39953,34 @@
/obj/machinery/atm{
pixel_y = 31
},
-/obj/effect/floor_decal/corner/lightgrey/border{
+/obj/effect/floor_decal/corner/red/border{
dir = 1
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"mjT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"mwz" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
"myZ" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
@@ -35330,25 +40000,16 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"mzz" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"mBz" = (
+/obj/structure/closet/lawcloset,
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/alarm{
+ pixel_y = 22
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
"mDf" = (
/obj/structure/bed/chair/bay/chair{
dir = 4
@@ -35371,37 +40032,43 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"mHO" = (
-/obj/effect/floor_decal/borderfloorwhite{
+"mFy" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"mMS" = (
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"mOt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/effect/floor_decal/corner/paleblue/border{
+/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/structure/closet/secure_closet/medical1,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/item/weapon/reagent_containers/glass/beaker/vial/imidazoline,
-/turf/simulated/floor/tiled/white,
-/area/tether/surfacebase/medical/chemistry)
-"mRs" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 1
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/area/tether/surfacebase/security/upperhall)
"mUE" = (
/obj/structure/cable/green{
d1 = 4;
@@ -35411,6 +40078,20 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"mWk" = (
+/obj/structure/table/steel,
+/obj/item/device/flashlight/lamp,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
"mWX" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -35436,6 +40117,12 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"mYT" = (
+/obj/machinery/computer/cryopod/gateway{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
"nbM" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -35455,6 +40142,12 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"ngL" = (
+/obj/structure/table/steel,
+/obj/item/weapon/folder/red,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
"nlf" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -35480,6 +40173,123 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"nnY" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"nue" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"nuu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"nyy" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"nEn" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"nJe" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"nKy" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/surface_three_hall)
+"nLw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"nLX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -35489,6 +40299,72 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"nQA" = (
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"nSq" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"nXZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"nYB" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"oat" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"oav" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "iaal"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
"obl" = (
/obj/structure/cable/green{
d1 = 4;
@@ -35511,6 +40387,12 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
+"ooI" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
"ooM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/turf/simulated/floor/tiled/monofloor{
@@ -35565,9 +40447,6 @@
/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
@@ -35576,29 +40455,55 @@
dir = 1
},
/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"oCw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"oCC" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/status_display{
+ pixel_y = 30
},
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/area/tether/surfacebase/surface_three_hall)
+"oEh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/cable/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/upperhall)
+"oEj" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
"oEL" = (
/obj/structure/cable/green{
d1 = 1;
@@ -35609,6 +40514,50 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"oII" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"oIJ" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
+"oJw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ closed_layer = 10;
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ layer = 1;
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ open_layer = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/wall,
+/area/tether/surfacebase/medical/storage)
+"oKw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
"oLR" = (
/obj/structure/bed/chair/bay/chair{
dir = 1
@@ -35623,31 +40572,43 @@
},
/turf/simulated/floor/tiled/eris/white/orangecorner,
/area/shuttle/tourbus/cockpit)
+"oMh" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"oMK" = (
/obj/machinery/atmospherics/unary/engine,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/shuttle_pad)
+"oOD" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "iaar"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/iaa/officeb)
"oPm" = (
/obj/structure/bed/chair/bay/chair{
dir = 4
},
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
-"oRG" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/structure/bed/chair{
- dir = 1
- },
+"oPG" = (
+/obj/structure/closet/secure_closet/hos,
/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"oSv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -35688,6 +40649,60 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"oWt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/southhall)
+"oWD" = (
+/obj/effect/landmark{
+ name = "JoinLateGateway"
+ },
+/obj/effect/floor_decal/techfloor/orange,
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"oXx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"oZC" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/donut,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
+"pcs" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
"peS" = (
/obj/structure/cable/green{
d1 = 1;
@@ -35731,31 +40746,81 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"pwF" = (
-/obj/machinery/computer/ship/sensors,
-/turf/simulated/floor/tiled/eris/white/orangecorner,
-/area/shuttle/tourbus/cockpit)
-"pzH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"pnq" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/structure/cable/green{
- icon_state = "4-8"
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"pph" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
},
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "iaal"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"prD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
+"psO" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"puE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/holoposter{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/corner/red/border{
dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/area/tether/surfacebase/surface_three_hall)
+"pwF" = (
+/obj/machinery/computer/ship/sensors,
+/turf/simulated/floor/tiled/eris/white/orangecorner,
+/area/shuttle/tourbus/cockpit)
"pAh" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
@@ -35774,14 +40839,52 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"pJL" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"pCb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -32
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
+"pCv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"pHl" = (
+/obj/structure/table/steel,
+/obj/item/weapon/folder/red,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
+/area/tether/surfacebase/security/briefingroom)
+"pIB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"pJL" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
"pNk" = (
/obj/machinery/computer/shuttle_control/explore/tourbus,
/obj/machinery/light/small{
@@ -35789,6 +40892,22 @@
},
/turf/simulated/floor/tiled/eris/white/orangecorner,
/area/shuttle/tourbus/cockpit)
+"pOZ" = (
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/hos)
+"pPe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
"pPs" = (
/obj/machinery/light{
dir = 1
@@ -35801,6 +40920,37 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/xenobiology/outpost_main)
+"pPQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"qbo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/southhall)
+"qda" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/computer/guestpass{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
"qem" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
@@ -35818,6 +40968,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/library)
+"qgM" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/tether/surfacebase/surface_three_hall)
"qkf" = (
/obj/structure/cable/green{
d1 = 4;
@@ -35830,18 +40984,70 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"qnv" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
+"qnC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Security";
+ sortType = "Security"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
"qom" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "tourbus_windows";
+ name = "Shuttle Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/tiled/steel_dirty,
/area/shuttle/tourbus/engines)
+"qoL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"qqP" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa)
"qqV" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/turf/simulated/floor/plating,
/area/crew_quarters/recreation_area)
+"qtt" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
"qvp" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -35855,6 +41061,72 @@
"qwm" = (
/turf/simulated/wall/shull,
/area/shuttle/tourbus/engines)
+"qze" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"qzU" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/lobby)
+"qAt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"qDF" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/southhall)
+"qGK" = (
+/obj/structure/table/reinforced,
+/obj/item/device/radio{
+ pixel_x = -4
+ },
+/obj/item/device/radio{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
"qIb" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -35868,6 +41140,12 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"qKO" = (
+/obj/structure/closet/hydrant{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
"qQZ" = (
/obj/effect/floor_decal/techfloor,
/obj/machinery/firealarm{
@@ -35879,10 +41157,49 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
+"qVj" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"qWU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/turf/simulated/wall/shull,
/area/shuttle/tourbus/engines)
+"qXD" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/machinery/button/windowtint{
+ id = "hos_office";
+ pixel_x = -32;
+ pixel_y = -25;
+ req_access = list(58)
+ },
+/obj/machinery/button/remote/airlock{
+ id = "HoSdoor";
+ name = "Office Door";
+ pixel_x = -26;
+ pixel_y = -22
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "surfbriglockdown";
+ name = "Brig Lockdown";
+ pixel_x = -26;
+ pixel_y = -33;
+ req_access = list(2)
+ },
+/obj/effect/landmark/start{
+ name = "Head of Security"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = -36;
+ pixel_y = -34
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/hos)
"rbR" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -35892,6 +41209,49 @@
},
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
+"rnn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"rnG" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/hos)
+"rrG" = (
+/obj/structure/table/steel,
+/obj/item/weapon/folder/red{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/folder/red,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"ruh" = (
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/cafeteria)
"rxh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 10
@@ -35922,6 +41282,24 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
+"rBz" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"rCt" = (
+/obj/structure/closet/lawcloset,
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
"rEZ" = (
/obj/structure/table/woodentable,
/obj/item/weapon/reagent_containers/glass/bucket,
@@ -35942,6 +41320,35 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
+"rJT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
+"rLM" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"rMS" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -35952,6 +41359,42 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"rPu" = (
+/obj/structure/closet/wardrobe/xenos,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
+"rPD" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/shuttle_pad)
+"rQp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"rWx" = (
+/obj/structure/grille,
+/obj/structure/cable/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/polarized/full{
+ id = "sec_processing"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/processing)
"rXW" = (
/obj/effect/floor_decal/techfloor{
dir = 1
@@ -35972,23 +41415,75 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"saK" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/bed/chair{
+"rYy" = (
+/obj/structure/window/basic/full,
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/basic,
+/obj/structure/window/basic{
dir = 1
},
-/obj/machinery/camera/network/security{
- dir = 10
+/obj/structure/window/basic{
+ dir = 8
},
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/turf/simulated/floor/plating,
+/area/rnd/outpost/xenobiology/outpost_storage)
+"shx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/upperhall)
"sla" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
+"snE" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"soG" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"sts" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/foodcart,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
"suT" = (
/obj/structure/cable/green{
d1 = 4;
@@ -36001,6 +41496,16 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"syw" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/camera/network/security{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"sDG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -36010,6 +41515,33 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"sEq" = (
+/obj/machinery/door_timer/cell_3{
+ id = "Cell B";
+ name = "Cell B";
+ pixel_y = -32
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"sFW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -36026,15 +41558,33 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/door/window/southleft{
- dir = 1;
- req_one_access = list(19,43,67)
- },
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 9
},
+/obj/machinery/door/window/southright{
+ dir = 1;
+ req_one_access = list(19,43,67)
+ },
/turf/simulated/floor/tiled/eris/dark/bluecorner,
/area/shuttle/tourbus/engines)
+"sJv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/triage)
"sLa" = (
/obj/machinery/firealarm{
layer = 3.3;
@@ -36096,21 +41646,41 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"sWs" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor/hole/right{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+"sTM" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/skills{
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/hos)
+"sWs" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Medical Department";
+ departmentType = 3;
+ name = "Medical RC";
+ pixel_x = -30
+ },
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
+"sWR" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
"sXa" = (
/obj/machinery/holoposter{
pixel_x = -30;
@@ -36118,6 +41688,19 @@
},
/turf/simulated/floor/grass,
/area/tether/surfacebase/public_garden_three)
+"sXR" = (
+/obj/item/device/radio/intercom/department/security{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
"tcW" = (
/obj/effect/shuttle_landmark{
base_area = /area/tether/surfacebase/shuttle_pad;
@@ -36137,6 +41720,36 @@
},
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
+"tit" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
+"tki" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"tkB" = (
+/obj/item/modular_computer/console/preset/command{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"tqY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 1
@@ -36147,16 +41760,19 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
"trA" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/techfloor{
+/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/bed/chair,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
"ttH" = (
/obj/structure/cable/green{
d1 = 4;
@@ -36210,6 +41826,42 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"tyN" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"tLk" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/button/windowtint{
+ id = "iaar";
+ pixel_x = -25;
+ pixel_y = 7
+ },
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
"tLv" = (
/obj/machinery/power/smes/buildable{
charge = 500000
@@ -36223,6 +41875,19 @@
},
/turf/simulated/floor/tiled/eris/dark/bluecorner,
/area/shuttle/tourbus/engines)
+"tPE" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/codex,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
"tRg" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
@@ -36247,6 +41912,20 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"tRk" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
"tWn" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
@@ -36259,16 +41938,40 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"tXj" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
"tYE" = (
-/obj/structure/table/steel,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
+/area/tether/surfacebase/security/iaa/officecommon)
"uaN" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 9
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
+"udd" = (
+/obj/machinery/cryopod/robot/door/gateway,
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"ueB" = (
+/turf/simulated/wall,
+/area/tether/surfacebase/security/hos)
"ueU" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
@@ -36292,6 +41995,52 @@
},
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
+"uiJ" = (
+/obj/machinery/chemical_dispenser/full,
+/obj/structure/table/reinforced,
+/obj/structure/sign/poster{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"und" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell A"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/upperhall)
+"upV" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
"uxT" = (
/obj/effect/floor_decal/steeldecal/steel_decals_central5{
dir = 8
@@ -36302,6 +42051,29 @@
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
+"uyz" = (
+/obj/structure/table/reinforced,
+/obj/item/device/megaphone,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"uAI" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
"uFI" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -36316,12 +42088,34 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"uOc" = (
-/obj/effect/floor_decal/techfloor{
+"uIY" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/hole/right{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"uNt" = (
+/turf/simulated/open,
+/area/tether/surfacebase/security/upperhall)
+"uOL" = (
+/obj/structure/table/standard,
+/obj/item/clothing/gloves/sterile/nitrile,
+/obj/item/clothing/gloves/sterile/nitrile,
+/obj/item/device/defib_kit/loaded,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/storage)
+"uQt" = (
+/obj/effect/floor_decal/techfloor/orange{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
"uSA" = (
/obj/effect/shuttle_landmark{
base_area = /area/tether/surfacebase/shuttle_pad;
@@ -36332,6 +42126,18 @@
},
/turf/simulated/shuttle/floor/black,
/area/shuttle/tether)
+"uWw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized/full{
+ id = "surfsurgery2"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/medical/surgery2)
"uYO" = (
/obj/structure/cable/green{
d1 = 4;
@@ -36343,6 +42149,15 @@
},
/turf/simulated/floor/tiled/monofloor,
/area/tether/surfacebase/shuttle_pad)
+"vaG" = (
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
"viF" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
@@ -36363,6 +42178,60 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"vkv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"vna" = (
+/obj/machinery/computer/secure_data,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/item/device/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/processing)
+"vnS" = (
+/obj/machinery/chemical_dispenser/full,
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
+"vop" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen/blue{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/pen/blade/red{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
"voF" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
@@ -36380,6 +42249,22 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
+"vqv" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/upperhall)
"vrU" = (
/obj/structure/cable{
d1 = 2;
@@ -36435,6 +42320,76 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"vzs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/breakroom)
+"vEm" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/command_guide,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"vEJ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"vFm" = (
+/obj/structure/grille,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "surfbriglockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/polarized/full{
+ id = "hos_office"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/hos)
+"vIh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/iaa/officecommon)
+"vIA" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
"vJA" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -36459,10 +42414,80 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"vQP" = (
-/obj/effect/floor_decal/techfloor,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/maintenance/lower/medsec_maintenance)
+"vLM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/shuttle_pad)
+"vTf" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/shuttle_pad)
+"vWL" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"way" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/computer/shuttle_control/tether_backup{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/shuttle_pad)
+"waR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"wer" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
"weK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
@@ -36476,13 +42501,97 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
-"wiX" = (
-/obj/machinery/camera/network/civilian{
+"whW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/tether/surfacebase/security/briefingroom)
+"wju" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"wlf" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/carpet/blue,
+/area/tether/surfacebase/security/breakroom)
+"wng" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/upperhall)
+"wob" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder{
+ pixel_x = -4
+ },
+/obj/item/weapon/folder/blue{
+ pixel_x = 5
+ },
+/obj/item/weapon/folder/red{
+ pixel_y = 3
+ },
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/storage/briefcase{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = -27
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
+"woN" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "iaal"
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/security/iaa/officea)
+"woZ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/flame/candle,
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightgrey{
dir = 9
},
-/obj/machinery/photocopier,
-/turf/simulated/floor/wood,
-/area/library)
+/obj/machinery/computer/security/telescreen/entertainment{
+ desc = "Look's like it's set to the info station... I wonder what else is on?";
+ icon_state = "frame";
+ pixel_x = 32;
+ pixel_y = -64
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/surface_three_hall)
"wrA" = (
/obj/structure/cable/green{
d1 = 1;
@@ -36509,22 +42618,62 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
+"wur" = (
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
"wyi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 4
},
+/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/regular{
density = 0;
icon_state = "pdoor0";
- id = "shuttle blast";
+ id = "tourbus_windows";
name = "Shuttle Blast Doors";
opacity = 0
},
-/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating/eris/under,
/area/shuttle/tourbus/general)
+"wBv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"wKZ" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/structure/bed/chair/office/light,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/lobby)
+"wPB" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
"wPD" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
@@ -36538,6 +42687,15 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"wPV" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/folder/red_hos,
+/obj/item/weapon/stamp/hos,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/tether/surfacebase/security/hos)
"wQf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 4
@@ -36549,6 +42707,29 @@
},
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
+"wQs" = (
+/obj/item/device/radio/intercom/department/security{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"wWo" = (
+/obj/structure/closet/wardrobe/black,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
"wXr" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 6
@@ -36563,11 +42744,43 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"xaU" = (
-/obj/structure/bed/chair{
- dir = 8
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/processing)
+/area/tether/surfacebase/security/iaa/officecommon)
"xdM" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/floor_decal/borderfloor{
@@ -36586,6 +42799,15 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
+"xku" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/shuttle_pad)
"xkx" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -36598,10 +42820,10 @@
layer = 3.3;
pixel_y = 26
},
-/obj/effect/floor_decal/corner/lightgrey/border{
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
"xlW" = (
@@ -36627,6 +42849,18 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"xog" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/chemistry)
"xpJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 1
@@ -36636,50 +42870,68 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"xsf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/security{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/upperhall)
+"xud" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/shuttle_pad)
"xvN" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"xyK" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+"xxB" = (
+/obj/structure/bed/chair{
+ dir = 8
},
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/shuttle_pad)
+"xBf" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
},
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/camera/network/tether,
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
-"xAV" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/security/lobby)
+/area/tether/surfacebase/surface_three_hall)
"xEB" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -36690,10 +42942,39 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"xGw" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/closet/walllocker_double{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/item/device/camera,
+/obj/item/device/camera_film,
+/obj/item/device/taperecorder,
+/obj/item/device/tape/random,
+/obj/item/device/tape/random,
+/obj/item/weapon/storage/secure/briefcase,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
"xHg" = (
-/obj/random/cutout,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_site/gateway)
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/command_guide,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
"xIO" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -36733,6 +43014,31 @@
},
/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
+"xQv" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/red_hos,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/security/briefingroom)
+"xQG" = (
+/obj/machinery/door/airlock{
+ name = "Internal Affairs";
+ req_access = list(38)
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officea)
"xUo" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -36749,23 +43055,89 @@
/obj/machinery/light/small,
/turf/simulated/floor/plating/eris/under,
/area/shuttle/tourbus/cockpit)
+"xXZ" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/tether/surfacebase/security/upperhall)
"xZw" = (
-/obj/structure/bed/chair{
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant/unusual,
+/turf/simulated/floor/tiled/white,
+/area/tether/surfacebase/medical/admin)
+"ycf" = (
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
/obj/structure/cable/green{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/tether/surfacebase/shuttle_pad)
+/area/tether/surfacebase/surface_three_hall)
"yet" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/recreation_area)
+"yfW" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen/blade/red{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/weapon/pen/blue{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tether/surfacebase/security/iaa/officeb)
+"yhU" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/wood,
+/area/tether/surfacebase/security/hos)
+"yir" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Long-Range Teleporter Access"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/southhall)
(1,1,1) = {"
aaa
@@ -40675,7 +47047,7 @@ aac
aac
aac
aac
-aFf
+aac
aac
aac
aac
@@ -40816,9 +47188,9 @@ aac
aac
aac
aac
-aFf
-aFh
-aFf
+aac
+aac
+aac
aac
aac
aac
@@ -40959,7 +47331,7 @@ aac
aac
aac
aac
-aFf
+aac
aac
aac
aac
@@ -41271,20 +47643,20 @@ aab
aOm
adG
aOR
-aPd
aPv
aPv
aPv
aPv
aPv
aPv
-aQQ
+aPv
+aPv
aRa
aRa
aRa
aRa
aRa
-aRW
+aSj
aSj
aSA
aSA
@@ -41969,7 +48341,7 @@ aac
aac
aac
aac
-aac
+aaq
adG
adG
adG
@@ -42267,7 +48639,7 @@ aOp
aOp
aIr
aIX
-aQM
+aPd
aQe
aQA
aQB
@@ -42409,7 +48781,7 @@ aOE
aLj
aPj
aIZ
-aPR
+aPo
aQn
aRc
aQC
@@ -42551,11 +48923,11 @@ aOp
aMj
aIs
aJa
-aQM
+aQQ
ayw
aQr
aPS
-aQM
+aQZ
aQM
aMp
aQM
@@ -42608,7 +48980,7 @@ aab
aab
aab
aab
-aab
+aac
aac
aac
aac
@@ -42750,7 +49122,7 @@ aab
aab
aab
aab
-aab
+aac
aac
aac
aac
@@ -42891,8 +49263,8 @@ aab
aab
aab
aab
-aab
-aab
+aac
+aac
aac
aac
aac
@@ -43033,8 +49405,8 @@ aab
aab
aab
aab
-aab
-aab
+aac
+aac
aac
aac
aac
@@ -43116,7 +49488,7 @@ aNM
aNM
aOt
adG
-aOX
+aOY
aPl
aPH
aPW
@@ -43174,8 +49546,8 @@ aab
aab
aab
aab
-aab
-aab
+aac
+aac
aac
aac
aac
@@ -43274,7 +49646,7 @@ aRp
aRe
eFg
bKS
-aSJ
+rYy
aSY
aTk
bhf
@@ -43316,8 +49688,8 @@ aab
aab
aab
aab
-aab
-aab
+aac
+aac
aac
aac
aac
@@ -43458,8 +49830,6 @@ aab
aab
aab
aab
-aab
-aab
aac
aac
aac
@@ -43477,9 +49847,11 @@ aac
aac
aac
aac
-aac
-aac
-agw
+kqo
+kqo
+kqo
+kqo
+kqo
abz
abB
jJd
@@ -43543,20 +49915,20 @@ aOi
aOm
adG
aOW
-aPo
aPK
aPK
aPK
aPK
aPK
aPK
-aQZ
+aPK
+aPK
aRe
aRe
aRe
aRe
aRe
-aSi
+aSz
aSz
aSI
aSI
@@ -43600,9 +49972,6 @@ aab
aab
aab
aab
-aab
-aab
-aab
aac
aac
aac
@@ -43614,16 +49983,19 @@ aac
aac
aac
aac
-aTV
-aTV
-aTV
-aTV
-aTV
-aTV
-aTV
-agw
-agw
-agw
+aac
+aac
+aac
+aac
+aac
+aac
+kqo
+rCt
+cbM
+wob
+kqo
+kqo
+kqo
xkx
vun
bhu
@@ -43742,9 +50114,6 @@ aab
aab
aab
aab
-aab
-aab
-aab
aac
aac
aac
@@ -43756,16 +50125,19 @@ aac
aac
aac
aac
-aTV
-aTZ
-aTZ
-aTZ
-aTW
-aTW
-aTW
-aTW
-aTW
-agw
+aac
+aac
+aac
+aae
+aae
+aae
+kqo
+kCW
+hxY
+bUM
+adk
+bTC
+woN
abA
aDW
akn
@@ -43884,9 +50256,6 @@ aab
aab
aab
aab
-aab
-aab
-aab
aac
aac
aac
@@ -43898,17 +50267,20 @@ aac
aac
aac
aac
-aTV
-aTZ
-aTZ
-aTZ
+aac
+aQW
+aae
+aae
+aay
+abI
+kqo
xHg
-aTW
-aTW
-aTW
-aTW
-agw
-air
+ksL
+adx
+cEx
+vop
+woN
+abA
ajA
akp
akT
@@ -44026,8 +50398,6 @@ aab
aab
aab
aab
-aab
-aab
aac
aac
aac
@@ -44037,20 +50407,22 @@ aac
aac
aac
aac
-aQW
-aTV
-aTV
-aTV
-aTV
-aTV
-aTV
-aTV
-aTW
-aTW
-aTW
-aTW
-agw
-air
+aac
+aac
+aac
+aac
+aae
+aan
+aaX
+abJ
+xQG
+gym
+wer
+tki
+hIu
+lqE
+woN
+abA
aDW
akq
akU
@@ -44168,9 +50540,6 @@ aab
aab
aab
aab
-aab
-aab
-aab
aac
aac
aac
@@ -44180,19 +50549,22 @@ aac
aac
aac
aac
-aTV
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-agw
-air
+aac
+aac
+aac
+aac
+aaf
+aau
+abC
+adf
+kqo
+kGd
+oav
+pph
+pph
+cMO
+kqo
+bsb
aUd
akr
akV
@@ -44310,9 +50682,6 @@ aab
aab
aab
aab
-aab
-aab
-aab
aac
aac
aac
@@ -44322,20 +50691,23 @@ aac
aac
aac
aac
-aTV
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-agw
-agI
-aUe
+aac
+aac
+aac
+aac
+aaf
+aav
+qqP
+abL
+abO
+abV
+aco
+acu
+acu
+acu
+acA
+fkn
+aWF
aiJ
akT
alE
@@ -44452,9 +50824,6 @@ aab
aab
aab
aab
-aab
-aab
-aab
aac
aac
aac
@@ -44464,18 +50833,21 @@ aac
aac
aac
aac
-aTV
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-acW
-acX
-aUa
+aac
+aac
+aac
+aac
+aaf
+aaw
+abF
+abM
+abU
+abW
+act
+acz
+acz
+acz
+acB
aUc
aUf
akx
@@ -44532,7 +50904,7 @@ aLS
azL
azL
azL
-aac
+aaq
aab
aab
aab
@@ -44594,9 +50966,6 @@ aab
aab
aab
aab
-aab
-aab
-aab
aac
aac
aac
@@ -44606,20 +50975,23 @@ aac
aac
aac
aac
-aTV
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aUb
-air
-aWF
+aac
+aac
+aac
+aac
+aaf
+aau
+abG
+prD
+jYD
+boy
+boA
+boB
+boB
+boC
+jYD
+pnq
+pPQ
aku
akS
aMS
@@ -44736,9 +51108,6 @@ aab
aab
aab
aab
-aab
-aab
-aab
aac
aac
aac
@@ -44748,18 +51117,21 @@ aac
aac
aac
aac
-aTV
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-aTW
-agw
+aac
+aac
+aac
+aac
+aae
+aax
+abH
+abN
+eEW
+oXx
+pIB
+qoL
+mFy
+keV
+oOD
kuQ
aWF
akv
@@ -44877,32 +51249,32 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
+aMG
aac
aac
aac
aac
aac
aac
+aQW
+adR
+adR
+adR
+adR
aac
aac
-aTV
+fzy
+fzy
aTY
-aTY
-aTY
-aTY
-aTY
-aTY
-aTW
-aTW
-aTW
-aTW
-agw
-fRH
+fzy
+jYD
+vEm
+waR
+adP
+bUT
+yfW
+oOD
+kuQ
aWF
aWN
akY
@@ -45018,32 +51390,32 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
+aNU
+adG
+aaq
+aaq
aac
aac
aac
aac
aac
+shx
+uNt
+uNt
+kwO
aac
aac
-aac
-aac
-aac
-adW
+fzy
aeq
afn
-adx
-agQ
-afc
-aTW
-aTW
-aTW
-aTW
-agw
+adh
+jYD
+efR
+vkv
+wur
+tLk
+oKw
+oOD
kuQ
aWF
aNE
@@ -45068,10 +51440,10 @@ aac
aEi
aXH
axh
-aXN
-agD
+afL
+agy
ahk
-aiz
+aiA
atE
ahi
awA
@@ -45089,15 +51461,15 @@ aHI
aHj
aTh
aJN
-azo
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aJW
+aKR
+aFW
+aMz
+aNF
+bkp
+aKk
+bkP
+blc
aac
aac
aac
@@ -45159,33 +51531,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
+aOm
+adG
+adG
+aaq
aaq
aac
-adT
-adT
-aau
-adT
-aau
-adT
-aau
-adT
+aac
+aac
+aac
+aac
+shx
+uNt
+uNt
+kwO
+aac
+aac
afc
aer
afo
age
-agR
-afc
-agw
-agw
-agw
-agw
-agw
+jYD
+mBz
+xGw
+vEJ
+adl
+jFq
+jYD
mjs
aWF
akx
@@ -45208,13 +51580,13 @@ afj
afj
afi
aXG
-aXI
+adL
ayi
-aXO
-aXQ
-aXR
-aiA
-atF
+afV
+agD
+ahm
+ajy
+azn
awD
axI
axN
@@ -45231,15 +51603,15 @@ aBL
ahf
aJe
aJO
-azo
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aJW
+aKS
+aLX
+aMP
+aNF
+bkq
+bkE
+bkQ
+blc
aac
aac
aac
@@ -45301,33 +51673,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
aOm
-aaq
-aaq
+adG
+adq
+adq
aai
-aae
-aav
+aai
+adq
+adq
+aai
+aai
+adq
aaM
-aam
-abU
-acz
-abC
+xXZ
+adR
+aac
+aac
afc
-aes
+vIh
tYE
agO
-agS
-ahw
-aiL
-aiL
-aiL
-aiL
-agw
+jYD
+jYD
+jYD
+jYD
+jYD
+jYD
+jYD
oAu
aWH
aWU
@@ -45354,8 +51726,8 @@ aXJ
afh
aXL
afh
-ahm
-ajy
+ahn
+ajI
atE
awx
awB
@@ -45373,15 +51745,15 @@ apK
aCe
aJf
aJP
-azo
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aJW
+aLq
+aLY
+aMQ
+aNF
+bkr
+bkF
+bkR
+blc
aac
aac
aac
@@ -45443,34 +51815,34 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
aOm
-aaq
-aac
-aai
+adG
+abX
+agR
+pJL
+gae
+aUe
+upV
+dMk
aak
-aaw
+adq
aaN
abD
-abV
-acA
-adh
-afc
+adR
+aac
+aac
+fzy
aet
xaU
-age
+bxa
ahv
-ahw
-aiL
-aiL
-ajz
+adj
aiL
+adR
+qgM
+aqO
aVX
-aix
+kuQ
ajM
akx
akZ
@@ -45496,7 +51868,7 @@ aXL
afh
aXP
afh
-ahn
+aho
ajE
atT
atU
@@ -45509,21 +51881,21 @@ atU
aAS
ayU
aCr
-azE
-azE
-azE
-aBn
-aJg
-aBn
-azE
-azE
-azH
-azH
-azH
-azE
-azE
-azE
-aac
+aqS
+aqS
+aqS
+asa
+aHK
+asa
+aqS
+aLr
+aLZ
+aLr
+aqS
+bks
+bkG
+bks
+aqS
aac
aac
aac
@@ -45585,34 +51957,34 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
aOm
-aaq
+adG
+abX
+agS
+dlX
+oIJ
+iLR
aRJ
-adT
+cnO
aal
-aax
+adq
aaO
abE
-abW
-acB
-adi
-afc
-aeu
-pJL
-age
-ahv
-ahw
-aiL
-aiL
-aiL
-aiL
-aVX
-aix
+adR
+adR
+adR
+fzy
+fzy
+fzy
+fzy
+fzy
+mOt
+sEq
+adR
+adR
+adR
+adR
+puE
aWF
akx
akZ
@@ -45634,12 +52006,12 @@ awM
afj
arn
afh
-afL
-agy
+aeu
+aeK
agC
ahg
-aho
-ajI
+aiz
+atF
atT
aur
avt
@@ -45651,21 +52023,21 @@ auY
aAW
ayU
azq
-aBn
-aGS
-aHJ
-aIu
+asa
+atX
+aAq
+aCv
+aHL
aJh
-aJQ
-aKJ
-aLq
-ayp
-ayq
-aMP
-aNe
-aNs
-azE
-aac
+aJX
+aLs
+aMa
+aMR
+aSC
+aCv
+aMa
+bkS
+bld
aac
aac
aac
@@ -45727,34 +52099,34 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
aOm
-aaq
-aaq
-aai
+adG
+adq
+aUb
+wlf
+oZC
+qtt
+gZn
+mjT
aam
-aay
+adq
aaP
-aam
+lzq
acq
acC
-adp
-afc
+adR
+rrG
adg
-lsy
-age
-ahv
-ahw
-aiL
+adU
+fNA
+rWx
+qAt
+snE
ajz
-aiL
-aiL
-aVX
-aix
+wng
+itr
+oEh
+kuQ
aWF
akx
akZ
@@ -45793,21 +52165,21 @@ ayo
ays
azy
azw
-aCA
-aGT
-aHK
-aCz
-aSC
-aJR
-aKK
-aLr
-aLU
+asl
+atZ
+aAU
+aCw
+aHN
+aJj
+aJY
+aLt
aMr
-aMQ
-aNf
-aNt
-aNF
-aac
+aNe
+aWr
+bkt
+bkH
+bkT
+bld
aac
aac
aac
@@ -45869,34 +52241,34 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
aOm
-aaq
-aaq
-aai
+adG
+abX
+aUe
+sWR
+hEt
+aUe
+nSq
+tRk
aaj
aaG
abj
-abF
-abX
+abY
+abY
acD
-adq
-afc
+adR
+vna
cVg
bzK
aWW
-aeJ
-ahw
-aiL
-aiL
-aiL
-aiL
-agw
-aOa
+adW
+qAt
+iHX
+vqv
+bJV
+bmt
+oEh
+kuQ
aWF
aWO
akY
@@ -45935,21 +52307,21 @@ auY
ayX
azA
aCN
-aBn
-aAq
-atZ
-aIv
-aJj
-atZ
-aKL
-aLs
-aLV
-aMs
-aMR
-atZ
-aNu
-aNF
-aac
+asa
+ayp
+aAV
+aCz
+aHO
+aAV
+aFv
+aFV
+aHD
+aNf
+aXm
+aAV
+aMa
+bkU
+bld
aac
aac
aac
@@ -46011,33 +52383,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
aOm
-aaq
-aaq
-adT
-adT
-adT
-adT
-adT
-adT
-acE
-adT
-afc
-afc
+adG
+abX
+aWo
+sXR
+nnY
+psO
+vzs
+jPW
+mMS
+adq
+efc
+iFr
+iFr
+acX
+adR
+mWk
+kFJ
afU
-afc
-afc
-afc
-adP
-adP
-adP
-adP
-adP
+hxR
+rWx
+qAt
+dSQ
+adR
+adR
+adR
+adR
aWm
aWG
aWS
@@ -46077,21 +52449,21 @@ atU
ayZ
azA
aCV
-azE
-aAU
-aHL
-aIw
+aqS
+ayq
+aAX
+aCA
+aIu
aJk
-aJS
-aIv
-aLt
-aLW
+aCz
+aLv
aMt
-aBO
aNg
-aNv
-aNF
-aac
+aAZ
+bku
+aMa
+bkV
+bld
aac
aac
aac
@@ -46153,33 +52525,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aOt
-aaq
-aac
-aac
-aan
+aOm
+adG
+ueB
+ueB
+ueB
+ueB
+ueB
+ueB
+ueB
+ueB
+ueB
aaV
-abG
+oat
acp
acH
-ado
-aaf
+adR
+nue
aev
-afs
+oEj
agf
-agT
-ahG
-aiM
-afR
-aiM
+rWx
+qAt
+tyN
+vqv
+und
aVH
-aVY
+oEh
aWn
aWF
aWT
@@ -46219,21 +52591,21 @@ atU
aBH
azz
aFT
-azE
-aAV
-aBO
-aCu
-asa
-aJT
-aKM
-aLu
-aLX
+aqS
+azo
+aAZ
+aGS
+aIv
+aJm
+aKK
+aLw
aMu
-atX
aNh
-aNw
-azE
-aac
+bko
+bkv
+aMa
+bkW
+bld
aac
aac
aac
@@ -46295,33 +52667,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
aOm
-aaq
-aac
-aac
-aan
+adG
+agQ
+aWs
+lMj
+oPG
+acF
+tkB
+tXj
+oMh
+ueB
aaW
-abH
+abY
abY
acI
-adj
-aaf
+adR
+mdE
aew
-aft
+bzK
agg
-agg
-ahH
-aiN
+adW
+qAt
+snE
ajJ
aTX
aVI
-aVZ
+oEh
aWn
aWF
aWT
@@ -46361,21 +52733,21 @@ amh
aBS
azB
aHP
-azE
-aAX
-aHN
-aCv
+aqS
azD
-azD
-aKN
-aLv
-aLY
-azD
-azD
-azE
-azE
-azE
-aac
+aBn
+aGT
+aIw
+aIw
+aKL
+aLx
+aMv
+aIw
+aIw
+bkw
+bkI
+bkw
+bkC
aac
aac
aac
@@ -46437,34 +52809,34 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
aOm
-aaq
-aaq
-aac
-aaf
-aaX
-aaX
+adG
+agQ
+aWv
+aWv
+bqw
+lpg
+pOZ
+aWv
+yhU
+ueB
+aIL
+pCv
abZ
acJ
-adk
+adR
adQ
aex
afu
agh
-agU
-adP
+rWx
+qAt
aiO
-ajL
-adP
-aVJ
-aWa
-aWn
+adR
+adR
+adR
+adR
+xBf
aWF
aWT
ala
@@ -46503,21 +52875,21 @@ atU
xdM
azC
aCV
+aqS
azE
-aAZ
-aHO
-aCw
-azD
-aJU
-aKO
-aLw
-aLZ
-aMv
-azD
-aac
-aac
-aac
-aac
+aBO
+aHG
+aIw
+aJQ
+aKM
+aLy
+aMx
+aNs
+aIw
+bkx
+bkJ
+bkX
+ble
aac
aac
aac
@@ -46579,34 +52951,34 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
aOm
-aaq
-aac
-aac
-aaf
-aIL
-aaX
-aco
-acK
-adl
+adG
+ueB
+abK
+aWv
+dVZ
+lFG
+pOZ
+aWv
+ghk
+vFm
+lAW
+acL
adR
+adR
+adR
+adW
aey
-afv
-aXc
-agV
-ahI
-agG
+adW
+adW
+adW
+qAt
+eSz
ajN
aUi
-aIt
-adP
-aWo
+ado
+adR
+aWn
aWF
aWT
alb
@@ -46645,21 +53017,21 @@ atU
aza
aAg
aWf
-azE
-aWr
-aXm
-azE
-azD
-asl
-aKP
-aLx
-aMa
-aHG
-azD
-aac
-aac
-aac
-aac
+aqS
+azH
+aCu
+aqS
+aIw
+aJR
+aKN
+aLz
+aMy
+aNt
+aIw
+bky
+bkK
+bkY
+ble
aac
aac
aac
@@ -46721,33 +53093,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
aOm
-aaq
-aac
-aac
-aan
+adG
+agQ
+bhk
+aWv
+qXD
+gnE
+rnG
+qVj
+gvp
+lgb
aaY
aWP
-abI
-acL
-aWZ
adS
+xsf
+aWZ
+qze
aez
-afw
+nyy
agH
agW
-agH
-agH
-ajO
+gDk
+rLM
+abY
ajQ
aVL
-adP
+adR
aWp
ajM
akv
@@ -46791,17 +53163,17 @@ bbG
aXd
aHQ
aIx
-aJm
-aJW
-aKQ
-aLy
-aKQ
-aMx
-azD
-aac
-aac
-aac
-aac
+aJg
+aJT
+aKO
+aLU
+aKO
+aNu
+aIw
+bkz
+bkL
+bkZ
+ble
aac
aac
aac
@@ -46863,33 +53235,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aaq
-aac
-aac
-aan
+aOm
+adG
+ueB
+acE
+aWv
+sTM
+wPV
+pOZ
+aWv
+qnv
+lWE
abi
-abJ
+nYB
acr
-add
+jKY
adn
-adQ
+jmQ
agd
aeB
aHH
-ahu
+add
ahJ
aiP
ajP
aUx
-aVM
-adP
+vaG
+adR
aWq
ajM
akx
@@ -46906,7 +53278,7 @@ apV
aqL
arm
aoX
-aix
+daN
avG
apX
alP
@@ -46933,17 +53305,17 @@ lYT
aGU
aGV
aAs
-aJm
-aJX
-aKR
-aLy
-aKR
-aMy
-azD
-aac
-aac
-aac
-aac
+aJg
+aJT
+aKP
+aLU
+aKP
+aNv
+aIw
+bkA
+bkM
+bla
+ble
aac
aac
aac
@@ -47005,35 +53377,35 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aaf
+aOm
+adG
+agQ
+aWv
+aWv
+kkW
+lpg
+pOZ
+aWv
+pCb
+ueB
adO
adO
-adO
-ade
+fGm
adO
adO
+whW
+whW
+iLF
adO
-adO
-ahx
-ahy
-ahx
-ahx
-ahx
+qAt
+nEn
+adT
+afw
awI
-aVN
+ieN
aWb
aWn
-ajM
+aWF
aNE
alc
alR
@@ -47075,17 +53447,17 @@ fgW
aGW
aHR
aAs
-aJm
-aJY
-aKS
-aLz
-aKS
-aMz
-azD
-aac
-aac
-aac
-aac
+dbk
+aJU
+aKQ
+aLV
+aKQ
+aNw
+aIw
+bkB
+bkO
+blb
+blf
aac
aac
aac
@@ -47147,33 +53519,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-adO
-abK
+aOm
+adG
+agQ
+bhB
+aWv
+hVc
+acK
+lmq
+aWv
+syw
+ueB
+tPE
+acW
acs
adm
adr
-aIF
-act
-aeI
-ahx
-ahZ
-aia
-akz
-akA
-frq
-jDC
-ajT
+rnn
+rnn
+agb
+adO
+adi
+ahw
+aeJ
+aeJ
+axn
+aeJ
+aeJ
aWn
ajM
akx
@@ -47216,18 +53588,18 @@ axg
aXk
aGX
aHR
-aqS
-azD
-azD
-azD
-azD
-azD
-azD
-azD
-aNi
-aNi
-aKj
-aKj
+aHJ
+aIw
+aIw
+aIw
+aIw
+aIw
+aIw
+aIw
+bkC
+bkC
+bkC
+bkC
aNi
aNi
aKj
@@ -47289,34 +53661,34 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-adO
-acF
+aOm
+adG
+ueB
+fRH
+dFg
+ueB
+ueB
+dFg
+dFg
+ueB
+ueB
+xQv
+aIF
acG
aWY
adN
adY
-act
-afV
+afl
+eCP
+adO
+adp
+afs
+agG
ahx
-ahA
-aiT
-aiU
-ahx
-eAM
-oRG
-ajT
-aWs
+ahI
+qzU
+aiW
+aWn
ajM
akx
ald
@@ -47349,8 +53721,8 @@ azi
aAw
azP
aCG
-aEE
-aER
+azT
+azT
aFn
aFt
aGY
@@ -47431,33 +53803,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aaq
+bou
+ajG
+ajG
+ajG
aac
aac
aac
-adO
-abL
-act
-adf
-adU
+aac
+aac
+aac
+agI
+kQb
+eeD
aeb
-act
-agb
-ahx
-aef
+afl
+aXb
+aeb
+aeC
+ade
+adO
+adX
+afm
+agP
+ahy
+ahV
+aiN
aiW
-akB
-aHS
-xAV
-saK
-ajT
aWt
aWH
aWU
@@ -47493,10 +53865,10 @@ azP
aLP
azT
aEU
-aBs
+aHc
aFu
aHc
-aXf
+aEU
axg
aGZ
aHR
@@ -47573,33 +53945,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
aaq
+bov
+bow
+ajG
aac
aac
aac
-adO
-abM
-act
-act
-act
-act
-act
+aac
+aac
+aac
+agI
+mwz
+gZR
+bpw
+afl
+cbn
+bpw
+afl
agc
-ahx
-agP
-ahC
-aeK
-akF
-pzH
-gRX
-ajT
+adO
+aef
+afs
+agT
+ahA
+ahX
+aiQ
+aeJ
aWu
aWI
akC
@@ -47634,9 +54006,9 @@ aCM
azP
aCH
azT
-azT
-aBs
-azT
+aEG
+aAE
+aFU
lxa
aEV
axg
@@ -47715,35 +54087,35 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+aaq
+aaq
+bou
+ajG
aaq
aac
aac
aac
-adO
-abN
-acx
+aac
+aac
+agI
+lwp
+wPB
+aeb
aeC
aXb
-adX
+aeb
afl
-aeI
-ahx
-ahF
-aiQ
-ajS
-aQX
-oCw
-mRs
-aWc
-aWv
-aWJ
+gzd
+adO
+aep
+aft
+agU
+kRa
+ayC
+aiR
+aiW
+rJT
+aWF
akD
alg
alW
@@ -47775,12 +54147,12 @@ aTT
azP
azP
aIE
-aEP
+azT
aEG
-aBs
+aEu
+aAA
aFU
-aFU
-aHc
+aER
axg
aHb
aHR
@@ -47799,7 +54171,7 @@ jML
jHw
jpB
qWU
-beN
+aKY
aKU
aOI
aPb
@@ -47857,33 +54229,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
aaq
+aaq
+bou
+ajG
+aac
+aac
+aac
aac
aac
aac
adO
+uyz
+aIF
+ngL
+afl
+rQp
+pHl
+afl
+gzd
adO
-adO
-adO
-adO
-adO
-adO
-adO
-ahx
-ahV
-aiR
-akw
-ahx
-xyK
-aVT
-aWd
+aes
+afv
+agV
+ahC
+ahZ
+aiS
+ajL
aiV
aWK
akE
@@ -47916,13 +54288,13 @@ awd
azQ
aAz
akM
+aAi
azT
-aEH
-aAA
-aBs
-azT
-azT
-aHc
+aEU
+aEz
+aEP
+aEP
+aFs
axi
aGX
aHR
@@ -47956,10 +54328,10 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aac
+bhX
+aaq
+aaq
+biy
aac
aac
aab
@@ -47999,35 +54371,35 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+aaq
+aaq
+bou
+ajG
aac
aac
aac
aac
-aaE
-abO
-acu
-abS
+aac
+aac
+adO
+qGK
+hCr
+hCr
+wQs
ads
-aaE
-aep
-afm
-ahx
-ahX
-aiS
-ahx
-ahx
-ake
-aVU
-ajT
+nQA
+hCr
+crh
+adO
+aeI
+afR
+ahu
+ahF
+aia
+aiT
+ajO
aWw
-ajR
+qnC
aWV
ali
ali
@@ -48059,7 +54431,7 @@ azR
aAA
azV
azT
-aEI
+azT
aEI
aBs
aGw
@@ -48096,13 +54468,13 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+bhE
+bhE
+bhE
+bie
+bio
+bhE
+bhE
aac
aab
aab
@@ -48142,33 +54514,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
+aaq
+bou
+ajG
aac
aac
aac
-aaE
-aaE
-aaE
-aaE
-aaE
-aaE
-aaE
-aaE
-aaE
-ahx
-ahx
-ahx
-ajT
-aWX
-aVD
-aXa
-ajT
-aWn
+aac
+aac
+aac
+adO
+adO
+adO
+adO
+adO
+adO
+adO
+adO
+adO
+adO
+aeJ
+aeJ
+aeJ
+ahG
+aiM
+aiU
+ajS
+oCC
ajR
akn
alj
@@ -48238,18 +54610,18 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
+bhE
+bhU
+bhY
+bif
+bip
+biz
+bhE
aac
aac
aab
-aab
-aab
-aab
+aMG
+aMG
aab
aab
aab
@@ -48284,12 +54656,12 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
+aaq
+bou
+ajG
+aac
+aac
+aac
aac
aac
aac
@@ -48297,19 +54669,19 @@ aaE
abk
abP
acv
-abS
-adt
+abR
+abe
aaE
aeD
afW
agJ
ahD
aic
+aeJ
+ahH
+aeJ
+aeJ
ajT
-aSL
-ajT
-ajT
-aWe
aWn
ajR
akn
@@ -48342,7 +54714,7 @@ ayA
azW
aFr
aEJ
-aGx
+aFr
aXo
aFc
aFr
@@ -48367,7 +54739,7 @@ rbR
hCB
wQf
tLv
-fNt
+qom
aKU
aOI
aPb
@@ -48380,19 +54752,19 @@ aac
aac
aac
aac
+bhE
+bhV
+bhZ
+big
+biq
+biA
+bhE
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
+aaq
+adG
+adG
+aOi
aab
aab
aab
@@ -48426,12 +54798,12 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
+aaq
+bou
+ajG
+aac
+aac
+aac
aac
aac
aac
@@ -48439,10 +54811,10 @@ aaF
abl
abQ
acw
-acM
-adL
-adZ
-mzz
+acw
+acw
+blT
+blU
hLd
agK
ahE
@@ -48481,13 +54853,13 @@ ajM
aoI
axk
azh
-wiX
-azT
+aMk
+ayG
aBt
-aEu
-aEK
+azT
+aXC
aFd
-aFs
+azT
azT
aMk
aXw
@@ -48513,28 +54885,28 @@ qwm
aKU
aOK
aKj
+jBt
+jBt
+jBt
+jBt
+jBt
+jBt
+jBt
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
+bhE
+bhE
+bhE
+bih
+bir
+bhE
+bhE
+bhE
+bhE
+bhE
+bhE
+adG
+aOi
aab
aab
aab
@@ -48568,12 +54940,12 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
+aaq
+bou
+ajG
+aac
+aac
+aac
aac
aac
aac
@@ -48581,19 +54953,19 @@ aaF
abm
abR
abR
-ada
+abR
abS
aaE
-dYX
+bmo
orc
agL
-aaE
-aie
-bxH
-vQP
-aaE
-aaE
-aaE
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
+aeG
aWz
ajR
akn
@@ -48626,10 +54998,10 @@ axg
axg
aHd
aBv
-aEz
-aEO
+azT
+aXC
aFe
-aFs
+azT
aBq
axg
axg
@@ -48651,32 +55023,32 @@ caw
jHw
gHh
qWU
-beN
+aKY
aKU
aOI
-aPb
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
+aKj
+kUh
+vWL
+ghW
+wWo
+rPu
+ixw
+bhE
+bhE
+bhE
+bhE
+bhE
+bia
+bii
+bis
+biB
+bhE
+biR
+bje
+bjl
+bhE
+adG
+aOi
aab
aab
aab
@@ -48710,33 +55082,33 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
+aaq
+bou
+aaH
aac
aac
aac
aac
-aaF
+aac
+aac
+aaE
aky
-abS
-acy
-adb
-adV
+aas
+abR
+adZ
+abR
aaE
-ehN
-uOc
+bmp
+bod
agM
-aaE
+aeG
aif
sWs
-hYK
+agk
trA
aUs
-aUt
-aWA
+aeG
+aFf
aWL
aNp
alj
@@ -48766,12 +55138,12 @@ ape
aEA
ahd
axg
-azT
+ayI
aCF
-aEC
+azT
aXC
aEC
-aCF
+aEH
aSF
axg
atH
@@ -48796,29 +55168,29 @@ aKU
aKU
aKU
aOI
-aPb
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
+aKj
+uIY
+udd
+oWD
+cSL
+csd
+ehr
+bhE
+bhF
+aLW
+bhQ
+bhW
+bib
+bij
+bit
+biC
+biJ
+biR
+biR
+biR
+bhE
+adG
+aOi
aab
aab
aab
@@ -48852,31 +55224,31 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
+aaq
+bou
+ajG
aac
aac
aac
-aac
-aac
-aaF
-abo
-abS
-aaE
-aag
-aag
-aag
-afa
-aag
-aag
-aag
-aeG
-aeG
-aeG
-aeG
-aeG
+aeV
+afG
+afG
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+bmN
+aah
+aah
+aah
+ieo
+wKZ
+agl
+lXo
+qda
aWg
aWB
ajR
@@ -48939,28 +55311,28 @@ aKU
aKU
aOI
aKj
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
+hqs
+nJe
+fKo
+cSL
+csd
+hQl
+bhE
+bhG
+bhN
+bhR
+bhE
+bhE
+bik
+biu
+bhE
+bhE
+biS
+bjf
+bjm
+bhE
+adG
+aOi
aab
aab
aab
@@ -48994,30 +55366,30 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
+aaq
+abd
+ajG
aac
aac
aac
-aac
-aac
-aaE
-abx
-abT
-aaE
-adc
-adM
-aea
-afb
-aga
-aec
-aag
+afD
+bjH
+aeQ
+ago
+acS
+bmm
+ahO
+aeR
+afE
+adw
+ady
+adz
+azu
+aSM
afF
aja
aTK
-aVF
+agX
aVW
aWh
qIb
@@ -49058,7 +55430,7 @@ bcI
aAB
aCL
aut
-aFV
+aEO
aAB
aHf
aHW
@@ -49081,28 +55453,28 @@ aKV
aKV
aOL
aKj
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
+gTL
+udd
+oWD
+ddl
+hmT
+gSr
+bhE
+aLu
+bhO
+aMs
+bhE
+bic
+bil
+biv
+biD
+biK
+biT
+bjg
+bjn
+bhE
+adG
+aOs
aab
aab
aab
@@ -49136,29 +55508,29 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aac
-aag
-aag
-aag
-aag
-aag
-aag
-aag
-aag
-aaQ
-aaZ
-aaZ
-aSR
-aTj
-abv
-aag
+aOn
+ajG
+ajG
+aad
+aat
+aat
+aah
+bjI
+blm
+blw
+blK
+bmn
+ahP
+ahP
+bmG
+bmL
+bmU
+bnn
+aDp
+abw
ahW
-aig
-agj
+lqJ
+bno
agX
aVn
aeG
@@ -49198,9 +55570,9 @@ bgg
bdb
bdp
bgP
-aCP
-aFx
-aFW
+aAx
+aCQ
+aFh
aGz
aXM
aHX
@@ -49212,40 +55584,40 @@ bMK
rxh
jZe
uxT
-jZe
-jZe
+ifI
+dXv
ooM
uYO
-aKe
-aKe
+xxB
+xud
aMU
aKe
aKe
aKe
aKj
-aNi
-aNi
-aKj
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
+ooI
+uQt
+vIA
+tit
+mYT
+geQ
+bhE
+bhE
+bhP
+bhT
+bhE
+bid
+bim
+biw
+biE
+bhE
+bhE
+bhE
+bhE
+bhE
+adG
+adG
+aOi
aab
aab
aab
@@ -49277,31 +55649,31 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aac
+aOm
+adG
+ajG
+ajG
aag
-aat
-aat
-aag
-aaU
-aeH
-abw
-aaH
-aaR
-aba
-abq
-acb
-acN
-aUA
-agn
+aaQ
+aaQ
+aah
+bjI
+bln
+blx
+blR
+bmq
+aie
+blx
+bmH
+acR
+aap
+akb
+aFC
+aSM
ahY
afz
-agk
-agX
+bnX
+exM
ahK
aUU
qIb
@@ -49340,8 +55712,8 @@ bcU
bdd
aFY
aAB
-aCQ
-azn
+aCP
+aEK
aFX
aAB
aZD
@@ -49351,43 +55723,43 @@ ats
aKf
aKf
aKj
-aKg
-aKe
+aKf
aKj
-aKe
-aKg
-aNH
-xZw
+aKj
+aKj
+aKf
aKg
+xJy
+aKf
aNX
aKj
-aKe
-aKg
-aLL
aKj
-aLa
-aPL
-aKj
-aKj
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
+aKf
+aKf
+aPs
+aPs
+aPs
+aPs
+bhh
+aPs
+yir
+aPs
+aPs
+aPs
+aPs
+aPs
+aPs
+bin
+bix
+biF
+biF
+biU
+bjh
+bjo
+biF
+biF
+adG
+aOi
aab
aab
aab
@@ -49419,30 +55791,30 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aac
+aOm
+adG
+ajG
+ajG
aag
-aao
-abh
-aag
-aad
-aaZ
-aaA
-aaI
-aaS
-aaI
-aaS
-acc
-acO
-azu
-agn
-aiB
+aba
+acM
+aah
+afH
+blo
+blA
+blS
+bmr
+acR
+blA
+bmI
+acR
+aim
+ake
+aGm
+aah
+adE
aUV
-agl
+bnY
agX
ahL
aUU
@@ -49494,7 +55866,7 @@ aKg
aKg
aLA
aKg
-aKe
+gfg
aMV
aKe
aKg
@@ -49505,31 +55877,31 @@ aKe
aOc
aKe
aKg
-aKg
-aKj
-aPq
+aMA
+aPu
aPM
-aPZ
-aPb
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
+beU
+bfj
+bhi
+qbo
+beU
+bhm
+beU
+bhp
+beU
+beU
+gRG
+laB
+beU
+biF
+bsr
+biL
+biL
+biL
+bjs
+biF
+adG
+aOi
aab
aab
aab
@@ -49561,35 +55933,35 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aac
-aah
-aap
-aaZ
-aVv
-adw
-aaZ
-aaB
-aaJ
-aaT
-abb
-aSM
-aSS
-acP
-ady
-aee
-aeL
+aOm
+adG
+adG
+adG
+aag
+aaQ
+acN
+afD
+abx
+blp
+blB
+blS
+bms
+acR
+blB
+bmI
+acR
+aiB
+akw
+bnF
+bop
+aNO
afB
agm
aVk
ahM
aVt
-ajf
-avG
+aRN
+dDQ
akn
alk
aZt
@@ -49642,36 +56014,36 @@ sFW
ghf
ghf
gLd
-aNx
-aMA
-aFC
-aMA
+ghf
+sFW
+aMW
+sFW
aOu
aNx
-aPc
-aPr
-aPM
-aQa
-aPb
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
+aPs
+aPZ
+beV
+bfJ
+cYm
+bhj
+beV
+oWt
+beV
+bhj
+beV
+pPe
+nLw
+bhw
+nLw
+biG
+biM
+biV
+biL
+biL
+biL
+bjw
+adG
+aOi
aab
aab
aab
@@ -49703,38 +56075,38 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aac
+bou
+ajG
+ajG
+ajG
+aag
+abq
+aee
aah
-aar
-aas
-aSb
-aaZ
-aaZ
-aaC
-aaK
-aaT
-abc
-aSN
-aST
-acQ
-adz
-aUI
-aeM
-agY
+bjO
+blp
+blC
+blV
+bmu
+aie
+bmM
+bmJ
+acR
+ajg
+akz
+bnG
+uAI
+aOX
+gtn
afC
-agY
+uAI
ahN
aii
-aiV
-jri
+aRW
+aeO
akn
bbq
-aZu
+woZ
bbu
ayx
aZo
@@ -49770,7 +56142,7 @@ bgk
bbk
bfc
bbg
-bds
+cWU
aIb
aID
aJp
@@ -49780,40 +56152,40 @@ aLB
aMc
aMB
aug
-aKe
-aKg
-aKg
-aKg
-aKg
-aKe
+rPD
+ieE
+ieE
+ieE
+ieE
+vLM
aOd
-aKe
+hth
aOv
-aKg
-aKj
-aPs
-aPM
+aPc
+aPL
aQa
-aPb
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
+hId
+bgm
+hId
+ely
+hId
+jCE
+hId
+bhq
+hId
+cHf
+beU
+bhx
+beU
+biF
+biN
+biW
+bji
+bjp
+bjj
+bjw
+adG
+aOi
aab
aab
aab
@@ -49845,34 +56217,34 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aOm
-adG
+bou
+ajG
+ajG
+ajG
aag
-aag
-aaD
-aSk
-aaZ
-aaZ
-ago
-aQF
-aRN
-aSp
-aSO
-aSU
-aTl
+abq
+iOL
+aah
+aaI
+agj
+agq
+blK
+blK
+bmc
+bmz
+bmP
+bmX
+bnj
+aHS
adA
-aag
+aTd
aeN
aUW
aVe
aVl
aVo
aij
-ajg
+aeH
avG
akn
alk
@@ -49919,43 +56291,43 @@ ats
aKj
aKj
aKj
-aMd
+aKf
aMC
aKj
aNj
-aNy
-aNI
-aNO
-aNy
-aKe
-aKj
-aKe
-aOv
+aKf
aKg
-aKj
-aPt
-aUu
+aKg
+aKf
aKj
aKj
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
+aKj
+aKf
+aKf
+aPs
+aPs
+aPs
+aPs
+bhl
+bhl
+aPs
+aPs
+aPs
+aPs
+aPs
+aPs
+qDF
+bhy
+bhs
+biF
+biO
+biX
+bjj
+bjq
+bjj
+bjw
+adG
+aOi
aab
aab
aab
@@ -49987,31 +56359,31 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aOm
-adG
-aac
+bou
+ajG
+ajG
+ajG
aag
-aaL
-asA
-aSG
-aSK
-aUh
-aRG
-afx
-aSq
-aSP
-aSV
-aTm
-aSP
-aSP
-aSP
+abq
+abq
+acb
+afX
+agn
+agN
+aWa
+aWa
+bmd
+bmA
+bmQ
+bmY
+aig
+acg
+bnI
+acg
+acg
aUX
aVf
-aVm
+akF
aeG
aeG
ajh
@@ -50058,8 +56430,8 @@ bds
aIa
aIB
ats
-aKk
-aKY
+aFq
+aFx
aKj
aMe
aMD
@@ -50075,9 +56447,6 @@ aKe
aOw
aKe
aKj
-aPu
-aPu
-aKj
aac
aac
aac
@@ -50088,16 +56457,19 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
+aPs
+beU
+bhx
+beU
+biF
+ruh
+biX
+bjj
+bjq
+bjt
+biF
+adG
+aOi
aab
aab
aab
@@ -50129,31 +56501,31 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aNM
-aQW
+bou
+ajG
+ajG
+ajG
aag
-aag
-aRK
-aaz
-abd
-fXv
-aed
-afy
-ahO
-aSP
-aSZ
-aTn
-aUv
-aUJ
+abs
+aSi
+aaA
+abv
+acR
+agY
+acR
+acR
+acT
+adc
+abo
+abr
+bnk
+bnz
+bnJ
+ace
aUP
aUY
aVg
-aSP
+acg
ahd
ahS
aji
@@ -50206,9 +56578,9 @@ ats
aMf
aKT
aKT
+way
aKT
-aKT
-aKT
+vTf
aKT
aKT
aKT
@@ -50227,19 +56599,19 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
+bhr
+beU
+bhx
+beU
+biF
+biP
+biY
+bjj
+bjq
+bjj
+bjw
+adG
+aOi
aab
aab
aab
@@ -50271,35 +56643,35 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
+bou
+ajG
+ajG
+ajG
aag
-agZ
-aSm
-aaz
-abp
-acR
-aed
-afA
-aih
-aSP
-aTb
-aTo
+acc
+aSk
aUD
-aUK
-aUQ
+abf
+blt
+agZ
+acO
+blD
+blW
+sJv
+aih
+jSV
+bnk
+akA
+bnK
+bnP
+bnS
aUZ
aVh
-aSP
+acg
agw
agw
-aWi
-avG
+aei
+aeP
akn
bbq
aZu
@@ -50359,6 +56731,9 @@ aKj
aOy
aKj
aKj
+aNi
+aNi
+aKj
aac
aac
aac
@@ -50366,22 +56741,19 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
+bhr
+beU
+bhx
+beU
+biH
+biL
+biZ
+bjk
+bjr
+bjj
+bjw
+adG
+aOi
aab
aab
aab
@@ -50413,34 +56785,34 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aac
-aag
-acd
-aSn
-aaz
-abr
-adu
-aed
-afD
-aDp
-aSP
-mHO
-aTp
-aUE
+aaq
+aaU
+ajG
+ajG
+aar
+acy
+acy
+acy
+aVN
+acy
+aci
+blq
+afy
+afx
+afy
+blq
+aek
+aeA
+acg
+bnL
aUL
aUR
aVa
-aVi
-aSP
+bkk
+acg
aVq
aVu
-aix
+bol
avG
akn
alk
@@ -50501,29 +56873,29 @@ aOj
aOz
aOM
aKj
+aUu
+beW
+aKj
+aKj
aac
aac
aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
+aPs
+bht
+bhx
+beU
+biH
+biL
+bja
+biL
+biL
+biL
+bjw
+adG
+aOi
aab
aab
aab
@@ -50555,34 +56927,34 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
aaq
-aag
-ace
-aUj
-aaz
-abs
-adv
-aed
-afE
-aGm
-aSP
-aTd
-aTq
-aIR
-aeA
+aac
+aaU
+ajG
+aaq
+uWw
+aTs
+aUH
+aVT
+aXc
+acd
+blq
+afb
+adM
+afA
+blq
+abt
+aeL
+akA
+bnM
+bnP
aUS
aJl
aVj
-aSP
+acg
auS
aVu
-aix
+bol
avG
akG
aha
@@ -50636,36 +57008,36 @@ aNk
uSA
aNJ
aNP
-bde
+aKJ
aKU
abg
aOk
aOA
aON
aKj
+bde
+bfh
+bgu
+aPb
aac
aac
aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
+aPs
+bhv
+bhz
+bhC
+biH
+dyV
+bja
+biL
+biL
+bju
+biF
+adG
+aOi
aab
aab
aab
@@ -50696,35 +57068,35 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
aaq
-aag
-aSo
+aaq
+aac
abn
-aaz
-aca
-aca
-aed
-agi
-agi
-aSP
-aSP
-aSP
-aSP
-aSP
-aSP
-aSP
-aSP
-aSP
+ajG
+aaq
+acy
+aTL
+aUI
+aVU
+bhn
+bjY
+blq
+blG
+blZ
+bmx
+blq
+aeT
+aeM
+acg
+bnN
+bnQ
+bnT
+xog
+aVi
+acg
agw
agw
-aix
+bol
gTN
akL
akH
@@ -50746,7 +57118,7 @@ xUo
fOj
ahR
arG
-akH
+xEB
akH
akH
aGv
@@ -50778,36 +57150,36 @@ aNl
aNl
aNK
aNP
-bde
+aKJ
aKU
abg
aOk
-aOB
+aLa
aOO
-aKj
+hCz
+beN
+bfh
+bhg
+aPb
aac
aac
aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
+aPs
+beU
+bhx
+beU
+biH
+biL
+bja
+biL
+biL
+biL
+bjw
+adG
+aOi
aab
aab
aab
@@ -50838,36 +57210,36 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
aaq
-aag
-aag
-aag
-aag
-aac
-aac
-aac
-aac
-aac
-aac
-aTg
-aTs
-aUG
-aUN
-aUG
-aVc
-aUG
-aUG
+aaq
+aaq
+abn
+ajG
+aaq
+acy
+aTM
+aUJ
+aVY
+bjx
+bjZ
+blq
+blH
+aea
+bmy
+blq
+nuu
+afa
+acg
+vnS
+akB
+adB
+acQ
+uiJ
+acg
aVs
agw
-aix
-aka
+bol
+ajM
atc
aMX
ama
@@ -50889,7 +57261,7 @@ apS
ajX
aZW
baw
-baw
+baO
avn
avn
aKx
@@ -50920,36 +57292,36 @@ aNm
aNl
aNK
aNP
-bde
+aKJ
aKU
abg
aOk
aOB
aOP
aKj
-aQf
+beQ
+bfh
+bhg
+aPb
aac
aac
aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
+bhr
+beU
+bhx
+beU
+biH
+biL
+bjb
+bjk
+bjr
+bjj
+bjw
+adG
+aOi
aab
aab
aab
@@ -50980,36 +57352,36 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aaq
aaq
aac
-aac
-aac
-aac
-aac
-aac
-aac
-abe
-abe
-abe
-abe
-aUH
-abe
-abe
-abe
+aaq
+abn
+ajG
+aaq
+uWw
+aTN
+aUK
+aVZ
+adF
+ach
+blq
+aeS
+aec
+bmC
+blq
+ajk
+box
+acg
+acg
+aTd
+bnU
+acg
+acg
+alo
+nKy
agw
-agw
-agw
-agw
-ajj
-akb
+bom
+aWI
avH
alo
amb
@@ -51030,8 +57402,8 @@ aXT
aXT
bbN
aru
-avp
-avp
+aGh
+aru
avp
atl
avd
@@ -51069,29 +57441,29 @@ aOk
aOC
axB
aKj
+beT
+bfi
+aKj
+aKj
aac
aac
aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
+bhr
+beU
+bhx
+beU
+biF
+biQ
+bjc
+bjj
+bjq
+bjj
+bjw
+adG
+aOi
aab
aab
aab
@@ -51122,36 +57494,36 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+aaq
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-abf
-abt
-acg
-acU
-aeg
-aej
-aeO
-afG
-agp
-aha
-ahP
-ail
-ajk
+abn
+ajG
+aaq
+uWw
+aaZ
+abp
+aTq
+aUG
+aVv
+blq
+blM
+bnq
+heL
+blq
aka
+aca
+aed
+asA
+aNy
+aNI
+aSb
+agp
+keg
+ycf
+ail
+bon
+ajM
awp
alp
amc
@@ -51166,12 +57538,12 @@ aqh
agw
apc
asZ
-aVw
-axn
+anN
+aVO
ate
-ayG
-aZg
-bda
+ate
+baB
+asD
baM
api
atf
@@ -51184,10 +57556,10 @@ bfZ
aHy
bee
aCT
-aIl
+cGs
aHs
baA
-aIN
+aIl
aIO
bgD
asX
@@ -51209,7 +57581,10 @@ aKU
aKj
aOl
oMK
-aOk
+aPt
+aKj
+xku
+xku
aKj
aac
aac
@@ -51218,22 +57593,19 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
+aPs
+beU
+bhx
+beU
+biF
+biL
+bjc
+bjj
+bjq
+bjt
+biF
+adG
+aOi
aab
aab
aab
@@ -51264,35 +57636,35 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+aaq
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-abf
-abu
-ach
-abe
-adB
-aTL
-aeP
-afH
-agq
-agN
-ahQ
-aim
-ahb
+bou
+ajG
+oJw
+acy
+acy
+acy
+acy
+acy
+acy
+blq
+blq
+blq
+blq
+blq
+abT
+aWi
+afJ
+aIt
+aIt
+aPq
+aSb
+boe
+bof
+bog
+boh
+boo
akc
awS
alq
@@ -51308,37 +57680,37 @@ aqi
apc
apc
avg
-aVy
-axn
+anN
+aVO
+ate
ate
-ayI
baB
-aru
+awv
asw
beF
-anj
+bda
atO
+soG
anj
-awc
bfe
avy
bgf
avM
-asX
+aJS
asX
aIl
aHB
aJv
aIH
-aIO
+jRO
bcc
bdM
bdQ
arJ
-aGK
-aGK
-aGK
-aGK
+arJ
+arJ
+arJ
+arJ
aKj
aKj
aKj
@@ -51363,19 +57735,19 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
+aPs
+qDF
+bhy
+bhs
+biF
+biO
+bjc
+bjj
+bjq
+bjj
+bjw
+adG
+aOi
aab
aab
aab
@@ -51406,31 +57778,31 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+aaq
aaq
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-abe
-abe
-abe
-abe
-aci
-aeh
-aeQ
-afG
-apr
+abn
+ajG
+iUu
+aaB
+aUj
+adV
+aWe
+bjB
+aaS
+abc
+bmg
+ada
+aVD
+adu
+bnc
+aej
+agi
+aIR
+aLL
+aPr
+aSm
+nbM
art
asm
akI
@@ -51445,7 +57817,7 @@ ioG
aom
aXZ
aYd
-aYk
+adt
aqj
aoH
aww
@@ -51460,10 +57832,10 @@ beu
aqY
anj
anj
+oII
anj
-aGh
aLc
-avo
+wBv
avz
avM
asX
@@ -51476,22 +57848,16 @@ aKq
bck
aKr
beh
-aGK
+ayM
aya
bcd
ayh
ayE
-aGK
+bfP
aAl
aId
bdA
ayM
-bgG
-bgH
-bfo
-bfN
-bgZ
-bhb
aac
aac
aac
@@ -51511,13 +57877,19 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
+aPs
+bht
+bhx
+beU
+biF
+biN
+bjd
+bji
+bjp
+bjj
+bjw
+adG
+aOi
aab
aab
aab
@@ -51550,28 +57922,28 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aaq
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-abf
-abt
-acS
-afX
+abn
+ajG
+iUu
+aaC
+aUt
+aUv
+aWA
+aSo
+aSG
+aUv
+aUv
+adb
+bmE
+adC
aeg
-aTM
-aeR
-abe
+aej
+ahz
+aIR
+aLL
+aQF
+aSb
anm
arH
asn
@@ -51593,7 +57965,7 @@ apg
apc
aGH
aVB
-axn
+aVO
aZQ
bga
bgc
@@ -51604,7 +57976,7 @@ azZ
atJ
atQ
bfd
-awc
+anj
avm
avz
avM
@@ -51620,20 +57992,14 @@ aAF
bcb
bgS
bgy
-bdY
-aGK
-aGK
-aGK
-aAx
+bgy
+bem
+bfC
+bcd
+bcd
aIe
bdK
ayM
-bef
-bel
-bfz
-bfP
-bfK
-bhc
aac
aac
aac
@@ -51653,13 +58019,19 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
+bhr
+beU
+bhx
+beU
+biI
+biL
+biL
+biL
+biL
+biL
+bjw
+adG
+aOi
aab
aab
aab
@@ -51693,27 +58065,27 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aaq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-abf
-abu
-ach
-abe
-adD
+abn
+ajG
+aaz
+aaD
+abb
aeh
-aeS
-abe
+aTV
+aSp
+aSK
+blr
+blN
+adv
+blr
+adD
+ahb
+bnu
+ajf
+aLL
+aLL
+aQX
+aSb
aoj
aXU
asr
@@ -51733,20 +58105,20 @@ awP
awP
awP
awP
-aTE
-aVC
-axn
+aGH
+aVB
+aVO
bdB
ayL
baP
-aru
+avp
asL
bdx
bez
beI
bgn
aKu
-awc
+anj
avo
avz
avM
@@ -51760,22 +58132,16 @@ bbP
bcm
aAG
bgF
-aGK
-ayd
-bdZ
-ayC
-ayF
-aGK
-aAE
-baR
-bdL
ayM
-beg
-bem
-bfA
-bfQ
-bfM
-bhc
+ayM
+ayM
+ayM
+ayF
+ayM
+ayM
+ayM
+ayM
+ayM
aac
aac
aac
@@ -51795,13 +58161,19 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aab
-aab
-aab
-aab
+bhr
+beU
+bhx
+beU
+biF
+biL
+biL
+qKO
+biL
+bjv
+biF
+adG
+aOi
aab
aab
aab
@@ -51835,27 +58207,27 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-abe
-abe
-abe
-abe
-adE
-aei
-aeT
-abe
+aOm
+ajG
+aaz
+acU
+uOL
+pcs
+aWJ
+aSq
+aSL
+aUv
+aUv
+abh
+iLq
+aSU
+ahQ
+aTb
+aga
+aMd
+aNH
+aRK
+aSn
aoo
aXU
asv
@@ -51881,14 +58253,14 @@ aVO
ate
aFK
bbI
-aru
+avp
aCq
-beH
+baq
atM
-atL
+bgx
aBx
-bfn
-aLc
+baq
+anj
avo
avz
avM
@@ -51902,22 +58274,15 @@ bbT
bcm
aAG
bfR
-aGK
+ayM
ayc
bdZ
-aGK
-aGK
-aGK
-aCn
-baR
-bdN
-ayM
-beg
ben
-bfB
+bfD
bfQ
-bfM
-bhc
+aCn
+bea
+bec
aac
aac
aac
@@ -51938,12 +58303,19 @@ aac
aac
aac
aac
-aac
-aac
-aab
-aab
-aab
-aab
+aPs
+beU
+bhx
+beU
+biF
+biF
+biF
+biF
+biF
+biF
+biF
+adG
+aOi
aab
aab
aab
@@ -51977,27 +58349,27 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-abf
-abt
-acT
-ahz
-aeg
-aTN
-adC
-abe
+aOm
+ajG
+aaz
+aaC
+aUv
+aUv
+aWJ
+aVc
+aWd
+aUv
+aUv
+bmk
+fLx
+aSV
+bng
+bjJ
+bjT
+bkd
+bkc
+aRG
+aSn
aoD
aXU
asr
@@ -52026,11 +58398,11 @@ aru
aru
aKy
beH
-anj
+bfn
baq
bgp
baE
-awc
+aLc
axt
avA
aCi
@@ -52044,22 +58416,15 @@ bbU
bdJ
aAG
aIS
-aGK
-bdU
+ayM
+bdV
bea
ayD
-ayF
-aGK
-aFq
-bbX
-bdW
-ayM
-beg
-bem
-bfC
-bfQ
-bfM
-bhc
+bfF
+bfS
+bea
+bea
+bec
aac
aac
aac
@@ -52080,12 +58445,19 @@ aac
aac
aac
aac
-aac
-aac
-aab
-aab
-aab
-aab
+aPs
+bhv
+bhA
+bhC
+bhm
+bhH
+beU
+aPs
+aaq
+adG
+adG
+adG
+aOi
aab
aab
aab
@@ -52119,27 +58491,27 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aaq
-aaq
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-abf
+aOm
+ajG
+aaz
+aTp
+aUA
+aaJ
+aaK
abu
-ach
-abe
-adF
-aek
-aeV
-abe
+aaT
+blu
+blP
+bml
+fLx
+aTj
+bjy
+acx
+bjU
+bke
+xZw
+acP
+aSn
aoF
arM
asE
@@ -52164,17 +58536,17 @@ aWE
aWE
beE
beM
-aru
+amY
ani
-bcf
-bdE
anj
-baq
-bgp
-baE
-awv
-aru
-aru
+bgx
+anj
+bgx
+nXZ
+bgx
+anj
+wju
+bsa
aru
bgj
aET
@@ -52186,22 +58558,15 @@ bbV
aAc
aEl
baC
-aGK
+ayM
bdV
beb
-aGK
-aGK
-aGK
-aFv
-baR
-aFv
-ayM
-bgU
beo
-bfD
+bfG
bgl
-bfK
-bhc
+aFA
+bea
+bec
aac
aac
aac
@@ -52222,11 +58587,18 @@ aac
aac
aac
aac
-aac
-aab
-aab
-aab
-aab
+aPs
+beU
+beU
+beU
+bhs
+beU
+bhJ
+aPs
+adG
+adG
+aNB
+aNM
aab
aab
aab
@@ -52261,27 +58633,27 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aaq
-aaq
-aac
-aac
-acf
-acf
-acf
-acf
-afJ
-afJ
-afJ
-afJ
-afJ
-afJ
-afJ
-afJ
+aOm
+ajG
+aaL
+aaR
+aaR
+aaR
+aaR
+aaR
+aao
+aao
+aao
+aao
+aao
+aTm
+aTm
+aTm
+aTm
+aTm
+aTm
+aTm
+aTm
acf
arx
acf
@@ -52307,16 +58679,16 @@ beC
beK
bcN
bcg
-anN
+anj
atA
aAL
-avL
+anj
aGi
bgq
bgr
anj
-aZX
-baO
+anj
+anj
aru
avJ
aIM
@@ -52328,22 +58700,15 @@ bfY
bbY
aIf
aIU
-aGK
+ayM
ayd
ayb
-ayb
-bfE
-aGK
-aFy
-bdz
-bdX
-bgT
-bei
bep
-bfG
-bfS
-bfF
-bhc
+bfE
+bgG
+aFy
+bea
+bec
aac
aac
aac
@@ -52364,9 +58729,16 @@ aac
aac
aac
aac
-aac
-aab
-aab
+bhr
+beU
+beU
+beU
+bho
+bhI
+bhI
+bhK
+adG
+aOF
aab
aab
aab
@@ -52403,15 +58775,15 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
+aOm
+ajG
+ajG
+ajG
+ajG
+ajG
+ajG
aaq
aaq
-aac
-aac
afS
afp
bfT
@@ -52448,15 +58820,15 @@ aVP
aVP
aFS
beO
-amY
+aru
+aES
+aIN
+aCf
+anj
+bgx
+nXZ
baq
anj
-aCf
-aru
-bgx
-anj
-baE
-bgs
anj
anj
bcu
@@ -52470,23 +58842,15 @@ bbS
bbZ
aIf
baT
-aGK
-aHD
-aHD
-aHD
-aHD
-aGK
+ayM
+bea
+beb
+bfo
+bfK
+bfo
aFA
-ayM
+bea
bec
-ayM
-bgV
-bgW
-bgY
-bgY
-bgY
-bhd
-aQf
aac
aac
aac
@@ -52506,9 +58870,17 @@ aac
aac
aac
aac
-aab
-aab
-aab
+aac
+bhr
+beU
+beU
+bhD
+aPs
+bhI
+bhI
+bhK
+adG
+aOi
aab
aab
aab
@@ -52546,14 +58918,14 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
+aNM
+bov
+bov
+aaU
+ajG
+ajG
+ajG
aaq
-aaq
-aac
-aac
afS
afr
acn
@@ -52590,13 +58962,13 @@ aVy
aVy
aop
aKm
-aru
-asM
-anj
+avL
+atA
+aZX
aBD
-aES
-aGr
anj
+bgx
+rBz
bew
bfp
bfl
@@ -52612,16 +58984,15 @@ bgC
bgE
aIf
baW
-aGK
-aGK
-aGK
-aGK
-aGK
-aGK
+ayM
+bea
aHC
-ayM
-ayM
-ayM
+bfz
+bfz
+bfz
+aHC
+bea
+bec
aac
aac
aac
@@ -52642,15 +59013,16 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
+aPs
+bgU
+bgV
+bgW
+aPs
+bhI
+bhI
+aPs
+adG
+aOi
aab
aab
aab
@@ -52689,13 +59061,13 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aaq
-aaq
aac
aac
+aac
+aaU
+ajG
+ajG
+aaq
afS
aby
acZ
@@ -52751,17 +59123,18 @@ ato
bcp
atN
arJ
-arJ
-bgR
-arJ
aGK
-aAi
-aAe
-aAe
-aAe
-aAe
-aAj
-ayM
+bgR
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+bgH
+bgH
+bgT
aac
aac
aac
@@ -52782,17 +59155,16 @@ aac
aac
aac
aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aab
-aab
-aab
+aPs
+aPs
+bhl
+aPs
+aPs
+aPs
+aPs
+aPs
+adG
+aOi
aab
aab
aab
@@ -52831,13 +59203,13 @@ aab
aab
aab
aab
-aab
-aab
-aab
+aac
+aac
+aac
+bou
+ajG
+ajG
aaq
-aac
-aac
-aac
afS
ait
aeE
@@ -52877,10 +59249,10 @@ awQ
aru
bgt
bbm
-baX
-anj
+bcf
+bgs
bch
-anj
+sts
aru
bge
bfm
@@ -52896,14 +59268,12 @@ aJt
ayJ
bbW
aAe
-aAe
+aVC
aAj
-ayM
-ayM
-ayM
-ayM
-ayM
-ayM
+bei
+bfA
+aTE
+aGK
aac
aac
aac
@@ -52931,10 +59301,12 @@ aac
aac
aac
aac
-aab
-aab
-aab
-aab
+aac
+aac
+aac
+aaq
+adG
+aOi
aab
aab
aab
@@ -52973,13 +59345,13 @@ aab
aab
aab
aab
-aab
-aab
-aac
-aac
-aac
aac
aac
+aaq
+abn
+ajG
+ajG
+aaq
afS
ack
aeF
@@ -53035,17 +59407,17 @@ aIQ
aph
azt
aJt
-ayM
-ayM
-ayM
-ayM
-ayM
-ayM
-aac
-aac
-aac
-aac
-aac
+aGx
+aTE
+aVw
+aTE
+beg
+aTE
+bfB
+aTE
+aGK
+aaq
+aaq
aac
aac
aac
@@ -53057,10 +59429,6 @@ aac
aac
aac
aab
-aab
-aab
-aab
-aab
aac
aac
aac
@@ -53070,12 +59438,16 @@ aac
aac
aac
aac
-aab
aac
-aab
-aab
-aab
-aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aNM
aab
aab
aab
@@ -53116,12 +59488,12 @@ aab
aab
aab
aab
-aab
-aac
-aac
-aac
aac
aac
+abn
+ajG
+ajG
+aaq
afS
bet
bet
@@ -53144,7 +59516,7 @@ acV
acV
axr
ayK
-axq
+hfN
atg
aSy
aop
@@ -53177,17 +59549,17 @@ axy
aHv
bdO
aJt
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
+aGx
+aTE
+aGK
+bdL
+aGK
+bel
+aGK
+bfM
+aGK
+aaq
+aaq
aac
aac
aac
@@ -53201,8 +59573,6 @@ aab
aab
aab
aab
-aab
-aab
aac
aac
aac
@@ -53212,10 +59582,12 @@ aac
aac
aac
aac
-aab
-aab
-aab
-aab
+aac
+aac
+aac
+aac
+aac
+aac
aab
aab
aab
@@ -53260,10 +59632,10 @@ aab
aab
aac
aac
-aac
-aac
-aac
-aac
+abn
+ajG
+ajG
+ajG
afS
bay
afq
@@ -53319,17 +59691,17 @@ bdn
aKs
axu
aJt
-aac
-aac
-aac
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+aQf
+aTE
+aGK
+bef
+aGK
+bef
+aGK
+bfN
+aGK
+adG
+aOi
aab
aac
aac
@@ -53344,17 +59716,17 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
aab
aab
aab
@@ -53403,9 +59775,9 @@ aab
aac
aac
aac
-aac
-aac
-aac
+aaU
+ajG
+ajG
afS
afq
afq
@@ -53461,42 +59833,42 @@ axp
bbQ
axx
aJt
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+aGK
+adG
+aOi
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
aac
aac
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+aac
+aac
+aac
+aac
+aac
+aaq
+aaq
+aaq
aab
aab
aab
@@ -53544,10 +59916,10 @@ aab
aab
aac
aac
+aaq
aac
-aac
-aac
-aac
+aaU
+ajG
afS
afq
afq
@@ -53604,6 +59976,15 @@ aJt
aJt
aJt
adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
+adG
aOi
aab
aab
@@ -53654,15 +60035,6 @@ aab
aab
aab
aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
aaa
"}
(120,1,1) = {"
@@ -53687,9 +60059,9 @@ aab
aac
aac
aac
-aac
-aac
-aac
+aaq
+abn
+ajG
afS
aby
afq
@@ -53746,15 +60118,15 @@ adG
adG
adG
adG
-aOi
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
+adG
+aNB
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
+aNM
aab
aab
aab
@@ -53830,8 +60202,8 @@ aab
aac
aac
aac
-aac
-aac
+abn
+ajG
afS
afp
afq
@@ -53888,7 +60260,7 @@ aNM
aNM
aNM
aNM
-aab
+aNM
aab
aab
aab
@@ -53972,8 +60344,8 @@ aab
aab
aab
aac
-aac
-aac
+abn
+ajG
afS
afS
afS
@@ -54115,7 +60487,7 @@ aab
aab
aab
aOm
-adG
+ajG
adG
adG
adG
diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm
index c6f77b2b27b..c369da1318a 100644
--- a/maps/tether/tether-05-station1.dmm
+++ b/maps/tether/tether-05-station1.dmm
@@ -655,12 +655,9 @@
/turf/simulated/floor/tiled/dark,
/area/tether/station/burial)
"abi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
+/obj/structure/closet,
+/obj/random/contraband,
+/obj/random/junk,
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
"abj" = (
@@ -1178,7 +1175,7 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/engi_wash)
"acj" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/random/junk,
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
"ack" = (
@@ -1251,13 +1248,34 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
-"acv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{
- dir = 4
+"acu" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
},
/turf/simulated/floor,
-/area/vacant/vacant_restaurant_lower)
+/area/maintenance/station/eng_lower)
+"acv" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/junk,
+/obj/structure/symbol/lo{
+ pixel_x = -32
+ },
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
+"acw" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/junk,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"acx" = (
/obj/structure/cable/green{
d1 = 2;
@@ -1281,12 +1299,13 @@
/turf/simulated/wall/r_wall,
/area/engineering/hallway)
"acA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/obj/random/contraband,
-/obj/random/junk,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
+/area/engineering/shaft)
"acB" = (
/obj/structure/table/steel,
/obj/random/tool,
@@ -1347,25 +1366,19 @@
/turf/simulated/wall/r_wall,
/area/engineering/engine_smes)
"acM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/disposalpipe/broken{
- dir = 4;
- icon_state = "pipe-b"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor,
-/area/vacant/vacant_restaurant_lower)
+/area/maintenance/station/eng_lower)
"acN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -1512,10 +1525,22 @@
/turf/simulated/floor,
/area/engineering/engine_monitoring)
"adg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
+/area/maintenance/substation/civilian)
"adh" = (
/obj/structure/girder,
/turf/simulated/floor,
@@ -1525,6 +1550,14 @@
/obj/random/drinkbottle,
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
+"adj" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/storage/emergency_storage/emergency4)
"adk" = (
/obj/structure/railing{
dir = 1
@@ -1625,6 +1658,14 @@
},
/turf/simulated/floor,
/area/vacant/vacant_restaurant_lower)
+"adq" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/storage/emergency_storage/emergency4)
"adr" = (
/obj/structure/flora/pottedplant,
/obj/effect/floor_decal/corner/blue/full{
@@ -1636,6 +1677,23 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/secondary)
+"ads" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/substation/civilian)
"adt" = (
/obj/structure/cable/green{
d1 = 1;
@@ -1932,6 +1990,19 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
+"adU" = (
+/obj/machinery/light/small,
+/obj/structure/closet/firecloset/full/double,
+/turf/simulated/floor,
+/area/storage/emergency_storage/emergency4)
+"adV" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"adW" = (
/obj/structure/cable/green,
/obj/machinery/power/apc{
@@ -1958,6 +2029,31 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/backup)
+"adZ" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/tool,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"aea" = (
/turf/simulated/floor/tiled/techmaint,
/area/engineering/engine_smes)
@@ -1965,10 +2061,37 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/techmaint,
/area/engineering/engine_smes)
+"aec" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"aed" = (
/obj/machinery/computer/supplycomp,
/turf/simulated/floor/tiled/dark,
/area/bridge/secondary)
+"aee" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"aef" = (
/obj/random/junk,
/obj/random/trash,
@@ -2009,24 +2132,29 @@
/turf/simulated/floor,
/area/hallway/station/docks)
"ael" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
+/obj/machinery/atmospherics/valve/digital/open,
+/obj/structure/railing{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/meter{
- frequency = 1443;
- id = "dist_aux_meter";
- name = "Distribution Loop"
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
pixel_y = 0
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor,
-/area/hallway/station/docks)
+/area/maintenance/station/eng_lower)
+"aem" = (
+/obj/machinery/atmospherics/valve/open,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"aen" = (
/turf/simulated/floor/tiled,
/area/engineering/workshop)
@@ -2252,6 +2380,28 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
+"aeD" = (
+/obj/machinery/atmospherics/valve/open,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
+"aeE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"aeF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -2316,6 +2466,19 @@
/obj/random/tool,
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
+"aeM" = (
+/obj/structure/railing,
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"aeN" = (
/obj/machinery/alarm{
dir = 8;
@@ -2393,6 +2556,12 @@
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
+"aeV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"aeW" = (
/turf/simulated/floor/tiled/techmaint,
/area/engineering/storage)
@@ -2408,6 +2577,25 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/secondary)
+"aeZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/medical/lite,
+/obj/random/tool,
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"afa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -2604,6 +2792,18 @@
},
/turf/simulated/floor/tiled,
/area/bridge/secondary)
+"afm" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/closet,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/medical,
+/obj/random/tool,
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"afn" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
@@ -2781,6 +2981,9 @@
/area/hallway/station/atrium)
"afA" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/camera/network/tether{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
"afB" = (
@@ -3076,6 +3279,14 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
+"afZ" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/security,
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"aga" = (
/obj/machinery/floor_light/prebuilt{
on = 1
@@ -3732,6 +3943,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
+"agV" = (
+/obj/random/cutout,
+/turf/simulated/floor,
+/area/vacant/vacant_restaurant_lower)
"agW" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -3906,6 +4121,12 @@
},
/turf/simulated/floor/tiled,
/area/bridge/secondary)
+"ahi" = (
+/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/vacant/vacant_restaurant_lower)
"ahj" = (
/obj/structure/cable{
d1 = 1;
@@ -4266,6 +4487,19 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/maintenance/station/spacecommandmaint)
+"ahM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/cap/visible/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/vacant/vacant_restaurant_lower)
"ahN" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -4278,6 +4512,29 @@
},
/turf/simulated/floor,
/area/maintenance/station/spacecommandmaint)
+"ahO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/disposalpipe/broken{
+ dir = 4;
+ icon_state = "pipe-b"
+ },
+/turf/simulated/floor,
+/area/vacant/vacant_restaurant_lower)
+"ahP" = (
+/obj/item/clothing/head/cone,
+/turf/simulated/floor,
+/area/vacant/vacant_restaurant_lower)
"ahQ" = (
/obj/machinery/light{
dir = 4
@@ -4339,17 +4596,9 @@
/turf/simulated/floor/tiled/dark,
/area/gateway)
"ahY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/random/junk,
-/obj/structure/symbol/lo{
- pixel_x = -32
- },
+/obj/random/tool,
/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
+/area/vacant/vacant_restaurant_lower)
"ahZ" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -4416,6 +4665,24 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/visitorhallway/office)
+"aig" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/crew_quarters/sleep/cryo)
"aih" = (
/obj/structure/cable/green{
d1 = 4;
@@ -4723,6 +4990,11 @@
/obj/item/clothing/glasses/meson,
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
+"aiG" = (
+/obj/item/weapon/cell/potato,
+/obj/item/frame/apc,
+/turf/simulated/floor,
+/area/vacant/vacant_restaurant_lower)
"aiH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -4779,14 +5051,18 @@
/turf/simulated/floor/tiled/techmaint,
/area/engineering/storage)
"aiO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
+/obj/structure/closet/crate,
+/obj/item/clothing/mask/gas,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/random/action_figure,
+/obj/item/clothing/mask/gas,
+/obj/machinery/atmospherics/binary/passive_gate/on,
+/turf/simulated/floor/plating,
+/area/hallway/station/docks)
"aiP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -4799,15 +5075,23 @@
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
"aiR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack{
+/obj/machinery/atmospherics/pipe/manifold/hidden{
dir = 8;
- layer = 2.9
+ icon_state = "map"
+ },
+/obj/machinery/meter{
+ frequency = 1443;
+ id = "dist_aux_meter";
+ name = "Distribution Loop"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
},
-/obj/random/junk,
-/obj/random/maintenance/engineering,
/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
+/area/hallway/station/docks)
"aiS" = (
/turf/simulated/floor/tiled/dark,
/area/gateway)
@@ -4998,6 +5282,13 @@
},
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
+"ajk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/turf/simulated/floor,
+/area/hallway/station/docks)
"ajl" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1;
@@ -5336,6 +5627,10 @@
},
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
+"ajW" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/hallway/station/docks)
"ajX" = (
/obj/machinery/light{
dir = 4;
@@ -5397,6 +5692,16 @@
/obj/machinery/floodlight,
/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
+"ake" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibrary)
"akf" = (
/obj/machinery/button/remote/blast_door{
id = "PubPrep";
@@ -5422,6 +5727,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/gateway)
+"aki" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood/broken,
+/area/maintenance/abandonedlibrary)
"akj" = (
/obj/item/device/radio/intercom{
dir = 2;
@@ -5614,6 +5924,10 @@
},
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
+"akB" = (
+/obj/random/trash,
+/turf/simulated/floor/wood,
+/area/maintenance/abandonedlibrary)
"akC" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -5648,6 +5962,17 @@
},
/turf/simulated/floor/tiled/dark,
/area/gateway)
+"akI" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/abandonedlibrary)
"akJ" = (
/obj/structure/window/reinforced{
dir = 4
@@ -5693,6 +6018,22 @@
},
/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
+"akN" = (
+/obj/structure/table/woodentable,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/item/weapon/book/codex/lore/news,
+/obj/random/contraband,
+/turf/simulated/floor/carpet,
+/area/maintenance/abandonedlibrary)
"akO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
@@ -5708,6 +6049,22 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
+"akP" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/maintenance/abandonedlibrary)
+"akQ" = (
+/turf/simulated/floor/wood/broken,
+/area/maintenance/abandonedlibrary)
"akR" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/briefcase/inflatable{
@@ -5739,6 +6096,24 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor,
/area/engineering/storage)
+"akU" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibrary)
+"akV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood/broken,
+/area/maintenance/abandonedlibrary)
+"akW" = (
+/obj/structure/table/woodentable,
+/obj/random/tool,
+/obj/random/medical,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibrary)
"akX" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
@@ -5751,6 +6126,12 @@
},
/turf/simulated/floor/tiled,
/area/engineering/hallway)
+"akY" = (
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibrary)
"akZ" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/engineering{
@@ -5821,6 +6202,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/gateway)
+"alf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibrary)
"alg" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass{
@@ -6176,6 +6562,13 @@
"alN" = (
/turf/simulated/wall/r_wall,
/area/maintenance/abandonedlibrary)
+"alO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibrary)
"alP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -6222,6 +6615,23 @@
"alT" = (
/turf/simulated/wall,
/area/storage/emergency_storage/emergency4)
+"alU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/table,
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibrary)
+"alV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibrary)
"alW" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/effect/floor_decal/steeldecal/steel_decals_central6{
@@ -6263,6 +6673,16 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
+"alZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/carpet,
+/area/maintenance/abandonedlibrary)
"ama" = (
/obj/structure/table/marble,
/obj/machinery/floor_light/prebuilt{
@@ -6283,6 +6703,15 @@
/obj/item/weapon/reagent_containers/spray/cleaner,
/turf/simulated/floor/wood,
/area/hallway/station/atrium)
+"amb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibrary)
"amc" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
@@ -6351,16 +6780,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/cap/visible/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/vacant/vacant_restaurant_lower)
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibrary)
"ami" = (
/obj/structure/table/woodentable,
/obj/machinery/door/blast/shutters{
@@ -6531,31 +6952,11 @@
/turf/simulated/floor/wood,
/area/hallway/station/atrium)
"amz" = (
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/obj/random/tool,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/clean,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibrary)
"amA" = (
/obj/structure/disposalpipe/up{
dir = 4
@@ -6852,14 +7253,8 @@
/turf/simulated/floor/tiled,
/area/engineering/engineering_monitoring)
"ane" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/engineering/shaft)
+/turf/simulated/floor/wood/broken,
+/area/maintenance/abandonedlibraryconference)
"anf" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -6893,14 +7288,12 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
+/turf/simulated/floor/wood,
+/area/maintenance/abandonedlibraryconference)
"ani" = (
/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/maintenance/abandonedlibrary)
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibraryconference)
"anj" = (
/obj/machinery/newscaster{
pixel_y = 32
@@ -6951,13 +7344,26 @@
"anp" = (
/turf/simulated/floor/plating,
/area/maintenance/abandonedlibrary)
-"ans" = (
-/obj/item/stack/tile/wood{
- amount = 10
+"anq" = (
+/obj/structure/bed/chair/office/dark,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
+/area/maintenance/abandonedlibraryconference)
+"anr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood/broken,
+/area/maintenance/abandonedlibraryconference)
+"ans" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/wood/broken,
+/area/maintenance/abandonedlibraryconference)
"ant" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -6997,16 +7403,19 @@
/turf/simulated/floor/tiled,
/area/engineering/hallway)
"anv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood/broken,
-/area/maintenance/abandonedlibrary)
-"anw" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
+/area/maintenance/abandonedlibraryconference)
+"anw" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood/broken,
+/area/maintenance/abandonedlibraryconference)
"anx" = (
/obj/random/junk,
/turf/simulated/floor/wood/broken,
@@ -7179,16 +7588,22 @@
/turf/simulated/floor/greengrid/nitrogen,
/area/engineering/engine_room)
"anI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash,
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/wood,
-/area/maintenance/abandonedlibrary)
+/area/maintenance/abandonedlibraryconference)
"anJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
+/area/maintenance/abandonedlibraryconference)
"anK" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/carpet,
@@ -7267,34 +7682,16 @@
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/chief)
"anS" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood,
-/area/maintenance/abandonedlibrary)
+/area/maintenance/abandonedlibraryconference)
"anT" = (
-/obj/structure/table/woodentable,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/book/codex/lore/news,
-/obj/random/contraband,
-/turf/simulated/floor/carpet,
-/area/maintenance/abandonedlibrary)
+/turf/simulated/floor/wood/broken,
+/area/maintenance/abandonedlibraryconference)
"anU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -7330,9 +7727,12 @@
/turf/simulated/floor/wood,
/area/maintenance/abandonedlibrary)
"anY" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/random/maintenance/engineering,
+/obj/item/weapon/flame/lighter/zippo,
+/obj/random/tool,
/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
+/area/maintenance/abandonedlibraryconference)
"anZ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -7344,19 +7744,11 @@
/turf/simulated/floor/tiled,
/area/engineering/hallway)
"aoa" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 1
+/obj/item/stack/tile/wood{
+ amount = 10
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/carpet,
-/area/maintenance/abandonedlibrary)
+/turf/simulated/floor/plating,
+/area/maintenance/abandonedlibraryconference)
"aob" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
@@ -7381,9 +7773,11 @@
/turf/simulated/floor/wood,
/area/maintenance/abandonedlibrary)
"aoe" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
/turf/simulated/floor/wood/broken,
-/area/maintenance/abandonedlibrary)
+/area/maintenance/abandonedlibraryconference)
"aof" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Civilian Substation Bypass"
@@ -7495,6 +7889,12 @@
},
/turf/simulated/floor,
/area/engineering/storage)
+"aop" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/abandonedlibraryconference)
"aoq" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -7508,6 +7908,14 @@
},
/turf/simulated/floor/tiled,
/area/engineering/hallway)
+"aor" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/turf/simulated/floor/wood/broken,
+/area/maintenance/abandonedlibraryconference)
"aos" = (
/obj/structure/cable/green{
d1 = 1;
@@ -7531,13 +7939,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor,
/area/engineering/hallway)
-"aou" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
"aov" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -7567,20 +7968,6 @@
},
/turf/simulated/wall/r_wall,
/area/engineering/hallway)
-"aoz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood/broken,
-/area/maintenance/abandonedlibrary)
-"aoA" = (
-/obj/structure/table/woodentable,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/tool,
-/obj/random/medical,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
"aoB" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
@@ -7611,13 +7998,6 @@
/obj/structure/table,
/turf/simulated/floor/plating,
/area/maintenance/abandonedlibrary)
-"aoD" = (
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
"aoE" = (
/obj/random/junk,
/obj/effect/decal/cleanable/cobweb,
@@ -7670,16 +8050,6 @@
"aoO" = (
/turf/simulated/wall/r_wall,
/area/storage/emergency_storage/emergency4)
-"aoP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
-"aoQ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/carpet,
-/area/maintenance/abandonedlibrary)
"aoR" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/border_only,
@@ -7688,11 +8058,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/abandonedlibrary)
-"aoS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/tile/carpet,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
"aoT" = (
/obj/structure/table/woodentable,
/obj/item/weapon/paper,
@@ -7727,23 +8092,6 @@
/obj/fiftyspawner/glass,
/turf/simulated/floor/tiled,
/area/engineering/atmos/backup)
-"aoY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
-"apa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
"apd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -7753,62 +8101,12 @@
},
/turf/simulated/floor/carpet,
/area/maintenance/abandonedlibrary)
-"apf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
"apg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor,
/area/engineering/break_room)
-"aph" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/carpet,
-/area/maintenance/abandonedlibrary)
-"api" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash_pile,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
-"apj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
-"apk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
-"apl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibrary)
"apm" = (
/turf/simulated/floor/carpet,
/area/maintenance/abandonedlibrary)
@@ -8652,10 +8950,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/abandonedlibraryconference)
-"aqA" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood/broken,
-/area/maintenance/abandonedlibraryconference)
"aqB" = (
/obj/structure/cable/green{
d1 = 4;
@@ -8687,17 +8981,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/hallway)
-"aqC" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/maintenance/abandonedlibraryconference)
"aqD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/red{
dir = 4;
@@ -8809,11 +9092,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/hallway)
-"aqP" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibraryconference)
"aqQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/red{
dir = 4;
@@ -8923,10 +9201,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/abandonedlibraryconference)
-"aqX" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibraryconference)
"aqY" = (
/obj/structure/bed/chair/office/dark,
/obj/structure/cable/green{
@@ -8938,40 +9212,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/maintenance/abandonedlibraryconference)
-"aqZ" = (
-/obj/structure/bed/chair/office/dark,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibraryconference)
-"ara" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood/broken,
-/area/maintenance/abandonedlibraryconference)
-"arb" = (
-/obj/machinery/atmospherics/valve/digital/open,
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"arc" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9047,13 +9287,6 @@
"ari" = (
/turf/simulated/floor/plating,
/area/maintenance/abandonedlibraryconference)
-"arj" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood/broken,
-/area/maintenance/abandonedlibraryconference)
"ark" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/space_heater,
@@ -9120,13 +9353,6 @@
/obj/item/weapon/storage/toolbox/electrical,
/turf/simulated/floor/tiled,
/area/engineering/workshop)
-"ars" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibraryconference)
"art" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9141,27 +9367,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/workshop)
-"arv" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood/broken,
-/area/maintenance/abandonedlibraryconference)
-"arw" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/maintenance/abandonedlibraryconference)
"arx" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9184,14 +9389,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/backup)
-"arA" = (
-/obj/machinery/atmospherics/valve/open,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"arB" = (
/obj/machinery/atmospherics/pipe/manifold/visible/red{
dir = 4;
@@ -9278,13 +9475,6 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/engineering/workshop)
-"arL" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibraryconference)
"arM" = (
/turf/simulated/wall/r_wall,
/area/maintenance/substation/engineering)
@@ -9310,10 +9500,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/backup)
-"arP" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/maintenance/abandonedlibraryconference)
"arQ" = (
/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,
/turf/simulated/floor/tiled,
@@ -9325,15 +9511,6 @@
/obj/machinery/meter,
/turf/simulated/floor/tiled,
/area/engineering/atmos/backup)
-"arS" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood/broken,
-/area/maintenance/abandonedlibraryconference)
"arT" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/red{
dir = 4;
@@ -9341,14 +9518,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/hallway)
-"arU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/random/maintenance/engineering,
-/obj/item/weapon/flame/lighter/zippo,
-/obj/random/tool,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibraryconference)
"arV" = (
/obj/machinery/atmospherics/portables_connector{
dir = 4
@@ -9359,13 +9528,6 @@
icon_state = "monotile"
},
/area/engineering/hallway)
-"arW" = (
-/obj/item/stack/tile/wood{
- amount = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/abandonedlibraryconference)
"arX" = (
/obj/structure/cable/green{
d1 = 1;
@@ -9389,24 +9551,11 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
/area/engineering/hallway)
-"arY" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood/broken,
-/area/maintenance/abandonedlibraryconference)
"arZ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
-"asa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"asb" = (
/obj/structure/cable/green{
d1 = 4;
@@ -9429,22 +9578,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
-"asd" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood,
-/area/maintenance/abandonedlibraryconference)
-"ase" = (
-/obj/machinery/firealarm{
- dir = 4;
- layer = 3.3;
- pixel_x = 26
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/wood/broken,
-/area/maintenance/abandonedlibraryconference)
"asf" = (
/obj/random/trash,
/turf/simulated/floor/plating,
@@ -9705,13 +9838,6 @@
},
/turf/simulated/floor/carpet/bcarpet,
/area/tether/station/visitorhallway/office)
-"asD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"asE" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -10089,37 +10215,6 @@
},
/turf/simulated/floor/carpet/bcarpet,
/area/tether/station/visitorhallway/office)
-"ato" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/closet,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/medical,
-/obj/random/tool,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
-"atp" = (
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/obj/random/junk,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
-"atq" = (
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/security,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"atr" = (
/obj/structure/bed/chair/office/dark{
dir = 1
@@ -11682,19 +11777,6 @@
/obj/machinery/camera/network/civilian,
/turf/simulated/floor/tiled,
/area/tether/station/visitorhallway)
-"avP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"avQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -11721,12 +11803,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/secondary)
-"avS" = (
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/firecloset/full/double,
-/turf/simulated/floor,
-/area/storage/emergency_storage/emergency4)
"avT" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -13084,21 +13160,6 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/sleep/spacedorm4)
-"ays" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"ayt" = (
/turf/simulated/wall,
/area/crew_quarters/sleep/spacedorm4)
@@ -13381,6 +13442,10 @@
/obj/effect/floor_decal/corner/lightgrey/bordercorner{
dir = 4
},
+/obj/machinery/vending/nifsoft_shop{
+ pixel_x = 12;
+ pixel_y = 2
+ },
/turf/simulated/floor/tiled,
/area/tether/station/visitorhallway)
"ayQ" = (
@@ -13917,15 +13982,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/visitorhallway)
-"azB" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"azC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -14323,11 +14379,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/spacecommandmaint)
-"aAq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash_pile,
-/turf/simulated/floor,
-/area/hallway/station/docks)
"aAr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4;
@@ -16565,24 +16616,6 @@
/obj/structure/curtain/open/shower/engineering,
/turf/simulated/floor/tiled,
/area/crew_quarters/sleep/engi_wash)
-"aEW" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/substation/civilian)
"aEX" = (
/obj/machinery/power/smes/buildable{
RCon_tag = "Substation - Civilian";
@@ -16597,15 +16630,6 @@
/obj/structure/cable/green,
/turf/simulated/floor,
/area/maintenance/substation/civilian)
-"aEZ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/storage/emergency_storage/emergency4)
"aFc" = (
/obj/machinery/alarm{
dir = 4;
@@ -16626,15 +16650,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/storage/emergency_storage/emergency4)
-"aFf" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/storage/emergency_storage/emergency4)
"aFJ" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8;
@@ -16783,24 +16798,6 @@
"aGB" = (
/turf/simulated/wall/r_wall,
/area/engineering/engineering_airlock)
-"aGI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/substation/civilian)
"aGP" = (
/obj/structure/cable{
d1 = 4;
@@ -17174,17 +17171,6 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/sleep/engi_wash)
-"aKr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"aKt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -17811,24 +17797,6 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/engineering/engineering_monitoring)
-"aOj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"aOL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -18108,24 +18076,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/backup)
-"aRr" = (
-/obj/machinery/atmospherics/valve/open,
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"aRw" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
@@ -18461,40 +18411,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/hallway)
-"aUE" = (
-/obj/structure/railing,
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/obj/random/junk,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
-"aUF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/obj/random/medical/lite,
-/obj/random/tool,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"aUI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -19067,17 +18983,6 @@
/obj/random/junk,
/turf/simulated/floor,
/area/crew_quarters/sleep/cryo)
-"bcO" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/crew_quarters/sleep/cryo)
"bdi" = (
/obj/structure/cable{
d1 = 2;
@@ -19563,40 +19468,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor,
/area/crew_quarters/sleep/cryo)
-"bhL" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/crew_quarters/sleep/cryo)
-"bid" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/crew_quarters/sleep/cryo)
"bir" = (
/obj/structure/cable/green{
d1 = 1;
@@ -19889,14 +19760,6 @@
},
/turf/simulated/floor/tiled,
/area/storage/tools)
-"bpz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
- },
-/turf/simulated/floor,
-/area/hallway/station/docks)
"bqb" = (
/obj/structure/cable/green{
d1 = 1;
@@ -20668,20 +20531,6 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/tether/station/dock_two)
-"bXs" = (
-/obj/structure/closet/crate,
-/obj/item/clothing/mask/gas,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/cargo,
-/obj/random/action_figure,
-/obj/item/clothing/mask/gas,
-/obj/machinery/atmospherics/binary/passive_gate/on,
-/turf/simulated/floor/plating,
-/area/hallway/station/docks)
"bXG" = (
/obj/structure/table/reinforced,
/obj/machinery/light,
@@ -20743,10 +20592,6 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor,
/area/vacant/vacant_restaurant_lower)
-"bYl" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/vacant/vacant_restaurant_lower)
"bYm" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor,
@@ -20799,16 +20644,6 @@
/obj/item/clothing/gloves/yellow,
/turf/simulated/floor/tiled,
/area/engineering/workshop)
-"bZk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/head/cone,
-/turf/simulated/floor,
-/area/vacant/vacant_restaurant_lower)
-"bZm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor,
-/area/vacant/vacant_restaurant_lower)
"bZt" = (
/obj/structure/dispenser{
phorontanks = 0
@@ -20818,11 +20653,6 @@
"bZv" = (
/turf/simulated/floor/plating,
/area/vacant/vacant_restaurant_lower)
-"bZz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/tool,
-/turf/simulated/floor,
-/area/vacant/vacant_restaurant_lower)
"bZD" = (
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
@@ -20852,12 +20682,6 @@
/obj/random/junk,
/turf/simulated/floor,
/area/vacant/vacant_restaurant_lower)
-"bZP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/cell/potato,
-/obj/item/frame/apc,
-/turf/simulated/floor,
-/area/vacant/vacant_restaurant_lower)
"bZQ" = (
/obj/random/trash,
/turf/simulated/floor,
@@ -20976,6 +20800,20 @@
},
/turf/simulated/floor/plating,
/area/tether/station/dock_two)
+"crl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/machinery/vending/nifsoft_shop,
+/turf/simulated/floor/tiled,
+/area/hallway/station/atrium)
"cto" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -21154,11 +20992,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
-"dop" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/cutout,
-/turf/simulated/floor,
-/area/vacant/vacant_restaurant_lower)
"dsY" = (
/obj/effect/floor_decal/corner_techfloor_grid,
/obj/effect/floor_decal/techfloor/corner,
@@ -30243,9 +30076,9 @@ bYj
bYj
bZF
bZD
-bZP
-bYl
-bYl
+aiG
+bYj
+bYj
bYj
aeF
bZZ
@@ -30388,7 +30221,7 @@ bZD
bYj
bZS
bZD
-bZm
+bZD
aeF
aAV
rKn
@@ -30497,7 +30330,7 @@ agJ
aac
arq
alK
-ane
+acA
aot
aft
afu
@@ -30521,14 +30354,14 @@ and
aTX
aVN
alv
-dop
-bYl
+agV
bYj
bYj
-bZm
-bZm
-bZz
-bYl
+bYj
+bZD
+bZD
+ahY
+bYj
bZD
bYj
aeF
@@ -30664,15 +30497,15 @@ aIO
aVK
alv
bYk
-acv
+ahi
+bYj
+bYj
+bYj
+bYj
bYj
bYj
bYj
-bYl
-bYl
-bYl
bYj
-bYl
awu
bCg
rKn
@@ -30806,15 +30639,15 @@ aIO
aVW
alv
bYm
-amh
+ahM
bYj
-bZz
+ahY
bYj
bZK
bYj
-bYl
-bYl
-bZk
+bYj
+bYj
+ahP
aeI
aBi
rKn
@@ -30947,11 +30780,11 @@ anQ
aSB
aVP
alv
-bYl
-acM
-bZk
-bYl
-bYl
+bYj
+ahO
+ahP
+bYj
+bYj
bYj
bZQ
bYj
@@ -31089,9 +30922,9 @@ awm
aXX
aCb
alv
-bYl
+bYj
adp
-bZm
+bZD
bfF
bYj
bYj
@@ -32750,9 +32583,9 @@ aaa
aai
aaj
abC
-acA
-adg
abi
+acj
+acu
aeg
arM
arM
@@ -32892,8 +32725,8 @@ aai
abQ
ack
aam
-acj
-acj
+ack
+ack
ack
aef
abP
@@ -33067,14 +32900,14 @@ aci
aLl
aET
aaV
-atp
-api
+adV
+ahq
aMt
aqs
amA
ard
arZ
-aUE
+aeM
aqs
afC
ahb
@@ -33178,8 +33011,8 @@ aca
ack
ack
adh
-acj
-acj
+ack
+ack
ack
aaY
adG
@@ -33210,14 +33043,14 @@ aDj
aER
aaV
aIo
-aKr
+aec
aMr
aqt
amB
-arA
-asa
-asD
-ato
+aem
+aeE
+aeV
+afm
afC
aha
acp
@@ -33318,10 +33151,10 @@ abn
abT
abT
ack
-acj
-acj
-acj
-acj
+ack
+ack
+ack
+ack
ack
abC
adG
@@ -33330,9 +33163,9 @@ ack
ach
ack
akq
-api
-ahY
-aiR
+ahq
+acv
+acw
amR
ang
aik
@@ -33351,12 +33184,12 @@ aaV
aaV
aaV
aaV
-amz
+adZ
aUX
aMx
-aOj
-arb
-aRr
+aee
+ael
+aeD
aSO
aUI
aWj
@@ -33369,8 +33202,8 @@ bhg
axD
axZ
bno
-ael
-bpz
+aiR
+ajk
bqj
awu
avH
@@ -33461,7 +33294,7 @@ abQ
ack
ace
ack
-acj
+ack
ack
ach
aeL
@@ -33474,9 +33307,9 @@ aeG
agf
ahf
aeG
-aiO
-aiO
-aiO
+aeG
+aeG
+aeG
wDo
acq
anD
@@ -33485,11 +33318,11 @@ apU
aal
apU
atT
-avP
-avP
-ays
-avP
-avP
+apU
+apU
+acM
+apU
+apU
apU
apU
aGy
@@ -33500,8 +33333,8 @@ aYf
akv
arC
asc
-aUF
-atq
+aeZ
+afZ
afC
arh
acp
@@ -33509,11 +33342,11 @@ bdT
aaT
axb
axE
-bXs
+aiO
bnl
azl
azl
-aAq
+ajW
awu
avJ
aDx
@@ -33625,9 +33458,9 @@ aah
aik
ioI
ach
-acj
-aiR
-api
+ack
+acw
+ahq
aiX
abC
anE
@@ -33775,8 +33608,8 @@ aik
ach
aBH
aDs
-aEW
-aGI
+adg
+ads
alQ
aeO
afy
@@ -34056,7 +33889,7 @@ uyn
acc
rEb
aik
-azB
+azJ
alQ
alQ
alQ
@@ -34198,7 +34031,7 @@ kth
aHe
rEb
aik
-azB
+azJ
alT
asu
aFc
@@ -34343,8 +34176,8 @@ aik
azJ
alT
aDP
-aEZ
-avS
+adj
+adU
aoO
aeO
aeO
@@ -34485,7 +34318,7 @@ aik
azJ
alT
amE
-aFf
+adq
aoi
alT
aes
@@ -34630,7 +34463,7 @@ alT
aFe
alT
alT
-asY
+crl
acm
acm
acm
@@ -36936,8 +36769,8 @@ asG
asG
aqW
ari
-ars
-arU
+anv
+anY
asf
aqd
aat
@@ -37076,10 +36909,10 @@ apm
apF
aqd
aqy
-aqX
-aqX
-arv
-arP
+ari
+ari
+anw
+anS
asj
aqd
aat
@@ -37218,10 +37051,10 @@ apn
apH
aqd
aqz
-aqA
-arj
-arw
-arP
+ane
+ans
+anI
+anS
ari
ast
aat
@@ -37348,23 +37181,23 @@ amQ
aum
aaT
anp
-ans
-anI
-anS
-anY
-aoe
-aoz
-aoe
-aoe
+apt
+akB
+akI
+anp
+akQ
+akV
+akQ
+akQ
apt
anp
aqn
-aqA
-aqA
+ane
+ane
arm
arD
-arW
-aqX
+aoa
+ari
ast
aat
aat
@@ -37489,24 +37322,24 @@ bmv
amS
amT
amV
-anh
-anv
-anJ
-anT
-aoa
+ake
+aki
+apz
+akN
+akP
aos
-anv
-anv
+aki
+aki
aoW
apz
apR
aqp
-aqC
+anh
aqY
aro
arG
-arY
-arP
+aoe
+anS
ast
aat
aat
@@ -37631,24 +37464,24 @@ bmA
atK
bpf
amX
-ani
-anw
+apS
+aob
anK
anU
aob
aob
-aoe
-anw
-aoY
+akQ
+aob
+alO
aob
apS
aqr
-aqP
-aqZ
+ani
+anq
arp
arJ
-asd
-arP
+aop
+anS
ast
aat
aat
@@ -37779,17 +37612,17 @@ anp
anV
anp
ann
-aoA
-aoP
-apa
+akW
+alf
+alU
apA
apV
aqd
aqU
-ara
-aqX
-arL
-aqA
+anr
+ari
+anJ
+ane
ari
ast
aat
@@ -37920,18 +37753,18 @@ anx
anM
ann
anm
-aoe
+akQ
aoC
-anY
+anp
apd
anp
apW
aqw
aqV
arc
-aqX
-arP
-aqA
+ari
+anS
+ane
asj
aqd
aat
@@ -38051,7 +37884,7 @@ auo
auZ
aCU
asI
-bhL
+bhJ
aus
asY
acm
@@ -38062,18 +37895,18 @@ anA
ann
anW
aoc
-aou
-aoD
-aoQ
-apf
+akU
+akY
+apm
+alV
apm
apY
aqd
aqd
arg
ari
-arS
-ase
+anT
+aor
asq
aqd
aat
@@ -38193,7 +38026,7 @@ baQ
ava
aua
asI
-bid
+aig
aus
atu
acm
@@ -38207,7 +38040,7 @@ aAk
amU
amU
aoR
-aph
+alZ
aoR
apZ
amU
@@ -38335,7 +38168,7 @@ asI
aeq
agz
asI
-bhL
+bhJ
aus
att
acm
@@ -38348,8 +38181,8 @@ aAk
byy
amU
aoE
-aoS
-apj
+aoK
+amb
apC
aqb
amU
@@ -38490,8 +38323,8 @@ aAk
aDh
amU
aoK
-anY
-apk
+anp
+amh
anp
aqc
amU
@@ -38632,8 +38465,8 @@ aCC
byA
amU
aoL
-anY
-apl
+anp
+amz
apE
amU
amU
@@ -38758,9 +38591,9 @@ aEG
aEJ
auO
baT
-bcO
baT
-bcO
+baT
+baT
bir
aus
abY
diff --git a/maps/tether/tether-06-station2.dmm b/maps/tether/tether-06-station2.dmm
index c9ff3f61904..e313924444a 100644
--- a/maps/tether/tether-06-station2.dmm
+++ b/maps/tether/tether-06-station2.dmm
@@ -44,9 +44,13 @@
/turf/simulated/floor/tiled,
/area/security/brig/bathroom)
"ah" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/monotile,
-/area/security/brig)
+/obj/effect/floor_decal/rust,
+/obj/random/trash,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"ai" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals5,
@@ -87,9 +91,12 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"am" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
+/obj/random/junk,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"an" = (
/obj/effect/floor_decal/corner/red{
dir = 9;
@@ -273,23 +280,25 @@
/turf/simulated/floor/tiled/monotile,
/area/security/brig)
"aB" = (
-/obj/effect/floor_decal/corner/white/border{
- dir = 8
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
},
-/obj/item/weapon/paper/crumpled{
- name = "basketball"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/monotile,
-/area/security/brig)
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"aC" = (
-/obj/effect/floor_decal/corner/white/border{
- dir = 4;
- icon_state = "bordercolor"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/monotile,
-/area/security/brig)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"aD" = (
/obj/effect/floor_decal/corner/white/border{
dir = 1
@@ -336,30 +345,25 @@
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
"aJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
+/obj/effect/floor_decal/rust,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/structure/catwalk,
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/green,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
-/area/security/riot_control)
+/area/maintenance/station/sec_lower)
"aK" = (
-/obj/machinery/atmospherics/binary/pump,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/security/riot_control)
+/obj/structure/table/glass,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/device/healthanalyzer,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/station/sec_lower)
"aL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -393,15 +397,21 @@
/turf/simulated/floor/tiled/dark,
/area/security/recstorage)
"aN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
+/obj/effect/floor_decal/rust,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
"aO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash_pile,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/item/weapon/paper/crumpled{
+ name = "basketball"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
"aP" = (
/turf/simulated/mineral/floor/vacuum,
/area/mine/explored/upper_level)
@@ -433,11 +443,22 @@
/turf/simulated/floor/tiled/freezer,
/area/security/brig/bathroom)
"aU" = (
-/obj/structure/railing,
-/obj/effect/floor_decal/spline/plain,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/monotile,
-/area/security/brig)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/soap/nanotrasen,
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
"aV" = (
/obj/structure/railing{
dir = 4
@@ -519,10 +540,9 @@
/turf/simulated/floor/tiled/dark,
/area/security/brig)
"aZ" = (
-/obj/machinery/atmospherics/valve/digital,
-/obj/effect/decal/cleanable/dirt,
+/obj/random/cutout,
/turf/simulated/floor,
-/area/security/riot_control)
+/area/maintenance/station/sec_lower)
"ba" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -618,9 +638,22 @@
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"bf" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
"bg" = (
/turf/simulated/wall/r_wall,
/area/maintenance/station/exploration)
@@ -652,23 +685,14 @@
/turf/simulated/floor/tiled,
/area/security/brig/visitation)
"bj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"bk" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -950,21 +974,20 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"bE" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/green,
-/obj/effect/floor_decal/corner/lightorange/bordercorner{
- dir = 4;
- icon_state = "bordercolorcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/structure/bed/chair{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/security/brig)
@@ -1079,18 +1102,14 @@
/turf/simulated/floor/tiled/steel_dirty,
/area/security/brig)
"bL" = (
-/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/regular{
density = 0;
dir = 1;
@@ -1099,14 +1118,6 @@
name = "Security Blast Doors";
opacity = 0
},
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/window/brigdoor/southleft{
- dir = 4;
- icon_state = "leftsecure";
- id = "Cell 4";
- name = "Cell 4";
- req_access = list(2)
- },
/turf/simulated/floor/tiled/dark,
/area/security/brig)
"bM" = (
@@ -1217,25 +1228,17 @@
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
"bR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"bS" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
/obj/item/clothing/glasses/sunglasses/blindfold,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"bS" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
"bT" = (
/turf/simulated/wall/r_wall,
/area/tether/exploration/showers)
@@ -1340,7 +1343,6 @@
icon_state = "map_injector";
id = "riot_inject"
},
-/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/security/brig)
@@ -1361,9 +1363,6 @@
dir = 1;
icon_state = "bulb1"
},
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet,
-/obj/item/weapon/pen/crayon/green,
/turf/simulated/floor/tiled/dark,
/area/security/brig)
"cb" = (
@@ -1420,21 +1419,27 @@
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
"cg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/green,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
+/obj/structure/closet,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"ch" = (
/turf/simulated/wall/r_wall,
/area/security/brig/bathroom)
"ci" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
"cj" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -1750,23 +1755,10 @@
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
"cD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 9
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/tiled/steel_dirty,
/area/security/brig)
"cE" = (
/obj/effect/floor_decal/borderfloor{
@@ -1871,9 +1863,11 @@
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
"cJ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/shaft)
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
"cK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -1913,9 +1907,6 @@
icon_state = "corner_white"
},
/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 4"
- },
/turf/simulated/floor/tiled/dark,
/area/security/brig)
"cN" = (
@@ -1949,10 +1940,16 @@
/turf/simulated/floor/tiled/dark,
/area/security/brig)
"cP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/steel_dirty,
/area/security/brig)
"cQ" = (
@@ -2050,15 +2047,12 @@
/turf/simulated/floor/tiled/dark,
/area/security/recstorage)
"cW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
+/turf/simulated/floor/tiled,
+/area/security/brig)
"cX" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
@@ -2292,19 +2286,16 @@
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
"dn" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/small{
+ dir = 8
+ },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
+/turf/simulated/floor/plating,
+/area/engineering/shaft)
"do" = (
/obj/effect/floor_decal/borderfloor/shifted{
dir = 8;
@@ -2576,14 +2567,15 @@
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
"dK" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 8;
+ frequency = 1442;
+ icon_state = "map_injector";
+ id = "riot_inject"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/shaft)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
"dL" = (
/obj/structure/cable/green{
d1 = 4;
@@ -2650,14 +2642,7 @@
/turf/simulated/floor/tiled/dark,
/area/security/brig)
"dP" = (
-/obj/machinery/atmospherics/unary/outlet_injector{
- dir = 8;
- frequency = 1442;
- icon_state = "map_injector";
- id = "riot_inject"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/steel_dirty,
/area/security/brig)
"dQ" = (
@@ -2670,28 +2655,12 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"dR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/random/junk,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance/sec{
- name = "Riot Control";
- req_one_access = list(2,10,24)
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/riot_control)
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"dS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -2750,13 +2719,16 @@
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
"dU" = (
-/obj/structure/shuttle/engine/propulsion{
+/obj/effect/floor_decal/rust,
+/obj/structure/table/rack{
dir = 8;
- icon_state = "propulsion_l"
+ layer = 2.9
},
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/large_escape_pod1)
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/engineering/shaft)
"dV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
@@ -3001,9 +2973,22 @@
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
"es" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/steel_dirty,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/effect/floor_decal/corner/lightorange/bordercorner{
+ dir = 4;
+ icon_state = "bordercolorcorner"
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
/area/security/brig)
"et" = (
/obj/machinery/light/small{
@@ -3034,17 +3019,14 @@
/turf/simulated/floor/tiled,
/area/hallway/station/port)
"ev" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/effect/floor_decal/corner/white/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2,
-/obj/effect/floor_decal/corner/white/bordercorner2,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/engineering/shaft)
"ew" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -3695,15 +3677,18 @@
},
/area/tether/elevator)
"fx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/plating,
-/area/engineering/shaft)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
"fy" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -3821,21 +3806,9 @@
/turf/simulated/floor/tiled,
/area/tether/exploration/staircase)
"fD" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 6
- },
-/obj/item/weapon/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner";
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
+/obj/structure/firedoor_assembly,
+/turf/simulated/floor,
+/area/medical/morgue)
"fE" = (
/obj/effect/floor_decal/techfloor{
dir = 8
@@ -4637,43 +4610,31 @@
/turf/simulated/floor,
/area/maintenance/station/exploration)
"gS" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- dir = 4;
- icon_state = "bordercolorcorner2"
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"gT" = (
-/obj/structure/shuttle/engine/propulsion{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"gU" = (
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/large_escape_pod1)
-"gU" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_r"
+/obj/machinery/camera/network/security{
+ dir = 10;
+ icon_state = "camera"
},
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/large_escape_pod1)
+/turf/simulated/floor/tiled,
+/area/security/brig)
"gV" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
@@ -4936,6 +4897,11 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
+"hq" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"hr" = (
/turf/simulated/wall,
/area/maintenance/station/eng_upper)
@@ -5212,6 +5178,29 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
+"hL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/turf/simulated/floor,
+/area/security/riot_control)
+"hM" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/airless,
+/area/maintenance/station/sec_lower)
"hN" = (
/obj/structure/railing{
dir = 8
@@ -5321,6 +5310,10 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/interrogation)
+"hZ" = (
+/obj/machinery/atmospherics/binary/pump,
+/turf/simulated/floor,
+/area/security/riot_control)
"ia" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -5517,6 +5510,19 @@
/obj/random/maintenance/research,
/turf/simulated/floor,
/area/maintenance/station/exploration)
+"iq" = (
+/obj/machinery/atmospherics/valve/digital,
+/turf/simulated/floor,
+/area/security/riot_control)
+"ir" = (
+/obj/structure/closet,
+/obj/random/maintenance/security,
+/obj/random/contraband,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/sec_lower)
"is" = (
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
@@ -6042,6 +6048,45 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
+"iZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Riot Control";
+ req_one_access = list(2,10,24)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"ja" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/eng_upper)
"jb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6157,6 +6202,18 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer_mezzenine)
+"jh" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/station/sec_lower)
"ji" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -6169,9 +6226,17 @@
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"jj" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
+/area/maintenance/station/sec_lower)
"jk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -6698,39 +6763,36 @@
/turf/simulated/floor/plating,
/area/maintenance/station/sec_lower)
"jQ" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/station/sec_lower)
"jR" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/station/sec_lower)
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor,
+/area/storage/tech)
"jS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/apc;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/maintenance/security,
/turf/simulated/floor/plating,
-/area/maintenance/station/sec_lower)
+/area/maintenance/station/eng_upper)
"jT" = (
/obj/structure/table/standard,
/obj/item/weapon/aiModule/asimov,
@@ -6943,6 +7005,20 @@
"kp" = (
/turf/simulated/wall/r_wall,
/area/tether/exploration/equipment)
+"kq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/eng_upper)
"kr" = (
/obj/machinery/power/sensor{
name = "Powernet Sensor - Exploration Subgrid";
@@ -7192,6 +7268,15 @@
/obj/item/device/analyzer,
/turf/simulated/floor/plating,
/area/storage/tech)
+"kN" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/station/sec_lower)
"kO" = (
/obj/structure/table/rack{
dir = 8;
@@ -7335,6 +7420,16 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/open,
/area/maintenance/station/eng_upper)
+"kY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"kZ" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -7434,6 +7529,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
+"le" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"lf" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Exploration Substation Bypass"
@@ -7692,14 +7794,48 @@
/turf/simulated/floor,
/area/storage/tech)
"ly" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/weapon/circuitboard/transhuman_synthprinter{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/obj/item/weapon/circuitboard/rdconsole{
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/destructive_analyzer,
+/obj/item/weapon/circuitboard/protolathe{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/weapon/circuitboard/rdserver{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
/area/storage/tech)
"lz" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/security/mining{
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/autolathe,
+/obj/item/weapon/circuitboard/scan_consolenew{
+ pixel_x = 6;
+ pixel_y = -3
+ },
+/turf/simulated/floor/plating,
/area/storage/tech)
"lA" = (
/obj/structure/table/steel,
@@ -7749,17 +7885,13 @@
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
"lE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/random/junk,
+/obj/structure/railing{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
@@ -8184,49 +8316,30 @@
/turf/simulated/floor,
/area/storage/tech)
"mi" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/railing{
dir = 4
},
-/obj/item/weapon/circuitboard/transhuman_synthprinter{
- pixel_x = -3;
- pixel_y = 4
- },
-/obj/item/weapon/circuitboard/rdconsole{
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/item/weapon/circuitboard/destructive_analyzer,
-/obj/item/weapon/circuitboard/protolathe{
- pixel_x = 3;
- pixel_y = -2
- },
-/obj/item/weapon/circuitboard/rdserver{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/storage/tech)
+/area/maintenance/station/eng_upper)
"mj" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
},
-/obj/item/weapon/circuitboard/security/mining{
- pixel_x = 1;
- pixel_y = 3
+/obj/item/weapon/circuitboard/secure_data{
+ pixel_x = -2;
+ pixel_y = 2
},
-/obj/item/weapon/circuitboard/autolathe,
-/obj/item/weapon/circuitboard/scan_consolenew{
- pixel_x = 6;
+/obj/item/weapon/circuitboard/security{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/skills{
+ pixel_x = 4;
pixel_y = -3
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/storage/tech)
"mk" = (
@@ -8305,12 +8418,28 @@
/turf/simulated/open,
/area/maintenance/station/eng_upper)
"mq" = (
-/obj/structure/railing{
- dir = 8
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/powermonitor{
+ pixel_x = 0;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/stationalert_engineering{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/security/engineering{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/atmos_alert{
+ pixel_x = 6;
+ pixel_y = -3
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
+/area/storage/tech)
"mr" = (
/obj/structure/railing{
dir = 4
@@ -8552,23 +8681,16 @@
/turf/simulated/floor,
/area/storage/tech)
"mJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/railing{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/storage/tech)
+/turf/simulated/floor/plating,
+/area/maintenance/station/eng_upper)
"mK" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8627,10 +8749,26 @@
},
/turf/simulated/open,
/area/engineering/foyer_mezzenine)
+"mN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/eng_upper)
"mO" = (
/obj/structure/catwalk,
/turf/simulated/open,
/area/engineering/foyer_mezzenine)
+"mP" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/station/eng_upper)
"mQ" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -8673,17 +8811,23 @@
/turf/simulated/floor,
/area/maintenance/station/exploration)
"mS" = (
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
"mT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/junk,
+/obj/random/tool,
+/obj/random/maintenance/security,
+/obj/random/maintenance/engineering,
+/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
"mU" = (
@@ -8950,6 +9094,14 @@
/obj/effect/landmark/free_ai_shell,
/turf/simulated/floor/tiled/techfloor,
/area/ai_upload_foyer)
+"nk" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/large_escape_pod1)
"nl" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -8984,6 +9136,20 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/techfloor,
/area/ai_cyborg_station)
+"no" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/closet,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/medical,
+/obj/random/junk,
+/obj/random/medical/lite,
+/obj/random/tool,
+/obj/random/maintenance/security,
+/turf/simulated/floor/plating,
+/area/maintenance/station/eng_upper)
"np" = (
/obj/structure/table/standard,
/obj/item/weapon/phone,
@@ -8992,6 +9158,11 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ai_cyborg_station)
+"nq" = (
+/obj/machinery/light/small,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/station/eng_upper)
"nr" = (
/obj/structure/cable/green{
d1 = 4;
@@ -9071,49 +9242,20 @@
/turf/simulated/floor/plating,
/area/storage/tech)
"nx" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
},
-/obj/item/weapon/circuitboard/secure_data{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/weapon/circuitboard/security{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/weapon/circuitboard/skills{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/storage/tech)
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/large_escape_pod1)
"ny" = (
-/obj/structure/table/rack{
+/obj/structure/shuttle/engine/propulsion{
dir = 8;
- layer = 2.9
+ icon_state = "propulsion_r"
},
-/obj/item/weapon/circuitboard/powermonitor{
- pixel_x = 0;
- pixel_y = 3
- },
-/obj/item/weapon/circuitboard/stationalert_engineering{
- pixel_x = 2;
- pixel_y = 1
- },
-/obj/item/weapon/circuitboard/security/engineering{
- pixel_x = 5;
- pixel_y = -1
- },
-/obj/item/weapon/circuitboard/atmos_alert{
- pixel_x = 6;
- pixel_y = -3
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/storage/tech)
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/large_escape_pod1)
"nz" = (
/obj/machinery/light_switch{
dir = 8;
@@ -9121,6 +9263,18 @@
},
/turf/simulated/floor,
/area/storage/tech)
+"nA" = (
+/obj/random/powercell,
+/turf/simulated/floor/plating,
+/area/vacant/vacant_restaurant_upper)
+"nB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/maintenance/station/micro)
"nC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9174,17 +9328,16 @@
/turf/simulated/floor,
/area/maintenance/station/exploration)
"nG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/railing{
- dir = 4
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
+/turf/simulated/floor,
+/area/maintenance/station/micro)
"nH" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -9388,10 +9541,6 @@
},
/turf/simulated/floor,
/area/storage/tech)
-"oc" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/storage/tech)
"od" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -9569,18 +9718,6 @@
},
/turf/simulated/open,
/area/maintenance/station/eng_upper)
-"ow" = (
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
"ox" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -9820,18 +9957,6 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
-"oS" = (
-/obj/structure/closet,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/junk,
-/obj/random/tool,
-/obj/random/maintenance/security,
-/obj/random/maintenance/engineering,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
"oV" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -9915,34 +10040,6 @@
},
/turf/simulated/open,
/area/engineering/foyer_mezzenine)
-"pg" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/closet,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/medical,
-/obj/random/junk,
-/obj/random/medical/lite,
-/obj/random/tool,
-/obj/random/maintenance/security,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
-"ph" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
"pi" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -9995,21 +10092,9 @@
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
"pn" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "psych_office"
- },
-/obj/structure/grille,
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "medbayquar";
- name = "Medbay Emergency Lockdown Shutters";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/medical/psych)
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/hallway/station/port)
"po" = (
/turf/simulated/wall,
/area/medical/psych)
@@ -10031,8 +10116,13 @@
/turf/simulated/floor/plating,
/area/medical/surgery_hallway)
"pr" = (
-/obj/structure/sign/department/medbay,
-/turf/simulated/wall,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"ps" = (
/obj/structure/disposalpipe/segment,
@@ -10418,42 +10508,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
-"pV" = (
-/obj/structure/morgue,
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"pW" = (
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/effect/floor_decal/techfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"pX" = (
-/obj/effect/floor_decal/techfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"pY" = (
-/obj/structure/morgue{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"pZ" = (
-/obj/effect/floor_decal/techfloor{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
"qa" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -10551,15 +10605,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/pathfinder_office)
-"qk" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_restaurant_upper)
-"ql" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_restaurant_upper)
"qm" = (
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
@@ -10791,29 +10836,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
-"qD" = (
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"qE" = (
-/obj/machinery/disposal,
-/obj/effect/floor_decal/techfloor{
- dir = 5
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
"qF" = (
/obj/structure/cable/green{
d1 = 4;
@@ -10840,16 +10862,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
-"qG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
"qH" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
@@ -10874,22 +10886,7 @@
/obj/item/stack/cable_coil,
/turf/simulated/floor,
/area/storage/tech)
-"qJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"qK" = (
-/obj/structure/flora/pottedplant/fern,
-/obj/machinery/camera/network/medbay{
- dir = 9;
- icon_state = "camera"
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
"qL" = (
-/obj/structure/bed/chair,
/obj/structure/sign/nosmoking_1{
pixel_y = 32
},
@@ -10899,26 +10896,9 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 9
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery_hallway)
-"qM" = (
-/obj/structure/bed/chair,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"qN" = (
-/obj/structure/bed/chair,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -11207,12 +11187,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/port)
-"rn" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
"ro" = (
/obj/structure/cable/green{
d1 = 4;
@@ -11250,46 +11224,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/station/public_meeting_room)
-"rq" = (
-/obj/structure/table/woodentable,
-/obj/item/toy/plushie/therapy/blue,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"rr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"rs" = (
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"rt" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- id_tag = "mentaldoor";
- name = "Mental Health";
- req_access = list(64)
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"ru" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery_hallway)
"rv" = (
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
@@ -11317,56 +11251,13 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"rz" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/storage/box/bodybags{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/machinery/camera/network/medbay{
- dir = 9;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"rA" = (
-/obj/structure/table/woodentable,
-/obj/random/plushie,
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"rB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"rC" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
"rD" = (
-/obj/structure/bed/chair{
- dir = 1
- },
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 10
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 8
- },
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"rE" = (
@@ -11649,9 +11540,6 @@
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
"sa" = (
-/obj/structure/bed/chair{
- dir = 1
- },
/obj/machinery/light,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
@@ -11692,23 +11580,6 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"se" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"sf" = (
-/obj/structure/table/steel,
-/obj/item/device/sleevemate,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
"sg" = (
/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
scrub_id = "sec_riot_control"
@@ -11719,29 +11590,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"sh" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"si" = (
-/obj/item/weapon/storage/secure/safe{
- pixel_x = 32
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
"sj" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
/obj/effect/floor_decal/borderfloorwhite{
dir = 5
},
@@ -11761,89 +11610,8 @@
pixel_x = -4;
pixel_y = 26
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"sk" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
- },
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"sl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"sm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"sn" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"so" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
"sp" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Engineering Hardsuits";
@@ -11852,18 +11620,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
-"sq" = (
-/obj/structure/table/woodentable,
-/obj/structure/plushie/ian{
- dir = 8;
- icon_state = "ianplushie";
- pixel_y = 6
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
"sr" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/grille,
@@ -11952,74 +11708,10 @@
"sB" = (
/turf/simulated/wall,
/area/maintenance/station/micro)
-"sC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/effect/floor_decal/techfloor/corner{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"sD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"sE" = (
-/obj/structure/table/steel,
-/obj/item/weapon/paper_bin{
- pixel_y = 0
- },
-/obj/item/weapon/pen/blue{
- pixel_x = 3;
- pixel_y = -1
- },
-/obj/item/weapon/pen/red{
- pixel_x = -1;
- pixel_y = -3
- },
-/obj/item/device/radio/intercom/department/medbay{
- dir = 4;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
"sF" = (
/turf/simulated/wall/r_wall,
/area/maintenance/evahallway)
-"sG" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/wood,
-/area/medical/psych)
"sH" = (
-/obj/structure/bed/chair{
- dir = 1
- },
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/machinery/camera/network/medbay{
@@ -12058,91 +11750,17 @@
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"sK" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 9
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
- },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"sL" = (
-/obj/structure/filingcabinet/medical{
- desc = "A large cabinet with hard copy medical records.";
- name = "Medical Records"
- },
-/obj/machinery/button/windowtint{
- id = "psych_office";
- pixel_x = 24;
- range = 12
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"sM" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access = list(6)
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/morgue)
-"sN" = (
-/obj/structure/table/steel,
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"sO" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/effect/floor_decal/techfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
"sP" = (
/obj/machinery/light{
dir = 8;
@@ -12304,63 +11922,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/stairs_two)
-"tg" = (
-/obj/structure/table/steel,
-/obj/item/weapon/surgical/scalpel,
-/obj/item/weapon/autopsy_scanner,
-/obj/item/weapon/surgical/cautery,
-/obj/effect/floor_decal/techfloor,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"th" = (
-/obj/machinery/optable,
-/obj/effect/floor_decal/techfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"ti" = (
-/obj/structure/filingcabinet/chestdrawer{
- desc = "A large drawer filled with autopsy reports.";
- name = "Autopsy Reports"
- },
-/obj/machinery/light/small,
-/obj/effect/floor_decal/techfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"tj" = (
-/obj/effect/floor_decal/techfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"tk" = (
-/obj/structure/table/steel,
-/obj/item/weapon/folder/white,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/effect/floor_decal/techfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"tl" = (
-/obj/structure/table/steel,
-/obj/item/device/camera{
- name = "Autopsy Camera";
- pixel_x = -2;
- pixel_y = 7
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/obj/effect/floor_decal/techfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
"tm" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -12395,26 +11956,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/station/public_meeting_room)
-"tp" = (
-/obj/structure/flora/pottedplant/fern,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"tq" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
"tr" = (
/obj/machinery/alarm{
dir = 4;
@@ -12427,12 +11968,6 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 8
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 10
- },
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"ts" = (
@@ -12446,21 +11981,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"tt" = (
-/obj/structure/closet/crate/bin,
-/turf/simulated/floor/wood,
-/area/medical/psych)
"tu" = (
/turf/simulated/wall,
/area/medical/resleeving)
-"tv" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access = list(6)
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/resleeving)
"tw" = (
/obj/structure/table/reinforced,
/obj/item/clothing/head/welding,
@@ -12604,11 +12127,6 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/tiled/techfloor,
/area/ai_upload_foyer)
-"tG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/powercell,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_restaurant_upper)
"tH" = (
/obj/machinery/light{
dir = 4;
@@ -12638,76 +12156,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/stairs_two)
-"tK" = (
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"tL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"tM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"tN" = (
-/obj/structure/bed/chair/comfy/brown,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"tO" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"tP" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- id_tag = "mentaldoor";
- name = "Mental Health";
- req_access = list(64)
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
"tQ" = (
/obj/structure/cable/green{
d1 = 4;
@@ -12729,27 +12177,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"tR" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- icon_state = "map-scrubbers"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery_hallway)
"tS" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -12824,26 +12251,6 @@
/obj/structure/table/glass,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"tY" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/effect/floor_decal/techfloor,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
"tZ" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -12964,16 +12371,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"ul" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_restaurant_upper)
-"um" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/vacant/vacant_restaurant_upper)
"un" = (
/obj/structure/stairs/north,
/turf/simulated/floor/tiled,
@@ -13144,25 +12541,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/biostorage)
-"uB" = (
-/obj/structure/flora/ausbushes/genericbush,
-/turf/simulated/floor/grass,
-/area/medical/psych)
-"uC" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/grass,
-/area/medical/psych)
-"uD" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "psych_birdcage"
- },
-/turf/simulated/floor/plating,
-/area/medical/psych)
"uE" = (
/obj/machinery/suit_cycler/engineering{
req_access = null
@@ -13327,24 +12705,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/stairs_two)
-"uU" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Psychiatrist"
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"uV" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green{
- dir = 2;
- pixel_x = -5;
- pixel_y = 4
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
"uW" = (
/turf/simulated/wall,
/area/medical/morgue)
@@ -13361,29 +12721,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals6,
/turf/simulated/floor/tiled,
/area/hallway/station/port)
-"uY" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_y = 4
- },
-/obj/item/weapon/pen{
- pixel_y = 4
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"uZ" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/folder/white,
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"va" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "psych_office"
- },
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/medical/psych)
"vb" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -13627,6 +12964,11 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/stairs_two)
+"vu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/sec,
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"vv" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
@@ -13925,44 +13267,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/biostorage)
-"vV" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/machinery/light/small{
- dir = 8
- },
-/mob/living/simple_mob/animal/passive/bird/azure_tit/tweeter,
-/turf/simulated/floor/grass,
-/area/medical/psych)
-"vW" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/grass,
-/area/medical/psych)
-"vX" = (
-/obj/structure/bed/psych,
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"vY" = (
-/obj/structure/table/woodentable,
-/obj/machinery/computer/med_data/laptop{
- dir = 4
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"vZ" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Psychiatrist"
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"wa" = (
-/obj/structure/filingcabinet/chestdrawer{
- name = "Medical Forms"
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
"wb" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -13973,11 +13277,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"wc" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -14209,56 +13508,8 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/biostorage)
-"wt" = (
-/obj/structure/closet/secure_closet/chemical{
- req_access = list(64);
- req_one_access = list(5)
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"wu" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/grass,
-/area/medical/psych)
-"wv" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/clipboard,
-/obj/machinery/camera/network/medbay{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"ww" = (
-/obj/machinery/button/windowtint{
- id = "psych_birdcage";
- pixel_x = 6;
- pixel_y = -26;
- range = 12
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -8;
- pixel_y = -26
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"wx" = (
-/obj/machinery/light,
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"wy" = (
-/obj/item/device/radio/intercom{
- dir = 2;
- pixel_y = -24
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
"wz" = (
-/obj/item/device/radio/intercom/department/medbay{
- pixel_y = -24
- },
-/turf/simulated/floor/carpet/blue,
+/turf/simulated/floor,
/area/medical/psych)
"wA" = (
/obj/structure/table/standard,
@@ -14277,12 +13528,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/biostorage)
-"wB" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
"wC" = (
/obj/machinery/vending/wallmed1{
pixel_x = -30
@@ -14684,9 +13929,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"xf" = (
-/turf/simulated/wall,
-/area/medical/surgery2)
"xg" = (
/turf/simulated/wall,
/area/maintenance/station/medbay)
@@ -14892,11 +14134,9 @@
"xx" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "surgery_2"
- },
+/obj/structure/window/reinforced/full,
/turf/simulated/floor/plating,
-/area/medical/surgery2)
+/area/maintenance/station/medbay)
"xy" = (
/obj/effect/decal/cleanable/blood,
/obj/item/weapon/paper,
@@ -14913,79 +14153,6 @@
/obj/item/weapon/paper,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
-"xB" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"xC" = (
-/obj/structure/bed/chair,
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"xD" = (
-/obj/structure/bed/chair,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"xE" = (
-/obj/structure/table/standard,
-/obj/item/device/healthanalyzer,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"xF" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/surgery,
-/obj/item/device/radio/intercom/department/medbay{
- dir = 1;
- pixel_y = 24
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
"xG" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -15298,27 +14465,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"yg" = (
-/obj/structure/sink{
- dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 8
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
"yh" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -15330,15 +14476,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor,
/area/maintenance/station/micro)
-"yi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor,
-/area/maintenance/station/micro)
"yj" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -15352,25 +14489,6 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/station/micro)
-"yl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor,
-/area/maintenance/station/micro)
-"ym" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/micro)
"yn" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -15451,22 +14569,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/stairs_two)
-"ys" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner";
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
"yt" = (
/obj/machinery/light{
dir = 4;
@@ -15481,30 +14583,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ai_cyborg_station)
-"yu" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"yv" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"yw" = (
-/obj/effect/floor_decal/industrial/loading,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
"yy" = (
/obj/structure/cable/green{
d1 = 1;
@@ -15537,6 +14615,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/equipment)
+"yB" = (
+/obj/structure/barricade,
+/turf/simulated/floor,
+/area/medical/psych)
"yH" = (
/obj/structure/closet/secure_closet/pilot,
/obj/effect/floor_decal/borderfloor,
@@ -15552,6 +14634,16 @@
"yJ" = (
/turf/simulated/wall/r_wall,
/area/maintenance/station/micro)
+"yL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ dir = 10;
+ icon_state = "camera"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
"yV" = (
/obj/structure/table/standard,
/obj/item/device/glasses_kit,
@@ -15623,6 +14715,10 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
+"zc" = (
+/obj/structure/firedoor_assembly,
+/turf/simulated/floor,
+/area/medical/psych)
"zd" = (
/obj/structure/cable/green{
d1 = 1;
@@ -15702,10 +14798,6 @@
/area/medical/surgery_hallway)
"zh" = (
/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre 2";
- req_access = list(45)
- },
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -15718,63 +14810,17 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/machinery/door/airlock/maintenance/medical,
/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"zi" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"zj" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
+/area/maintenance/station/medbay)
"zk" = (
-/obj/machinery/computer/operating{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
+/obj/structure/frame/computer,
+/turf/simulated/floor,
+/area/maintenance/station/medbay)
"zl" = (
-/obj/machinery/optable,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"zm" = (
-/obj/machinery/oxygen_pump/anesthetic,
-/turf/simulated/wall,
-/area/medical/surgery2)
+/obj/structure/frame,
+/turf/simulated/floor,
+/area/maintenance/station/medbay)
"zn" = (
/obj/structure/cable/green{
d1 = 1;
@@ -15857,49 +14903,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"zu" = (
-/obj/structure/medical_stand,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- dir = 8
- },
-/obj/machinery/camera/network/medbay{
- dir = 4;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"zv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"zw" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"zx" = (
-/obj/effect/floor_decal/industrial/loading{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
"zy" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -16060,62 +15063,9 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"zM" = (
-/obj/structure/closet/secure_closet/medical2,
-/obj/machinery/button/windowtint{
- id = "surgery_2";
- pixel_y = -26
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 10;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"zN" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/white/border,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"zO" = (
-/obj/structure/table/standard,
-/obj/item/device/healthanalyzer,
-/obj/item/device/radio/intercom{
- dir = 2;
- pixel_y = -24
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/white/border,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
"zP" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/surgery,
-/obj/item/device/radio/intercom/department/medbay{
- pixel_y = -24
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/white/border,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
+/turf/simulated/floor,
+/area/maintenance/station/medbay)
"zR" = (
/obj/structure/cable/green{
d1 = 1;
@@ -16266,7 +15216,7 @@
"Ac" = (
/obj/structure/sign/department/operational,
/turf/simulated/wall,
-/area/medical/surgery2)
+/area/maintenance/station/medbay)
"Ad" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin,
@@ -16554,7 +15504,6 @@
/turf/simulated/floor/plating,
/area/medical/patient_b)
"AF" = (
-/obj/structure/closet/secure_closet/personal/patient,
/obj/item/device/radio/intercom{
dir = 1;
pixel_y = 24;
@@ -16569,12 +15518,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
"AG" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/item/device/radio/intercom/department/medbay{
- dir = 1;
- pixel_y = 24
- },
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -16584,7 +15527,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
"AH" = (
-/obj/structure/bed/chair,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -16664,15 +15606,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals10,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"AN" = (
-/obj/machinery/body_scanconsole{
- dir = 4
- },
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery_hallway)
"AO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -16688,17 +15621,12 @@
/turf/simulated/floor/plating,
/area/vacant/vacant_restaurant_upper)
"AP" = (
-/obj/machinery/bodyscanner{
- dir = 4
- },
/obj/effect/floor_decal/corner_steel_grid{
dir = 10
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"AQ" = (
-/obj/structure/table/glass,
-/obj/random/medical,
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 8
},
@@ -16757,9 +15685,6 @@
/turf/simulated/floor,
/area/maintenance/station/medbay)
"AV" = (
-/obj/structure/bed/chair/office/light{
- dir = 4
- },
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -16833,8 +15758,8 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"Ba" = (
@@ -17020,9 +15945,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
"Bk" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -17036,8 +15958,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
"Bl" = (
-/obj/structure/table/glass,
-/obj/item/weapon/clipboard,
/obj/machinery/alarm{
dir = 1;
pixel_y = -25
@@ -17050,12 +15970,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
"Bm" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- dir = 8;
- pixel_x = 0;
- pixel_y = 0
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
@@ -17075,12 +15989,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
"Bn" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
@@ -17232,14 +16140,8 @@
/turf/simulated/wall,
/area/medical/patient_b)
"BD" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
@@ -17319,90 +16221,10 @@
"BM" = (
/turf/simulated/wall,
/area/medical/recoveryrestroom)
-"BN" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "patient_room_c"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 8;
- id = "patient_room_c"
- },
-/turf/simulated/floor/plating,
-/area/medical/patient_c)
-"BO" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_c)
-"BP" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/item/device/radio/intercom/department/medbay{
- dir = 1;
- pixel_y = 24
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_c)
-"BQ" = (
-/obj/structure/bed/chair,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/machinery/button/windowtint{
- id = "patient_room_c";
- pixel_x = 26;
- pixel_y = 0
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/pink/bordercorner2{
- dir = 5
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 26;
- pixel_y = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_c)
"BR" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "patient_room_c"
- },
+/obj/structure/window/reinforced/full,
/turf/simulated/floor/plating,
/area/medical/patient_c)
"BS" = (
@@ -17592,61 +16414,9 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/medical/recoveryrestroom)
-"Ch" = (
-/obj/structure/bed/chair/office/light{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_c)
-"Ci" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_c)
-"Cj" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_c)
"Ck" = (
/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- name = "Patient Room C";
- req_one_access = list()
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
+/obj/machinery/door/airlock/maintenance/medical,
/turf/simulated/floor/tiled/white,
/area/medical/patient_c)
"Cm" = (
@@ -17692,21 +16462,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/pathfinder_office)
-"Co" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery_hallway)
"Cp" = (
/obj/structure/bed/padded,
/obj/effect/floor_decal/borderfloorwhite{
@@ -17834,60 +16589,8 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/medical/recoveryrestroom)
-"CB" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_c)
-"CC" = (
-/obj/structure/table/glass,
-/obj/item/weapon/clipboard,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/pink/border,
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_c)
"CD" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- dir = 8;
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/pink/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/pink/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/airless,
/area/medical/patient_c)
"CF" = (
/obj/effect/floor_decal/borderfloorwhite{
@@ -18479,18 +17182,6 @@
"DF" = (
/turf/simulated/floor/tiled,
/area/security/brig)
-"DG" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/engineering,
-/turf/simulated/floor/plating,
-/area/engineering/shaft)
"DH" = (
/obj/structure/sign/department/ai,
/turf/simulated/wall/r_wall,
@@ -18512,11 +17203,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
-"DK" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"DL" = (
/turf/simulated/wall,
/area/hallway/station/starboard)
@@ -18530,12 +17216,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
-"DO" = (
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
"DP" = (
/obj/structure/railing{
dir = 1
@@ -18784,10 +17464,6 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/tether/exploration/equipment)
-"Em" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/security/brig)
"En" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/structure/bed/chair{
@@ -18859,14 +17535,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/equipment)
-"Et" = (
-/obj/structure/railing,
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"Eu" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
@@ -18893,22 +17561,6 @@
/obj/structure/disposalpipe/junction/yjunction,
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
-"Ev" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
-"Ew" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
"Ex" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -18967,14 +17619,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"EH" = (
-/obj/random/junk,
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"EI" = (
/obj/structure/sink{
dir = 4;
@@ -19039,17 +17683,6 @@
/obj/effect/floor_decal/corner/pink/border,
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"EM" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera/network/security{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
"EN" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin{
@@ -19401,13 +18034,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
-"Fs" = (
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"Ft" = (
/obj/structure/closet,
/obj/item/clothing/accessory/poncho/roles/medical,
@@ -19444,22 +18070,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
-"Fw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
"Fy" = (
/obj/structure/closet/secure_closet/explorer,
/obj/effect/floor_decal/borderfloor,
@@ -19677,6 +18287,12 @@
/obj/structure/table/steel,
/turf/simulated/floor/tiled/steel_dirty,
/area/security/brig)
+"GM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
"GW" = (
/obj/structure/table/reinforced,
/turf/simulated/floor,
@@ -19983,14 +18599,6 @@
},
/turf/simulated/floor/tiled,
/area/security/brig/visitation)
-"Iz" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"IB" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -20049,30 +18657,13 @@
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
"IO" = (
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/airless,
/area/space)
-"IX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
-"IZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
+"Jb" = (
+/obj/structure/barricade,
+/turf/simulated/floor/airless,
+/area/medical/patient_c)
"Jc" = (
/obj/machinery/seed_storage/brig{
dir = 8
@@ -20094,12 +18685,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
-"Jh" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"Jl" = (
/obj/structure/cable/green{
icon_state = "32-2"
@@ -20247,27 +18832,6 @@
"KI" = (
/turf/simulated/wall,
/area/tether/station/public_meeting_room)
-"KJ" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/random/junk,
-/obj/random/junk,
-/obj/random/maintenance/security,
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
"KQ" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -20283,6 +18847,10 @@
},
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
+"KS" = (
+/obj/structure/barricade,
+/turf/simulated/floor,
+/area/maintenance/station/medbay)
"KT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -20302,11 +18870,7 @@
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"KV" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor,
/area/medical/morgue)
"Ld" = (
/obj/machinery/door/firedoor/glass,
@@ -20465,11 +19029,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/exploration/equipment)
-"LW" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/airless,
-/area/maintenance/station/sec_lower)
"LZ" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/shuttle/floor,
@@ -20491,16 +19050,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/station/sec_lower)
-"Ms" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/effect/floor_decal/techfloor{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/airless,
-/area/maintenance/station/sec_lower)
"Mu" = (
/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -20613,29 +19162,6 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
-"MT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
-"MX" = (
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"Na" = (
/obj/structure/table/glass,
/obj/item/weapon/book/manual/medical_diagnostics_manual,
@@ -20694,24 +19220,6 @@
},
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
-"Nj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
"Nm" = (
/obj/structure/bed/chair{
dir = 8
@@ -20857,13 +19365,6 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
-"Os" = (
-/obj/structure/table/glass,
-/obj/item/clothing/accessory/stethoscope,
-/obj/item/device/healthanalyzer,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/station/sec_lower)
"Ot" = (
/obj/structure/cable{
d1 = 4;
@@ -20875,6 +19376,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
+"Ou" = (
+/turf/simulated/floor,
+/area/security/security_cell_hallway)
"Ov" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -20948,13 +19452,6 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "Cell 4";
- name = "Cell 4 Door";
- pixel_x = -28;
- req_access = list(1,2)
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 1
},
@@ -21066,20 +19563,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
-"PA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
-"PE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"PF" = (
/turf/simulated/wall{
can_open = 1
@@ -21215,15 +19698,6 @@
/obj/structure/closet/emcloset,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
-"Qk" = (
-/obj/effect/floor_decal/rust,
-/obj/random/trash,
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"Ql" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table/steel,
@@ -21287,14 +19761,6 @@
/obj/item/clothing/shoes/sandal,
/turf/simulated/floor/tiled,
/area/security/brig)
-"Qy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
"QD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -21392,27 +19858,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
-"QQ" = (
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
-"QR" = (
-/obj/structure/table/steel,
-/obj/random/maintenance/engineering,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"QS" = (
/obj/machinery/light/small,
/obj/structure/table/rack{
@@ -21431,13 +19876,6 @@
},
/turf/simulated/floor/airless,
/area/shuttle/large_escape_pod1)
-"QW" = (
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"QZ" = (
/obj/structure/railing,
/obj/effect/floor_decal/techfloor{
@@ -21570,13 +20008,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
-"RW" = (
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"RX" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -21658,23 +20089,9 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
-"SJ" = (
-/obj/random/junk,
-/obj/effect/floor_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"SQ" = (
/turf/simulated/floor/tiled,
/area/hallway/station/port)
-"ST" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"SV" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -21697,10 +20114,10 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/station/public_meeting_room)
-"SY" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/station/sec_lower)
+"Ta" = (
+/obj/structure/frame,
+/turf/simulated/floor,
+/area/medical/morgue)
"Tb" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -21749,16 +20166,6 @@
},
/turf/simulated/open,
/area/engineering/foyer_mezzenine)
-"Tj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/obj/random/maintenance/security,
-/obj/random/contraband,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/sec_lower)
"Tk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -21873,6 +20280,13 @@
"TY" = (
/turf/simulated/wall/r_wall,
/area/security/riot_control)
+"Ue" = (
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/space,
+/area/space)
"Uf" = (
/obj/structure/railing{
dir = 8
@@ -21936,14 +20350,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
-"Uk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"Ul" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -21987,13 +20393,6 @@
"UD" = (
/turf/simulated/shuttle/wall/hard_corner,
/area/shuttle/large_escape_pod1)
-"UE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
"UH" = (
/obj/effect/floor_decal/techfloor{
dir = 8
@@ -22063,17 +20462,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/port)
-"UV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"UZ" = (
/obj/structure/inflatable,
/turf/simulated/floor,
@@ -22085,11 +20473,6 @@
/obj/effect/floor_decal/corner/red/border{
dir = 8
},
-/obj/machinery/door_timer/cell_3{
- id = "Cell 4";
- name = "Cell 4";
- pixel_x = -32
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -22110,14 +20493,6 @@
/obj/structure/bed/chair/shuttle,
/turf/simulated/shuttle/floor,
/area/shuttle/large_escape_pod1)
-"Vj" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"Vk" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -22227,14 +20602,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
-"VJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"VK" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -22282,11 +20649,6 @@
dir = 1
},
/area/hallway/station/starboard)
-"Wc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/cutout,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"We" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -22347,6 +20709,15 @@
/obj/random/maintenance/engineering,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Wy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
"WE" = (
/obj/structure/sink{
dir = 8;
@@ -22356,11 +20727,10 @@
},
/turf/simulated/floor/tiled/white,
/area/maintenance/station/sec_lower)
-"WJ" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
+"WH" = (
+/obj/structure/barricade,
/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
+/area/medical/morgue)
"WL" = (
/obj/structure/bed/chair{
dir = 1
@@ -22393,18 +20763,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/stairs_two)
-"WS" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/shaft)
"WU" = (
/obj/machinery/vending/wallmed1{
layer = 3.3;
@@ -22444,13 +20802,6 @@
},
/turf/simulated/floor,
/area/security/riot_control)
-"Xs" = (
-/obj/effect/floor_decal/corner/white/border{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/monotile,
-/area/security/brig)
"Xx" = (
/obj/structure/railing{
dir = 8
@@ -22495,24 +20846,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/turf/simulated/floor/tiled,
/area/security/security_cell_hallway)
-"XH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"XJ" = (
/obj/random/maintenance/engineering,
/obj/structure/table/rack{
@@ -22565,20 +20900,22 @@
/turf/simulated/floor/tiled,
/area/security/brig/visitation)
"XT" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/blast/regular{
+/obj/effect/floor_decal/borderfloor/shifted{
dir = 1;
- id = "Cell 4";
- name = "Cell 4"
+ icon_state = "borderfloor_shifted"
},
-/obj/effect/floor_decal/industrial/loading{
- dir = 8
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ dir = 1;
+ icon_state = "bordercolor_shifted"
},
+/obj/effect/floor_decal/corner/lightorange{
+ dir = 5;
+ icon_state = "corner_white"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/dark,
/area/security/brig)
"Yd" = (
@@ -22756,29 +21093,6 @@
/obj/random/trash_pile,
/turf/simulated/floor/plating,
/area/maintenance/station/sec_lower)
-"Za" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/table/steel,
-/obj/item/weapon/soap/nanotrasen,
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
-"Zb" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"Zk" = (
/obj/effect/floor_decal/corner_steel_grid{
dir = 6
@@ -22923,17 +21237,6 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
-"ZW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
"ZZ" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -27134,7 +25437,7 @@ UH
NY
UH
Nm
-Ms
+kN
RR
eM
aa
@@ -27271,12 +25574,12 @@ FZ
FZ
at
Ob
-LW
+hM
Yh
-IX
-IX
+Yd
+Yd
Or
-ZW
+kY
at
FZ
FZ
@@ -27393,27 +25696,27 @@ Qs
at
Hb
UJ
-RW
-RW
-Iz
-RW
+Tm
+Tm
+Zr
+Tm
Tm
Tm
NZ
Zr
Zr
Tm
-RW
-RW
-SJ
+Tm
+Tm
+dR
Zr
Zr
Tm
-RW
-RW
+Tm
+Tm
RF
NA
-Jh
+hq
at
at
at
@@ -27535,23 +25838,23 @@ Ug
at
DR
Ty
-PA
-IX
+Or
+Yd
Yd
Yd
Or
XM
-WJ
-ST
-IX
-Yd
-ST
-ST
-ST
+XM
Lf
-QW
-Jh
-IX
+Yd
+Yd
+Lf
+Lf
+Lf
+Lf
+gS
+hq
+Yd
Yd
Yd
Yd
@@ -27559,22 +25862,22 @@ Wj
at
Qs
at
-WJ
-Uk
-IX
+XM
+le
+Yd
Yd
Or
XM
Ln
pG
-qk
+pG
pG
pG
ss
pG
pG
pG
-qk
+pG
pd
pd
pd
@@ -27709,16 +26012,16 @@ JH
at
at
pG
-qk
-qk
-qk
+pG
+pG
+pG
pG
qm
-qk
-ul
-qk
+pG
+qW
+pG
vm
-qk
+pG
eg
aP
aP
@@ -27822,12 +26125,12 @@ ZL
at
Na
MN
-SY
-bf
+MN
+RS
WE
KU
at
-bf
+RS
at
aP
kI
@@ -27837,8 +26140,8 @@ at
RS
RS
RS
-bf
-bf
+RS
+RS
RS
at
ac
@@ -27854,11 +26157,11 @@ pG
pG
qV
qm
-ql
-ql
-qk
+qm
+qm
+pG
+pG
pG
-qk
pG
pG
eg
@@ -27960,27 +26263,27 @@ RS
RS
at
TW
-UV
+OY
at
-Os
-SY
+aK
+MN
Tq
-bf
+RS
MN
Xc
at
-bf
+RS
at
ac
aP
aP
aP
at
-QR
-bf
+ZE
+RS
+RS
+RS
RS
-bf
-bf
Mn
at
aP
@@ -27995,12 +26298,12 @@ pd
pG
pG
qW
-qk
-qk
pG
-qk
-um
-qk
+pG
+pG
+pG
+qV
+pG
pG
pG
eg
@@ -28102,7 +26405,7 @@ RS
RS
at
QZ
-UV
+OY
at
NN
QN
@@ -28119,8 +26422,8 @@ ac
aP
at
dr
-bf
-bf
+RS
+RS
RS
RS
QS
@@ -28136,11 +26439,11 @@ aP
pd
pG
pG
-qk
-qk
+pG
+pG
st
sY
-tG
+nA
pG
pG
sv
@@ -28244,7 +26547,7 @@ RS
RS
PF
TW
-UV
+OY
at
at
at
@@ -28277,8 +26580,8 @@ nY
aP
pd
pG
-qk
-qk
+pG
+pG
pG
st
sZ
@@ -28386,15 +26689,15 @@ RS
RS
at
QZ
-UV
+OY
at
MK
-DK
+Lo
+RS
+RS
+RS
RS
RS
-bf
-bf
-bf
RS
at
ac
@@ -28527,8 +26830,8 @@ NM
RS
RS
at
-Fs
-UV
+TW
+OY
at
cL
RS
@@ -28669,11 +26972,11 @@ NM
NM
RS
at
-Qk
-UV
+ah
+OY
Ln
-bf
-DK
+RS
+Lo
at
ac
ac
@@ -28681,10 +26984,10 @@ bW
Jl
Jp
PW
-WS
-dK
+dn
+en
+en
en
-dK
fY
gt
UL
@@ -28695,7 +26998,7 @@ GD
jB
fX
kL
-ly
+mh
mh
mH
kK
@@ -28703,7 +27006,7 @@ oa
oG
kJ
pG
-qk
+pG
qX
pG
sv
@@ -28811,8 +27114,8 @@ Qs
NM
NM
at
-Fs
-UV
+TW
+OY
at
RS
RS
@@ -28821,12 +27124,12 @@ ac
ac
bW
ck
-cJ
+Zy
dh
Go
Zy
-DG
-fx
+dU
+ev
fX
gu
HS
@@ -28837,15 +27140,15 @@ WM
jC
fX
kM
-lz
-mi
+jR
+ly
mI
nw
ob
oH
kJ
pG
-qk
+pG
qY
pG
sv
@@ -28953,8 +27256,8 @@ Qs
Ug
KG
at
-Fs
-UV
+TW
+OY
at
Ww
RS
@@ -28980,14 +27283,14 @@ jC
fX
aW
kK
+lz
+mK
mj
-mJ
-nx
kK
oI
kJ
pG
-ql
+qm
ed
pG
sv
@@ -29095,8 +27398,8 @@ at
at
at
at
-EH
-PE
+am
+YM
ch
ch
ch
@@ -29124,8 +27427,8 @@ kO
kK
mk
mK
-ny
-oc
+mq
+kK
oJ
kJ
pH
@@ -29234,11 +27537,11 @@ ac
at
FC
Ik
-Zb
+PX
MK
at
-Vj
-MX
+UO
+ZL
ch
ag
av
@@ -29267,7 +27570,7 @@ kK
kK
mK
kK
-oc
+kK
oK
kJ
pI
@@ -29376,11 +27679,11 @@ ac
at
RS
RS
-bf
+RS
RS
at
-Vj
-PE
+UO
+YM
ch
ag
aw
@@ -29526,7 +27829,7 @@ LB
ae
ai
ax
-Za
+aU
Fq
af
cG
@@ -29658,8 +27961,8 @@ ac
ac
ac
at
-bf
-bf
+RS
+RS
RS
RS
at
@@ -29669,7 +27972,7 @@ ch
ag
ay
aT
-bj
+bf
af
aq
cp
@@ -29802,7 +28105,7 @@ ac
at
RS
RS
-bf
+RS
RS
Ln
TW
@@ -29950,12 +28253,12 @@ at
Kg
Hc
aS
-ah
+UR
aA
MC
HH
-cD
-Qy
+bE
+bS
cr
Lx
bI
@@ -30090,22 +28393,22 @@ at
at
at
UO
-XH
+Hc
aS
UR
-Xs
-aU
+ak
+MC
bl
aL
bZ
-Fw
+ci
cN
-bR
+cP
dN
eq
eQ
-dn
-IZ
+fx
+gT
cm
HK
Xx
@@ -30232,20 +28535,20 @@ aP
ac
at
UO
-XH
+Hc
aS
EE
-aB
+aO
ak
bm
DF
ar
bb
bt
-cg
+cW
bv
bB
-bE
+es
dQ
Ye
cn
@@ -30374,11 +28677,11 @@ aP
kI
at
TW
-XH
+Hc
aS
Rg
-aC
-aC
+Rg
+Rg
br
DF
au
@@ -30389,7 +28692,7 @@ bw
bD
bF
ZH
-EM
+gU
Rq
cs
cu
@@ -30516,22 +28819,22 @@ aP
aP
at
TW
-XH
+Hc
aS
-ah
-aC
-aU
+UR
+Rg
+MC
GG
bG
cb
-UE
-cP
+cD
+cJ
DF
+dK
dP
-es
-cP
-Em
-Em
+cJ
+DF
+DF
YE
ct
cv
@@ -30658,9 +28961,9 @@ aP
aP
at
TW
-MT
+aC
aS
-ah
+UR
aD
MC
XC
@@ -30679,7 +28982,7 @@ Ng
JD
TY
aE
-aK
+hZ
bn
TY
TY
@@ -30718,9 +29021,9 @@ AE
AE
AE
BC
-BN
-BN
-BN
+BR
+BR
+BR
CO
aa
aa
@@ -30799,14 +29102,14 @@ ac
ac
ac
at
-Fs
-QQ
+TW
+aJ
+aS
+aS
aS
aS
aS
aS
-Ld
-XT
aS
Ld
VF
@@ -30820,8 +29123,8 @@ aS
gW
Eu
cx
-aJ
-aZ
+hL
+iq
bo
Xp
TY
@@ -30860,9 +29163,9 @@ AF
AV
Bk
BC
-BO
-Ch
-CB
+CD
+CD
+CD
CO
aa
aa
@@ -30941,14 +29244,14 @@ at
at
at
at
-Et
+QZ
HP
aS
-am
+Gw
aF
aS
-aY
-cO
+XT
+GM
aS
aY
cO
@@ -31002,9 +29305,9 @@ AG
AW
Bl
BC
-BP
-Ci
-CC
+CD
+CD
+CD
CO
aP
ab
@@ -31076,21 +29379,21 @@ ab
RB
Ly
RS
-Ev
+ha
SI
YD
SI
SI
SI
Fv
-VJ
+aB
Rb
aS
-Ew
-am
+aN
+Gw
aS
ca
-cQ
+yL
aS
cc
cQ
@@ -31106,7 +29409,7 @@ Oc
TY
TY
TY
-dR
+iZ
TY
TY
kj
@@ -31144,9 +29447,9 @@ AH
AX
Bm
BC
-BQ
-Cj
+Jb
CD
+Jb
CO
aP
ab
@@ -31211,17 +29514,17 @@ aa
aa
aa
aa
-aa
-ab
-ab
+Ue
+IO
+IO
IO
Mq
Ql
SI
RT
-bf
-bf
-DK
+RS
+RS
+Lo
Rr
PX
at
@@ -31229,10 +29532,10 @@ QZ
XA
aS
Gw
-am
+Gw
aS
cM
-cR
+Wy
aS
dq
cR
@@ -31248,10 +29551,10 @@ gV
hU
hU
aj
-Nj
+ja
kj
Pd
-KJ
+jS
kj
kj
nE
@@ -31360,8 +29663,8 @@ ab
at
VH
RS
-DK
-DK
+Lo
+Lo
at
at
at
@@ -31412,10 +29715,10 @@ Pj
SV
tn
po
-uB
-vV
-vW
-va
+wz
+wz
+wz
+po
xl
xU
zp
@@ -31429,7 +29732,7 @@ xU
vb
wC
yf
-xU
+pr
CF
CP
aP
@@ -31501,7 +29804,7 @@ ab
ab
RB
ZJ
-DK
+Lo
Si
Py
at
@@ -31535,13 +29838,13 @@ aj
jN
hr
kV
+kq
+oP
lE
-mq
-ow
oz
oV
oP
-pg
+no
hr
qw
rl
@@ -31554,10 +29857,10 @@ PR
PS
to
po
-uC
-vW
-wu
-va
+wz
+wz
+wz
+po
xm
xV
ts
@@ -31570,8 +29873,8 @@ ts
AZ
Bn
BD
-Bn
-Co
+rv
+rv
Bq
CP
aP
@@ -31643,7 +29946,7 @@ ab
ab
RB
Zl
-bf
+RS
Oj
Xk
at
@@ -31651,7 +29954,7 @@ aP
aP
aP
at
-Fs
+TW
YM
RS
aj
@@ -31679,11 +29982,11 @@ kj
kW
lF
mr
-mT
-nG
-ph
-mS
-DO
+mi
+mJ
+mN
+mP
+nq
hr
Fu
Vw
@@ -31696,9 +29999,9 @@ Ea
LL
po
po
-uD
-uD
-uD
+wz
+wz
+wz
po
xn
xY
@@ -31793,7 +30096,7 @@ ac
aP
ac
at
-Fs
+TW
YM
RS
aj
@@ -31801,7 +30104,7 @@ aj
ba
aj
aj
-ba
+vu
cA
cU
cU
@@ -31824,7 +30127,7 @@ ms
mU
nH
pi
-qG
+mS
DQ
DT
DX
@@ -31837,10 +30140,10 @@ KI
KI
KI
po
-wt
-uU
-vX
-wv
+wz
+wz
+wz
+wz
xb
xb
xb
@@ -31942,8 +30245,8 @@ aj
cw
cB
aj
-cw
-cB
+hV
+hV
cA
Ds
du
@@ -31966,23 +30269,23 @@ fq
fq
fq
fq
-jj
+jL
pj
kj
rW
rk
fM
-pn
-sq
-rq
-rA
-sh
-sh
-tp
-tK
-tK
-tK
-ww
+po
+zc
+zc
+wz
+wz
+wz
+wz
+wz
+wz
+wz
+wz
xb
ya
xZ
@@ -32078,14 +30381,14 @@ aP
aP
at
TW
-WJ
+XM
RS
aj
bY
cC
aj
-bY
-cC
+Ou
+hV
cA
cV
dv
@@ -32100,7 +30403,7 @@ WL
iw
fd
fN
-jQ
+jh
kk
fq
fu
@@ -32108,23 +30411,23 @@ fu
fu
fu
fq
-jj
+jL
kj
pO
Fk
ei
fO
pn
-qJ
-rr
-rB
-rB
-rB
-rB
-tL
-tK
-tK
-wx
+wz
+wz
+wz
+wz
+wz
+wz
+wz
+wz
+wz
+wz
xb
xp
yb
@@ -32226,8 +30529,8 @@ aj
lp
aI
aj
-lp
-aI
+hV
+Ou
cA
as
az
@@ -32242,7 +30545,7 @@ hw
ia
fd
jl
-jR
+jj
kk
fq
fu
@@ -32256,17 +30559,17 @@ pP
rW
Dh
Yy
-pn
-qK
-rs
-rC
-si
-sG
-rs
-tM
-uV
-vY
-wy
+po
+zc
+wz
+wz
+wz
+wz
+wz
+wz
+wz
+wz
+wz
xb
xq
yc
@@ -32383,8 +30686,8 @@ fd
fd
fd
fd
-Tj
-jS
+ir
+jQ
kk
fq
fu
@@ -32400,14 +30703,14 @@ Qt
uz
po
po
-rt
po
po
-rs
-rs
-tN
-uY
-vZ
+po
+wz
+wz
+wz
+wz
+wz
wz
xb
xu
@@ -32509,24 +30812,24 @@ xL
at
RS
RS
-cW
-bf
-bf
+bj
RS
-aN
-aN
+RS
+RS
+XM
+XM
XM
Qu
fi
XM
-aN
-aN
XM
XM
-aN
-aN
XM
-jS
+XM
+XM
+XM
+XM
+jQ
kk
fq
fu
@@ -32534,7 +30837,7 @@ fu
fu
fu
fq
-oS
+mT
kj
eN
rW
@@ -32542,15 +30845,15 @@ OQ
Tp
pp
qL
-ru
+wb
rD
pp
-tt
-tq
-tO
-uZ
-wa
-sL
+zc
+wz
+wz
+wz
+yB
+yB
xb
xv
ye
@@ -32649,11 +30952,11 @@ MO
Ej
XM
Qu
-aN
-aN
-aN
-aN
-aN
+XM
+XM
+XM
+XM
+XM
XM
XM
be
@@ -32683,15 +30986,15 @@ qy
fp
xi
pq
-qM
+Am
rv
sH
pp
sI
po
-tP
-va
-va
+po
+po
+po
po
xb
xw
@@ -32791,12 +31094,12 @@ OA
FA
QG
at
-aO
-Wc
+fN
+aZ
bx
-bS
-ci
-ci
+bR
+cg
+cg
bA
bA
bA
@@ -32824,15 +31127,15 @@ pT
Fp
fG
gx
-pr
+pp
qN
rw
sa
pp
sJ
tr
-tQ
-vb
+wb
+wb
wb
wC
xG
@@ -32972,9 +31275,9 @@ rx
sb
wX
sK
-ts
-tR
-ts
+rx
+rx
+rx
wc
ts
xd
@@ -33255,13 +31558,13 @@ uW
uW
uW
uW
-sM
+uW
tu
tT
tT
we
tT
-xf
+xg
xx
xx
zh
@@ -33392,27 +31695,27 @@ ac
ac
ac
uW
-pV
-pV
-pV
-pV
-sk
-tY
+KV
+Ta
+KV
+KV
+fD
+WH
tu
tU
vd
wf
wE
-xf
-xC
-yg
-zi
-zu
-zM
-xf
+xg
+zP
+zP
+zP
+zP
+zP
+xg
Fh
AB
-AN
+AP
Bg
By
BL
@@ -33534,24 +31837,24 @@ ac
ac
ac
uW
-pW
-rn
-rn
-rn
-sl
-sO
+KV
+Ta
+KV
+KV
+KV
+WH
tu
tV
ve
wg
wF
-xf
-xD
-yu
-zj
-zv
-zN
-xf
+xg
+zP
+zP
+zP
+zP
+zP
+xg
Ao
AC
AP
@@ -33676,24 +31979,24 @@ ac
ac
ac
uW
-pX
-wB
-wB
-wB
-sm
-tg
+KV
+KV
+KV
+KV
+KV
+KV
tu
tW
vg
wh
wG
-xf
-xE
-yv
+xg
+zP
+zP
zk
-zw
-zO
-xf
+zP
+zP
+xg
Ap
rv
AQ
@@ -33818,24 +32121,24 @@ ac
ac
ac
uW
-pY
-pY
-pY
-pY
-sn
-th
+KV
+KV
+KV
+KV
+KV
+fD
tu
tX
vh
wi
wH
-xf
-xF
-yw
-zl
-zx
+xg
zP
-xf
+zP
+zl
+zP
+zP
+xg
Aq
ry
AR
@@ -33960,24 +32263,24 @@ ac
ac
ac
uW
-pV
-pV
-pV
-pV
-so
-ti
+KV
+KV
+KV
+KV
+KV
+fD
tu
uq
vw
wi
wI
-xf
-ys
-ev
-zm
-gS
-fD
-xf
+xg
+zP
+zP
+xg
+zP
+KS
+xg
pp
pp
yp
@@ -34102,24 +32405,24 @@ ac
ac
ac
uW
-pZ
KV
KV
KV
-sC
-tj
-tv
+KV
+KV
+KV
+tu
tZ
vw
wi
wJ
-xf
-xf
-xf
-xf
-xf
-xf
-xf
+xg
+xg
+xg
+xg
+xg
+xg
+xg
Ar
AD
AT
@@ -34244,12 +32547,12 @@ ac
ac
ac
uW
-qD
-xB
-xB
-se
-sD
-tk
+KV
+Ta
+KV
+KV
+KV
+KV
tu
ua
vw
@@ -34386,12 +32689,12 @@ ac
ac
ac
uW
-qE
-sN
-rz
-sf
-sE
-tl
+KV
+Ta
+KV
+KV
+KV
+KV
tu
ub
vx
@@ -34541,7 +32844,7 @@ yJ
yJ
yJ
yJ
-yi
+nB
sB
ac
ac
@@ -34967,7 +33270,7 @@ yJ
eT
eT
yJ
-yl
+nG
sB
ac
ac
@@ -35109,7 +33412,7 @@ yJ
eT
eT
yJ
-ym
+yj
sB
ac
ac
@@ -37504,11 +35807,11 @@ hl
DI
RX
DL
-dU
-gT
-gT
-gT
-gU
+nk
+nx
+nx
+nx
+ny
oY
sW
ef
diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm
index 4046578c0db..a82fdd2dfd6 100644
--- a/maps/tether/tether-07-station3.dmm
+++ b/maps/tether/tether-07-station3.dmm
@@ -30,32 +30,46 @@
/turf/simulated/floor/tiled,
/area/security/eva)
"aah" = (
-/obj/machinery/atmospherics/unary/engine{
- dir = 1
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "sec_fore_airlock";
+ name = "interior access button";
+ pixel_x = 25;
+ pixel_y = 25;
+ req_one_access = list(13)
},
-/turf/simulated/floor/reinforced,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/excursion/cargo)
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
"aai" = (
-/turf/simulated/wall/r_wall,
-/area/security/armory/red)
-"aaj" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.6
- },
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/machinery/door/window/southleft{
- name = "Hardsuit Storage";
- req_access = list(1,2,18)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
},
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/security,
-/obj/item/clothing/head/helmet/space/void/security,
-/turf/simulated/floor/tiled/dark,
+/obj/structure/barricade,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"aaj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/effect/landmark{
+ name = "morphspawn"
+ },
+/turf/simulated/floor/tiled,
/area/security/eva)
"aak" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
@@ -78,15 +92,14 @@
/turf/simulated/floor/tiled,
/area/security/eva)
"aal" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
+/turf/simulated/floor/tiled,
+/area/security/eva)
"aam" = (
/obj/machinery/door/airlock/glass_external,
/obj/structure/sign/securearea{
@@ -114,41 +127,23 @@
/turf/simulated/floor,
/area/security/eva)
"aao" = (
-/turf/simulated/wall/r_wall,
-/area/security/armory/blue)
-"aap" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
+/obj/machinery/camera/network/security{
+ dir = 10;
+ icon_state = "camera"
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"aaq" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_security{
- name = "Briefing Room";
- req_access = newlist();
- req_one_access = list(1,38)
- },
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/binary/passive_gate/on{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/security/briefing_room)
+/area/security/eva)
+"aap" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"aaq" = (
+/obj/random/cutout,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"aar" = (
/obj/machinery/atmospherics/pipe/manifold/hidden{
dir = 8;
@@ -174,29 +169,18 @@
/area/security/hallway)
"aat" = (
/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_security{
- name = "Briefing Room";
- req_access = newlist();
- req_one_access = list(1,38)
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Security Maintenance";
+ req_access = list(1,12)
},
/turf/simulated/floor/tiled,
-/area/security/briefing_room)
+/area/maintenance/station/sec_upper)
"aau" = (
-/obj/machinery/door/window/northright,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
+/obj/item/frame,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"aav" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -212,19 +196,16 @@
/turf/simulated/floor/tiled,
/area/security/hallway)
"aaw" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
+/obj/machinery/light/small{
+ dir = 4
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
+/obj/random/maintenance/engineering,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/structure/table/reinforced,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled,
-/area/security/eva)
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"aax" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/door/airlock/glass_external,
@@ -242,13 +223,15 @@
/turf/simulated/floor/tiled,
/area/security/eva)
"aaz" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tool,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/effect/floor_decal/borderfloorblack/corner2,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"aaA" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -271,60 +254,35 @@
/turf/simulated/floor/tiled,
/area/security/hallway)
"aaB" = (
+/obj/effect/floor_decal/rust,
/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
+ dir = 2;
+ name = "south bump";
+ pixel_y = -28
},
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled,
-/area/security/range)
+/obj/structure/cable/green,
+/turf/simulated/floor,
+/area/maintenance/substation/security)
"aaC" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/random/junk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/range)
+/turf/simulated/floor,
+/area/maintenance/substation/security)
"aaD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
+/obj/structure/cable{
icon_state = "2-8"
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/range)
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"aaE" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled,
-/area/security/range)
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"aaF" = (
/obj/structure/railing{
dir = 4
@@ -357,15 +315,17 @@
/turf/simulated/floor/tiled,
/area/security/hallway)
"aaH" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/table/rack/steel,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"aaI" = (
/turf/simulated/wall,
/area/maintenance/station/sec_upper)
@@ -466,188 +426,121 @@
/turf/simulated/wall/r_wall,
/area/space)
"aaP" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/table/reinforced,
-/obj/item/clothing/glasses/gglasses{
- pixel_x = 3;
- pixel_y = 3
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/clothing/glasses/gglasses,
-/obj/item/clothing/ears/earmuffs{
- pixel_x = 3;
- pixel_y = 3
+/obj/machinery/camera/network/command{
+ dir = 10;
+ icon_state = "camera"
},
-/obj/item/clothing/ears/earmuffs,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -28
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"aaQ" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
pixel_y = 0
},
-/turf/simulated/floor/tiled,
-/area/security/range)
-"aaQ" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/machinery/firealarm{
+ dir = 4;
+ layer = 3.3;
+ pixel_x = 26
},
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box/blanks{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/weapon/storage/box/blanks{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/ammo_magazine/clip/c762/practice,
-/obj/item/ammo_magazine/clip/c762/practice,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -28
- },
-/turf/simulated/floor/tiled,
-/area/security/range)
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"aaR" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/ammo_magazine/m9mmt/practice,
-/obj/item/ammo_magazine/m9mmt/practice,
-/obj/item/ammo_magazine/m45/practice,
-/obj/item/ammo_magazine/m45/practice,
-/obj/item/ammo_magazine/m45/practice,
-/obj/item/ammo_magazine/m45/practice,
-/obj/item/ammo_magazine/m45/practice,
-/obj/item/ammo_magazine/m45/practice,
-/turf/simulated/floor/tiled,
-/area/security/range)
+/turf/simulated/floor/reinforced,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/excursion/cargo)
"aaS" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/camera/network/command{
+ dir = 4;
+ icon_state = "camera"
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"aaT" = (
+/obj/structure/railing{
dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/bag/trash,
-/obj/item/weapon/storage/bag/trash,
-/turf/simulated/floor/tiled,
-/area/security/range)
-"aaT" = (
+/obj/structure/railing,
/obj/structure/table/rack{
dir = 8;
- layer = 2.6
+ layer = 2.9
},
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window/northright{
- req_access = list(1,2,18)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/eva)
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/cargo)
"aaU" = (
/turf/simulated/wall/r_wall,
/area/security/eva)
"aaV" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/turf/simulated/floor/tiled,
-/area/security/eva)
+/area/maintenance/station/sec_upper)
"aaW" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28
+/obj/structure/railing{
+ dir = 4
},
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/dispenser{
- phorontanks = 0
- },
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/turf/simulated/floor/tiled,
-/area/security/eva)
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"aaX" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
+/obj/structure/table,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"aaY" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/simulated/floor/tiled,
-/area/security/eva)
+/obj/item/stack/material/steel{
+ amount = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"aaZ" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
+/obj/structure/railing{
+ dir = 4
},
-/obj/structure/table/rack/steel,
-/obj/item/clothing/gloves/arm_guard/bulletproof,
-/obj/item/clothing/shoes/leg_guard/bulletproof,
-/obj/item/clothing/suit/armor/bulletproof/alt,
-/obj/item/clothing/head/helmet/bulletproof,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"aba" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"abb" = (
-/obj/machinery/door/window/northright,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/device/radio/intercom/department/security{
+/obj/structure/catwalk,
+/obj/machinery/alarm{
dir = 4;
- icon_state = "secintercom";
- pixel_x = 24;
+ icon_state = "alarm0";
+ pixel_x = -22;
pixel_y = 0
},
-/obj/machinery/camera/network/security{
- dir = 8;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"abc" = (
/turf/simulated/wall,
/area/security/eva)
@@ -668,22 +561,16 @@
"abf" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
-/obj/structure/window/reinforced/full,
/turf/simulated/floor,
-/area/security/range)
+/area/maintenance/station/sec_upper)
"abg" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 1
- },
-/obj/machinery/camera/network/security{
- dir = 5;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/maintenance/cargo)
"abh" = (
/obj/structure/railing{
dir = 1
@@ -691,54 +578,27 @@
/turf/space,
/area/space)
"abi" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- dir = 8;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
+/turf/simulated/floor,
+/area/maintenance/cargo)
"abj" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.6
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 1;
+ icon_state = "bulb1"
},
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window/southright{
- name = "Jetpack Storage";
- req_access = list(1,2,18);
- req_one_access = newlist()
- },
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/turf/simulated/floor/tiled/dark,
-/area/security/eva)
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"abk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
+/obj/structure/railing,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
+/turf/simulated/floor,
+/area/maintenance/cargo)
"abl" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -749,24 +609,28 @@
/turf/simulated/wall,
/area/maintenance/substation/security)
"abn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/structure/railing,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 28
},
-/obj/machinery/light_switch{
- dir = 4;
- icon_state = "light1";
- pixel_x = -24
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
-"abo" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-4"
},
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"abo" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1;
+ icon_state = "railing0"
+ },
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"abp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -777,11 +641,11 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"abq" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
+/obj/structure/railing{
+ dir = 4
+ },
/turf/simulated/floor,
-/area/security/warden)
+/area/maintenance/station/elevator)
"abr" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -849,22 +713,16 @@
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
@@ -884,22 +742,11 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"abv" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/shotgunshells{
- pixel_x = 6;
- pixel_y = -1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
+/obj/machinery/door/firedoor/glass,
+/obj/structure/catwalk,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"abw" = (
/obj/structure/cable/green{
d1 = 1;
@@ -914,25 +761,11 @@
/turf/simulated/floor,
/area/maintenance/substation/security)
"abx" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/armory/blue)
+/turf/simulated/floor,
+/area/maintenance/cargo)
"aby" = (
/obj/structure/cable{
d1 = 1;
@@ -990,87 +823,51 @@
/turf/simulated/floor,
/area/maintenance/substation/security)
"abC" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/stamp/ward,
-/obj/item/weapon/stamp/denied{
- pixel_x = 5
+/obj/structure/railing{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/obj/structure/railing,
+/turf/simulated/floor,
+/area/maintenance/station/elevator)
"abD" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
pixel_y = 0
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/structure/closet/secure_closet/warden,
-/obj/item/weapon/gun/projectile/shotgun/pump/combat{
- ammo_type = /obj/item/ammo_casing/a12g/beanbag;
- desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock.";
- name = "warden's shotgun"
- },
-/obj/item/weapon/book/manual/security_space_law,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 4;
- pixel_y = 26
- },
-/obj/machinery/button/remote/airlock{
- id = "armory_red";
- name = "HoS Armory Access";
- pixel_x = -10;
- pixel_y = 28;
- req_access = list(58)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/maintenance/cargo)
"abE" = (
-/obj/effect/landmark/start{
- name = "Warden"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/cargo)
"abF" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/turf/simulated/floor,
+/area/maintenance/cargo)
"abG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -32
},
-/turf/simulated/floor/tiled,
-/area/security/range)
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
"abH" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -1172,43 +969,18 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"abR" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/effect/floor_decal/corner/blue/border{
- dir = 9;
- icon_state = "bordercolor"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table/rack/shelf/steel,
-/obj/item/gunbox{
- pixel_y = 6
- },
-/obj/item/gunbox{
- pixel_y = -3
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/turf/simulated/floor,
+/area/maintenance/cargo)
"abS" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 9
- },
-/obj/structure/table/steel,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/button/remote/blast_door{
- id = "armoryred";
- name = "Red Armory Access";
- pixel_x = 8;
- pixel_y = -24;
- req_access = list(3)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
+/obj/machinery/atmospherics/pipe/cap/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/station/elevator)
"abT" = (
/obj/structure/table/steel,
/obj/machinery/cell_charger,
@@ -1226,9 +998,14 @@
/turf/simulated/floor,
/area/maintenance/substation/security)
"abU" = (
-/obj/structure/sign/warning/secure_area,
-/turf/simulated/wall/r_wall,
-/area/security/armory/red)
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/cargo)
"abV" = (
/obj/structure/closet/crate,
/obj/random/maintenance/security,
@@ -1276,81 +1053,55 @@
/turf/simulated/floor/tiled,
/area/security/hallway)
"aca" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/glass_security{
- name = "Firing Range";
- req_access = list(1)
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/turf/simulated/floor/tiled,
-/area/security/range)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/station/elevator)
"acb" = (
/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/glass_security{
- name = "Security EVA";
- req_one_access = list(1,2,18)
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Security Substation";
+ req_access = list(1);
+ req_one_access = newlist()
},
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/security/eva)
+/area/maintenance/station/sec_upper)
"acc" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor,
+/area/storage/emergency_storage/emergency3)
+"acd" = (
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
},
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/random/trash_pile,
/obj/structure/disposalpipe/segment{
- dir = 1;
+ dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 22;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"acd" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_security{
- name = "Warden's Office";
- req_access = list(3)
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/warden)
+/turf/simulated/floor,
+/area/maintenance/station/elevator)
"ace" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -1363,11 +1114,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/obj/structure/disposalpipe/junction,
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
@@ -1389,11 +1135,8 @@
/turf/simulated/floor,
/area/security/hallwayaux)
"ach" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Forensics Lab"
- },
-/turf/simulated/floor/tiled,
-/area/security/forensics)
+/turf/simulated/floor/plating,
+/area/maintenance/station/elevator)
"aci" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -1446,56 +1189,29 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"ack" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 10
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 10
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/ionrifle/pistol,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"acl" = (
-/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable/green,
+/obj/machinery/light/small,
/turf/simulated/floor,
-/area/maintenance/substation/security)
+/area/storage/emergency_storage/emergency3)
+"acl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/clean,
+/obj/random/junk,
+/obj/random/tool,
+/obj/random/maintenance/clean,
+/obj/effect/floor_decal/rust,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/simulated/floor,
+/area/maintenance/station/elevator)
"acm" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/railing,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/station/elevator)
"acn" = (
/obj/machinery/door/airlock/engineering{
name = "Security Substation";
@@ -1530,25 +1246,9 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"acp" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "sec_fore_airlock";
- name = "interior access button";
- pixel_x = 25;
- pixel_y = 25;
- req_one_access = list(13)
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/station/elevator)
"acq" = (
/obj/random/trash_pile,
/obj/effect/decal/cleanable/cobweb{
@@ -1595,15 +1295,18 @@
/turf/simulated/floor,
/area/security/hallwayaux)
"acu" = (
-/obj/structure/table/reinforced,
-/obj/machinery/photocopier/faxmachine{
- department = "Warden's Office"
+/obj/structure/railing,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"acv" = (
-/turf/simulated/wall/r_wall,
-/area/security/range)
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"acw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -1638,15 +1341,19 @@
/turf/simulated/floor,
/area/maintenance/station/ai)
"acz" = (
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor,
-/area/maintenance/substation/security)
+/area/maintenance/station/cargo)
"acA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -1729,24 +1436,15 @@
/turf/simulated/floor/reinforced,
/area/tether/exploration)
"acL" = (
-/obj/effect/floor_decal/borderfloor{
- pixel_y = 16
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
},
-/obj/effect/floor_decal/corner/red/border{
- pixel_y = 16
- },
-/obj/effect/floor_decal/corner/red{
- dir = 10;
- icon_state = "corner_white"
- },
-/obj/machinery/computer/secure_data{
- dir = 1
- },
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"acM" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -1757,10 +1455,10 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"acN" = (
-/obj/structure/table/reinforced,
-/obj/item/device/retail_scanner/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/obj/random/junk,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"acO" = (
/obj/structure/table/woodentable,
/obj/structure/cable/green{
@@ -1882,8 +1580,11 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"acZ" = (
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
+/obj/structure/catwalk,
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"ada" = (
/obj/structure/bed/chair/office/dark{
dir = 1
@@ -1970,28 +1671,16 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"adi" = (
-/obj/machinery/disposal,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/structure/disposalpipe/trunk,
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
+/turf/simulated/floor,
+/area/maintenance/station/cargo)
"adj" = (
/turf/simulated/wall/rshull,
/area/shuttle/excursion/general)
@@ -2025,38 +1714,26 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"adn" = (
-/obj/structure/bed/chair/office/dark{
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/station/cargo)
+"ado" = (
+/obj/structure/table/rack{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"ado" = (
-/obj/machinery/light,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -32
- },
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "security_lockdown";
- name = "Brig Lockdown";
- pixel_x = -6;
- pixel_y = -40;
- req_access = list(3)
- },
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "warden";
- name = "Office Shutters";
- pixel_x = 6;
- pixel_y = -39;
- req_access = list(3)
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/station/cargo)
"adp" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
@@ -2081,16 +1758,13 @@
/turf/simulated/floor/tiled/white,
/area/security/security_bathroom)
"adr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
+/obj/structure/closet,
+/obj/random/junk,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/random/tech_supply,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/station/cargo)
"ads" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/landmark/start{
@@ -2129,10 +1803,20 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"adw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/obj/effect/floor_decal/rust,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/random/toy,
+/obj/structure/closet,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"adx" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/effect/floor_decal/rust,
@@ -2165,13 +1849,23 @@
/turf/simulated/floor/tiled/dark,
/area/security/security_equiptment_storage)
"adA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "2-8"
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/structure/catwalk,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/station/cargo)
"adB" = (
/turf/simulated/wall/r_wall,
/area/quartermaster/belterdock)
@@ -2223,8 +1917,16 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"adI" = (
-/turf/simulated/wall/r_wall,
-/area/security/warden)
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/cargo)
"adJ" = (
/obj/item/device/radio/intercom{
dir = 4;
@@ -2233,20 +1935,25 @@
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
"adK" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_l"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/tiled/asteroid_steel/airless,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/mining_outpost/shuttle)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/station/cargo)
"adL" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/tiled/asteroid_steel/airless,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/mining_outpost/shuttle)
+/turf/simulated/floor,
+/area/maintenance/station/cargo)
"adM" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -2265,52 +1972,37 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"adN" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
+/obj/random/trash_pile,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"adO" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
+/turf/simulated/floor,
+/area/maintenance/station/cargo)
"adP" = (
/turf/simulated/wall,
/area/security/security_bathroom)
"adQ" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/obj/machinery/door/airlock/engineering{
+ name = "Cargo Substation";
+ req_one_access = list(11,24,50)
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled,
-/area/security/range)
+/turf/simulated/floor,
+/area/maintenance/substation/cargo)
"adR" = (
/turf/simulated/wall/r_wall,
/area/security/breakroom)
@@ -2325,19 +2017,17 @@
/turf/simulated/floor,
/area/maintenance/cargo)
"adU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
+/obj/machinery/door/airlock/engineering{
+ name = "Cargo Substation";
+ req_one_access = list(11,24,50)
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/photocopier,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/turf/simulated/floor,
+/area/maintenance/substation/cargo)
"adV" = (
/turf/simulated/wall/r_wall,
/area/maintenance/station/ai)
@@ -2351,31 +2041,99 @@
/turf/simulated/shuttle/floor/yellow,
/area/shuttle/mining_outpost/shuttle)
"adX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ icon_state = "0-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/effect/landmark{
- name = "morphspawn"
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
+/turf/simulated/floor,
+/area/maintenance/substation/cargo)
"adY" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_r"
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Cargo Subgrid";
+ name_tag = "Cargo Subgrid"
},
-/turf/simulated/floor/tiled/asteroid_steel/airless,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/mining_outpost/shuttle)
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/cargo)
+"adZ" = (
+/obj/structure/railing,
+/obj/structure/closet/crate,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
+"aea" = (
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
+"aeb" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
+"aec" = (
+/obj/structure/railing,
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"aed" = (
/obj/structure/railing,
/turf/space,
/area/space)
+"aee" = (
+/obj/structure/railing,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
+"aef" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/railing,
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
+"aeg" = (
+/obj/structure/railing,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/clean,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"aeh" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 8
@@ -2465,43 +2223,14 @@
/turf/simulated/floor/bluegrid,
/area/ai)
"aen" = (
-/obj/effect/floor_decal/borderfloorblack{
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/effect/floor_decal/corner/blue/border{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 5
- },
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/stunshells{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/flashshells{
- pixel_x = 1;
- pixel_y = 0
- },
-/obj/item/weapon/storage/box/beanbags{
- pixel_x = 4;
- pixel_y = -5
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/button/remote/blast_door{
- id = "armoryblue";
- name = "Blue Armory Access";
- pixel_x = 24;
- pixel_y = -8;
- req_access = list(3)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"aeo" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -2538,28 +2267,20 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"aes" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
+ },
+/turf/simulated/floor/tiled/asteroid_steel/airless,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/mining_outpost/shuttle)
+"aet" = (
+/obj/structure/shuttle/engine/propulsion{
dir = 8
},
-/obj/structure/railing,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/turf/simulated/floor,
-/area/maintenance/cargo)
-"aet" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
+/turf/simulated/floor/tiled/asteroid_steel/airless,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/mining_outpost/shuttle)
"aeu" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
@@ -2613,12 +2334,17 @@
},
/turf/simulated/floor/tiled/white,
/area/security/security_bathroom)
+"aex" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r"
+ },
+/turf/simulated/floor/tiled/asteroid_steel/airless,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/mining_outpost/shuttle)
"aey" = (
/turf/simulated/floor/carpet,
/area/security/breakroom)
-"aez" = (
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
"aeA" = (
/obj/effect/floor_decal/corner/red{
dir = 10;
@@ -2727,22 +2453,6 @@
},
/turf/simulated/floor/wood,
/area/security/breakroom)
-"aeG" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"aeH" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/folder/red_hos,
-/obj/item/weapon/stamp/hos,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"aeI" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"aeJ" = (
/turf/simulated/floor/wood,
/area/security/breakroom)
@@ -2764,16 +2474,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/security_lockerroom)
-"aeL" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/cargo)
"aeM" = (
/obj/structure/railing{
dir = 4
@@ -2799,27 +2499,13 @@
/area/hallway/station/upper)
"aeO" = (
/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Security Substation";
+ req_access = list(1);
+ req_one_access = newlist()
},
-/obj/machinery/door/airlock/glass_security{
- id_tag = "detdoor";
- name = "Detective";
- req_access = list(4)
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
+/turf/simulated/floor/tiled,
+/area/maintenance/station/sec_upper)
"aeP" = (
/obj/structure/cable{
d1 = 4;
@@ -2874,12 +2560,6 @@
/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"aeS" = (
-/obj/item/frame,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"aeT" = (
/turf/simulated/wall,
/area/security/security_equiptment_storage)
@@ -2928,30 +2608,12 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
-"aeX" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/security/briefing_room)
"aeY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/turf/simulated/floor/wood,
/area/security/breakroom)
-"aeZ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/hand_labeler,
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"afa" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -3021,9 +2683,6 @@
/turf/simulated/floor/tiled,
/area/security/hallway)
"aff" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -3056,10 +2715,6 @@
},
/turf/simulated/wall/rshull,
/area/shuttle/excursion/general)
-"afl" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
"afm" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -3079,30 +2734,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"afn" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- dir = 1;
- name = "Warden's Desk";
- req_access = list(3)
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 2;
- name = "Warden's Desk";
- req_access = list(1)
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "warden";
- layer = 3.1;
- name = "Warden's Office Shutters";
- opacity = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/warden)
"afo" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 1
@@ -3137,25 +2768,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
-"afr" = (
-/obj/machinery/photocopier,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
-"aft" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
"afu" = (
/obj/structure/cable/green{
d1 = 4;
@@ -3228,11 +2840,6 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"afE" = (
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"afF" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -3270,9 +2877,6 @@
/obj/structure/curtain/open/shower/security,
/turf/simulated/floor/tiled,
/area/security/security_bathroom)
-"afH" = (
-/turf/simulated/wall,
-/area/security/detectives_office)
"afI" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 4
@@ -3288,18 +2892,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/evidence_storage)
-"afJ" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorblack/corner2,
-/obj/structure/table/rack/shelf/steel,
-/obj/machinery/camera/network/security{
- dir = 8;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"afK" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -3340,28 +2932,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/evidence_storage)
-"afO" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/weapon/reagent_containers/syringe,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
"afP" = (
/turf/simulated/wall/r_wall,
/area/ai_core_foyer)
@@ -3495,50 +3065,9 @@
/obj/structure/railing,
/turf/simulated/open,
/area/security/brig)
-"agc" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/white/border,
-/obj/machinery/dnaforensics,
-/obj/machinery/camera/network/security{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"agd" = (
-/obj/structure/closet/crate,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"age" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/target_stake,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"agf" = (
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
"agg" = (
/turf/simulated/floor/airless,
/area/space)
-"agh" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"agi" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
"agj" = (
/obj/machinery/access_button{
command = "cycle_exterior";
@@ -3551,10 +3080,6 @@
},
/turf/simulated/floor/airless,
/area/space)
-"agk" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
"agl" = (
/obj/machinery/door/airlock/glass_external,
/obj/effect/floor_decal/industrial/hatch/yellow,
@@ -3565,117 +3090,6 @@
/obj/structure/grille,
/turf/space,
/area/space)
-"agn" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"ago" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/projectile/shotgun/pump{
- ammo_type = /obj/item/ammo_casing/a12g/pellet;
- pixel_x = 2;
- pixel_y = -6
- },
-/obj/item/weapon/gun/projectile/shotgun/pump{
- ammo_type = /obj/item/ammo_casing/a12g/pellet;
- pixel_x = 1;
- pixel_y = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agp" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table/rack/steel,
-/obj/item/clothing/gloves/arm_guard/laserproof,
-/obj/item/clothing/shoes/leg_guard/laserproof,
-/obj/item/clothing/suit/armor/laserproof{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/clothing/head/helmet/laserproof,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agq" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agr" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/laser{
- pixel_x = -1;
- pixel_y = -11
- },
-/obj/item/weapon/gun/energy/laser{
- pixel_x = -1;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"ags" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table/rack/steel,
-/obj/item/clothing/gloves/arm_guard/riot,
-/obj/item/clothing/shoes/leg_guard/riot,
-/obj/item/clothing/suit/armor/riot/alt,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/weapon/shield/riot,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agt" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/ionrifle,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"agv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"agw" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
"agx" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 2;
@@ -3688,271 +3102,27 @@
"agy" = (
/turf/simulated/wall,
/area/maintenance/station/ai)
-"agz" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 9
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/rack/steel,
-/obj/item/clothing/gloves/arm_guard/bulletproof,
-/obj/item/clothing/shoes/leg_guard/bulletproof,
-/obj/item/clothing/suit/armor/bulletproof/alt,
-/obj/item/clothing/head/helmet/bulletproof,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agA" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agB" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorblack/corner2,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/rack/shelf/steel,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agC" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/rack/steel,
-/obj/item/clothing/gloves/arm_guard/laserproof,
-/obj/item/clothing/shoes/leg_guard/laserproof,
-/obj/item/clothing/suit/armor/laserproof{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/clothing/head/helmet/laserproof,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agD" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agE" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorblack/corner2,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/rack/shelf/steel,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agF" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/rack/steel,
-/obj/item/clothing/gloves/arm_guard/riot,
-/obj/item/clothing/shoes/leg_guard/riot,
-/obj/item/clothing/suit/armor/riot/alt,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/weapon/shield/riot,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agG" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorblack/corner2,
-/obj/structure/window/reinforced,
-/obj/structure/table/rack/shelf/steel,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agH" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"agI" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
"agJ" = (
/turf/simulated/mineral/vacuum,
/area/maintenance/station/ai)
"agK" = (
/turf/simulated/floor,
/area/maintenance/station/ai)
-"agN" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agO" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agP" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agQ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"agR" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"agS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"agT" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.6
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window/southright{
- name = "Hardsuit Storage";
- req_access = list(1,2,18)
- },
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/security,
-/obj/item/clothing/head/helmet/space/void/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/eva)
-"agU" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.6
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/window/southleft{
- name = "Jetpack Storage";
- req_access = list(1,2,18)
- },
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/turf/simulated/floor/tiled/dark,
-/area/security/eva)
-"agV" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
-"agW" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/item/device/gps/security{
- pixel_y = 3
- },
-/obj/item/device/gps/security{
- pixel_x = -3
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
-"agX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
"agY" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -28
+ },
/turf/simulated/floor/tiled,
/area/security/eva)
"agZ" = (
@@ -3994,14 +3164,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/gear)
-"ahd" = (
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Head of Security"
- },
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"ahe" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
@@ -4017,87 +3179,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"ahf" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/table/rack/shelf/steel,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"ahg" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"ahk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"ahl" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice,
-/obj/item/ammo_magazine/clip/c762/practice,
-/obj/item/ammo_magazine/clip/c762/practice,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/ammo_magazine/clip/c762/practice,
-/obj/machinery/light_switch{
- dir = 4;
- icon_state = "light1";
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"ahm" = (
-/obj/machinery/door/window/northright,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"ahn" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/weapon/gun/energy/laser/practice,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"aho" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/weapon/gun/energy/laser/practice,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"ahp" = (
-/turf/simulated/wall,
-/area/security/range)
-"ahq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
-"ahr" = (
-/turf/simulated/floor/tiled,
-/area/security/eva)
"ahs" = (
/obj/structure/railing{
dir = 4
@@ -4118,6 +3199,9 @@
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 8
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"ahu" = (
@@ -4135,7 +3219,7 @@
req_access = list(1,2,18)
},
/turf/simulated/floor,
-/area/security/eva)
+/area/maintenance/station/sec_upper)
"ahv" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -4173,21 +3257,6 @@
},
/turf/simulated/floor/bluegrid,
/area/ai)
-"ahA" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 9
- },
-/obj/structure/table/rack/steel,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"ahB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"ahC" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
@@ -4204,73 +3273,6 @@
/obj/item/weapon/storage/box/holowarrants,
/turf/simulated/floor/tiled/dark,
/area/security/security_equiptment_storage)
-"ahD" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 9
- },
-/obj/machinery/light,
-/obj/machinery/light_switch{
- dir = 4;
- icon_state = "light1";
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"ahE" = (
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"ahF" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/effect/floor_decal/borderfloorblack/corner2,
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/shotgunshells{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/shotgunshells{
- pixel_x = 6;
- pixel_y = -1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/button/remote/airlock{
- id = "armory_red";
- name = "HoS Armory Access";
- pixel_x = -10;
- pixel_y = -24;
- req_access = list(58)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"ahG" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/structure/table/steel,
-/obj/item/weapon/cell/device/weapon{
- pixel_x = -6;
- pixel_y = 3
- },
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon{
- pixel_x = 5;
- pixel_y = 3
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -28
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -38
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
"ahH" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -4297,50 +3299,20 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled,
/area/security/observation)
-"ahJ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/range)
-"ahK" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
-"ahL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
-"ahM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
"ahN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/tiled,
-/area/security/eva)
+/area/maintenance/station/sec_upper)
"ahO" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -4353,35 +3325,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"ahP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
-"ahQ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/obj/machinery/suit_cycler/security,
-/obj/machinery/camera/network/security{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
"ahR" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -4403,80 +3346,6 @@
},
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
-"ahS" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/armory/blue)
-"ahT" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/door/airlock/highsecurity{
- name = "Sensitive Object Lockup";
- req_one_access = list(3)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"ahW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/security{
- name = "Armory Storage";
- secured_wires = 1
- },
-/obj/machinery/door/blast/regular{
- dir = 4;
- icon_state = "pdoor1";
- id = "armoryred";
- name = "Red Armory";
- p_open = 0
- },
-/obj/structure/sign/department/armory{
- color = "#Bf4040";
- name = "RED ARMORY";
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"ahY" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.6
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/window/northleft{
- name = "Hardsuit Storage";
- req_access = list(1,2,18)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/eva)
"aia" = (
/obj/machinery/power/terminal{
dir = 4
@@ -4505,18 +3374,6 @@
/obj/machinery/camera/network/command,
/turf/simulated/floor/bluegrid,
/area/ai)
-"aid" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/random/maintenance/engineering,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"aie" = (
/obj/structure/cable/cyan{
d2 = 8;
@@ -4532,95 +3389,6 @@
},
/turf/simulated/floor/bluegrid,
/area/ai)
-"aif" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 5
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table/rack/shelf/steel,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/item/weapon/gun/energy/gun{
- pixel_y = 7
- },
-/obj/item/weapon/gun/energy/gun{
- pixel_y = -5
- },
-/obj/item/weapon/gun/energy/gun{
- pixel_y = -5
- },
-/obj/item/weapon/gun/energy/gun{
- pixel_y = 7
- },
-/obj/item/weapon/gun/energy/gun{
- pixel_y = -5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"aih" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"aij" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/hand_labeler,
-/obj/structure/sign/department/armory{
- color = "#3385ff";
- name = "BLUE ARMORY";
- pixel_x = -32
- },
-/obj/structure/sign/department/armory{
- color = "#Bf4040";
- name = "RED ARMORY";
- pixel_y = 32
- },
-/obj/machinery/camera/network/security{
- dir = 5;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
"aik" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -4643,34 +3411,6 @@
},
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
-"ail" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/newscaster/security_unit{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
"aim" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -4706,15 +3446,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/turf/simulated/floor,
-/area/security/eva)
-"aio" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Security EVA";
- req_one_access = list(1,2,18)
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
+/area/maintenance/station/sec_upper)
"aip" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -4780,47 +3512,6 @@
/obj/machinery/porta_turret/ai_defense,
/turf/simulated/floor/bluegrid,
/area/ai)
-"aiu" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"aiv" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4;
- icon_state = "warning"
- },
-/obj/machinery/door/window/brigdoor/eastright,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"aiw" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8;
- icon_state = "warning"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"aiz" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -4848,20 +3539,19 @@
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"aiA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/structure/disposalpipe/junction{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
@@ -4932,12 +3622,6 @@
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -4952,20 +3636,39 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"aiE" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"aiF" = (
@@ -4983,7 +3686,8 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 9;
+ pixel_y = 0
},
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
@@ -4995,17 +3699,11 @@
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
@@ -5072,113 +3770,6 @@
/obj/structure/plasticflaps,
/turf/simulated/floor/tiled/techfloor/grid,
/area/shuttle/excursion/cargo)
-"aiL" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 6
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table/rack/shelf/steel,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/item/weapon/storage/box/trackimp,
-/obj/item/weapon/storage/box/trackimp,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"aiM" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 8;
- icon_state = "borderfloorcorner2_black"
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"aiN" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 6
- },
-/obj/structure/table/rack/shelf/steel,
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = 5;
- pixel_y = -6
- },
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"aiO" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor,
-/area/security/warden)
-"aiP" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/clipboard,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/pen,
-/obj/item/device/radio{
- pixel_x = -4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
"aiQ" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
@@ -5191,11 +3782,6 @@
/obj/effect/floor_decal/corner/red/border,
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
-"aiS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/weapon/bone/skull/unathi,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aiT" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -5223,60 +3809,6 @@
},
/turf/simulated/wall/rshull,
/area/shuttle/excursion/cargo)
-"aiZ" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/deployable/barrier,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"aja" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"ajc" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/obj/structure/table/steel,
-/obj/item/weapon/cell/device/weapon{
- pixel_x = -1;
- pixel_y = 4
- },
-/obj/item/weapon/cell/device/weapon,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"ajd" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor,
-/area/security/warden)
-"aje" = (
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/heads/hos)
"ajf" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals6{
@@ -5286,69 +3818,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"ajh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"aji" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/obj/structure/table/steel,
-/obj/item/ammo_magazine/m45/rubber{
- pixel_x = 0;
- pixel_y = 9
- },
-/obj/item/ammo_magazine/m45/rubber{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/ammo_magazine/m45/rubber{
- pixel_x = 0;
- pixel_y = -3
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 32;
- pixel_y = 2
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 32;
- pixel_y = -9
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"ajj" = (
-/obj/effect/floor_decal/borderfloor{
- pixel_y = 16
- },
-/obj/effect/floor_decal/corner/red/border{
- pixel_y = 16
- },
-/obj/effect/floor_decal/corner/red{
- dir = 10;
- icon_state = "corner_white"
- },
-/obj/machinery/computer/prisoner{
- dir = 1;
- icon_state = "computer"
- },
-/obj/item/device/radio/intercom/department/security{
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
"ajk" = (
/turf/simulated/open,
/area/security/brig)
@@ -5417,12 +3886,6 @@
"ajt" = (
/turf/simulated/floor/bluegrid,
/area/ai)
-"aju" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/flasher/portable,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"ajv" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 5
@@ -5566,27 +4029,11 @@
},
/turf/simulated/floor/tiled,
/area/security/observation)
-"ajM" = (
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"ajN" = (
/obj/structure/table/woodentable,
/obj/item/weapon/storage/box/donut,
/turf/simulated/floor/carpet,
/area/security/breakroom)
-"ajO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/random/maintenance/cargo,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"ajP" = (
/obj/structure/cable/cyan{
d1 = 1;
@@ -5602,17 +4049,6 @@
},
/turf/simulated/floor/bluegrid,
/area/ai)
-"ajR" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/deployable/barrier,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"ajU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
@@ -5659,40 +4095,6 @@
},
/turf/simulated/floor/carpet,
/area/security/breakroom)
-"akc" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorblack/corner{
- dir = 8;
- icon_state = "borderfloorcorner_black"
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"ake" = (
-/obj/machinery/mech_recharger,
-/obj/effect/floor_decal/corner_techfloor_grid{
- dir = 5
- },
-/obj/effect/floor_decal/techfloor,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"akf" = (
-/obj/structure/sign/warning/secure_area,
-/turf/simulated/wall/r_wall,
-/area/security/armory/blue)
"akg" = (
/obj/structure/railing{
dir = 8
@@ -5779,17 +4181,6 @@
"ako" = (
/turf/simulated/wall/r_wall,
/area/security/security_equiptment_storage)
-"akp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera/network/security{
- dir = 10;
- icon_state = "camera"
- },
-/obj/machinery/atmospherics/binary/passive_gate/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/eva)
"akq" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -5853,22 +4244,6 @@
/obj/random/maintenance/clean,
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
-"aku" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- dir = 4
- },
-/obj/random/trash_pile,
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"akv" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"akx" = (
/obj/item/device/radio/intercom{
pixel_y = -24
@@ -5973,13 +4348,6 @@
/obj/item/weapon/storage/box/glasses/square,
/turf/simulated/floor/wood,
/area/security/breakroom)
-"akI" = (
-/obj/structure/bookcase,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/obj/item/weapon/book/manual/command_guide,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"akJ" = (
/obj/structure/railing{
dir = 4
@@ -6003,19 +4371,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/security_equiptment_storage)
-"akM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
"akN" = (
/obj/effect/floor_decal/borderfloor/shifted{
dir = 1;
@@ -6035,28 +4390,6 @@
},
/turf/simulated/floor/tiled,
/area/security/observation)
-"akO" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/item/device/radio/intercom/department/security{
- dir = 4;
- icon_state = "secintercom";
- pixel_x = 24;
- pixel_y = 0
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
-"akP" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/item/device/radio/intercom/department/security{
- dir = 2;
- icon_state = "secintercom";
- pixel_y = -24
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"akS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -6195,101 +4528,6 @@
},
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
-"ale" = (
-/turf/simulated/wall/r_wall,
-/area/security/briefing_room)
-"alf" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/photocopier,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"alg" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/papershredder,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"alh" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/photocopier/faxmachine{
- department = "Security"
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"ali" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen/multi,
-/obj/structure/table/reinforced,
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"alj" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/grille,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/window/reinforced/polarized/full{
- id = "hos_office"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 8;
- id = "hos_office"
- },
-/turf/simulated/floor,
-/area/crew_quarters/heads/hos)
"alk" = (
/obj/machinery/door/airlock/hatch{
icon_state = "door_locked";
@@ -6401,30 +4639,6 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/station/ai)
-"alu" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green,
-/obj/structure/grille,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/window/reinforced/polarized/full{
- id = "hos_office"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 8;
- id = "hos_office"
- },
-/turf/simulated/floor,
-/area/crew_quarters/heads/hos)
"alv" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/regular{
@@ -6551,72 +4765,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"alG" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"alH" = (
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"alI" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"alJ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- icon_state = "extinguisher_closed";
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"alK" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/item/weapon/book/codex,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"alL" = (
/obj/structure/catwalk,
/obj/machinery/door/firedoor/glass,
@@ -6813,37 +4961,10 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/ai)
-"alZ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green,
-/obj/structure/grille,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/window/reinforced/polarized/full{
- id = "hos_office"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 8;
- id = "hos_office"
- },
-/turf/simulated/floor,
-/area/crew_quarters/heads/hos)
"ama" = (
/obj/machinery/door/airlock/glass_security,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"amb" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/security/forensics)
"amc" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 9
@@ -7015,63 +5136,16 @@
/turf/simulated/floor/tiled,
/area/security/hallway)
"amk" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Security";
- sortType = "Security"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"aml" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"amm" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"amn" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder/red,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"amo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"amp" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/item/weapon/folder/red_hos,
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"amq" = (
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
@@ -7148,9 +5222,6 @@
/obj/item/weapon/hand_labeler,
/turf/simulated/floor/tiled/dark,
/area/security/security_lockerroom)
-"amy" = (
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"amz" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -7256,82 +5327,9 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
-"amG" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- dir = 5;
- icon_state = "bordercolorcorner2"
- },
-/obj/structure/table/reinforced,
-/obj/machinery/computer/med_data/laptop,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
"amH" = (
/turf/simulated/wall/r_wall,
/area/security/hallway)
-"amI" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "iaa_office"
- },
-/turf/simulated/floor,
-/area/lawoffice)
-"amJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "iaa_office"
- },
-/turf/simulated/floor,
-/area/lawoffice)
"amK" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/floor_decal/borderfloor,
@@ -7351,56 +5349,6 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"amM" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"amN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/table/glass,
-/obj/item/weapon/folder/red,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"amO" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"amP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/borderfloor/corner,
-/obj/effect/floor_decal/corner/red/bordercorner,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"amQ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"amR" = (
/obj/effect/floor_decal/rust,
/obj/structure/catwalk,
@@ -7585,20 +5533,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"anh" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/camera/network/command{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"ani" = (
/obj/structure/bookcase,
/obj/item/weapon/book/manual/security_space_law,
@@ -7642,38 +5576,6 @@
/obj/item/device/holowarrant,
/turf/simulated/floor/tiled/dark,
/area/security/security_lockerroom)
-"anm" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "iaa_office"
- },
-/turf/simulated/floor,
-/area/lawoffice)
-"ann" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "iaa_office"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 8;
- id = "iaa_office"
- },
-/turf/simulated/floor,
-/area/lawoffice)
"ano" = (
/turf/simulated/wall,
/area/security/hallway)
@@ -7707,43 +5609,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"anr" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"ans" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"ant" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/storage/box/donut,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"anu" = (
/obj/structure/cable/green{
d1 = 4;
@@ -7753,38 +5618,6 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/security/security_processing)
-"anv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"anw" = (
-/obj/effect/floor_decal/corner/red{
- dir = 6;
- icon_state = "corner_white"
- },
-/obj/effect/floor_decal/corner/red{
- dir = 9;
- icon_state = "corner_white"
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- desc = "It looks to be a patriotic NT security stream. Officers from all over the universe proudly voicing their love for NT! I wonder what else is on?";
- icon_state = "frame";
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"anx" = (
/obj/structure/catwalk,
/turf/simulated/floor,
@@ -7831,74 +5664,6 @@
},
/turf/simulated/floor/bluegrid,
/area/ai_core_foyer)
-"anD" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/newscaster/security_unit{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/closet/secure_closet/hos,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
-"anE" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper{
- desc = "";
- info = "The Chief of Security at CentCom is debating a new policy. It's not official yet, and probably won't be since it's hard to enforce, but I suggest following it anyway. That policy is, if a security officer claims they need more than two extra magazines (or batteries) to go on routine patrols, fire them. If they cannot subdue a single suspect using all that ammo, they are not competent as Security.\[br]-Jeremiah Acacius";
- name = "note to the Head of Security"
- },
-/obj/item/clothing/accessory/permit/gun{
- desc = "An example of a card indicating that the owner is allowed to carry a firearm. There's a note saying to fax CentCom if you want to order more blank permits.";
- name = "sample weapon permit";
- owner = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen/multi,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"anF" = (
-/obj/structure/bed/chair/comfy/black,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/button/windowtint{
- id = "hos_office";
- pixel_x = -36;
- pixel_y = -26;
- req_access = list(58)
- },
-/obj/machinery/button/remote/airlock{
- id = "HoSdoor";
- name = "Office Door";
- pixel_x = -28;
- pixel_y = -24
- },
-/obj/machinery/button/remote/blast_door{
- id = "security_lockdown";
- name = "Brig Lockdown";
- pixel_x = -28;
- pixel_y = -36;
- req_access = list(2)
- },
-/obj/effect/landmark/start{
- name = "Head of Security"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"anG" = (
/obj/structure/cable/green{
d2 = 4;
@@ -8055,107 +5820,16 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"anR" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"anS" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/item/weapon/folder/red,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"anT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"anU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"anV" = (
/obj/structure/ladder{
pixel_y = 16
},
/turf/simulated/floor,
/area/maintenance/station/ai)
-"anW" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/structure/closet/secure_closet/hos2,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
-"anX" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"anY" = (
/obj/structure/table/woodentable,
/turf/simulated/floor/carpet,
/area/security/breakroom)
-"anZ" = (
-/obj/effect/floor_decal/spline/plain,
-/obj/structure/flora/pottedplant/stoutbush,
-/obj/machinery/button/windowtint{
- id = "iaa_office";
- pixel_x = 0;
- pixel_y = -36
- },
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = -26
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"aoa" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"aob" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 10
@@ -8222,14 +5896,6 @@
"aof" = (
/turf/simulated/wall/r_wall,
/area/security/security_processing)
-"aog" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "iaa_office"
- },
-/turf/simulated/floor,
-/area/lawoffice)
"aoh" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -8259,83 +5925,6 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"aoj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"aok" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"aol" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"aom" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/table/glass,
-/obj/item/weapon/folder/red,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"aon" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"aoo" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
-/obj/item/device/megaphone,
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"aop" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -8370,32 +5959,6 @@
/obj/structure/grille,
/turf/space,
/area/space)
-"aou" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
-"aov" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/carpet,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"aow" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/floor_decal/carpet,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"aox" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 28
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"aoy" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -8479,36 +6042,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"aoH" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"aoI" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"aoJ" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/light,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"aoK" = (
/obj/machinery/requests_console{
department = "Cargo Bay";
@@ -8523,53 +6056,9 @@
pixel_x = -3;
pixel_y = 3
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"aoL" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"aoM" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"aoN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/item/device/radio{
- pixel_x = -4
- },
-/obj/item/device/radio{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"aoO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor,
-/area/maintenance/cargo)
"aoP" = (
/obj/structure/disposalpipe/tagger{
dir = 8;
@@ -8582,14 +6071,6 @@
},
/turf/simulated/floor,
/area/maintenance/cargo)
-"aoQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/cargo)
"aoR" = (
/obj/random/trash_pile,
/obj/effect/floor_decal/rust,
@@ -8613,40 +6094,6 @@
/obj/item/weapon/stool,
/turf/simulated/floor,
/area/maintenance/cargo)
-"aoW" = (
-/obj/structure/table/woodentable,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
-/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{
- pixel_x = -4;
- pixel_y = 8
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
-"aoX" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"aoY" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -8675,29 +6122,7 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"aoZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"apa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -8706,9 +6131,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/obj/effect/floor_decal/borderfloor{
dir = 1;
pixel_y = 0
@@ -8722,6 +6144,9 @@
/obj/effect/floor_decal/corner/red/bordercorner2{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
/area/security/hallway)
"apb" = (
@@ -8736,9 +6161,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/floor_decal/borderfloor{
dir = 1;
pixel_y = 0
@@ -8777,9 +6199,9 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/security/hallway)
@@ -8821,9 +6243,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/security/hallway)
@@ -9027,9 +6448,6 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"apr" = (
-/turf/simulated/wall,
-/area/security/briefing_room)
"aps" = (
/obj/structure/disposalpipe/junction{
dir = 2;
@@ -9057,34 +6475,6 @@
},
/turf/simulated/floor,
/area/maintenance/cargo)
-"apv" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor,
-/area/maintenance/cargo)
-"apw" = (
-/obj/structure/railing,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/cargo)
-"apx" = (
-/obj/structure/railing,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/cargo)
"apy" = (
/obj/structure/railing,
/obj/structure/cable/green{
@@ -9112,29 +6502,6 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/station/ai)
-"apB" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_security{
- id_tag = "detdoor";
- name = "Forensics Lab";
- req_access = list(4)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
"apC" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/light,
@@ -9162,6 +6529,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/security/hallway)
"apI" = (
@@ -9363,36 +6735,6 @@
/obj/structure/railing,
/turf/simulated/floor,
/area/maintenance/cargo)
-"aqc" = (
-/turf/simulated/wall/r_wall,
-/area/security/forensics)
-"aqd" = (
-/turf/simulated/wall,
-/area/security/forensics)
-"aqe" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/security/detectives_office)
-"aqf" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor,
-/area/security/detectives_office)
-"aqg" = (
-/obj/structure/table/woodentable,
-/obj/item/device/taperecorder{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/device/radio/intercom/department/security{
- pixel_y = -24
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
"aqh" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -9471,20 +6813,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"aqn" = (
-/obj/machinery/door/firedoor/glass,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"aqo" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/cargo)
"aqp" = (
/obj/structure/disposalpipe/segment,
/obj/structure/catwalk,
@@ -9526,97 +6854,6 @@
"aqu" = (
/turf/simulated/wall,
/area/quartermaster/office)
-"aqv" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor,
-/area/security/forensics)
-"aqw" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 9
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/forensics/sample_kit,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"aqx" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/machinery/microscope,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"aqy" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 1
- },
-/obj/machinery/dnaforensics,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"aqC" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/security/forensics)
-"aqD" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"aqE" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"aqF" = (
-/obj/structure/table/woodentable,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"aqG" = (
-/obj/structure/bookcase,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/security_space_law,
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"aqH" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"aqI" = (
-/obj/structure/flora/pottedplant,
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
"aqJ" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -9718,6 +6955,11 @@
dir = 4;
icon_state = "pipe-j1"
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/security/hallway)
"aqQ" = (
@@ -9737,18 +6979,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"aqS" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 9;
- icon_state = "spline_plain"
- },
-/obj/structure/closet/lawcloset,
-/obj/machinery/camera/network/security{
- dir = 5;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
"aqT" = (
/turf/simulated/floor,
/area/maintenance/station/elevator)
@@ -9761,20 +6991,6 @@
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"aqW" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor,
-/area/maintenance/cargo)
"aqX" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
@@ -9840,192 +7056,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"ard" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor,
-/area/security/forensics)
-"are" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/forensics/sample_kit/powder,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"arf" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"arg" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"arh" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/window/eastleft,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"ari" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"arj" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"ark" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"arm" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"arn" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"aro" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"arp" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
"arq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -10034,27 +7064,14 @@
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"arr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- name = "Forensics Lab";
- sortType = "Forensics Lab"
- },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/hallway)
"ars" = (
@@ -10168,32 +7185,6 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"arA" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack/corner,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"arB" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
@@ -10236,25 +7227,6 @@
/obj/structure/railing,
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"arE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/station/elevator)
-"arF" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/cargo)
-"arG" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/cargo)
"arH" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
@@ -10313,21 +7285,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"arM" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 5;
- icon_state = "spline_plain"
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/camera/network/security{
- dir = 8;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
"arN" = (
/obj/structure/cable/green{
d1 = 4;
@@ -10421,12 +7378,6 @@
},
/turf/simulated/open,
/area/maintenance/station/ai)
-"arT" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"arU" = (
/obj/structure/catwalk,
/obj/structure/disposalpipe/segment{
@@ -10479,198 +7430,6 @@
/obj/structure/noticeboard,
/turf/simulated/wall,
/area/quartermaster/office)
-"asa" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/spray/luminol,
-/obj/item/device/uv_light,
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"asb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/computer/secure_data{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"asc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/yellow{
- pixel_y = -5
- },
-/obj/item/weapon/folder/blue{
- pixel_y = -3
- },
-/obj/item/weapon/folder/red,
-/obj/item/weapon/storage/box/swabs{
- layer = 5
- },
-/obj/item/weapon/hand_labeler,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"asd" = (
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/closet{
- name = "Forensics Gear"
- },
-/obj/item/weapon/storage/box/gloves,
-/obj/item/weapon/storage/box/evidence,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/storage/briefcase/crimekit,
-/obj/item/weapon/storage/briefcase/crimekit,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"ase" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"asf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"asg" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"ash" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin,
-/obj/item/clothing/glasses/sunglasses,
-/obj/item/weapon/pen/blue{
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"asi" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"asj" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/handcuffs,
-/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"ask" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin,
-/obj/item/clothing/glasses/sunglasses,
-/obj/item/weapon/pen/blue{
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"asl" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
"asm" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -10710,44 +7469,12 @@
},
/turf/simulated/floor/tiled,
/area/security/security_processing)
-"aso" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/station/elevator)
"asp" = (
/turf/simulated/wall/r_wall,
/area/hallway/station/upper)
"asq" = (
/turf/simulated/wall,
/area/hallway/station/upper)
-"asr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -32
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/cargo)
-"ass" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor,
-/area/maintenance/cargo)
"ast" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -10793,8 +7520,10 @@
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
"asy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Void";
+ sortType = "Void"
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
@@ -10965,90 +7694,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"asL" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor,
-/area/security/forensics)
-"asM" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"asO" = (
-/obj/machinery/door/window/eastright,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"asP" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"asQ" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"asR" = (
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"asS" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Detective"
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"asT" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"asU" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Detective"
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
"asV" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -11129,6 +7774,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/security/hallway)
"ata" = (
@@ -11157,6 +7807,11 @@
/obj/machinery/alarm{
pixel_y = 22
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/security/hallway)
"atb" = (
@@ -11333,11 +7988,6 @@
"atl" = (
/turf/simulated/wall/r_wall,
/area/maintenance/station/elevator)
-"atm" = (
-/obj/machinery/atmospherics/pipe/cap/hidden,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/station/elevator)
"atn" = (
/turf/simulated/shuttle/wall/voidcraft/green{
hard_corner = 1
@@ -11408,12 +8058,6 @@
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 9
- },
/obj/machinery/camera/network/tether{
dir = 1
},
@@ -11445,6 +8089,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
"aty" = (
@@ -11520,143 +8165,14 @@
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"atG" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 8
},
/turf/simulated/floor,
-/area/security/forensics)
-"atH" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 10
- },
-/obj/structure/table/reinforced,
-/obj/item/device/mass_spectrometer/adv,
-/obj/item/device/reagent_scanner,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"atI" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/white/border,
-/obj/machinery/chem_master,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"atJ" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- dir = 6;
- icon_state = "bordercolorcorner2"
- },
-/obj/structure/filingcabinet,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"atK" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"atL" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"atM" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"atN" = (
-/obj/structure/closet/secure_closet/detective,
-/obj/item/weapon/reagent_containers/spray/pepper,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/device/camera{
- desc = "A one use - polaroid camera. 30 photos left.";
- name = "detectives camera";
- pictures_left = 30;
- pixel_x = 2;
- pixel_y = 3
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"atO" = (
-/obj/machinery/computer/security/wooden_tv,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
+/area/maintenance/station/sec_upper)
"atP" = (
/obj/item/device/radio/intercom{
dir = 4;
@@ -11676,16 +8192,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/security_equiptment_storage)
-"atR" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable/green,
-/obj/machinery/computer/security/wooden_tv,
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
"atS" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -11812,20 +8318,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"auh" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/station/elevator)
"aui" = (
/turf/simulated/floor/holofloor/tiled/dark,
/area/tether/elevator)
@@ -11932,6 +8424,7 @@
/area/quartermaster/delivery)
"auu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
"auv" = (
@@ -12047,15 +8540,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"auC" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"auD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -12080,67 +8564,14 @@
"auF" = (
/obj/structure/sign/warning/secure_area,
/turf/simulated/wall/r_wall,
-/area/security/forensics)
-"auG" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/turf/simulated/floor,
-/area/security/forensics)
-"auH" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/cable/green,
-/turf/simulated/floor,
-/area/security/forensics)
+/area/maintenance/station/sec_upper)
"auI" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced,
/turf/simulated/floor,
-/area/security/forensics)
-"auJ" = (
-/turf/simulated/wall/r_wall,
-/area/security/detectives_office)
+/area/maintenance/station/sec_upper)
"auL" = (
/obj/machinery/washing_machine,
/obj/machinery/light{
@@ -12150,37 +8581,13 @@
/area/security/security_bathroom)
"auM" = (
/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/airlock/security{
- name = "Internal Affairs";
- req_access = list(38);
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Security Substation";
+ req_access = list(1);
req_one_access = newlist()
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/area/maintenance/station/sec_upper)
"auN" = (
/obj/machinery/alarm{
dir = 8;
@@ -12203,9 +8610,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"auO" = (
-/turf/simulated/wall/r_wall,
-/area/lawoffice)
"auP" = (
/turf/simulated/wall/r_wall,
/area/security/lobby)
@@ -12334,10 +8738,6 @@
/obj/machinery/space_heater,
/turf/simulated/floor,
/area/storage/emergency_storage/emergency3)
-"avc" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/storage/emergency_storage/emergency3)
"avd" = (
/obj/structure/closet/crate,
/obj/random/junk,
@@ -12398,6 +8798,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
"avi" = (
@@ -12502,9 +8903,6 @@
"avt" = (
/turf/simulated/mineral/floor/vacuum,
/area/mine/explored/upper_level)
-"avu" = (
-/turf/simulated/wall,
-/area/lawoffice)
"avv" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/brown/border,
@@ -12519,123 +8917,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"avw" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1;
- icon_state = "spline_plain"
- },
-/obj/structure/closet,
-/obj/item/device/taperecorder{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/device/camera{
- pixel_x = 3;
- pixel_y = -4
- },
-/obj/item/device/taperecorder{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/device/camera{
- pixel_x = 3;
- pixel_y = -4
- },
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/weapon/storage/secure/briefcase,
-/obj/item/weapon/storage/secure/briefcase,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"avx" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1;
- icon_state = "spline_plain"
- },
-/obj/structure/bookcase,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/command_guide,
-/obj/item/weapon/book/manual/command_guide,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"avy" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1;
- icon_state = "spline_plain"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/table/reinforced,
-/obj/machinery/photocopier/faxmachine{
- department = "Internal Affairs"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"avz" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1;
- icon_state = "spline_plain"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/photocopier,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"avA" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1;
- icon_state = "spline_plain"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/papershredder,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"avB" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"avC" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1;
- icon_state = "spline_plain"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
"avD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -12784,25 +9065,6 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"avM" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash_pile,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor,
-/area/maintenance/station/elevator)
"avN" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -12819,10 +9081,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"avO" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/station/elevator)
"avP" = (
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
@@ -12842,12 +9100,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/storage/emergency_storage/emergency3)
-"avS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/light/small,
-/turf/simulated/floor,
-/area/storage/emergency_storage/emergency3)
"avT" = (
/obj/effect/floor_decal/rust,
/obj/machinery/portable_atmospherics/powered/pump/filled,
@@ -12893,6 +9145,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/brown/border,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
"avZ" = (
@@ -12934,27 +9187,6 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
-"awg" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8;
- icon_state = "spline_plain"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"awh" = (
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"awi" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- icon_state = "extinguisher_closed";
- pixel_x = 30
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
"awj" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -13049,20 +9281,6 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"awr" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/closet/crate,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/clean,
-/obj/random/junk,
-/obj/random/tool,
-/obj/random/maintenance/clean,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/simulated/floor,
-/area/maintenance/station/elevator)
"aws" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -13237,21 +9455,6 @@
/obj/structure/flora/pottedplant/flower,
/turf/simulated/floor/wood,
/area/hallway/station/upper)
-"awM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/table/reinforced,
-/obj/item/device/flashlight/lamp,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"awN" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
"awO" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -13322,33 +9525,6 @@
},
/turf/simulated/floor/tiled,
/area/security/observation)
-"awS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- dir = 6;
- icon_state = "bordercolorcorner2"
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- dir = 5;
- icon_state = "bordercolorcorner2"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
"awT" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/box/cups,
@@ -13378,18 +9554,6 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"awW" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/structure/railing,
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/elevator)
-"awX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/station/elevator)
"axa" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13465,7 +9629,7 @@
pixel_y = 0
},
/turf/simulated/wall,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"axl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -13479,6 +9643,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"axn" = (
@@ -13608,122 +9773,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"axy" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8;
- icon_state = "spline_plain"
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder{
- pixel_x = -4
- },
-/obj/item/weapon/folder/blue{
- pixel_x = 5
- },
-/obj/item/weapon/folder/red{
- pixel_y = 3
- },
-/obj/item/weapon/folder/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"axz" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Internal Affairs Agent"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"axA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/stamp/internalaffairs,
-/obj/item/weapon/stamp/denied{
- pixel_x = 4;
- pixel_y = -2
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"axB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"axC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"axD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"axE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/stamp/internalaffairs,
-/obj/item/weapon/stamp/denied{
- pixel_x = 4;
- pixel_y = -2
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"axF" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Internal Affairs Agent"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"axG" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder{
- pixel_x = -4
- },
-/obj/item/weapon/folder/blue{
- pixel_x = 5
- },
-/obj/item/weapon/folder/red{
- pixel_y = 3
- },
-/obj/item/weapon/folder/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
"axH" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -13866,6 +9915,10 @@
"axZ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"aya" = (
@@ -13875,6 +9928,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"ayb" = (
@@ -13884,6 +9940,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"ayc" = (
@@ -13902,6 +9961,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"ayd" = (
@@ -13926,6 +9988,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/office)
"aye" = (
@@ -13961,6 +10026,9 @@
dir = 9;
pixel_y = 0
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"ayg" = (
@@ -13969,6 +10037,10 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"ayh" = (
@@ -13992,93 +10064,10 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"ayi" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 10;
- icon_state = "spline_plain"
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/clipboard,
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27;
- pixel_y = 0
- },
-/obj/item/weapon/storage/briefcase{
- pixel_x = -2;
- pixel_y = -5
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"ayj" = (
-/obj/structure/table/reinforced,
-/obj/machinery/computer/skills{
- dir = 1;
- icon_state = "laptop"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"ayk" = (
-/obj/effect/floor_decal/spline/plain,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen/blue{
- pixel_x = -5;
- pixel_y = -1
- },
-/obj/item/weapon/pen/red{
- pixel_x = -1;
- pixel_y = 3
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
"ayl" = (
/obj/structure/sign/department/medbay,
/turf/simulated/wall/r_wall,
/area/medical/chemistry)
-"aym" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"ayn" = (
-/obj/effect/floor_decal/spline/plain,
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"ayo" = (
-/obj/effect/floor_decal/spline/plain,
-/obj/structure/table/reinforced,
-/obj/machinery/computer/skills{
- dir = 1;
- icon_state = "laptop"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"ayp" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 6;
- icon_state = "spline_plain"
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/clipboard,
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/item/weapon/storage/briefcase{
- pixel_x = 3;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
"ayq" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -14304,12 +10293,6 @@
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/shutters{
- dir = 1;
- id = "chemistry";
- layer = 3.1;
- name = "Chemistry Shutters"
- },
/obj/machinery/door/blast/shutters{
density = 0;
dir = 2;
@@ -14318,6 +10301,12 @@
name = "Medbay Emergency Lockdown Shutters";
opacity = 0
},
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "spacechemistry";
+ layer = 3.1;
+ name = "Chemistry Shutters"
+ },
/turf/simulated/floor/plating,
/area/medical/chemistry)
"ayJ" = (
@@ -14380,7 +10369,7 @@
"ayN" = (
/obj/structure/sign/department/medbay,
/turf/simulated/wall,
-/area/medical/medbay_emt_bay)
+/area/maintenance/station/cargo)
"ayP" = (
/obj/machinery/alarm{
dir = 1;
@@ -14415,8 +10404,17 @@
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"ayT" = (
-/turf/simulated/wall,
-/area/medical/medbay_emt_bay)
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
"ayU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -14642,15 +10640,10 @@
/turf/simulated/floor/plating,
/area/hallway/station/upper)
"azm" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock{
- name = "Internal Affairs";
- req_access = list(38)
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"azn" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/regular{
@@ -14740,24 +10733,6 @@
dir = 4
},
/area/medical/reception)
-"azs" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- name = "EMT Bay"
- },
-/obj/machinery/door/blast/shutters{
- closed_layer = 10;
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "medbayquar";
- layer = 1;
- name = "Medbay Emergency Lockdown Shutters";
- opacity = 0;
- open_layer = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
"azt" = (
/turf/simulated/wall,
/area/security/lobby)
@@ -14839,23 +10814,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"azC" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
-"azD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"azE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -15143,25 +11101,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"aAi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
-"aAj" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
-"aAk" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"aAl" = (
/obj/structure/table/reinforced,
/obj/machinery/chemical_dispenser/full,
@@ -15609,17 +11548,6 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"aAY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/teleporter/departing)
"aAZ" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/regular,
@@ -15820,75 +11748,6 @@
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"aBu" = (
-/obj/structure/table/rack,
-/obj/item/device/gps/medical{
- pixel_y = 3
- },
-/obj/item/device/gps/medical{
- pixel_x = -3
- },
-/obj/item/device/radio{
- pixel_x = 2
- },
-/obj/item/device/radio{
- pixel_x = -1;
- pixel_y = -3
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aBv" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aBw" = (
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aBx" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
"aBy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -15931,30 +11790,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"aBB" = (
-/obj/machinery/suit_cycler/medical,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/machinery/camera/network/medbay{
- dir = 9;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
"aBC" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -16009,47 +11844,18 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"aBH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
-"aBI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
"aBJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/shutters{
dir = 4;
- id = "chemistry";
+ id = "spacechemistry";
layer = 3.1;
name = "Chemistry Shutters"
},
/turf/simulated/floor/plating,
/area/medical/chemistry)
-"aBK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/turf/simulated/floor/tiled,
-/area/security/eva)
"aBL" = (
/obj/machinery/camera/network/cargo{
dir = 8;
@@ -16410,79 +12216,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"aCs" = (
-/obj/structure/table/rack,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/device/multitool,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aCt" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aCu" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"aCv" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aCw" = (
-/obj/structure/table/rack,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/medical/emt,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/head/helmet/space/void/medical/emt,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
"aCx" = (
/obj/effect/floor_decal/rust,
/obj/structure/railing{
@@ -16531,18 +12264,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/substation/medical)
-"aCC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
"aCD" = (
/turf/simulated/floor/wood,
/area/quartermaster/qm)
@@ -16671,6 +12392,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
"aCN" = (
@@ -16771,10 +12493,7 @@
dir = 4;
icon_state = "intact"
},
-/obj/structure/disposalpipe/sortjunction{
- name = "Primary Medical Storage";
- sortType = "Primary Medical Storage"
- },
+/obj/structure/disposalpipe/junction,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aCW" = (
@@ -16823,15 +12542,6 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/hallway/station/upper)
-"aDa" = (
-/turf/simulated/wall,
-/area/teleporter/departing)
-"aDb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/teleporter/departing)
"aDc" = (
/obj/structure/cable{
d1 = 1;
@@ -16839,37 +12549,12 @@
icon_state = "1-2";
pixel_y = 0
},
-/obj/machinery/door/airlock/glass{
- name = "Long-Range Teleporter Access"
- },
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor/tiled/steel_grid,
-/area/teleporter/departing)
-"aDd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
-"aDe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack{
- dir = 1
- },
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
+/area/tether/station/stairs_three)
"aDf" = (
/turf/simulated/wall,
/area/tether/station/stairs_three)
@@ -16902,15 +12587,6 @@
dir = 4
},
/area/tether/station/stairs_three)
-"aDi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/obj/random/junk,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/obj/random/tech_supply,
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
"aDj" = (
/obj/structure/sign/department/medbay,
/turf/simulated/wall,
@@ -16938,27 +12614,6 @@
"aDl" = (
/turf/simulated/wall,
/area/medical/reception)
-"aDm" = (
-/obj/structure/table/rack,
-/obj/item/device/defib_kit/compact/loaded,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
"aDn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4;
@@ -17138,28 +12793,6 @@
/obj/effect/map_helper/airlock/door/simple,
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"aDE" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/fancy/cigarettes{
- pixel_y = 2
- },
-/obj/item/weapon/deck/cards,
-/obj/item/weapon/book/codex,
-/obj/machinery/atm{
- pixel_y = 30
- },
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/floor_decal/corner_steel_grid,
-/turf/simulated/floor/tiled,
-/area/teleporter/departing)
"aDF" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/cups,
@@ -17182,28 +12815,12 @@
/turf/simulated/floor/tiled/white,
/area/medical/reception)
"aDG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/teleporter/departing)
+/turf/simulated/floor,
+/area/tether/station/stairs_three)
"aDH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
@@ -17217,27 +12834,17 @@
dir = 9;
pixel_y = 0
},
-/turf/simulated/floor/tiled,
-/area/teleporter/departing)
+/turf/simulated/floor,
+/area/tether/station/stairs_three)
"aDI" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/teleporter/departing)
+/turf/simulated/floor,
+/area/tether/station/stairs_three)
"aDJ" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled,
-/area/teleporter/departing)
+/turf/simulated/floor,
+/area/tether/station/stairs_three)
"aDK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -17266,31 +12873,6 @@
/obj/structure/cable,
/turf/simulated/floor/tiled,
/area/tether/station/stairs_three)
-"aDM" = (
-/obj/machinery/mech_recharger,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -28;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
"aDN" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -17304,74 +12886,6 @@
/obj/structure/table/steel,
/turf/simulated/floor/tiled,
/area/security/security_processing)
-"aDQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/landmark/start{
- name = "Paramedic"
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aDR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aDS" = (
-/obj/structure/table/rack,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/medical/emt,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/head/helmet/space/void/medical/emt,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aDT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/obj/random/toy,
-/obj/structure/closet,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/railing{
- dir = 4;
- icon_state = "railing0"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"aDU" = (
/obj/machinery/power/smes/buildable{
RCon_tag = "Substation - Medical";
@@ -17389,18 +12903,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/medical)
-"aDV" = (
-/obj/structure/table/woodentable,
-/obj/item/device/taperecorder{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/device/radio/intercom{
- dir = 2;
- pixel_y = -24
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
"aDW" = (
/obj/machinery/power/terminal{
dir = 8
@@ -17412,59 +12914,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/medical)
-"aDX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
-"aDY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
-"aDZ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
-"aEa" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
"aEb" = (
/obj/structure/cable/green{
d1 = 2;
@@ -17576,12 +13025,6 @@
"aEj" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/shutters{
- dir = 4;
- id = "chemistry";
- layer = 3.1;
- name = "Chemistry Shutters"
- },
/obj/machinery/door/window/eastright{
name = "Chemistry"
},
@@ -17592,6 +13035,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "spacechemistry";
+ layer = 3.1;
+ name = "Chemistry Shutters"
+ },
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
"aEk" = (
@@ -17623,8 +13072,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/sortjunction{
- name = "Chemistry";
- sortType = "Chemistry"
+ name = "Space Chemistry";
+ sortType = "Space Chemistry"
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
@@ -17744,41 +13193,31 @@
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
"aEA" = (
-/obj/structure/closet/wardrobe/xenos,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24;
pixel_y = 0
},
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/teleporter/departing)
+/turf/simulated/floor,
+/area/tether/station/stairs_three)
"aEB" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 9
},
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"aEC" = (
-/obj/effect/landmark{
- name = "JoinLateGateway"
- },
/obj/effect/floor_decal/techfloor/orange{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"aED" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 5
},
-/obj/machinery/computer/cryopod/gateway{
- pixel_x = 32
- },
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"aEE" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -17803,12 +13242,6 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 1
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 1
- },
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aEH" = (
@@ -17847,68 +13280,11 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"aEK" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- name = "EMT Bay"
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aEL" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aEM" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start{
- name = "Paramedic"
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
"aEN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"aEO" = (
-/obj/structure/table/rack,
-/obj/item/weapon/rig/medical/equipped,
-/obj/structure/fireaxecabinet{
- pixel_x = 32
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aEP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/trash_pile,
-/obj/structure/railing{
- dir = 4;
- icon_state = "railing0"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"aEQ" = (
/obj/machinery/alarm{
dir = 8;
@@ -17975,42 +13351,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/medical)
-"aEV" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
-"aEW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/engineering{
- name = "Cargo Substation";
- req_one_access = list(11,24,50)
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/substation/cargo)
-"aEX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/engineering{
- name = "Cargo Substation";
- req_one_access = list(11,24,50)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/substation/cargo)
"aEY" = (
/obj/structure/cable/green{
d1 = 1;
@@ -18148,17 +13488,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"aFi" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/camera/network/medbay{
- dir = 9;
- icon_state = "camera"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aFj" = (
/turf/simulated/wall,
/area/quartermaster/warehouse)
@@ -18228,47 +13557,33 @@
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"aFo" = (
-/obj/structure/closet/wardrobe/black,
/obj/machinery/alarm{
dir = 1;
icon_state = "alarm0";
pixel_y = -22
},
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 6
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/teleporter/departing)
+/obj/structure/table,
+/turf/simulated/floor,
+/area/tether/station/stairs_three)
"aFp" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"aFq" = (
-/obj/machinery/cryopod/robot/door/gateway,
+/obj/structure/frame,
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"aFr" = (
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"aFs" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 4
},
-/obj/machinery/light{
- dir = 4
- },
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"aFt" = (
/obj/machinery/alarm{
dir = 4;
@@ -18284,29 +13599,6 @@
},
/turf/simulated/open,
/area/tether/station/stairs_three)
-"aFv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/landmark/start{
- name = "Paramedic"
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aFw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
"aFx" = (
/obj/structure/cable/green{
d1 = 4;
@@ -18318,42 +13610,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"aFy" = (
-/obj/structure/table/rack,
-/obj/item/device/suit_cooling_unit{
- pixel_y = -5
- },
-/obj/item/device/suit_cooling_unit{
- pixel_y = -5
- },
-/obj/item/device/radio/intercom/department/medbay{
- dir = 4;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aFz" = (
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/heads/cmo)
"aFA" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -18377,20 +13633,6 @@
},
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"aFC" = (
-/obj/machinery/power/terminal,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/cable,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/substation/cargo)
"aFD" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 8;
@@ -18543,57 +13785,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"aFQ" = (
-/obj/structure/closet/secure_closet/paramedic,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aFR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aFS" = (
-/obj/structure/dispenser{
- phorontanks = 0
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
"aFT" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/paleblue/border,
@@ -18611,66 +13802,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"aFU" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Medical Officer's Desk";
- departmentType = 5;
- name = "Chief Medical Officer RC";
- pixel_x = 0;
- pixel_y = 30
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aFV" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aFW" = (
-/obj/machinery/keycard_auth{
- pixel_y = 28
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aFX" = (
-/obj/item/modular_computer/console/preset/command{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aFY" = (
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Cargo Subgrid";
- name_tag = "Cargo Subgrid"
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable/green,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/substation/cargo)
"aFZ" = (
/obj/structure/closet/wardrobe/chemistry_white,
/obj/item/weapon/storage/box/pillbottles,
@@ -18750,25 +13881,17 @@
dir = 10
},
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"aGh" = (
/obj/effect/floor_decal/techfloor/orange,
-/obj/machinery/camera/network/tether{
- dir = 1
- },
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"aGj" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 6
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"aGk" = (
/turf/simulated/open,
/area/tether/station/stairs_three)
@@ -18794,7 +13917,7 @@
},
/obj/machinery/button/remote/blast_door{
desc = "A remote control-switch for shutters.";
- id = "chemistry";
+ id = "spacechemistry";
name = "Chemistry Shutters";
pixel_x = -6;
pixel_y = -24;
@@ -19005,119 +14128,9 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"aGy" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aGz" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aGA" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorblack/corner2,
-/obj/effect/floor_decal/corner/paleblue/bordercorner2,
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aGB" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
"aGC" = (
/turf/simulated/wall,
/area/maintenance/substation/cargo)
-"aGD" = (
-/obj/machinery/photocopier,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aGE" = (
-/obj/structure/bed/chair/office/light,
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- id = "medbayquar";
- name = "Medbay Emergency Lockdown Control";
- pixel_x = -36;
- pixel_y = 0;
- req_access = list(5)
- },
-/obj/machinery/button/remote/airlock{
- desc = "A remote control switch for the CMO's office.";
- id = "cmodoor";
- name = "CMO Office Door Control";
- pixel_x = -36;
- pixel_y = -8
- },
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- id = "virologyquar";
- name = "Virology Emergency Lockdown Control";
- pixel_x = -28;
- pixel_y = 0;
- req_access = list(5)
- },
-/obj/machinery/button/windowtint{
- id = "cmo_office";
- pixel_x = -26;
- pixel_y = -10
- },
-/obj/effect/landmark/start{
- name = "Chief Medical Officer"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aGF" = (
/obj/structure/closet/crate,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -19159,6 +14172,9 @@
dir = 1
},
/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"aGJ" = (
@@ -19236,32 +14252,6 @@
},
/turf/simulated/floor,
/area/quartermaster/storage)
-"aGS" = (
-/obj/structure/filingcabinet,
-/obj/item/device/radio/intercom/department/medbay{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aGT" = (
-/obj/structure/table/glass,
-/obj/machinery/photocopier/faxmachine{
- department = "CMO's Office"
- },
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27;
- pixel_y = 0
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aGU" = (
/obj/structure/medical_stand,
/obj/machinery/power/apc{
@@ -19349,47 +14339,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"aHa" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- name = "EMT Bay"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/medical/medbay_emt_bay)
-"aHb" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder/white_cmo,
-/obj/item/weapon/stamp/cmo,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aHc" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aHd" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/skills{
- dir = 8;
- icon_state = "laptop";
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/machinery/computer/med_data/laptop{
- dir = 8;
- pixel_x = -4;
- pixel_y = 4
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aHe" = (
/obj/machinery/camera/network/cargo{
dir = 4
@@ -19654,9 +14603,6 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 1
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
/obj/effect/floor_decal/borderfloorwhite/corner2{
dir = 1
},
@@ -19803,6 +14749,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
"aHF" = (
@@ -19909,11 +14856,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -19933,22 +14875,8 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 5
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 4
- },
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"aHN" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "cmo_office"
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/heads/cmo)
"aHO" = (
/obj/machinery/light{
dir = 1
@@ -19967,40 +14895,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"aHP" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/weapon/storage/box,
-/obj/item/weapon/storage/box{
- pixel_x = 5;
- pixel_y = -2
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"aHQ" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aHR" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aHS" = (
/obj/structure/cable/green{
d1 = 1;
@@ -20129,21 +15023,14 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aIc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 8;
- icon_state = "map"
- },
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aId" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 9;
- icon_state = "intact"
- },
-/obj/effect/floor_decal/industrial/warning{
+/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
},
/turf/simulated/floor/tiled/white,
@@ -20155,10 +15042,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1;
- icon_state = "warningcorner"
- },
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aIf" = (
@@ -20177,11 +15060,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -20197,11 +15075,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aIh" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -20214,11 +15087,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aIi" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -20231,11 +15099,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aIj" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -20252,13 +15115,13 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aIk" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aIl" = (
@@ -20377,56 +15240,9 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"aIw" = (
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"aIx" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window/southright{
- name = "Runtime";
- req_one_access = list(40)
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/mob/living/simple_mob/animal/passive/cat/runtime,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
"aIy" = (
/turf/simulated/wall,
/area/medical/sleeper)
-"aIz" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aIA" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aIB" = (
/obj/machinery/vending/medical{
dir = 4
@@ -20729,13 +15545,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"aIU" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2,
-/obj/effect/floor_decal/corner/paleblue/bordercorner2,
-/turf/simulated/floor/tiled/white,
-/area/medical/sleeper)
"aIV" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
@@ -20763,7 +15572,7 @@
dir = 4;
id = "QMLoad"
},
-/turf/simulated/floor,
+/turf/simulated/floor/tiled,
/area/quartermaster/storage)
"aIY" = (
/obj/machinery/conveyor{
@@ -20830,52 +15639,11 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"aJf" = (
-/obj/structure/flora/pottedplant/stoutbush,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"aJg" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"aJh" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aJi" = (
/obj/machinery/atmospherics/unary/cryo_cell,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/medical/sleeper)
-"aJj" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aJk" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -21106,52 +15874,19 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aJF" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aJG" = (
/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/command{
- id_tag = "cmodoor";
- name = "Chief Medical Officer";
- req_access = list(40);
- req_one_access = list()
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
+/obj/machinery/door/airlock/maintenance/medical,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"aJH" = (
/obj/machinery/light/small{
dir = 8;
@@ -21167,30 +15902,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
-"aJJ" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
"aJK" = (
/obj/structure/closet/crate/medical,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -21237,73 +15948,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"aJP" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"aJQ" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aJR" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aJS" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aJT" = (
/obj/structure/cable/green{
d1 = 1;
@@ -21367,20 +16011,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"aJZ" = (
-/obj/structure/table/standard,
-/obj/random/medical,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
"aKa" = (
/obj/structure/closet/secure_closet/medical3,
/obj/item/weapon/soap/nanotrasen,
@@ -21392,38 +16022,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"aKb" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
-"aKc" = (
-/obj/structure/closet/wardrobe/virology_white,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
"aKd" = (
/obj/structure/closet/secure_closet/medical3,
/obj/item/weapon/soap/nanotrasen,
@@ -21583,14 +16181,8 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aKt" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -21605,63 +16197,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"aKu" = (
-/obj/structure/flora/pottedplant/stoutbush,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"aKv" = (
-/obj/structure/closet/secure_closet/CMO,
-/obj/item/weapon/storage/belt/medical,
-/obj/item/device/flashlight/pen,
-/obj/item/clothing/accessory/stethoscope,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/device/defib_kit/compact/combat/loaded,
-/obj/item/weapon/cmo_disk_holder,
-/obj/item/weapon/storage/secure/briefcase/ml3m_pack_cmo,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"aKw" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aKx" = (
-/obj/structure/bed/psych{
- name = "couch"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aKy" = (
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aKz" = (
/obj/structure/railing{
dir = 8
@@ -21672,51 +16207,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
-"aKA" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/gloves{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/masks,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aKB" = (
-/obj/machinery/computer/arcade{
- dir = 8
- },
-/obj/structure/sign/nosmoking_1{
- pixel_x = 32
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aKC" = (
-/obj/structure/dogbed{
- desc = "Runtime's bed. Some of her disappointment seems to have rubbed off on it.";
- name = "cat bed"
- },
-/obj/item/toy/plushie/mouse/fluff,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 9
- },
-/obj/machinery/ai_status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
"aKD" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
@@ -21841,14 +16331,8 @@
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aKQ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -21894,6 +16378,7 @@
/obj/machinery/door/firedoor/border_only,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
"aKU" = (
@@ -21997,13 +16482,6 @@
/obj/machinery/disposal,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"aLf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aLg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -22096,24 +16574,17 @@
/turf/simulated/floor/plating,
/area/medical/medbay_primary_storage)
"aLq" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 4;
- name = "CMO Office";
- sortType = "CMO Office"
- },
/obj/effect/floor_decal/borderfloorwhite/corner{
dir = 4
},
/obj/effect/floor_decal/corner/paleblue/bordercorner{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aLr" = (
@@ -22275,7 +16746,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals10,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
"aLJ" = (
@@ -22365,11 +16835,6 @@
/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"aLS" = (
-/obj/machinery/camera/network/security,
-/mob/living/simple_mob/animal/sif/shantak/scruffy,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aLT" = (
/obj/effect/landmark/start{
name = "Paramedic"
@@ -22780,52 +17245,15 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- icon_state = "map-scrubbers"
- },
/obj/structure/disposalpipe/junction{
dir = 4;
icon_state = "pipe-j2"
},
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/turf/simulated/floor/tiled/white,
-/area/medical/sleeper)
-"aMt" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/sleeper)
-"aMu" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
@@ -22992,16 +17420,6 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medbreak)
-"aMJ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/medical/sleeper)
"aMK" = (
/turf/simulated/open,
/area/medical/sleeper)
@@ -23217,51 +17635,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 9
- },
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"aNd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/sleeper)
-"aNe" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/weapon/virusdish/random,
-/obj/item/weapon/virusdish/random,
-/obj/item/weapon/virusdish/random,
-/obj/item/weapon/virusdish/random,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aNg" = (
/obj/structure/bed/chair{
dir = 1
@@ -23360,23 +17737,6 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medbreak)
-"aNp" = (
-/obj/structure/closet/secure_closet/detective,
-/obj/item/weapon/reagent_containers/spray/pepper,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/device/camera{
- desc = "A one use - polaroid camera. 30 photos left.";
- name = "detectives camera";
- pictures_left = 30;
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/machinery/camera/network/security{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
"aNq" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/box/donkpockets,
@@ -23387,50 +17747,6 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medbreak)
-"aNr" = (
-/turf/simulated/wall/r_wall,
-/area/medical/virologyaccess)
-"aNs" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- autoclose = 0;
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "virology_airlock_exterior";
- locked = 1;
- name = "Virology Exterior Airlock";
- req_access = list(39)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "virologyquar";
- name = "Virology Emergency Quarantine Blast Doors";
- opacity = 0
- },
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = -24;
- pixel_y = 0;
- req_access = list(39)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
-"aNt" = (
-/obj/structure/sign/department/virology,
-/turf/simulated/wall/r_wall,
-/area/medical/virologyaccess)
"aNu" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -23504,19 +17820,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"aNy" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aNz" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/structure/disposalpipe/segment,
@@ -23532,38 +17835,6 @@
/obj/item/weapon/storage/mre/random,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medbreak)
-"aNB" = (
-/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- pixel_x = 2;
- pixel_y = 0
- },
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/obj/structure/curtain/open/shower/medical,
-/turf/simulated/floor/tiled/steel,
-/area/medical/virologyaccess)
-"aNC" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
"aND" = (
/obj/structure/cable/green{
d1 = 1;
@@ -23639,60 +17910,13 @@
},
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
-"aNJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aNK" = (
-/obj/structure/closet/l3closet/virology,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
"aNL" = (
/turf/simulated/wall/rshull,
/area/shuttle/medivac/engines)
-"aNN" = (
-/obj/structure/sink{
- dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
"aNO" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/bluegrid,
/area/ai_core_foyer)
-"aNP" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
"aNQ" = (
/obj/structure/cable/green{
d1 = 1;
@@ -23717,15 +17941,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"aNR" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/red{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aNU" = (
/obj/structure/cable/green{
d1 = 1;
@@ -23743,30 +17958,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"aNW" = (
-/turf/simulated/wall/r_wall,
-/area/medical/virology)
-"aNX" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- autoclose = 0;
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "virology_airlock_interior";
- locked = 1;
- name = "Virology Interior Airlock";
- req_access = list(39)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
"aNY" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -23850,115 +18041,11 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
-"aOj" = (
-/obj/structure/bed/padded,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOk" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aOl" = (
/obj/structure/grille,
-/obj/structure/window/reinforced/full,
+/obj/structure/foamedmetal,
/turf/simulated/floor/plating,
-/area/medical/virology)
-"aOm" = (
-/obj/structure/table/glass,
-/obj/item/weapon/hand_labeler,
-/obj/item/device/radio{
- pixel_x = -4
- },
-/obj/item/weapon/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Virology. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Virology Cleaner";
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/machinery/embedded_controller/radio/airlock/access_controller{
- id_tag = "virology_airlock_control";
- name = "Virology Access Console";
- pixel_x = 8;
- pixel_y = 24;
- tag_exterior_door = "virology_airlock_exterior";
- tag_interior_door = "virology_airlock_interior"
- },
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- id = "virologyquar";
- name = "Virology Emergency Lockdown Control";
- pixel_x = -2;
- pixel_y = 28;
- req_access = list(5)
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOn" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOo" = (
-/obj/structure/sink{
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOp" = (
-/obj/machinery/disease2/incubator,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOq" = (
-/obj/machinery/computer/diseasesplicer,
-/obj/item/device/radio/intercom/department/medbay{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOr" = (
-/obj/structure/closet/l3closet/virology,
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = -8;
- pixel_y = -28;
- req_access = list(39)
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyaccess)
+/area/maintenance/station/cargo)
"aOu" = (
/obj/machinery/firealarm{
dir = 4;
@@ -23991,13 +18078,6 @@
"aOx" = (
/turf/simulated/open,
/area/tether/exploration)
-"aOy" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aOz" = (
/obj/structure/table/rack/shelf,
/obj/item/weapon/storage/backpack/parachute{
@@ -24018,81 +18098,6 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
-"aOA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOB" = (
-/obj/machinery/door/window/eastright{
- name = "Virology Isolation Room One";
- req_one_access = list(39)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOD" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOE" = (
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOF" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOG" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- dir = 8;
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/requests_console{
- department = "Virology";
- name = "Virology Requests Console";
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aOL" = (
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
@@ -24133,73 +18138,6 @@
},
/turf/simulated/floor/wood,
/area/security/breakroom)
-"aOR" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/fancy/vials,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOS" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOT" = (
-/obj/machinery/disease2/isolator,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOU" = (
-/obj/machinery/computer/centrifuge,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOV" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 8
- },
-/obj/item/device/radio{
- anchored = 1;
- broadcasting = 0;
- canhear_range = 7;
- frequency = 1487;
- icon = 'icons/obj/items.dmi';
- icon_state = "red_phone";
- listening = 1;
- name = "Virology Emergency Phone";
- pixel_x = -6;
- pixel_y = 8
- },
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/obj/structure/reagent_dispensers/virusfood{
- pixel_x = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aOW" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/camera/network/security{
- dir = 10;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"aOX" = (
/obj/effect/floor_decal/techfloor{
dir = 8
@@ -24217,22 +18155,6 @@
},
/turf/simulated/floor/bluegrid,
/area/ai_core_foyer)
-"aPa" = (
-/obj/item/weapon/stool/padded,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aPb" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aPc" = (
/obj/machinery/ai_slipper{
icon_state = "motion0"
@@ -24242,19 +18164,6 @@
},
/turf/simulated/floor/bluegrid,
/area/ai_core_foyer)
-"aPd" = (
-/obj/structure/table/glass,
-/obj/item/device/antibody_scanner{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/device/antibody_scanner,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aPe" = (
/obj/structure/cable/cyan{
d1 = 1;
@@ -24269,29 +18178,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ai_core_foyer)
-"aPf" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/syringes{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/beakers,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aPg" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aPh" = (
/obj/machinery/ai_slipper{
icon_state = "motion0"
@@ -24301,118 +18187,6 @@
},
/turf/simulated/floor/bluegrid,
/area/ai_core_foyer)
-"aPi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aPj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aPk" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/firealarm{
- dir = 4;
- layer = 3.3;
- pixel_x = 26
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"aPl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aPm" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 10
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/sign/deathsposal{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aPn" = (
-/obj/machinery/door/window/eastright{
- name = "Virology Isolation Room Two";
- req_one_access = list(39)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aPo" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aPp" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aPq" = (
/obj/machinery/camera/network/security{
dir = 10;
@@ -24428,16 +18202,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ai_core_foyer)
-"aPs" = (
-/obj/machinery/atmospherics/tvalve/bypass,
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/sign/nosmoking_1{
- pixel_x = 32
- },
-/turf/simulated/floor/plating,
-/area/medical/virology)
"aPt" = (
/obj/structure/bed/chair{
dir = 1
@@ -24450,44 +18214,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"aPu" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aPv" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aPw" = (
-/obj/machinery/disease2/diseaseanalyser,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aPx" = (
/obj/machinery/camera/network/exploration{
dir = 5;
@@ -24495,24 +18221,6 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
-"aPy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/medical/virology)
-"aPz" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 140;
- external_pressure_bound_default = 140;
- icon_state = "map_vent_out";
- pressure_checks = 1;
- pressure_checks_default = 1;
- use_power = 1
- },
-/turf/simulated/floor/airless,
-/area/medical/virology)
"aPA" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/secure_closet/freezer/money,
@@ -24524,9 +18232,6 @@
/obj/item/weapon/storage/mrebag/pill/sleevingcure,
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"aPB" = (
-/turf/simulated/wall/r_wall,
-/area/medical/virologyisolation)
"aPC" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -24534,39 +18239,6 @@
},
/turf/simulated/floor/bluegrid,
/area/ai_core_foyer)
-"aPD" = (
-/obj/machinery/smartfridge/secure/virology,
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 5
- },
-/obj/machinery/camera/network/medbay{
- dir = 9;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aPE" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
"aPF" = (
/obj/effect/floor_decal/techfloor{
dir = 4
@@ -24578,105 +18250,9 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/bluegrid,
/area/ai_core_foyer)
-"aPG" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPH" = (
-/obj/structure/sink{
- pixel_y = 26
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPI" = (
-/obj/structure/reagent_dispensers/water_cooler/full{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/camera/network/medbay{
- dir = 4;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPJ" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/green,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
"aPK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/wall/r_wall,
-/area/medical/virologyisolation)
-"aPL" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/turf/simulated/floor/airless,
-/area/medical/virologyisolation)
-"aPM" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/medical/virologyisolation)
-"aPN" = (
-/obj/structure/table/standard,
-/obj/item/weapon/soap/nanotrasen,
-/obj/item/weapon/storage/box/cups,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPO" = (
-/obj/item/weapon/stool/padded,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
+/area/maintenance/station/cargo)
"aPP" = (
/obj/structure/cable/green{
d1 = 1;
@@ -24687,72 +18263,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor,
/area/tether/exploration)
-"aPQ" = (
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPR" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/green,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPS" = (
-/obj/machinery/vending/snack{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPT" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPU" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPV" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/green,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPW" = (
-/obj/machinery/disposal,
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/sign/deathsposal{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPX" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
-"aPY" = (
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/tiled/white,
-/area/medical/virologyisolation)
"aPZ" = (
/obj/structure/cable/green{
d1 = 1;
@@ -24768,11 +18278,9 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"aQa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
+/obj/structure/barricade,
/turf/simulated/floor/plating,
-/area/medical/virologyisolation)
+/area/maintenance/station/cargo)
"aQb" = (
/obj/machinery/camera/network/exploration{
dir = 9;
@@ -24797,6 +18305,7 @@
dir = 1;
name = "security camera"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/office)
"aQd" = (
@@ -24890,43 +18399,6 @@
},
/turf/simulated/open,
/area/security/brig)
-"aQm" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/camera/network/command{
- dir = 4;
- icon_state = "camera"
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"aQn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/door/window/southright{
- req_access = list(58)
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"aQo" = (
-/obj/item/weapon/storage/secure/safe{
- pixel_x = -28
- },
-/obj/structure/table/glass,
-/obj/item/weapon/storage/lockbox/vials,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/machinery/camera/network/medbay{
- dir = 4;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
"aQp" = (
/obj/effect/landmark{
name = "morphspawn"
@@ -24956,21 +18428,9 @@
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/refinery)
"aQs" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_medical{
- name = "Virology Laboratory";
- req_access = list(39)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
+/obj/structure/foamedmetal,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"aQt" = (
/turf/simulated/wall,
/area/tether/exploration)
@@ -24980,14 +18440,6 @@
/obj/random/maintenance/medical,
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
-"aQv" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"aQw" = (
/obj/effect/floor_decal/techfloor{
dir = 8
@@ -25035,10 +18487,7 @@
/area/maintenance/station/cargo)
"aQC" = (
/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
-"aQD" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
"aQE" = (
@@ -25051,15 +18500,6 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medbreak)
-"aQF" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"aQG" = (
/turf/simulated/wall,
/area/quartermaster/belterdock)
@@ -25126,11 +18566,6 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
-"aQM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"aQN" = (
/obj/machinery/light/small{
dir = 1
@@ -25141,31 +18576,6 @@
/obj/structure/railing,
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
-"aQO" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
-"aQP" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
-"aQQ" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"aQR" = (
/obj/machinery/light/small{
dir = 1
@@ -25186,15 +18596,6 @@
/obj/effect/landmark/map_data/virgo3b,
/turf/space,
/area/space)
-"aQU" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/deployable/barrier,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"aQV" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/light/small{
@@ -25204,38 +18605,6 @@
/obj/machinery/alarm{
pixel_y = 22
},
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "Cell 1";
- name = "Cell 1 Door";
- pixel_x = -24;
- pixel_y = 7;
- req_access = list(1,2)
- },
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "Cell 2";
- name = "Cell 2 Door";
- pixel_x = -36;
- pixel_y = 7;
- req_access = list(1,2)
- },
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "Cell 3";
- name = "Cell 3 Door";
- pixel_x = -24;
- pixel_y = -7;
- req_access = list(1,2)
- },
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "Cell 4";
- name = "Cell 4 Door";
- pixel_x = -36;
- pixel_y = -7;
- req_access = list(1,2)
- },
/obj/effect/floor_decal/borderfloor/shifted{
dir = 1;
icon_state = "borderfloor_shifted"
@@ -25248,11 +18617,6 @@
dir = 5;
icon_state = "corner_white"
},
-/obj/machinery/computer/general_air_control/fuel_injection{
- device_tag = "riot_inject";
- frequency = 1442;
- name = "Riot Control Console"
- },
/turf/simulated/floor/tiled,
/area/security/observation)
"aQW" = (
@@ -25280,17 +18644,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
-"aQZ" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/cargo,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"aRa" = (
/obj/structure/railing,
/obj/structure/railing{
@@ -25306,32 +18659,6 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
-"aRc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing{
- dir = 1;
- icon_state = "railing0"
- },
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"aRd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"aRe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing,
-/turf/simulated/floor,
-/area/maintenance/station/elevator)
"aRf" = (
/obj/effect/floor_decal/borderfloor/corner2{
dir = 8
@@ -25378,17 +18705,6 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"aRl" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/random/maintenance/clean,
-/obj/random/tech_supply,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"aRm" = (
/obj/effect/floor_decal/techfloor{
dir = 6
@@ -25449,26 +18765,6 @@
},
/turf/simulated/floor,
/area/tether/exploration)
-"aRq" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green{
- dir = 2;
- pixel_x = -4;
- pixel_y = 12
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"aRr" = (
-/obj/random/tech_supply,
-/obj/random/tech_supply,
-/obj/random/tool,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"aRs" = (
/obj/machinery/button/windowtint{
id = "sec_processing";
@@ -25501,16 +18797,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/ai)
-"aRx" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"aRy" = (
/obj/structure/railing{
dir = 4
@@ -25526,17 +18812,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/ai)
-"aRz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
"aRA" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -25547,27 +18822,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/ai)
-"aRB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"aRC" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"aRD" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/rust,
@@ -25604,17 +18858,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/ai)
-"aRG" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"aRH" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -25663,13 +18906,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/ai)
-"aRN" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"aRO" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -25700,28 +18936,6 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/station/ai)
-"aRR" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/cargo,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"aRS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/cargo)
"aRT" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -25736,18 +18950,6 @@
/obj/random/junk,
/turf/simulated/floor,
/area/maintenance/cargo)
-"aRV" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"aRW" = (
-/obj/item/stack/material/steel{
- amount = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"aRX" = (
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
@@ -25763,28 +18965,25 @@
/turf/simulated/floor,
/area/maintenance/station/ai)
"aSa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/security/eva)
+/area/maintenance/station/sec_upper)
"aSb" = (
/obj/structure/railing,
/obj/random/trash,
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/station/ai)
-"aSc" = (
-/obj/structure/table/woodentable,
-/obj/item/device/megaphone,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"aSd" = (
/obj/structure/railing,
/obj/structure/railing{
@@ -25826,16 +19025,6 @@
},
/turf/simulated/floor,
/area/maintenance/cargo)
-"aSh" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/cargo)
"aSi" = (
/obj/structure/catwalk,
/obj/structure/cable{
@@ -25852,32 +19041,11 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
-"aSk" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"aSl" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"aSm" = (
/obj/random/toy,
/obj/structure/closet,
/turf/simulated/floor,
/area/maintenance/station/ai)
-"aSn" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 1;
- icon_state = "bulb1"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"aSo" = (
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
@@ -26012,16 +19180,6 @@
},
/turf/simulated/floor/carpet,
/area/security/breakroom)
-"aSD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
"aSE" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
@@ -26038,20 +19196,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/security_lockerroom)
-"aSF" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
"aSH" = (
/turf/simulated/wall,
/area/storage/emergency_storage/emergency3)
@@ -26118,11 +19262,9 @@
/turf/simulated/floor,
/area/maintenance/station/elevator)
"aSP" = (
-/obj/item/modular_computer/console/preset/command{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
+/obj/structure/firedoor_assembly,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"aSR" = (
/obj/structure/plasticflaps/mining,
/obj/machinery/conveyor{
@@ -26421,17 +19563,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
-"aTD" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/computer/skills{
- dir = 8;
- icon_state = "laptop"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aTE" = (
/obj/machinery/atmospherics/binary/passive_gate/on{
dir = 8
@@ -26531,21 +19662,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
-"aTO" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/storage/secure/safe{
- pixel_x = -30
- },
-/obj/item/clothing/accessory/permit/gun,
-/obj/item/clothing/accessory/permit/gun,
-/obj/item/clothing/accessory/permit/gun,
-/obj/item/weapon/paper{
- desc = "";
- info = "In the event that more weapon permits are needed, please fax Central Command to request more. Please also include a reason for the request. Blank permits will be shipped to cargo for pickup. If long-term permits are desired, please contact your NanoTrasen Employee Representitive for more information.";
- name = "note from CentCom about permits"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"aTP" = (
/obj/structure/window/reinforced,
/obj/structure/grille,
@@ -26596,21 +19712,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
-"aTW" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aTX" = (
/obj/machinery/alarm{
dir = 8;
@@ -26692,51 +19793,20 @@
/obj/item/device/binoculars,
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
-"aUi" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/item/weapon/bone,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"aUj" = (
-/obj/machinery/papershredder,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
-"aUk" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aUl" = (
/obj/machinery/light,
/obj/structure/stasis_cage,
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"aUn" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
/area/security/hallway)
"aUo" = (
@@ -26770,8 +19840,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor,
-/area/security/eva)
+/area/maintenance/station/sec_upper)
"aUq" = (
/obj/structure/cable/green{
d2 = 2;
@@ -26809,10 +19884,6 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medbreak)
-"aUu" = (
-/obj/machinery/computer/security,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"aUv" = (
/obj/machinery/computer/shuttle_control/belter{
dir = 1
@@ -26835,17 +19906,6 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medbreak)
-"aUy" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Security's Desk";
- departmentType = 5;
- name = "Head of Security RC";
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"aUA" = (
/obj/machinery/computer/roguezones{
dir = 1
@@ -26979,22 +20039,6 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/airless,
/area/quartermaster/belterdock)
-"aVe" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- icon_state = "intact-supply"
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aVh" = (
/obj/machinery/light/small{
dir = 1
@@ -27060,25 +20104,6 @@
"aVo" = (
/turf/simulated/shuttle/wall,
/area/shuttle/belter)
-"aVp" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aVq" = (
/obj/machinery/door/unpowered/shuttle,
/turf/simulated/shuttle/floor/yellow/airless,
@@ -27181,19 +20206,6 @@
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar)
-"aVK" = (
-/obj/structure/table/woodentable,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/keycard_auth{
- pixel_y = 32
- },
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"aVL" = (
/obj/structure/grille,
/obj/structure/lattice,
@@ -27316,16 +20328,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/refinery)
-"aWh" = (
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aWi" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -27397,9 +20399,6 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medical_restroom)
-"aWw" = (
-/turf/simulated/wall,
-/area/crew_quarters/heads/cmo)
"aWz" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1;
@@ -27448,14 +20447,6 @@
},
/turf/simulated/floor/plating,
/area/shuttle/excursion/cargo)
-"aWH" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/structure/dogbed,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aWI" = (
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/refinery)
@@ -27490,18 +20481,6 @@
/obj/effect/floor_decal/industrial/warning/full,
/turf/simulated/floor/reinforced,
/area/shuttle/excursion/general)
-"aWN" = (
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aWO" = (
/obj/machinery/conveyor{
dir = 2;
@@ -27741,10 +20720,6 @@
/obj/item/clothing/head/helmet/space/void/pilot,
/turf/simulated/floor/tiled/eris/techmaint_perforated,
/area/shuttle/excursion/general)
-"aXG" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/security/eva)
"aXH" = (
/obj/machinery/shipsensors{
dir = 4
@@ -27778,10 +20753,6 @@
/obj/structure/sign/nosmoking_1,
/turf/simulated/wall/rshull,
/area/shuttle/medivac/general)
-"aXM" = (
-/obj/structure/table/glass,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aXO" = (
/obj/structure/cable/green{
d1 = 2;
@@ -27862,9 +20833,6 @@
"aYa" = (
/turf/simulated/wall/rshull,
/area/shuttle/medivac/general)
-"aYb" = (
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aYc" = (
/obj/structure/sign/redcross,
/turf/simulated/wall/rshull,
@@ -27928,15 +20896,6 @@
/obj/effect/floor_decal/corner/brown/border,
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/gear)
-"aYu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door_timer/tactical_pet_storage{
- pixel_x = 32;
- pixel_y = 34
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"aYw" = (
/obj/structure/cable/green{
d1 = 4;
@@ -27945,12 +20904,6 @@
},
/turf/simulated/floor/reinforced,
/area/tether/exploration)
-"aYx" = (
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aYz" = (
/obj/structure/window/reinforced,
/obj/structure/grille,
@@ -27966,10 +20919,6 @@
},
/turf/space,
/area/space)
-"aYC" = (
-/obj/effect/floor_decal/carpet,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
"aYD" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -28065,20 +21014,6 @@
"aYT" = (
/turf/simulated/wall,
/area/security/breakroom)
-"aYV" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
-"aYW" = (
-/obj/structure/lattice,
-/obj/structure/sign/warning/secure_area{
- pixel_x = 32
- },
-/turf/space,
-/area/space)
"aZf" = (
/obj/effect/floor_decal/industrial/loading{
dir = 8;
@@ -28145,10 +21080,6 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/belterdock/refinery)
-"aZs" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/cmo)
"aZu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -28238,15 +21169,9 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar)
-"aZM" = (
-/obj/structure/table/woodentable,
-/obj/item/device/radio/off,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"aZO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
-/area/security/eva)
+/area/maintenance/station/sec_upper)
"aZP" = (
/obj/structure/catwalk,
/obj/effect/landmark{
@@ -28670,32 +21595,24 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"bxz" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/security/armory{
- color = "";
- desc = "It opens and closes. Only accessible on Security Level Red.";
- id_tag = "armory_red";
- req_one_access = list(3);
- secured_wires = 1
+"btZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/turf/simulated/mineral/vacuum,
+/area/mine/explored/upper_level)
"bDD" = (
/obj/machinery/sleep_console,
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/excursion/general)
+"bFB" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/space,
+/area/space)
"bFX" = (
/obj/machinery/power/port_gen/pacman/mrs,
/obj/structure/cable/yellow{
@@ -28714,28 +21631,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/engines)
-"bJB" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/security{
- name = "Armory Storage";
- secured_wires = 1
- },
-/obj/machinery/door/blast/regular{
- dir = 1;
- id = "armoryblue";
- name = "Blue Armory"
- },
-/obj/structure/sign/department/armory{
- color = "#3385ff";
- name = "BLUE ARMORY";
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"bNj" = (
/obj/effect/floor_decal/corner/blue{
dir = 10;
@@ -28838,10 +21733,12 @@
/turf/simulated/floor/tiled/eris/steel/cyancorner,
/area/shuttle/medivac/cockpit)
"cay" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
/turf/simulated/floor/tiled,
@@ -29038,20 +21935,6 @@
/obj/machinery/computer/ship/sensors,
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/shuttle/excursion/cockpit)
-"dtK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
"dvH" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -29084,19 +21967,6 @@
"dAW" = (
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/cockpit)
-"dCf" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/machinery/camera/network/security{
- dir = 5;
- icon_state = "camera"
- },
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"dFr" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -29134,6 +22004,10 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/excursion/general)
+"dLI" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/quartermaster/storage)
"dRj" = (
/obj/structure/table/standard,
/obj/random/medical,
@@ -29291,26 +22165,6 @@
/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/engines)
-"eAb" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/security{
- name = "Armory Storage";
- secured_wires = 1
- },
-/obj/machinery/door/blast/regular{
- dir = 4;
- icon_state = "pdoor1";
- id = "armoryred";
- name = "Red Armory";
- p_open = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
"eBO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -29462,20 +22316,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/excursion/general)
-"fho" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
"fkB" = (
/obj/machinery/door/airlock/glass_external,
/obj/machinery/airlock_sensor/airlock_exterior/shuttle{
@@ -29495,20 +22335,6 @@
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"flc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
"fox" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -29536,18 +22362,6 @@
},
/turf/simulated/floor/wood,
/area/hallway/station/upper)
-"fxI" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/filingcabinet,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"fyN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -29599,19 +22413,6 @@
},
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/shuttle/excursion/cockpit)
-"fTy" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/empty,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"fZo" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -29810,20 +22611,6 @@
/obj/effect/map_helper/airlock/sensor/ext_sensor,
/turf/simulated/floor/tiled/eris/techmaint_panels,
/area/shuttle/excursion/cargo)
-"gQf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"gQS" = (
/obj/effect/landmark{
name = "morphspawn"
@@ -29847,16 +22634,11 @@
},
/turf/simulated/floor/tiled,
/area/security/security_processing)
-"gUi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/cutout,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
"gWG" = (
/obj/structure/bed/chair/shuttle{
dir = 4
},
-/obj/structure/closet/autolok_wall{
+/obj/structure/closet/emergsuit_wall{
pixel_y = 32
},
/turf/simulated/floor/tiled/eris/white,
@@ -29880,20 +22662,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"gYV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+"hai" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
"hid" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -29965,20 +22740,6 @@
},
/turf/simulated/floor/tiled/eris/dark/gray_perforated,
/area/shuttle/excursion/cargo)
-"hGW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
"hIb" = (
/obj/machinery/light/small{
dir = 1
@@ -30009,26 +22770,6 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"hTN" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/security{
- name = "Blue Armory";
- req_access = list(3);
- secured_wires = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
"hTW" = (
/obj/structure/bed/chair/shuttle,
/obj/machinery/light{
@@ -30061,18 +22802,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"ibu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"ifk" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
@@ -30104,6 +22833,15 @@
/obj/effect/floor_decal/corner/blue,
/turf/simulated/floor/tiled/eris/white,
/area/shuttle/medivac/general)
+"ioI" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/space,
+/area/space)
"irY" = (
/obj/structure/bed/padded,
/obj/structure/window/reinforced{
@@ -30186,6 +22924,14 @@
/obj/structure/table/steel,
/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/shuttle/excursion/cockpit)
+"iJs" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
"iJT" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
@@ -30231,16 +22977,9 @@
/turf/simulated/floor/tiled/eris/techmaint_perforated,
/area/shuttle/excursion/general)
"iUO" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
+/obj/structure/barricade,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"iWG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -30320,12 +23059,6 @@
},
/turf/simulated/floor/tiled/eris/steel/gray_perforated,
/area/shuttle/securiship/general)
-"jnQ" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"jsf" = (
/obj/machinery/disposal/deliveryChute{
dir = 4
@@ -30335,20 +23068,13 @@
/area/shuttle/excursion/cargo)
"jxg" = (
/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/command{
- id_tag = "HoSdoor";
- name = "Head of Security";
- req_access = list(58)
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Security Substation";
+ req_access = list(1);
+ req_one_access = newlist()
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"jEX" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -30416,17 +23142,6 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"kbY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"kcH" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
@@ -30446,7 +23161,7 @@
health = 1e+006
},
/obj/machinery/atmospherics/pipe/simple/hidden/aux,
-/obj/structure/closet/autolok_wall{
+/obj/structure/closet/emergsuit_wall{
pixel_x = 27
},
/turf/simulated/floor/tiled/eris/steel/gray_perforated,
@@ -30481,22 +23196,6 @@
/obj/machinery/atmospherics/binary/pump/fuel,
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/engines)
-"kAC" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/security{
- name = "Armory Storage";
- secured_wires = 1
- },
-/obj/machinery/door/blast/regular{
- dir = 1;
- id = "armoryblue";
- name = "Blue Armory"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"kCz" = (
/obj/machinery/door/airlock/hatch{
req_one_access = list(67)
@@ -30576,19 +23275,18 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1"
- },
/obj/machinery/camera/network/security,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/security/hallway)
"kTn" = (
@@ -30722,21 +23420,6 @@
/obj/machinery/door/window/brigdoor/eastleft,
/turf/simulated/floor/tiled/eris/dark/violetcorener,
/area/shuttle/securiship/general)
-"lMN" = (
-/obj/structure/grille,
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/window/reinforced/polarized/full{
- id = "hos_office"
- },
-/turf/simulated/floor,
-/area/crew_quarters/heads/hos)
"lOS" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30861,17 +23544,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"mEc" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"mFv" = (
/obj/machinery/airlock_sensor{
pixel_x = 28
@@ -30903,11 +23575,8 @@
"mPW" = (
/obj/effect/floor_decal/techfloor/orange,
/obj/effect/floor_decal/techfloor/hole/right,
-/obj/machinery/holoposter{
- pixel_y = -30
- },
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"ndd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
dir = 5;
@@ -30926,20 +23595,6 @@
},
/turf/simulated/floor/tiled/eris/white,
/area/shuttle/medivac/general)
-"ngb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
"njt" = (
/obj/structure/cable/cyan{
d1 = 2;
@@ -31003,15 +23658,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"nsy" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
"nvb" = (
/obj/machinery/door/airlock/vault/bolted{
req_access = list(53)
@@ -31104,32 +23750,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"nDu" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 4;
- icon_state = "bordercolorcorner2"
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/closet/l3closet/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"nRt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 10
@@ -31290,11 +23910,6 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -31327,20 +23942,6 @@
/obj/effect/map_helper/airlock/door/simple,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"oIb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
"oJa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/aux{
dir = 6;
@@ -31476,56 +24077,6 @@
},
/turf/simulated/wall/rshull,
/area/shuttle/securiship/engines)
-"prO" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table/rack,
-/obj/item/clothing/shoes/magboots,
-/obj/item/device/suit_cooling_unit,
-/obj/item/weapon/tank/oxygen,
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Protosuit Storage";
- req_access = list(58)
- },
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/security/prototype,
-/obj/item/clothing/head/helmet/space/void/security/prototype,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
-"psg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"ptx" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"pwj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -31592,13 +24143,6 @@
},
/turf/simulated/floor/tiled/eris/white,
/area/shuttle/medivac/general)
-"pUt" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"pUV" = (
/obj/structure/bed/chair/bay/chair{
dir = 1;
@@ -31693,20 +24237,9 @@
/turf/simulated/floor/tiled/eris/techmaint_perforated,
/area/shuttle/excursion/general)
"qLc" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
/obj/effect/floor_decal/industrial/warning,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
+/area/maintenance/station/sec_upper)
"qMb" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -31733,6 +24266,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/security/hallway)
"qOY" = (
@@ -31787,44 +24325,17 @@
},
/turf/simulated/floor/tiled/eris/techmaint_panels,
/area/shuttle/excursion/general)
-"rgV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"rhv" = (
/obj/structure/bed/chair/shuttle{
dir = 1
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/excursion/general)
-"rlz" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
+"rju" = (
+/obj/structure/foamedmetal,
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"rAB" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/super;
@@ -31970,21 +24481,6 @@
},
/turf/simulated/floor/plating/eris/under,
/area/shuttle/excursion/cargo)
-"rZt" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"sdI" = (
/obj/machinery/power/apc{
alarms_hidden = 1;
@@ -32036,17 +24532,6 @@
},
/turf/simulated/floor/tiled/eris/dark/gray_perforated,
/area/shuttle/excursion/cargo)
-"snK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"sqj" = (
/obj/structure/cable/green{
dir = 1;
@@ -32058,30 +24543,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/engines)
-"sso" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/hallwayaux)
-"sBF" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"sFS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
dir = 1
@@ -32106,48 +24567,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor,
/area/shuttle/securiship/general)
-"sIA" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/security/hallwayaux)
-"sMv" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/button/remote/blast_door{
- id = "armoryblue";
- name = "Blue Armory Access";
- pixel_x = -24;
- pixel_y = 24;
- req_access = list(3)
- },
-/obj/machinery/atmospherics/valve/digital{
- dir = 4;
- name = "scrubber isolation valve"
- },
-/obj/effect/catwalk_plated/dark,
-/turf/simulated/floor,
-/area/security/armory/blue)
"sNy" = (
/obj/machinery/door/airlock/glass_external,
/obj/structure/cable/green{
@@ -32189,18 +24608,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tqy" = (
-/obj/structure/grille,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "hos_office"
- },
-/turf/simulated/floor,
-/area/crew_quarters/heads/hos)
"trD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/aux,
/turf/simulated/wall/rshull,
@@ -32224,11 +24631,19 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"twW" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
"tyn" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"tzx" = (
@@ -32271,29 +24686,20 @@
},
/turf/simulated/floor/tiled/eris/white,
/area/shuttle/medivac/general)
+"tVq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/mineral/vacuum,
+/area/mine/explored/upper_level)
"ufq" = (
/obj/structure/barricade/cutout/ntsec,
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"uiP" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
+"ufG" = (
+/obj/structure/barricade,
+/turf/simulated/floor/airless,
+/area/maintenance/station/cargo)
"ukN" = (
/obj/structure/bed/chair/bay/chair/padded/beige{
dir = 1;
@@ -32309,6 +24715,10 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/cockpit)
+"ukV" = (
+/obj/structure/firedoor_assembly,
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"upC" = (
/obj/structure/cable{
d1 = 4;
@@ -32383,14 +24793,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uDo" = (
-/obj/machinery/atmospherics/valve/digital{
- dir = 4;
- name = "supply isolation valve"
- },
-/obj/effect/catwalk_plated/dark,
-/turf/simulated/floor,
-/area/security/armory/blue)
"uGF" = (
/obj/item/device/radio/intercom{
dir = 1;
@@ -32426,11 +24828,8 @@
"uSa" = (
/obj/effect/floor_decal/techfloor/orange,
/obj/effect/floor_decal/techfloor/hole,
-/obj/machinery/holoposter{
- pixel_y = -30
- },
/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
+/area/tether/station/stairs_three)
"uVL" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
@@ -32463,14 +24862,6 @@
},
/turf/simulated/floor/tiled/eris/steel/gray_perforated,
/area/shuttle/securiship/general)
-"vbE" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
"vhP" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -32530,10 +24921,6 @@
},
/turf/simulated/floor/tiled/eris/steel/gray_perforated,
/area/shuttle/securiship/general)
-"vxy" = (
-/obj/machinery/suit_cycler/prototype,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hos)
"vAP" = (
/obj/item/device/flashlight/lamp,
/obj/structure/table/steel,
@@ -32623,14 +25010,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/excursion/general)
-"wjz" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/hallwayaux)
"wls" = (
/obj/machinery/status_display{
pixel_y = 30
@@ -32652,20 +25031,6 @@
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
"wpQ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- icon_state = "extinguisher_closed";
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 8
- },
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"wss" = (
@@ -32822,24 +25187,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/office)
-"xaA" = (
-/obj/structure/grille,
-/obj/structure/cable/green,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/window/reinforced/polarized/full{
- id = "hos_office"
- },
-/turf/simulated/floor,
-/area/crew_quarters/heads/hos)
-"xcf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
"xcF" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -32883,34 +25230,7 @@
/obj/machinery/power/smes/buildable/point_of_interest,
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/excursion/general)
-"xlU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"xmG" = (
-/obj/structure/grille,
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "hos_office"
- },
-/turf/simulated/floor,
-/area/crew_quarters/heads/hos)
"xnm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -32920,6 +25240,12 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
"xny" = (
@@ -33040,6 +25366,10 @@
},
/turf/simulated/floor/tiled/eris/steel/gray_perforated,
/area/shuttle/securiship/general)
+"xZK" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/quartermaster/office)
"ydg" = (
/obj/machinery/conveyor_switch/oneway{
id = "shuttle_inbound"
@@ -33060,31 +25390,17 @@
/obj/effect/map_helper/airlock/sensor/int_sensor,
/turf/simulated/floor/tiled/eris/dark/gray_perforated,
/area/shuttle/excursion/cargo)
+"ydR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
"yeP" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 9;
- icon_state = "bordercolor"
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2_black"
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 1;
- icon_state = "bordercolorcorner2"
- },
-/obj/structure/closet/bombcloset/double,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"ygj" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -36878,7 +29194,7 @@ aaa
aaa
aaa
aVL
-aYW
+aae
aae
aae
aae
@@ -37017,25 +29333,25 @@ aaa
aaa
aaa
aab
-aje
-aje
-aje
-aje
-alj
-alu
-aje
-aje
-aje
-alj
-alZ
-aje
+aaf
+aaf
+aaf
+aaf
+aaI
+aaI
+aaf
+aaf
+aaf
+aaI
+aaI
+aaf
ebj
oGF
-aqc
-aqv
-ard
-aqc
-asL
+aaf
+atG
+atG
+aaf
+atG
atG
auF
aaa
@@ -37159,27 +29475,27 @@ aaa
aaa
aab
aab
-aje
-aLS
-aWH
-aUk
-vxy
-prO
-anD
-anW
-aTO
-aoW
-aZM
-tqy
+aaf
+iUO
+iUO
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaI
ygj
atY
-amb
-aqw
-are
-asa
-afO
-atH
-auG
+aaI
+yeP
+yeP
+yeP
+yeP
+yeP
+auI
avs
aaa
aaa
@@ -37301,26 +29617,26 @@ aab
aab
aab
aab
-aje
-aUi
-aiS
-aQn
-aYu
-aVp
-aVe
-anX
-aTW
-aoX
-aSc
-lMN
+aaf
+iUO
+iUO
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aSP
+aaI
mLa
apG
-amb
-aqx
-arf
-asb
-asM
-atI
+aaI
+aSP
+yeP
+yeP
+yeP
+yeP
auI
avs
aaa
@@ -37443,27 +29759,27 @@ aab
aab
aab
aab
-aje
-aje
-aje
-aje
-aUu
-ajM
-anE
-aRq
-aYC
-akv
+aaf
+aaf
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
aSP
-xmG
+aaI
mLa
apG
-amb
-aqy
-arg
-asc
-acZ
-agc
-aqc
+aaI
+aSP
+yeP
+yeP
+yeP
+yeP
+aaf
avs
avs
avs
@@ -37588,24 +29904,24 @@ aab
aab
aab
aab
-aje
-aVK
-ajM
-anF
-aeG
-aov
-aoZ
-afr
-aje
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
dSk
ifk
-aqc
-amG
-arh
-awS
-asO
-atJ
-aqc
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
avs
avt
atb
@@ -37718,36 +30034,36 @@ aab
aab
aab
aab
-aao
-aao
-aao
-aao
-aao
-aao
-aao
-aao
-aao
-aao
-aao
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
aab
-aje
-aYV
-ajM
-aTD
-aeH
-aow
-rlz
-rgV
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
jxg
aUn
abd
-amb
-acm
-ari
-asd
-asP
-atK
-aqc
+aaI
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
avt
avt
avt
@@ -37859,37 +30175,37 @@ aab
aab
aab
aab
-aao
-aao
-aao
-aao
-aao
-aao
-aao
-aao
-aao
-aao
-aao
-aao
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
aab
-aje
-ahd
-aWN
-aet
-aYx
-aWh
-jnQ
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
iUO
-xaA
+aaf
apa
abl
-ach
-acZ
-arj
-ase
-asM
-atL
-auH
+aeO
+yeP
+yeP
+yeP
+yeP
+yeP
+auI
avt
avt
avt
@@ -37999,38 +30315,38 @@ aab
aab
aab
aab
-aao
-aao
-aao
-aao
-abR
-aiu
-ack
-dCf
-fTy
-aQU
-ajR
-aju
-aju
-aao
+aaf
+aaf
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+iUO
+yeP
+aaf
aab
-aje
-akI
-aUy
-akO
-fxI
-aox
-amy
-aoa
-xmG
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+iUO
+iUO
+aaI
aff
abZ
-amb
-adi
-ark
-asf
-asQ
-atM
+aaI
+yeP
+yeP
+yeP
+yeP
+yeP
auI
avt
awe
@@ -38140,21 +30456,21 @@ aaa
aab
aab
aab
-aao
-aao
-aao
-aao
-aao
-aif
-aiv
-aiL
-pUt
-pUt
-aQU
-aiZ
-aju
-aju
-ako
+aaf
+aaf
+aaf
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+iUO
+aaf
ako
ako
ako
@@ -38167,13 +30483,13 @@ aZY
aZY
aav
ama
-aqd
-aqC
-apB
-aqd
-aqC
-aqC
-aqc
+aaI
+iUO
+yeP
+aaI
+iUO
+iUO
+aaf
avt
avt
avt
@@ -38282,21 +30598,21 @@ aab
aab
aab
aab
-aao
-aao
-aaH
-ahA
-ahS
+aaf
+aaf
yeP
-aiw
-aiM
-ptx
-sBF
-aja
-aja
-aja
-akc
-ako
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
atQ
ahC
akY
@@ -38309,13 +30625,13 @@ aob
amh
apb
atY
-aqe
-aqD
-arm
-asg
-asR
-atN
-auJ
+aaI
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
avt
avt
avt
@@ -38424,21 +30740,21 @@ aab
aab
aab
aab
-aao
-aao
-adN
-ahB
-ahT
-aih
-rZt
-aih
-xlU
-snK
-aih
-ibu
-xcf
-ake
-ako
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aSP
+aaf
akz
akL
akZ
@@ -38451,13 +30767,13 @@ aoc
afd
apc
apG
-aqe
-aqE
-arm
-ash
-asS
-atO
-auJ
+aaI
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
avt
avt
avt
@@ -38564,23 +30880,23 @@ aae
aab
aab
aab
-aai
-aai
-aai
-aao
-ahf
-afJ
-abx
-nDu
-gQf
-aiN
-ajc
-aji
-aen
-kbY
-mEc
-arA
-ako
+aaf
+aaf
+aaf
+aaf
+yeP
+iUO
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
akA
adz
ala
@@ -38593,19 +30909,19 @@ aeK
amh
amj
ifk
-afH
-aqF
-arn
-asi
-asT
-aDV
-auJ
-avu
-ann
-ann
-ann
-avu
-auO
+aaI
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
+aaI
+aaI
+aaI
+aaI
+aaI
+aaf
axx
aBi
aCb
@@ -38705,24 +31021,24 @@ aaa
aaa
aab
aab
-aai
-aai
-aai
-aai
-aai
-aai
-aai
-adI
-adI
-hTN
-aiO
-ajd
-adI
-adI
-kAC
-bJB
-aao
-ako
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+yeP
+yeP
+yeP
+aaf
+aaf
+yeP
+yeP
+aaf
+aaf
rEP
rEV
afW
@@ -38735,27 +31051,27 @@ aod
amh
apd
amL
-afH
-aqG
-aro
-asj
-asT
-aqg
-auJ
-aqS
-awg
-awg
-axy
-ayi
-aog
+aaI
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
+aSP
+aSP
+aSP
+aSP
+yeP
+aaI
azY
aBj
aQk
-aDa
-aDa
-aDa
-aDa
-aDa
+aDf
+aDf
+aDf
+aDf
+aDf
aab
aab
aab
@@ -38847,24 +31163,24 @@ abh
aaa
aaa
aab
-aai
-aai
-aaZ
-agz
-abg
-ahg
-ahD
-adI
-aij
-dtK
-acu
-aiP
-ajj
-adI
-sMv
-uDo
-akf
-ako
+aaf
+aaf
+yeP
+aSP
+aSP
+aSP
+yeP
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
+aaI
+aaI
+aaf
+aaf
cKx
peF
afX
@@ -38876,29 +31192,29 @@ anL
amf
aoy
ape
-aft
-aqf
-aqH
-arp
-ask
-asU
-atR
-auJ
-avw
-awh
-awh
-axz
-ayj
-aog
+atW
+aaI
+aSP
+yeP
+yeP
+yeP
+yeP
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+aaI
hid
rCb
aBC
-aDa
-aDE
+aDf
+aDJ
aEA
aFo
-aDa
-aDa
+aDf
+aDf
aab
aab
aab
@@ -38989,22 +31305,22 @@ abh
aaa
aaa
aab
-aai
-aai
-agn
-agA
-agN
-fho
-oIb
-bxz
-flc
-ngb
-abC
-adn
-acL
-adI
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
wpQ
-sso
+aiR
aeA
aeT
akC
@@ -39019,28 +31335,28 @@ aoe
amh
apf
apG
-aqe
-aqI
-arm
-asl
-asR
-aNp
-auJ
-avx
-awh
-awM
-axA
-ayk
-aog
+aaI
+aSP
+yeP
+yeP
+yeP
+iUO
+aaf
+iUO
+yeP
+yeP
+yeP
+yeP
+aaI
aAe
lOS
aSI
-aDa
-aAY
+aDf
+aDJ
aEB
aFp
aGf
-aDa
+aDf
aab
aab
aab
@@ -39131,22 +31447,22 @@ abh
aaa
aaa
aaa
-aai
-aai
-ago
-agB
-agO
-gYV
-ahF
-adI
-abD
-afl
-acN
-ado
-adI
-adI
-sIA
-wjz
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+iUO
+aaf
+yeP
+yeP
+yeP
+yeP
+aaf
+aaf
+wpQ
+aiR
aeB
aeT
aeT
@@ -39161,28 +31477,28 @@ amh
aep
apg
apG
-afH
-aqe
+aaI
+aaI
aeO
-afH
-aqe
-aqe
-auJ
-avy
-awh
-awh
-axB
-anZ
-auO
+aaI
+aaI
+aaI
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
jEX
lOS
aCd
-aDb
+aDf
aDG
aEC
aFq
uSa
-aDa
+aDf
aab
aab
aab
@@ -39273,19 +31589,19 @@ aaa
aaa
aaa
aaa
-aai
-aai
-agp
-agC
-agP
-hGW
-abv
-adI
-adU
-aez
-abE
-aRB
-afn
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+iUO
+aaf
+yeP
+yeP
+yeP
+iUO
+aaI
adp
xnm
aeh
@@ -39309,12 +31625,12 @@ arr
asm
asV
atS
-amI
-avz
-awh
-aCu
-axC
-aym
+aaI
+iUO
+iUO
+iUO
+yeP
+yeP
azm
aAc
aBn
@@ -39324,7 +31640,7 @@ aDH
aEC
aFr
aGh
-aDa
+aDf
aab
aab
aab
@@ -39415,19 +31731,19 @@ aae
aae
aae
aae
-aai
-aai
-agq
-agD
-agQ
-psg
-ahG
-adI
-ail
-abo
-abF
-acc
-abq
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
+yeP
+yeP
+aSP
+iUO
+aaI
adp
ajI
abI
@@ -39451,22 +31767,22 @@ ars
alA
mgA
iDH
-amJ
-avA
-awh
-awh
-axD
-ayn
-auO
+aaI
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
aAd
aBo
aCf
-aDb
+aDf
aDI
aEC
aFq
mPW
-aDa
+aDf
aab
aab
aab
@@ -39557,19 +31873,19 @@ aaa
aaa
aaa
aaa
-aai
-aai
-agr
-agE
-agO
-gYV
-abS
-adI
-adI
-abq
-abq
-acd
-adI
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
+aaf
+aaI
+aaI
+aaI
+aaf
amv
adM
aer
@@ -39592,14 +31908,14 @@ aoz
aoz
aoz
kSC
-nsy
+anN
auM
-avB
-awh
-awM
-axE
-ayk
-aog
+yeP
+yeP
+yeP
+yeP
+yeP
+aaI
aAe
aBo
aCa
@@ -39608,7 +31924,7 @@ aDJ
aED
aFs
aGj
-aDa
+aDf
aab
aab
aab
@@ -39699,14 +32015,14 @@ abh
aaa
aab
aab
-aai
-aai
-ags
-agF
-agP
-uiP
-vbE
-eAb
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+aaI
qLc
owU
abH
@@ -39735,13 +32051,13 @@ art
aoz
qMb
atY
-anm
-avC
-awh
-awh
-axF
-ayo
-aog
+aaI
+yeP
+yeP
+yeP
+yeP
+yeP
+aaI
wFV
tnC
lon
@@ -39841,15 +32157,15 @@ abh
aaa
aab
aab
-aai
-aai
-agn
-agA
-agN
-ahk
-ahE
-ahW
-aal
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+aaI
+qLc
aci
abI
acr
@@ -39877,13 +32193,13 @@ afL
afN
asZ
atW
-auO
-arM
-awi
-awN
-axG
-ayp
-aog
+aaf
+aSP
+aSP
+yeP
+yeP
+iUO
+aaI
aAe
btu
aCh
@@ -39983,15 +32299,15 @@ abh
aaa
aab
aab
-aai
-aai
-agt
-agG
-abi
-aap
-aaz
-aai
-abU
+aaf
+aaf
+yeP
+yeP
+iUO
+yeP
+yeP
+aaf
+auF
aiz
aiQ
acf
@@ -40121,19 +32437,19 @@ aad
aaa
aaa
aRg
-acv
-acv
-acv
-acv
-aai
-aai
-aai
-aai
-aai
-aai
-aai
-aai
-aai
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
aNY
aiR
acg
@@ -40263,19 +32579,19 @@ aae
aae
aae
aRg
-acv
-acv
-acv
-agd
-agh
-agf
-agf
-agH
-agR
-ahl
-aaB
-aaP
-ahp
+aaf
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aSP
+aSP
+aaI
acj
aiR
acg
@@ -40405,19 +32721,19 @@ aad
aaa
aaa
aRg
-acv
-acv
-acv
-age
-agf
-agk
-agu
-agk
-agR
-ahm
-aaC
-aaQ
-ahp
+aaf
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+iUO
+aaI
abr
abK
acf
@@ -40547,18 +32863,18 @@ aad
aaa
aaa
aRg
-acv
-acv
-acv
-agf
-agf
-agf
-agv
-agf
-agR
-ahn
-aaC
-aaR
+aaf
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+iUO
abf
abs
aiR
@@ -40689,19 +33005,19 @@ aae
aae
aae
aRg
-acv
-acv
-acv
-age
-agf
-agk
-aba
-agI
-agS
-aau
-aaD
-abG
-aca
+aaf
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaE
+yeP
+aeO
aiA
abM
acg
@@ -40831,18 +33147,18 @@ aad
aaa
aaa
aRg
-acv
-acv
-acv
-agf
-agf
-agf
-agw
-agf
-agR
-aho
-ahJ
-aaS
+aaf
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+iUO
abf
aiB
abN
@@ -40973,18 +33289,18 @@ aad
aaa
aaa
aRg
-acv
-acv
-acv
-age
-agi
-agk
-agf
-agk
-agR
-abb
+aaf
+aaf
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
aaE
-adQ
+iUO
abf
aci
abO
@@ -41047,15 +33363,15 @@ aKW
aKW
aKW
aKW
-aNW
-aNW
-aNW
-aNW
-aNW
-aNW
-aNW
-aNW
-aNW
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
aaa
aaa
aaa
@@ -41115,19 +33431,19 @@ aae
aae
aae
aRg
-acv
-acv
-acv
-acv
-acv
-acv
-acv
-acv
-acv
-acv
-acv
-acv
-acv
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
aiC
abP
alc
@@ -41135,7 +33451,7 @@ acM
acX
aik
acM
-acM
+aai
akq
acM
acM
@@ -41189,15 +33505,15 @@ aIy
aab
aab
aab
-aNW
-aOj
-aOy
-aNy
-aNW
-aOj
-aOy
-aNy
-aNW
+aPK
+aQs
+aQs
+aQs
+aPK
+aQs
+aQs
+aQs
+aPK
aaa
aaa
aaa
@@ -41264,11 +33580,11 @@ agg
aab
aab
aab
-aaU
-aaj
-abn
-ahK
-ahY
+aaf
+yeP
+iUO
+yeP
+yeP
ain
aiD
abQ
@@ -41287,7 +33603,7 @@ amk
aoG
anq
anQ
-aoj
+atX
aoG
apq
apR
@@ -41331,15 +33647,15 @@ aIy
aab
aab
aab
-aNW
-aOk
-aOA
-aLf
-aNW
-aOk
-aOA
-aLf
-aNW
+aPK
+aQs
+aQs
+aQs
+aPK
+aQs
+aQs
+aQs
+aPK
aaa
aaa
aaa
@@ -41406,11 +33722,11 @@ agg
aab
aab
aab
-aaU
-agT
-ahq
-ahL
-aaT
+aaf
+yeP
+yeP
+yeP
+iUO
ain
abt
aiR
@@ -41423,15 +33739,15 @@ acw
acw
acw
adR
-ale
-aeX
-aaq
-aeX
-aeX
-aeX
+aaf
+ain
aat
-aeX
-apr
+ain
+ain
+ain
+aat
+ain
+aaI
alC
aPq
amH
@@ -41469,19 +33785,19 @@ aLH
aMr
aLh
aNb
-aNr
-aNr
-aNr
-aNr
-aNW
+aPK
+aPK
+aPK
+aPK
+aPK
aOl
-aOB
+aQs
aOl
-aNW
+aPK
aOl
-aPn
+aQs
aOl
-aNW
+aPK
aaa
aaa
aaa
@@ -41548,12 +33864,12 @@ agg
aab
aab
aab
-aaU
-agU
-ahr
-ahM
-ahr
-aio
+aaf
+yeP
+aZO
+aZO
+aZO
+aaf
aiE
aiR
aYT
@@ -41565,15 +33881,15 @@ akh
akh
aOQ
aYT
-adO
-alG
-aml
-amM
-anr
-anR
-aok
-aoH
-aeX
+yeP
+iUO
+iUO
+iUO
+yeP
+iUO
+aSP
+iUO
+ain
alC
alC
amH
@@ -41582,9 +33898,9 @@ amH
amH
amH
amH
-avM
-awr
-awW
+acd
+acl
+acm
axN
ayy
ayz
@@ -41609,26 +33925,26 @@ aKJ
aLj
aLI
aMs
-aMJ
+aLh
aNc
-aNr
-aNB
-aJZ
-aNN
-aNr
-aOm
-aOC
-aOR
-aQo
-aPf
-aOC
-aKA
-aNW
-aPB
-aPM
-aPM
-aPB
-aPB
+aPK
+aQs
+aQs
+aQs
+aPK
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aPK
+aPK
+ufG
+ufG
+aPK
+aPK
aaa
aaa
aaa
@@ -41690,9 +34006,9 @@ agg
aab
aab
aab
-aaU
-abj
-aXG
+aaf
+yeP
+aZO
ahN
aaV
acb
@@ -41707,15 +34023,15 @@ aey
aeJ
akF
aYT
-alf
-alH
-amm
-amm
-ans
-amO
-aol
-aoI
-aeX
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+ain
alC
alC
amH
@@ -41749,28 +34065,28 @@ aJy
aKm
aKK
aLN
-aJy
-aMt
aLh
-aNd
-aNs
-aNC
-aKb
-aNP
-aNX
-aOn
-aOD
-aOS
-aPa
-aPg
-aPo
-aPu
-aNW
-aPI
-aPN
-aPS
-aPW
-aPB
+aMX
+aLh
+aNb
+aAH
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aPK
+aQs
+aQs
+aQs
+aQs
+aPK
aaa
aaa
aaa
@@ -41832,12 +34148,12 @@ agg
aab
aab
aab
-aaU
-agV
-ahr
-ahM
-aaW
-aaU
+aaf
+yeP
+aZO
+aSa
+aZO
+aaf
aiG
aNI
aYT
@@ -41849,15 +34165,15 @@ aSC
aeJ
akG
aYT
-alg
-alH
-amn
-amN
-ant
-anS
-aom
-aoJ
-apr
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaI
alC
alC
amH
@@ -41891,28 +34207,28 @@ aJz
aKm
aKL
aLN
-aJz
-aMt
aLh
-aIU
-aNt
-aKc
-aNK
-aOr
-aNr
-aOo
-aOE
-aOE
-aPb
-aPi
-aPp
-aPv
+aMX
+aLh
+aNb
+aPK
aQs
-aPE
-aPO
-aPT
-aPX
-aQa
+aQs
+aQs
+aPK
+aQs
+aQs
+aQs
+rju
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+ufG
aaa
aaa
aaa
@@ -41974,11 +34290,11 @@ agg
aab
aab
aab
-aaU
-agW
+aaf
+yeP
aZO
aSa
-aaX
+iUO
ain
abu
aiR
@@ -41991,26 +34307,26 @@ ada
aeJ
akH
aYT
-alh
-alH
-alH
-alH
-ajh
-alH
-aok
-akP
-ale
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
amH
amH
amH
aSu
atl
-atm
-auh
+abS
+aca
auX
-avO
+ach
awu
-awX
+acp
asp
gBy
azv
@@ -42026,35 +34342,35 @@ aFg
aFO
aGu
aIy
-aJi
+ayT
aId
aLh
aJA
aKn
aKM
aLO
-aJA
-aMu
+aLh
+aMX
aLh
aPt
-aNr
-aNr
-aNr
-aNr
-aNr
-aOp
-aOE
-aOT
-aOE
-aPj
-aNJ
-aOE
+aPK
+aPK
+aPK
+aPK
+aPK
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
aOl
-aPG
-aPQ
-aPU
-aPQ
-aQa
+aQs
+aQs
+aQs
+aQs
+ufG
aaa
aaa
aaa
@@ -42116,11 +34432,11 @@ agg
aab
aab
aab
-aaU
-aaw
-ahr
-ahM
-aaY
+aaf
+yeP
+aZO
+aSa
+iUO
ain
abu
aiR
@@ -42133,15 +34449,15 @@ aTd
aeY
aTQ
aYT
-ali
-alH
-amm
-amO
-ans
-amm
-aSF
-aoL
-ale
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
aqT
atl
ate
@@ -42183,20 +34499,20 @@ aIy
aab
aab
aab
-aNW
-aOq
-aOF
-aOU
-aOE
-aPl
-aNR
-aNe
-aNW
-aPH
-aPQ
-aPQ
-aPY
-aQa
+aPK
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aPK
+aQs
+aQs
+aQs
+aQs
+ufG
aaa
aaa
aaa
@@ -42258,12 +34574,12 @@ agg
aab
aab
aab
-aaU
-abk
-ahr
-ahP
-ahQ
-aaU
+aaf
+yeP
+aZO
+aSa
+iUO
+aaf
aiH
aiT
aYT
@@ -42275,15 +34591,15 @@ aeF
aXe
aYH
aYT
-aeZ
-alI
-amn
-amN
-ant
-anS
-aom
-aOW
-ale
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
atl
atl
aue
@@ -42325,20 +34641,20 @@ aIy
aab
aab
aab
-aNW
-aPw
-aOG
-aOV
-aPd
-aPm
-aPs
-aPD
-aNW
-aPJ
-aPR
-aPV
-aKB
-aPB
+aPK
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aQs
+aPK
+aQs
+aQs
+aQs
+aQs
+aPK
aaa
aaa
aaa
@@ -42400,12 +34716,12 @@ agg
agg
aaU
aaU
-aaU
-aaU
+aaf
+aaf
ahu
aUp
-aaU
-aaU
+aaf
+aaf
aiI
aiU
adS
@@ -42417,18 +34733,18 @@ adq
adP
adP
adP
-ale
-alJ
-amo
-amP
-anv
-anT
-aon
-aoM
-ale
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
aqV
-arE
-aRe
+abq
+abC
aRk
atl
atn
@@ -42467,20 +34783,20 @@ aIy
aab
aab
aab
-aNW
-aNW
-aNW
-aNW
-aNW
-aNW
-aNW
-aPy
-aNW
aPK
-aPB
-aPB
-aPB
-aPB
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
+aPK
aaa
aaa
aaa
@@ -42549,7 +34865,7 @@ agY
abm
abz
abw
-acl
+aaB
adS
add
aSX
@@ -42559,17 +34875,17 @@ aUT
afb
aUV
afG
-ale
-alK
-amp
-amQ
-anw
-anU
-aoo
-aoN
-ale
+aaf
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+yeP
+aaf
arD
-aso
+aRk
aRk
aSM
atl
@@ -42586,14 +34902,14 @@ aXT
aRn
aCk
ayN
-ayT
-ayT
-ayT
-aEK
-ayT
-ayT
-ayT
-ayT
+aAH
+aAH
+aAH
+aAH
+aAH
+aAH
+aAH
+aAH
aHJ
aIh
aJb
@@ -42616,9 +34932,9 @@ avs
avs
avs
aYk
-aPz
+avs
+aaa
aaa
-aPL
aaa
aaa
aaa
@@ -42686,7 +35002,7 @@ aac
aag
aak
aax
-acp
+aah
ahv
abm
abA
@@ -42705,13 +35021,13 @@ aaf
aaf
aaf
aaf
-aaf
+azm
aaf
aaf
aaf
aaf
aaI
-aqn
+abv
aaI
ayz
atl
@@ -42727,15 +35043,15 @@ azz
aAt
aBz
atc
-ayT
-aBu
-aCs
-aDM
-aEL
-aDm
-aFQ
-aFQ
-ayT
+aAH
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aAH
aHO
aIi
aJc
@@ -42828,12 +35144,12 @@ aaU
aaU
aaU
aaU
-adX
+aaj
ahw
abm
abB
aby
-acz
+aaC
adS
amW
aSX
@@ -42848,12 +35164,12 @@ afc
afc
afc
afc
-adw
-adw
-adr
+afc
+afc
+abb
amR
afc
-adw
+afc
aaI
aab
asp
@@ -42869,15 +35185,15 @@ asq
aAu
aBA
att
-ayT
-aBv
-aCt
-aCt
-aCt
-aCt
-aCt
-aGy
-ayT
+aAH
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aAH
aEG
aIj
aJd
@@ -42970,8 +35286,8 @@ aaa
aaa
abc
aay
-agX
-akp
+aal
+aao
abm
abm
abm
@@ -42994,8 +35310,8 @@ aRa
vFD
aRb
afc
-aRc
-aRd
+abo
+aQY
aaI
aab
asq
@@ -43011,16 +35327,16 @@ fox
xBW
nrc
cay
-azs
-aBw
-aBw
-aDQ
-aEM
-aFv
-aFR
-aGz
-aHa
-aHv
+aAH
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aAH
+aEG
aIk
aLh
aLh
@@ -43113,19 +35429,19 @@ aaa
abc
agZ
aha
-aBK
+aap
aan
-adw
afc
-adA
-akM
+afc
+aaD
+aaH
ajq
ajq
aqU
aqU
aaI
akt
-aku
+akJ
akJ
aaI
amR
@@ -43152,16 +35468,16 @@ gfw
bWl
mqv
tzx
-arC
-ayT
-aBx
-aCv
-aDR
-aCv
-aFw
-aCv
-aGA
-ayT
+aCk
+aAH
+aQa
+aSo
+aSo
+aSo
+aSo
+aSo
+ukV
+aAH
aHM
aIl
aJe
@@ -43262,9 +35578,9 @@ aeW
akg
aks
aTp
-aRz
-aRz
-aRz
+aRH
+aRH
+aRH
aRE
aRH
aRH
@@ -43295,21 +35611,21 @@ afS
dFr
aoh
auN
-ayT
-aBB
-aCw
-aDS
-aEO
-aFy
-aFS
-aGB
-aWw
-aHN
-aHN
-aHN
+aAH
+aQa
+aSo
+aSo
+aSo
+aSo
+aSo
+aQa
+aAH
+aAH
+aAH
+aAH
aJG
-aHN
-aFz
+aAH
+aPK
aKD
aLU
aLu
@@ -43437,21 +35753,21 @@ aAH
aAH
aoq
aAH
-ayT
-ayT
-ayT
-ayT
-ayT
-aFz
-aFz
-aFz
-aFz
-aKC
-aIw
-aJf
-aJJ
-aKu
-aHN
+aAH
+aAH
+aAH
+aAH
+aAH
+aAH
+aQC
+aAH
+aAH
+aQa
+ukV
+ukV
+aSo
+aQa
+aAH
aLs
aLV
aMx
@@ -43555,8 +35871,8 @@ alV
aPx
amq
abe
-aes
-aRS
+aaT
+aSg
aiV
aab
aab
@@ -43576,24 +35892,24 @@ axb
axR
aeP
aAH
-ajO
-aou
+acu
+acv
awf
-azC
+acL
aAH
aCx
-aDT
-aEP
-aFz
-aGT
-aGD
-aUj
-aHP
-aIx
-aJg
-aJP
-aKv
-aHN
+adw
+adN
+aAH
+aSo
+aSo
+aQa
+aQa
+aSo
+aSo
+aSo
+aSo
+aAH
aLt
aLW
aMy
@@ -43698,7 +36014,7 @@ amr
anz
abe
aSr
-aRS
+aSg
aiV
aab
aab
@@ -43721,21 +36037,21 @@ aAH
aAH
aAH
aAH
-azD
+awf
aoq
-azD
-aou
+awf
+acv
aEQ
-aFz
-aFU
-aYb
-aYb
-aYb
-aYb
-aYb
-aJQ
-aZs
-aFz
+aAH
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aAH
aLu
aLX
aLu
@@ -43840,7 +36156,7 @@ ams
aOz
abe
amV
-aRS
+aSg
aiV
aiV
aiV
@@ -43868,16 +36184,16 @@ aBD
aBD
aBD
aBD
-aFz
-aFV
-aXM
-aHb
-aYb
-aYb
-aJh
-aJQ
-aKw
-aFz
+aAH
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aAH
aLv
aLY
aAH
@@ -43989,10 +36305,10 @@ aop
adT
adT
apU
-aqo
-aqW
-arF
-asr
+abx
+abD
+abE
+abG
asq
asq
asq
@@ -44005,21 +36321,21 @@ aAH
aQg
ayP
aAH
-aAi
+acN
aBD
aCy
aDU
aES
-aFz
-aFW
-aGE
-aHc
-aHQ
-aIz
-aJj
-aJR
-aKx
-aFz
+aAH
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aAH
aLw
aLY
aAH
@@ -44119,7 +36435,7 @@ aUJ
aXb
aWp
iJT
-aah
+aaR
ams
aXq
abe
@@ -44133,8 +36449,8 @@ aiV
aiV
aiV
aiV
-arG
-ass
+abF
+abR
aiV
auo
avb
@@ -44147,21 +36463,21 @@ aAH
aub
azE
aAH
-aAj
+acv
aBD
aCz
aDW
aET
-aFz
-aFX
-aGS
-aHd
-aHR
-aIA
-aFi
-aJS
-aKy
-aFz
+aAH
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aSo
+aAH
aLx
aLY
aAH
@@ -44261,7 +36577,7 @@ wRt
eug
aWp
cQa
-aah
+aaR
ams
aXq
abe
@@ -44270,17 +36586,17 @@ aoV
aRY
aSv
aiV
-aoO
+abg
aps
apV
aqp
aqX
arH
ast
-aeL
+abU
aup
-avc
-avS
+acc
+ack
aSH
wls
eZE
@@ -44289,21 +36605,21 @@ aAH
aAH
aAG
aAH
-aAk
+acZ
aBD
aCB
aBD
aEU
-aFz
-aFz
-aFz
-aFz
-aFz
-aFz
-aFz
-aFz
-aFz
-aFz
+aAH
+aAH
+aAH
+aAH
+aAH
+aQC
+aAH
+aAH
+aAH
+aAH
aLy
aLZ
aAH
@@ -44429,13 +36745,13 @@ pOc
asX
atg
avp
-aBI
-aBH
-aBH
+acz
aWm
-aCC
-aDX
-aEV
+aWm
+aWm
+adi
+adA
+adO
aFA
aFA
aQq
@@ -44554,7 +36870,7 @@ abe
abe
aSg
aiV
-aoQ
+abi
apu
apW
aqr
@@ -44576,7 +36892,7 @@ azL
azL
azL
aJY
-aDY
+adI
aGC
aGC
aWb
@@ -44694,10 +37010,10 @@ aOx
aOx
aOx
abe
-aSh
+aSg
aiV
aoR
-apv
+aRY
apX
aqs
aqY
@@ -44717,15 +37033,15 @@ aXh
aUa
aVF
azL
-aDd
-aDZ
-aEW
+adn
+adK
+adQ
aFB
aIO
aGC
aQu
-aQD
-aQD
+aSo
+aSo
aAH
aAH
aAH
@@ -44839,7 +37155,7 @@ abe
aSw
aiV
aiV
-apw
+abk
apt
aqr
aqr
@@ -44859,15 +37175,15 @@ aZp
aCA
aZi
azL
-aDe
-aEa
+ado
+adL
aGC
-aFC
+adX
aIP
aGC
-aQv
-aQF
-aQM
+adZ
+aea
+aeb
aSo
aAH
aab
@@ -44981,7 +37297,7 @@ abe
aSi
agJ
aiV
-apx
+abn
apt
aqr
ayY
@@ -45001,16 +37317,16 @@ aZp
aCA
aZn
azL
-aDi
+adr
aEb
-aEX
+adU
aFD
-aFY
+adY
aGC
aFj
aFj
aQN
-aQD
+aSo
aAH
aab
aab
@@ -45120,7 +37436,7 @@ abe
abe
abe
abe
-aRx
+aSi
agJ
aiV
apy
@@ -45151,8 +37467,8 @@ aFj
aFj
aFj
aFj
-aQO
-aQD
+aec
+aSo
aAH
aab
aab
@@ -45262,7 +37578,7 @@ abe
aRQ
agK
aQX
-aRx
+aSi
agJ
aiV
aiV
@@ -45293,7 +37609,7 @@ aIm
aIR
aMg
aFj
-aQP
+aee
aSo
aAH
aab
@@ -45397,14 +37713,14 @@ pPy
efQ
aWp
cQa
-aah
+aaR
ams
amq
abe
aoU
-aRV
+aaX
aRZ
-aRx
+aSi
agJ
agJ
agJ
@@ -45539,12 +37855,12 @@ iEV
tEV
aWp
rUl
-aah
+aaR
ams
aQL
abe
aoU
-aRW
+aaY
agK
aSi
aRt
@@ -45577,8 +37893,8 @@ aKU
aIS
aJI
aFj
-aQQ
-aQD
+aLx
+aSo
aAH
aSY
aSY
@@ -45691,7 +38007,7 @@ aSb
aSi
aRt
aib
-aSl
+aib
aib
agJ
aqu
@@ -45720,7 +38036,7 @@ aGG
aHg
aFj
aQR
-aQD
+aSo
aAH
aSZ
aTo
@@ -45832,8 +38148,8 @@ abe
abe
aSx
agy
-aSn
-aSl
+abj
+aib
aib
agJ
aqu
@@ -45861,7 +38177,7 @@ aLA
aIT
aJK
aFj
-aQZ
+aef
aSB
aSU
aTa
@@ -45987,7 +38303,7 @@ avl
avl
awH
avl
-axZ
+ydR
aAO
azN
aAN
@@ -46003,8 +38319,8 @@ aMc
aFj
aJL
aFj
-aRl
-aSD
+aeg
+aen
aAH
aTe
aTs
@@ -46387,21 +38703,21 @@ adV
aRw
akV
aRA
-aRC
aRD
-aPk
+aRD
+aaQ
aRA
aRA
-aRG
-aQm
+aRA
+aaS
aRy
-aRR
+aaW
aSs
aSd
aSi
-aSk
+aaZ
arU
-auC
+arV
agJ
agJ
aqu
@@ -46522,17 +38838,17 @@ aaa
aaa
aaa
adV
-aeI
+agK
afp
amT
adx
-anh
+aaP
adV
afy
afy
afy
adV
-aeI
+agK
aRJ
aRK
aRM
@@ -46541,7 +38857,7 @@ aRA
aRA
aRA
anb
-arT
+aba
arV
agJ
agJ
@@ -46664,11 +38980,11 @@ aaa
aaa
aaa
adV
-aeI
+agK
agK
aoT
adV
-aRx
+aSi
afy
afy
adu
@@ -46677,8 +38993,8 @@ afy
aRI
aZQ
afp
-aRN
-aeI
+aiJ
+agK
anV
apZ
aiJ
@@ -46807,7 +39123,7 @@ aaa
aaa
adV
alo
-aeI
+agK
apA
afy
ahy
@@ -46841,20 +39157,20 @@ asJ
axs
ayg
aQc
-aqu
+xZK
aoK
-aBU
+aBT
aCM
-aBU
-aBU
-aBU
-aBU
-aBU
+aBT
+aBT
+aBT
+aBT
+aBT
aHE
-aIu
-aGR
-azO
-aab
+twW
+iJs
+dLI
+btZ
aab
aMN
aTg
@@ -46948,8 +39264,8 @@ aaa
aaa
aaa
adV
-gUi
-aeI
+aaq
+agK
apZ
afy
ahz
@@ -46996,7 +39312,7 @@ aBU
aIu
aIX
azO
-aab
+tVq
aab
aMN
aTg
@@ -47092,7 +39408,7 @@ aaa
adV
agK
agK
-aeI
+agK
afy
aem
ajt
@@ -47136,9 +39452,9 @@ aCN
aGO
aGO
aIv
-aGR
+hai
azO
-aab
+tVq
aab
aMN
aWZ
@@ -47280,7 +39596,7 @@ aHF
aQe
aIY
azO
-aab
+tVq
aab
aMN
aTj
@@ -47374,9 +39690,9 @@ aaa
aaa
aaa
adV
-aeI
-afE
-aeI
+agK
+apZ
+agK
afy
aic
ajD
@@ -47422,7 +39738,7 @@ aCP
aAX
aAX
azO
-aab
+tVq
aab
aMN
aTv
@@ -47516,9 +39832,9 @@ aaa
aaa
aaa
adV
-aeS
-aid
-aRr
+aau
+aaw
+aaz
afy
aie
ajD
@@ -47564,7 +39880,7 @@ aHG
aaa
aaa
aae
-aae
+bFB
aaa
aMN
ahc
@@ -47576,11 +39892,11 @@ avt
avt
adD
aZS
-adK
-adL
-adL
-adL
-adY
+aes
+aet
+aet
+aet
+aex
baB
adD
avt
@@ -47706,7 +40022,7 @@ aHH
aae
aae
aae
-aae
+bFB
aaa
aMN
aTv
@@ -47848,7 +40164,7 @@ agg
agg
agg
aae
-aae
+bFB
baS
aMD
aMD
@@ -47990,7 +40306,7 @@ agg
agg
agg
agg
-aae
+bFB
baS
aNn
aTB
@@ -48132,7 +40448,7 @@ agg
agg
agg
agg
-aae
+bFB
baS
aQh
aUN
@@ -48274,7 +40590,7 @@ agg
agg
agg
aCS
-aae
+bFB
baS
aQr
aTR
@@ -48416,7 +40732,7 @@ agg
agg
agg
agg
-aae
+bFB
baS
aQA
aUe
@@ -48558,7 +40874,7 @@ agg
agg
agg
agg
-aae
+bFB
baS
aRL
aUe
@@ -48700,7 +41016,7 @@ agg
agg
agg
aae
-aae
+bFB
baS
aSR
aMD
@@ -48842,7 +41158,7 @@ aae
aae
aae
aae
-aae
+bFB
baS
aSS
aUe
@@ -48984,7 +41300,7 @@ aaa
aaa
aaa
aaa
-aaa
+ioI
baS
aTH
aWO
diff --git a/maps/tether/tether-09-solars.dmm b/maps/tether/tether-09-solars.dmm
index 882d13a7dd4..db66542c9c6 100644
--- a/maps/tether/tether-09-solars.dmm
+++ b/maps/tether/tether-09-solars.dmm
@@ -242,12 +242,37 @@
/turf/simulated/floor/virgo3b_indoors,
/area/tether/outpost/solars_shed)
"az" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/virgo3b,
+/area/tether/outpost/solars_outside)
+"aA" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/virgo3b,
+/area/tether/outpost/solars_outside)
+"aB" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -256,8 +281,7 @@
/obj/structure/closet/crate/solar,
/turf/simulated/floor/virgo3b_indoors,
/area/tether/outpost/solars_shed)
-"aA" = (
-/obj/effect/decal/cleanable/dirt,
+"aC" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -266,8 +290,7 @@
/obj/structure/closet/crate/solar,
/turf/simulated/floor/virgo3b_indoors,
/area/tether/outpost/solars_shed)
-"aB" = (
-/obj/effect/decal/cleanable/dirt,
+"aD" = (
/obj/structure/table/standard,
/obj/item/clothing/gloves/yellow,
/obj/structure/cable/yellow{
@@ -277,8 +300,44 @@
},
/turf/simulated/floor/virgo3b_indoors,
/area/tether/outpost/solars_shed)
-"aC" = (
-/obj/effect/decal/cleanable/dirt,
+"aE" = (
+/obj/structure/table/standard,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/stack/cable_coil/yellow,
+/turf/simulated/floor/virgo3b_indoors,
+/area/tether/outpost/solars_shed)
+"aF" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/virgo3b_indoors,
+/area/tether/outpost/solars_shed)
+"aG" = (
+/turf/simulated/floor/virgo3b_indoors,
+/area/tether/outpost/solars_shed)
+"aH" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/virgo3b_indoors,
+/area/tether/outpost/solars_shed)
+"aI" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/virgo3b_indoors,
+/area/tether/outpost/solars_shed)
+"aJ" = (
/obj/structure/cable/heavyduty{
icon_state = "0-8"
},
@@ -291,84 +350,18 @@
},
/turf/simulated/floor/virgo3b,
/area/tether/outpost/solars_outside)
-"aD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/virgo3b_indoors,
-/area/tether/outpost/solars_shed)
-"aE" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/virgo3b_indoors,
-/area/tether/outpost/solars_shed)
-"aF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "2-4"
- },
-/turf/simulated/floor/virgo3b_indoors,
-/area/tether/outpost/solars_shed)
-"aG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/standard,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/item/stack/cable_coil/yellow,
-/turf/simulated/floor/virgo3b_indoors,
-/area/tether/outpost/solars_shed)
-"aH" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/grille,
-/turf/simulated/floor/virgo3b_indoors,
-/area/tether/outpost/solars_shed)
-"aI" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
+"aK" = (
/turf/simulated/floor/virgo3b,
/area/tether/outpost/solars_outside)
-"aJ" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
+"aL" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/tether/outpost/solars_outside)
-"aK" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/virgo3b,
-/area/tether/outpost/solars_outside)
-"aL" = (
-/obj/effect/decal/cleanable/dirt,
+"aM" = (
/obj/item/weapon/stool,
/obj/structure/cable/yellow{
d1 = 1;
@@ -377,23 +370,10 @@
},
/turf/simulated/floor/virgo3b_indoors,
/area/tether/outpost/solars_shed)
-"aM" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/virgo3b,
-/area/tether/outpost/solars_outside)
"aN" = (
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/obj/machinery/light/small{
- dir = 8;
- pixel_x = 0
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/tether/outpost/solars_outside)
"aO" = (
@@ -426,7 +406,6 @@
/turf/simulated/floor/tiled,
/area/rnd/outpost)
"aR" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
d2 = 4;
icon_state = "0-4"
@@ -438,7 +417,6 @@
/turf/simulated/floor/virgo3b_indoors,
/area/tether/outpost/solars_shed)
"aS" = (
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/apc{
dir = 2;
name = "south bump";
@@ -451,7 +429,6 @@
/turf/simulated/floor/virgo3b_indoors,
/area/tether/outpost/solars_shed)
"aT" = (
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/camera/network/engineering{
dir = 1
},
@@ -466,7 +443,6 @@
/turf/simulated/floor/outdoors/grass/sif/virgo3b,
/area/mine/explored)
"aV" = (
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -478,29 +454,10 @@
/turf/simulated/floor/virgo3b_indoors,
/area/tether/outpost/solars_shed)
"aW" = (
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing,
/turf/simulated/floor/virgo3b,
/area/tether/outpost/solars_outside)
"aX" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/virgo3b,
-/area/tether/outpost/solars_outside)
-"aY" = (
-/obj/effect/floor_decal/industrial/warning/dust,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/mine/explored)
-"aZ" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/virgo3b,
-/area/tether/outpost/solars_outside)
-"ba" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -510,7 +467,6 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
d2 = 2;
icon_state = "0-2"
@@ -521,6 +477,25 @@
},
/turf/simulated/floor/virgo3b,
/area/tether/outpost/solars_outside)
+"aY" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/mine/explored)
+"aZ" = (
+/obj/machinery/door/airlock/multi_tile/metal/mait,
+/turf/simulated/floor/virgo3b_indoors,
+/area/tether/outpost/solars_shed)
+"ba" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8;
+ pixel_x = 0
+ },
+/turf/simulated/floor/virgo3b,
+/area/tether/outpost/solars_outside)
"bb" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -531,10 +506,16 @@
/turf/simulated/wall,
/area/tether/outpost/solars_shed)
"bc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/multi_tile/metal/mait,
-/turf/simulated/floor/virgo3b_indoors,
-/area/tether/outpost/solars_shed)
+/obj/effect/floor_decal/rust,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/virgo3b,
+/area/tether/outpost/solars_outside)
"bd" = (
/obj/effect/floor_decal/rust,
/obj/effect/map_effect/portal/line/side_b{
@@ -613,15 +594,10 @@
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/outpost/solars_outside)
"bn" = (
-/obj/effect/floor_decal/rust,
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
- },
/obj/structure/cable/heavyduty{
- icon_state = "1-4"
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing,
/turf/simulated/floor/virgo3b,
/area/tether/outpost/solars_outside)
"bo" = (
@@ -633,7 +609,6 @@
/obj/structure/railing{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"bp" = (
@@ -644,7 +619,6 @@
/obj/structure/railing{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"bq" = (
@@ -676,7 +650,6 @@
/obj/structure/railing{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"bu" = (
@@ -826,7 +799,6 @@
/obj/structure/railing{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"bJ" = (
@@ -841,7 +813,6 @@
dir = 8
},
/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"bL" = (
@@ -878,7 +849,6 @@
dir = 1
},
/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"bR" = (
@@ -918,7 +888,6 @@
/obj/structure/cable/heavyduty{
icon_state = "2-4"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"bV" = (
@@ -1026,11 +995,9 @@
/turf/simulated/wall,
/area/rnd/outpost/airlock)
"cm" = (
-/obj/structure/cable/ender{
- icon_state = "4-8";
- id = "surface-solars"
+/obj/structure/cable/heavyduty{
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"cn" = (
@@ -1455,10 +1422,10 @@
/turf/simulated/floor/tiled,
/area/rnd/outpost/airlock)
"dd" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+/obj/structure/cable/ender{
+ icon_state = "4-8";
+ id = "surface-solars"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"de" = (
@@ -1877,12 +1844,14 @@
/turf/simulated/floor/tiled,
/area/rnd/outpost/airlock)
"ec" = (
+/obj/structure/cable/heavyduty{
+ icon_state = "1-2"
+ },
/obj/structure/railing{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/heavyduty{
- icon_state = "1-4"
+/obj/structure/railing{
+ dir = 4
},
/turf/simulated/floor/virgo3b,
/area/mine/explored)
@@ -1902,26 +1871,21 @@
/turf/simulated/floor,
/area/maintenance/substation/outpost)
"ef" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
/obj/structure/railing{
- dir = 1
+ dir = 8
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "1-4"
},
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"eg" = (
/obj/structure/cable/heavyduty{
- icon_state = "1-2"
+ icon_state = "4-8"
},
/obj/structure/railing{
- dir = 8
+ dir = 1
},
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"eh" = (
@@ -5038,7 +5002,6 @@
/obj/structure/cable/heavyduty{
icon_state = "2-8"
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/railing{
dir = 1
},
@@ -6847,13 +6810,9 @@
/area/rnd/outpost/anomaly_lab/analysis)
"mu" = (
/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- icon_state = "railing0";
- dir = 4
+ icon_state = "4-8"
},
+/obj/structure/railing,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
"mv" = (
@@ -7461,9 +7420,12 @@
/area/rnd/outpost)
"nB" = (
/obj/structure/cable/heavyduty{
- icon_state = "4-8"
+ icon_state = "1-8"
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/obj/structure/railing,
/turf/simulated/floor/virgo3b,
/area/mine/explored)
@@ -7699,18 +7661,6 @@
},
/turf/simulated/floor/tiled,
/area/rnd/outpost/anomaly_lab)
-"ob" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing{
- icon_state = "railing0";
- dir = 4
- },
-/obj/structure/railing,
-/turf/simulated/floor/virgo3b,
-/area/mine/explored)
"oc" = (
/obj/item/device/radio/intercom{
dir = 4;
@@ -18727,10 +18677,10 @@ ad
ad
ad
ad
-aI
+az
+aK
+aK
aW
-aW
-aZ
af
bu
ad
@@ -18869,10 +18819,10 @@ ad
ad
ad
ax
-aJ
+aA
+aL
+aL
aX
-aX
-ba
bg
bv
ad
@@ -19153,8 +19103,8 @@ ad
ad
ad
au
-az
-aL
+aB
+aM
aR
au
bi
@@ -19295,8 +19245,8 @@ ad
ad
ad
au
-aA
-aE
+aC
+aG
aS
au
bi
@@ -19437,9 +19387,9 @@ ad
ad
ad
au
-aB
-aE
-aE
+aD
+aG
+aG
au
bi
bv
@@ -19579,8 +19529,8 @@ ad
ad
ad
au
-aG
aE
+aG
aT
au
bk
@@ -19721,10 +19671,10 @@ ad
ad
ad
av
-aD
-aE
-aE
-bc
+aF
+aG
+aG
+aZ
bl
bl
ad
@@ -19863,10 +19813,10 @@ ad
ad
ad
av
-aE
-aE
-aE
-aE
+aG
+aG
+aG
+aG
al
bv
ad
@@ -20005,7 +19955,7 @@ ad
ad
ad
au
-aF
+aI
aO
aV
bP
@@ -20289,11 +20239,11 @@ ad
ad
ad
ad
-aC
-aK
-aK
+aJ
aN
-bn
+aN
+ba
+bc
bl
ad
ad
@@ -20431,11 +20381,11 @@ ad
ad
ad
ad
-aW
-aW
-aW
-aW
-aM
+aK
+aK
+aK
+aK
+bn
bl
ad
ad
@@ -24885,19 +24835,19 @@ bS
bS
bS
bT
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
ec
+ec
+ec
+ec
+ec
+ec
+ec
+ec
+ec
+ec
+ec
+ec
+ef
kr
ez
jt
@@ -25039,7 +24989,7 @@ ad
ad
ad
ab
-ef
+eg
kr
eC
mw
@@ -25181,7 +25131,7 @@ ab
ad
ad
ab
-ef
+eg
kr
eA
fc
@@ -25323,7 +25273,7 @@ ab
ab
ab
ab
-ef
+eg
kr
js
kd
@@ -25465,7 +25415,7 @@ ab
ab
ab
ab
-ef
+eg
kr
kr
kr
@@ -25473,7 +25423,7 @@ kr
kr
kr
kr
-nB
+mu
ab
fC
fT
@@ -25608,14 +25558,14 @@ ab
ab
ab
ju
-mu
-mu
-mu
mv
mv
mv
mv
-ob
+mv
+mv
+mv
+nB
ab
fC
fT
@@ -27711,7 +27661,7 @@ ab
ab
ab
ab
-dd
+cm
aa
bj
bj
@@ -27853,7 +27803,7 @@ ab
ab
ab
ab
-cm
+dd
aa
bj
bj
diff --git a/maps/tether/tether_areas.dm b/maps/tether/tether_areas.dm
index 1886b182911..1f004c4b177 100644
--- a/maps/tether/tether_areas.dm
+++ b/maps/tether/tether_areas.dm
@@ -288,7 +288,7 @@
icon_state = "outpost_mine_main"
/area/tether/surfacebase/mining_main/eva
name = "\improper Mining EVA"
-/area/tether/surfacebase/mining_main/external //TODO: repath for medical move
+/area/tether/surfacebase/lowernortheva/external
name = "\improper Mining External"
/area/tether/surfacebase/mining_main/break_room
name = "\improper Mining Crew Area"
@@ -344,41 +344,141 @@
name = "\improper Tether Midpoint Maint"
/area/maintenance/commandmaint
name = "\improper Command Maintenance"
+/area/maintenance/lowmedbaymaint
+ name = "\improper Lower Medbay Maintenance"
+ icon_state = "green"
+/area/maintenance/substation/SurfMedsubstation
+ name = "\improper SurfMed Substation"
+ icon_state = "green"
+/area/maintenance/substation/cargostoresubstation
+ name = "\improper Cargo Store Substation"
+ icon_state = "green"
+
+/area/tether/surfacebase/lowernorthhall
+ name = "\improper Lower North Hallway"
+ icon_state = "green"
+/area/tether/surfacebase/lowernortheva
+ name = "\improper Lower North EVA"
+ icon_state = "green"
+
+/area/tether/surfacebase/cargostore
+ name = "\improper Cargo Store"
+ icon_state = "yellow"
+/area/tether/surfacebase/cargostore/office
+ name = "\improper Cargo Store Office"
+ icon_state = "yellow"
+ lightswitch = 0
+/area/tether/surfacebase/cargostore/warehouse
+ name = "\improper Cargo Store Warehouse"
+ icon_state = "yellow"
+ lightswitch = 0
/area/tether/surfacebase/medical
icon_state = "medical"
/area/tether/surfacebase/medical/lobby
- name = "\improper Surface Medical Lobby"
+ name = "\improper Medical Lobby"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "medbay3"
/area/tether/surfacebase/medical/triage
- name = "\improper Surface Triage"
+ name = "\improper Triage"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "medbay_triage"
+/area/tether/surfacebase/medical/admin
+ name = "\improper Medical Admin"
/area/tether/surfacebase/medical/first_aid_west
name = "\improper First Aid West"
/area/tether/surfacebase/medical/chemistry
- name = "\improper Surface Chemistry"
- lightswitch = 0
+ name = "\improper Chemistry"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "chem"
/area/tether/surfacebase/medical/resleeving
- name = "\improper Surface Resleeving"
- lightswitch = 0
-/area/tether/surfacebase/medical/surgery
- name = "\improper Surface Surgery"
- lightswitch = 0
+ name = "\improper Resleeving"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "cloning"
+/area/tether/surfacebase/medical/surgery1
+ name = "\improper Surgery OR 1"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "surgery_1"
+/area/tether/surfacebase/medical/surgery2
+ name = "\improper Surgery OR 2"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "surgery_2"
+/area/tether/surfacebase/medical/patient
+ name = "\improper Surface Patient Recovery Rooms"
/area/tether/surfacebase/medical/patient_a
- name = "\improper Surface Patient Room A"
- lightswitch = 0
+ name = "\improper Patient Room A"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "medbay_patient_room_a"
/area/tether/surfacebase/medical/patient_b
- name = "\improper Surface Patient Room B"
- lightswitch = 0
+ name = "\improper Patient Room B"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "medbay_patient_room_b"
+/area/tether/surfacebase/medical/patient_c
+ name = "\improper Patient Room C"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "medbay_patient_room_c"
+/area/tether/surfacebase/medical/recoveryward
+ name = "\improper Medbay Recovery Ward"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "Sleep"
+/area/tether/surfacebase/medical/recoveryward/storage
+ name = "\improper Medbay Recovery Storage"
+/area/tether/surfacebase/medical/bathroom
+ name = "\improper Medbay Staff Bathroom"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "medbay_restroom"
+/area/tether/surfacebase/medical/mentalhealth
+ name = "\improper Mental Health"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "medbay_mentalhealth"
+/area/tether/surfacebase/medical/mentalhealthwaiting
+ name = "\improper Mental Health Waiting Room"
+/area/tether/surfacebase/medical/cmo
+ name = "\improper Chief Medical Officer's Office"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "CMO"
+/area/tether/surfacebase/medical/morgue
+ name = "\improper Morgue"
+/area/tether/surfacebase/medical/viro
+ name = "\improper Virology"
+/area/tether/surfacebase/medical/viroairlock
+ name = "\improper Virology Airlock"
+/area/tether/surfacebase/medical/viro/viroward
+ name = "\improper Virology Ward"
+/area/tether/surfacebase/medical/upperhall
+ name = "\improper Medical Upper Hall"
+/area/tether/surfacebase/medical/centralhall
+ name = "\improper Medical Central Hall"
/area/tether/surfacebase/medical/lowerhall
- name = "\improper Surface Medical Lower Hall"
+ name = "\improper Medical Lower Hall"
+ //North SurfMed3-2 Stairwell
+/area/tether/surfacebase/medical/uppernorthstairwell
+ name = "\improper Medical Stairwell"
+ icon_state = "north"
+ ///South SufMed3-2 Stairwell
+/area/tether/surfacebase/medical/uppersouthstairwell
+ name = "\improper Upper Medical Stairwell"
+ icon_state = "south"
+ //Central Surfmet2-1 Stairwell
+/area/tether/surfacebase/medical/centralstairwell
+ name = "\improper Central Medical Stairwell"
+ icon_state = "center"
/area/tether/surfacebase/medical/storage
- name = "\improper Surface Medical Storage"
- lightswitch = 0
+ name = "\improper Medical Storage"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "medbay_primary_storage"
+/area/tether/surfacebase/medical/examroom
+ name = "\improper Medical Exam Room"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "exam_room"
/area/tether/surfacebase/medical/paramed
- name = "\improper Surface Paramedic Closet"
- lightswitch = 0
+ name = "\improper Emergency Medical Bay"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "medbay_emt_bay"
/area/tether/surfacebase/medical/breakroom
- name = "\improper Surface Medical Break Room"
- lightswitch = 0
+ name = "\improper Medical Break Room"
+ icon = 'icons/turf/areas.dmi'
+ icon_state = "medbay_breakroom"
/area/tether/surfacebase/medical/maints
name = "\improper Mining Upper Maintenance"
@@ -415,14 +515,14 @@
/area/tether/surfacebase/security/common
name = "\improper Surface Security Room"
/area/tether/surfacebase/security/armory
- name = "\improper Surface Equipment Storage"
+ name = "\improper Armory"
lightswitch = 0
/area/tether/surfacebase/security/checkpoint
name = "\improper Surface Checkpoint Office"
/area/tether/surfacebase/security/hallway
name = "\improper Surface Checkpoint Hallway"
/area/tether/surfacebase/security/warden
- name = "\improper Surface Security Warden's Office"
+ name = "\improper Warden's Office"
lightswitch = 0
/area/tether/surfacebase/security/lowerhallway
name = "\improper Surface Security Lower Hallway"
@@ -431,7 +531,11 @@
lightswitch = 0
/area/tether/surfacebase/security/brig
name = "\improper Surface Security Brig"
+/area/tether/surfacebase/security/brig/storage
+ name = "\improper Brig Storage"
lightswitch = 0
+/area/tether/surfacebase/security/brig/bathroom
+ name = "\improper Brig Bathroom"
/area/tether/surfacebase/security/solitary
name = "\improper Surface Security Solitary Confinement"
lightswitch = 0
@@ -452,9 +556,74 @@
name = "\improper Surface Security Front Desk"
lightswitch = 0
/area/tether/surfacebase/security/upperhall
- name = "\improper Surface Security Upper Hallway"
+ name = "\improper Security Upper Hallway"
+/area/tether/surfacebase/security/middlehall
+ name = "\improper Security Middle Hallway"
+/area/tether/surfacebase/security/lowerhall
+ name = "\improper Security Lower Hallway"
/area/maintenance/lower/security
name = "\improper Surface Security Maintenance"
+/area/tether/surfacebase/security/hos
+ name = "\improper Head of Security Office"
+ lightswitch = 0
+/area/tether/surfacebase/security/briefingroom
+ name = "\improper Security Briefing Room"
+ lightswitch = 0
+/area/tether/surfacebase/security/iaa
+ name = "\improper Internal Affairs"
+/area/tether/surfacebase/security/iaa/officea
+ name = "\improper Internal Affairs Office A"
+ lightswitch = 0
+/area/tether/surfacebase/security/iaa/officeb
+ name = "\improper Internal Affairs Office B"
+ lightswitch = 0
+/area/tether/surfacebase/security/iaa/officecommon
+ name = "\improper Internal Affairs Common Office"
+ lightswitch = 0
+/area/tether/surfacebase/security/outfitting
+ name = "\improper Security Outfitting"
+ lightswitch = 0
+/area/tether/surfacebase/security/outfitting/storage
+ name = "\improper Security Equipment Storage"
+ lightswitch = 0
+/area/tether/surfacebase/security/detective
+ name = "\improper Forensics Lab"
+ lightswitch = 0
+/area/tether/surfacebase/security/detective/officea
+ name = "\improper Detective Office A"
+ lightswitch = 0
+/area/tether/surfacebase/security/detective/officeb
+ name = "\improper Detective Office B"
+ lightswitch = 0
+/area/tether/surfacebase/security/bathroom
+ name = "\improper Security Bathroom"
+ lightswitch = 0
+/area/tether/surfacebase/security/evastorage
+ name = "\improper Security EVA Equipment Storage"
+ lightswitch = 0
+/area/tether/surfacebase/security/weaponsrange
+ name = "\improper Security Weapons Range"
+ lightswitch = 0
+
+/area/maintenance/readingrooms
+ name = "\improper Southeast Maintenance"
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "green"
+ sound_env = SMALL_SOFTFLOOR
+
+/area/tether/surfacebase/cafeteria
+ name = "\improper Surface Cafeteria"
+ icon_state = "blueold"
+ lightswitch = 0
+/area/tether/surfacebase/southhall
+ name = "\improper Surface South Central Hallway"
+ icon_state = "blueold"
+/area/tether/surfacebase/southhall/readingroomaccess
+ name = "\improper Reading Room Access"
+ icon_state = "blueold"
+/area/tether/surfacebase/topairlock
+ name = "\improper Surface Upper Airlock"
+ icon_state = "blueold"
/area/engineering/atmos/processing
name = "Atmospherics Processing"
@@ -574,6 +743,23 @@
name = "\improper Research Tank Storage"
icon_state = "research"
+// Robotics + Associated Areas
+/area/rnd/robotics
+ name = "\improper Robotics Lab"
+ icon_state = "robotics"
+
+/area/rnd/robotics/mechbay
+ name = "\improper Mech Bay"
+ icon_state = "mechbay"
+/area/rnd/robotics/surgeryroom1
+ name = "\improper Robotics Surgery Room 1"
+
+/area/rnd/robotics/surgeryroom2
+ name = "\improper Robotics Surgery Room 2"
+
+/area/rnd/robotics/resleeving
+ name = "\improper Robotics Resleeving"
+
//TFF 28/8/19 - cleanup of areas placement
/area/rnd/research/testingrange
name = "\improper Weapons Testing Range"
@@ -721,6 +907,9 @@
name = "\improper Tether Shuttle Pad"
/area/tether/surfacebase/reading_room
name = "\improper Reading Room"
+ icon = 'icons/turf/areas_vr.dmi'
+ icon_state = "green"
+ flags = RAD_SHIELDED
/area/tether/surfacebase/vacant_site
name = "\improper Vacant Site"
flags = null
diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm
index fa8abc2f1f2..f3121da7e76 100644
--- a/maps/tether/tether_defines.dm
+++ b/maps/tether/tether_defines.dm
@@ -150,10 +150,12 @@
unit_test_exempt_from_atmos = list(
/area/engineering/atmos_intake, // Outside,
/area/rnd/external, // Outside,
- /area/tether/surfacebase/mining_main/external, // Outside,
- /area/tether/surfacebase/cargo/mining/airlock, // It's an airlock, TODO: repath for later Med EVA on Surface
/area/tether/surfacebase/emergency_storage/rnd,
- /area/tether/surfacebase/emergency_storage/atrium)
+ /area/tether/surfacebase/emergency_storage/atrium,
+ /area/tether/surfacebase/lowernortheva, // it airlock
+ /area/tether/surfacebase/lowernortheva/external, //it outside
+ /area/tether/surfacebase/security/gasstorage) //it maint
+
lateload_z_levels = list(
list("Tether - Misc","Tether - Underdark","Tether - Plains"), //Stock Tether lateload maps
@@ -201,7 +203,8 @@
lateload_single_pick = null //Nothing right now.
- planet_datums_to_make = list(/datum/planet/virgo3b)
+ planet_datums_to_make = list(/datum/planet/virgo3b,
+ /datum/planet/virgo4)
/datum/map/tether/perform_map_generation()
@@ -225,6 +228,10 @@
Z_LEVEL_SURFACE_MINE,
Z_LEVEL_SOLARS,
Z_LEVEL_PLAINS
+ )
+/datum/planet/virgo4
+ expected_z_levels = list(
+ Z_LEVEL_BEACH
)
// Overmap represetation of tether
diff --git a/maps/tether/tether_jobs.dm b/maps/tether/tether_jobs.dm
index f7f03758d60..a737f96bd06 100644
--- a/maps/tether/tether_jobs.dm
+++ b/maps/tether/tether_jobs.dm
@@ -28,6 +28,10 @@
pto_type = null
access = list(access_talon)
minimal_access = list(access_talon)
+ alt_titles = list("Talon Commander" = /datum/alt_title/talon_commander)
+
+/datum/alt_title/talon_commander
+ title = "Talon Commander"
/datum/job/talon_doctor
title = "Talon Doctor"
@@ -48,6 +52,11 @@
pto_type = null
access = list(access_talon)
minimal_access = list(access_talon)
+ alt_titles = list("Talon Medic" = /datum/alt_title/talon_medic)
+
+/datum/alt_title/talon_medic
+ title = "Talon Medic"
+
/datum/job/talon_engineer
title = "Talon Engineer"
@@ -68,6 +77,11 @@
pto_type = null
access = list(access_talon)
minimal_access = list(access_talon)
+ alt_titles = list("Talon Technician" = /datum/alt_title/talon_tech)
+
+/datum/alt_title/talon_tech
+ title = "Talon Technician"
+
/datum/job/talon_pilot
title = "Talon Pilot"
@@ -88,6 +102,11 @@
pto_type = null
access = list(access_talon)
minimal_access = list(access_talon)
+ alt_titles = list("Talon Helmsman" = /datum/alt_title/talon_helmsman)
+
+/datum/alt_title/talon_helmsman
+ title = "Talon Helmsman"
+
/datum/job/talon_guard
title = "Talon Guard"
@@ -108,6 +127,11 @@
pto_type = null
access = list(access_talon)
minimal_access = list(access_talon)
+ alt_titles = list("Talon Security" = /datum/alt_title/talon_security)
+
+/datum/alt_title/talon_security
+ title = "Talon Security"
+
/decl/hierarchy/outfit/job/talon_captain
name = OUTFIT_JOB_NAME("Talon Captain")
diff --git a/maps/tether/tether_shuttles.dm b/maps/tether/tether_shuttles.dm
index 7ad7472fc65..8f459766c7a 100644
--- a/maps/tether/tether_shuttles.dm
+++ b/maps/tether/tether_shuttles.dm
@@ -259,7 +259,6 @@
/obj/machinery/computer/shuttle_control/explore/medivac
name = "short jump console"
shuttle_tag = "Medivac Shuttle"
- req_one_access = list(access_cmo, access_pilot)
////////////////////////////////////////
//////// Securiship /////////////
@@ -285,4 +284,3 @@
/obj/machinery/computer/shuttle_control/explore/securiship
name = "short jump console"
shuttle_tag = "Securiship Shuttle"
- req_one_access = list(access_pilot, access_hos)
diff --git a/maps/tether/tether_things.dm b/maps/tether/tether_things.dm
index 903026b6577..2d981f1a48d 100644
--- a/maps/tether/tether_things.dm
+++ b/maps/tether/tether_things.dm
@@ -366,7 +366,7 @@ var/global/list/latejoin_tram = list()
/obj/structure/closet/secure_closet/guncabinet/excursion/New()
..()
- for(var/i = 1 to 3)
+ for(var/i = 1 to 2)
new /obj/item/weapon/gun/energy/locked/frontier(src)
// Used at centcomm for the elevator
diff --git a/maps/~map_system/maps.dm b/maps/~map_system/maps.dm
index 6478e98d5e7..0b1b31af8fd 100644
--- a/maps/~map_system/maps.dm
+++ b/maps/~map_system/maps.dm
@@ -122,7 +122,7 @@ var/list/all_maps = list()
var/id_hud_icons = 'icons/mob/hud.dmi' // Used by the ID HUD (primarily sechud) overlay.
- // Some maps include areas for that map only and don't exist when not compiled, so Travis needs this to learn of new areas that are specific to a map.
+ // Some maps include areas for that map only and don't exist when not compiled, so CI needs this to learn of new areas that are specific to a map.
var/list/unit_test_exempt_areas = list()
var/list/unit_test_exempt_from_atmos = list()
var/list/unit_test_exempt_from_apc = list()
diff --git a/tgui/packages/tgui/interfaces/AppearanceChanger.js b/tgui/packages/tgui/interfaces/AppearanceChanger.js
index ca2d7b4952b..647e6f66ff2 100644
--- a/tgui/packages/tgui/interfaces/AppearanceChanger.js
+++ b/tgui/packages/tgui/interfaces/AppearanceChanger.js
@@ -15,6 +15,9 @@ export const AppearanceChanger = (props, context) => {
gender_id,
hair_style,
facial_hair_style,
+ ear_style,
+ tail_style,
+ wing_style,
change_race,
change_gender,
change_eye_color,
@@ -77,6 +80,15 @@ export const AppearanceChanger = (props, context) => {
{facial_hair_style ? capitalize(facial_hair_style) : "Not Set"}
+
+ {ear_style ? capitalize(ear_style) : "Not Set"}
+
+
+ {tail_style ? capitalize(tail_style) : "Not Set"}
+
+
+ {wing_style ? capitalize(wing_style) : "Not Set"}
+
@@ -115,11 +127,28 @@ export const AppearanceChanger = (props, context) => {
) : null}
{change_hair ? (
- setTabIndex(3)}>
- Hair
-
+
+ setTabIndex(3)}>
+ Hair
+
+ setTabIndex(5)}>
+ Ear
+
+ setTabIndex(6)}>
+ Tail
+
+ setTabIndex(7)}>
+ Wing
+
+
) : null}
{change_facial_hair ? (
{
{(change_color && tabIndex === 2) ? : null}
{(change_hair && tabIndex === 3) ? : null}
{(change_facial_hair && tabIndex === 4) ? : null}
+ {(change_hair && tabIndex === 5) ? : null}
+ {(change_hair && tabIndex === 6) ? : null}
+ {(change_hair && tabIndex === 7) ? : null}
@@ -212,6 +244,12 @@ const AppearanceChangerColors = (props, context) => {
skin_color,
hair_color,
facial_hair_color,
+ ears_color,
+ ears2_color,
+ tail_color,
+ tail2_color,
+ wing_color,
+ wing2_color,
} = data;
return (
@@ -234,10 +272,36 @@ const AppearanceChangerColors = (props, context) => {
) : null}
{change_hair_color ? (
-
-
- act("hair_color")} />
-
+
+
+
+ act("hair_color")} />
+
+
+
+ act("ears_color")} />
+
+
+
+ act("ears2_color")} />
+
+
+
+ act("tail_color")} />
+
+
+
+ act("tail2_color")} />
+
+
+
+ act("wing_color")} />
+
+
+
+ act("wing2_color")} />
+
+
) : null}
{change_facial_hair_color ? (
@@ -289,4 +353,79 @@ const AppearanceChangerFacialHair = (props, context) => {
))}
);
+};
+
+const AppearanceChangerEars = (props, context) => {
+ const { act, data } = useBackend(context);
+
+ const {
+ ear_style,
+ ear_styles,
+ } = data;
+
+ return (
+
+ act("ear", { clear: true })}
+ selected={ear_style === null}
+ content="-- Not Set --" />
+ {sortBy(e => e.name.toLowerCase())(ear_styles).map(ear => (
+ act("ear", { ref: ear.instance })}
+ selected={ear.name === ear_style}
+ content={ear.name} />
+ ))}
+
+ );
+};
+
+const AppearanceChangerTails = (props, context) => {
+ const { act, data } = useBackend(context);
+
+ const {
+ tail_style,
+ tail_styles,
+ } = data;
+
+ return (
+
+ act("tail", { clear: true })}
+ selected={tail_style === null}
+ content="-- Not Set --" />
+ {sortBy(e => e.name.toLowerCase())(tail_styles).map(tail => (
+ act("tail", { ref: tail.instance })}
+ selected={tail.name === tail_style}
+ content={tail.name} />
+ ))}
+
+ );
+};
+
+const AppearanceChangerWings = (props, context) => {
+ const { act, data } = useBackend(context);
+
+ const {
+ wing_style,
+ wing_styles,
+ } = data;
+
+ return (
+
+ act("wing", { clear: true })}
+ selected={wing_style === null}
+ content="-- Not Set --" />
+ {sortBy(e => e.name.toLowerCase())(wing_styles).map(wing => (
+ act("wing", { ref: wing.instance })}
+ selected={wing.name === wing_style}
+ content={wing.name} />
+ ))}
+
+ );
};
\ No newline at end of file
diff --git a/tgui/packages/tgui/interfaces/ClawMachine.js b/tgui/packages/tgui/interfaces/ClawMachine.js
new file mode 100644
index 00000000000..6eb372b0c30
--- /dev/null
+++ b/tgui/packages/tgui/interfaces/ClawMachine.js
@@ -0,0 +1,85 @@
+import { useBackend } from "../backend";
+import { Button, ProgressBar, Flex, Box, LabeledList } from "../components";
+import { Window } from "../layouts";
+
+export const ClawMachine = (props, context) => {
+ const { act, data } = useBackend(context);
+ const {
+ wintick,
+ instructions,
+ gameStatus,
+ winscreen,
+ } = data;
+
+ let body;
+
+ if (gameStatus === 'CLAWMACHINE_NEW') {
+ body = (
+
+
+ Pay to Play!
+ {instructions}
+
+ act('newgame')} />
+
+ );
+ }
+ else if (gameStatus === 'CLAWMACHINE_END') {
+ body = (
+
+
+ Thank you for playing!
+ {winscreen}
+
+ act('return')} />
+
+ );
+ }
+ else if (gameStatus === 'CLAWMACHINE_ON') {
+ body = (
+
+
+
+
+
+
+
+
+ {instructions}
+
+ act('pointless')} />
+
+ act('pointless')} />
+ act('pointless')} />
+
+ act('pointless')} />
+
+
+ );
+ }
+ return (
+
+
+ {body}
+
+
+ );
+};
\ No newline at end of file
diff --git a/tgui/packages/tgui/interfaces/Communicator.js b/tgui/packages/tgui/interfaces/Communicator.js
index 83c128cb44a..90a52fe5784 100644
--- a/tgui/packages/tgui/interfaces/Communicator.js
+++ b/tgui/packages/tgui/interfaces/Communicator.js
@@ -536,6 +536,21 @@ const enforceLengthLimit = (prefix, name, length) => {
return prefix + name;
};
+const findClassMessage = (im, targetAddress, lastIndex, filterArray) => {
+ if (lastIndex < 0 || lastIndex > filterArray.length) {
+ return IsIMOurs(im, targetAddress) ? "TinderMessage_First_Sent" : "TinderMessage_First_Received";
+ }
+
+ let thisSent = IsIMOurs(im, targetAddress);
+ let lastSent = IsIMOurs(filterArray[lastIndex], targetAddress);
+ if (thisSent && lastSent) {
+ return "TinderMessage_Subsequent_Sent";
+ } else if (!thisSent && !lastSent) {
+ return "TinderMessage_Subsequent_Received";
+ }
+ return thisSent ? "TinderMessage_First_Sent" : "TinderMessage_First_Received";
+};
+
const MessagingThreadTab = (props, context) => {
const { act, data } = useBackend(context);
@@ -578,7 +593,7 @@ const MessagingThreadTab = (props, context) => {
{imList.map((im, i) => (
+ className={IsIMOurs(im, targetAddress) ? "ClassicMessage_Sent" : "ClassicMessage_Received"}>
{IsIMOurs(im, targetAddress) ? "You" : "Them"}: {im.im}
))}
@@ -618,37 +633,16 @@ const MessagingThreadTab = (props, context) => {
"height": "95%",
"overflow-y": "auto",
}}>
- {imList.map((im, i) => (
+ {imList.map((im, i, filterArr) => (
-
- {IsIMOurs(im, targetAddress) ? "You:" : "Them:"} {decodeHtmlEntities(im.im)}
+ maxWidth="75%"
+ className={findClassMessage(im, targetAddress, i - 1, filterArr)}
+ inline>
+ {decodeHtmlEntities(im.im)}
))}
diff --git a/tgui/packages/tgui/interfaces/MiningOreProcessingConsole.js b/tgui/packages/tgui/interfaces/MiningOreProcessingConsole.js
index f1a22fbe8be..1b3721b230c 100644
--- a/tgui/packages/tgui/interfaces/MiningOreProcessingConsole.js
+++ b/tgui/packages/tgui/interfaces/MiningOreProcessingConsole.js
@@ -15,6 +15,7 @@ export const MiningOreProcessingConsole = (props, context) => {
ores,
showAllOres,
power,
+ speed,
} = data;
return (
@@ -32,12 +33,20 @@ export const MiningOreProcessingConsole = (props, context) => {
)} />
act("power")}>
- {power ? "Smelting" : "Not Smelting"}
-
+
+ act("speed_toggle")}>
+ {speed ? "High-Speed Active" : "High-Speed Inactive"}
+
+ act("power")}>
+ {power ? "Smelting" : "Not Smelting"}
+
+
}>
{
);
-};
\ No newline at end of file
+};
diff --git a/tgui/packages/tgui/interfaces/VorePanel.js b/tgui/packages/tgui/interfaces/VorePanel.js
index b50e654ab08..f747f956e02 100644
--- a/tgui/packages/tgui/interfaces/VorePanel.js
+++ b/tgui/packages/tgui/interfaces/VorePanel.js
@@ -23,18 +23,6 @@ const digestModeToColor = {
"Size Steal": "purple",
"Heal": "purple",
"Encase In Egg": "purple",
- "Transform": "purple",
- "Transform (Hair and eyes)": "purple",
- "Transform (Male)": "purple",
- "Transform (Female)": "purple",
- "Transform (Keep Gender)": "purple",
- "Transform (Replica Of Self)": "purple",
- "Transform (Change Species and Taur)": "purple",
- "Transform (Change Species and Taur) (EGG)": "purple",
- "Transform (Replica Of Self) (EGG)": "purple",
- "Transform (Keep Gender) (EGG)": "purple",
- "Transform (Male) (EGG)": "purple",
- "Transform (Female) (EGG)": "purple",
};
const digestModeToPreyMode = {
@@ -48,18 +36,6 @@ const digestModeToPreyMode = {
"Size Steal": "having your size stolen.",
"Heal": "being healed.",
"Encase In Egg": "being encased in an egg.",
- "Transform": "being transformed.",
- "Transform (Hair and eyes)": "being transformed.",
- "Transform (Male)": "being transformed.",
- "Transform (Female)": "being transformed.",
- "Transform (Keep Gender)": "being transformed.",
- "Transform (Replica Of Self)": "being transformed.",
- "Transform (Change Species and Taur)": "being transformed.",
- "Transform (Change Species and Taur) (EGG)": "being transformed.",
- "Transform (Replica Of Self) (EGG)": "being transformed.",
- "Transform (Keep Gender) (EGG)": "being transformed.",
- "Transform (Male) (EGG)": "being transformed.",
- "Transform (Female) (EGG)": "being transformed.",
};
/**
diff --git a/tgui/packages/tgui/interfaces/pda/pda_messenger.js b/tgui/packages/tgui/interfaces/pda/pda_messenger.js
index 82187ac3a69..fdcba3dd883 100644
--- a/tgui/packages/tgui/interfaces/pda/pda_messenger.js
+++ b/tgui/packages/tgui/interfaces/pda/pda_messenger.js
@@ -1,3 +1,4 @@
+import { decodeHtmlEntities } from 'common/string';
import { filter } from 'common/collections';
import { Fragment } from 'inferno';
import { useBackend, useLocalState } from "../../backend";
@@ -20,6 +21,20 @@ export const pda_messenger = (props, context) => {
return ;
};
+const findClassMessage = (im, lastIndex, filterArray) => {
+ if (lastIndex < 0 || lastIndex > filterArray.length) {
+ return im.sent ? "TinderMessage_First_Sent" : "TinderMessage_First_Received";
+ }
+
+ let lastSent = filterArray[lastIndex].sent;
+ if (im.sent && lastSent) {
+ return "TinderMessage_Subsequent_Sent";
+ } else if (!im.sent && !lastSent) {
+ return "TinderMessage_Subsequent_Received";
+ }
+ return im.sent ? "TinderMessage_First_Sent" : "TinderMessage_First_Received";
+};
+
const ActiveConversation = (props, context) => {
const { act, data } = useBackend(context);
@@ -52,37 +67,16 @@ const ActiveConversation = (props, context) => {
"height": "97%",
"overflow-y": "auto",
}}>
- {filter(im => im.target === active_conversation)(messages).map((im, i) => (
+ {filter(im => im.target === active_conversation)(messages).map((im, i, filterArr) => (
-
- {im.sent ? "You:" : "Them:"} {im.message}
+ maxWidth="75%"
+ className={findClassMessage(im, i - 1, filterArr)}
+ inline>
+ {decodeHtmlEntities(im.message)}
))}
@@ -116,11 +110,8 @@ const ActiveConversation = (props, context) => {
{filter(im => im.target === active_conversation)(messages).map((im, i) => (
- {im.sent ? "You:" : "Them:"} {im.message}
+ className={im.sent ? "ClassicMessage_Sent" : "ClassicMessage_Received"}>
+ {im.sent ? "You:" : "Them:"} {decodeHtmlEntities(im.message)}
))}
diff --git a/tgui/packages/tgui/package.json b/tgui/packages/tgui/package.json
index fbbd15901f6..a37b06e64a3 100644
--- a/tgui/packages/tgui/package.json
+++ b/tgui/packages/tgui/package.json
@@ -12,7 +12,7 @@
"core-js": "^3.2.1",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
- "dompurify": "^2.0.11",
+ "dompurify": "^2.0.17",
"extract-css-chunks-webpack-plugin": "^4.6.0",
"fg-loadcss": "^2.1.0",
"file-loader": "^6.0.0",
diff --git a/tgui/packages/tgui/public/tgui.bundle.css b/tgui/packages/tgui/public/tgui.bundle.css
index 6aac660a9be..d5795ccc062 100644
--- a/tgui/packages/tgui/public/tgui.bundle.css
+++ b/tgui/packages/tgui/public/tgui.bundle.css
@@ -1 +1 @@
-body,html{box-sizing:border-box;height:100%;margin:0;font-size:12px}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif}*,:after,:before{box-sizing:inherit}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:.5rem 0}h1{font-size:18px;font-size:1.5rem}h2{font-size:16px;font-size:1.333rem}h3{font-size:14px;font-size:1.167rem}h4{font-size:12px;font-size:1rem}td,th{vertical-align:baseline;text-align:left}.candystripe:nth-child(odd){background-color:rgba(0,0,0,.25)}.color-black{color:#0d0d0d!important}.color-white{color:#fff!important}.color-red{color:#d33!important}.color-orange{color:#f37827!important}.color-yellow{color:#fbd814!important}.color-olive{color:#c0d919!important}.color-green{color:#22be47!important}.color-teal{color:#00c5bd!important}.color-blue{color:#238cdc!important}.color-violet{color:#6c3fcc!important}.color-purple{color:#a93bcd!important}.color-pink{color:#e2439c!important}.color-brown{color:#af6d43!important}.color-grey{color:#7d7d7d!important}.color-good{color:#62b62a!important}.color-average{color:#f1951d!important}.color-bad{color:#d33!important}.color-label{color:#8496ab!important}.color-bg-black{background-color:#000!important}.color-bg-white{background-color:#d9d9d9!important}.color-bg-red{background-color:#bd2020!important}.color-bg-orange{background-color:#d95e0c!important}.color-bg-yellow{background-color:#d9b804!important}.color-bg-olive{background-color:#9aad14!important}.color-bg-green{background-color:#1b9638!important}.color-bg-teal{background-color:#009a93!important}.color-bg-blue{background-color:#1c71b1!important}.color-bg-violet{background-color:#552dab!important}.color-bg-purple{background-color:#8b2baa!important}.color-bg-pink{background-color:#cf2082!important}.color-bg-brown{background-color:#8c5836!important}.color-bg-grey{background-color:#646464!important}.color-bg-good{background-color:#4d9121!important}.color-bg-average{background-color:#cd7a0d!important}.color-bg-bad{background-color:#bd2020!important}.color-bg-label{background-color:#657a94!important}.debug-layout,.debug-layout :not(g):not(path){color:hsla(0,0%,100%,.9)!important;background:transparent!important;outline:1px solid hsla(0,0%,100%,.5)!important;box-shadow:none!important;filter:none!important}.debug-layout:hover,.debug-layout :not(g):not(path):hover{outline-color:hsla(0,0%,100%,.8)!important}.outline-dotted{outline-style:dotted!important}.outline-dashed{outline-style:dashed!important}.outline-solid{outline-style:solid!important}.outline-double{outline-style:double!important}.outline-groove{outline-style:groove!important}.outline-ridge{outline-style:ridge!important}.outline-inset{outline-style:inset!important}.outline-outset{outline-style:outset!important}.outline-color-black{outline:.167rem solid #0d0d0d!important}.outline-color-white{outline:.167rem solid #fff!important}.outline-color-red{outline:.167rem solid #d33!important}.outline-color-orange{outline:.167rem solid #f37827!important}.outline-color-yellow{outline:.167rem solid #fbd814!important}.outline-color-olive{outline:.167rem solid #c0d919!important}.outline-color-green{outline:.167rem solid #22be47!important}.outline-color-teal{outline:.167rem solid #00c5bd!important}.outline-color-blue{outline:.167rem solid #238cdc!important}.outline-color-violet{outline:.167rem solid #6c3fcc!important}.outline-color-purple{outline:.167rem solid #a93bcd!important}.outline-color-pink{outline:.167rem solid #e2439c!important}.outline-color-brown{outline:.167rem solid #af6d43!important}.outline-color-grey{outline:.167rem solid #7d7d7d!important}.outline-color-good{outline:.167rem solid #62b62a!important}.outline-color-average{outline:.167rem solid #f1951d!important}.outline-color-bad{outline:.167rem solid #d33!important}.outline-color-label{outline:.167rem solid #8496ab!important}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-baseline{text-align:baseline}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-pre{white-space:pre}.text-bold{font-weight:700}.text-italic{font-style:italic}.text-underline{text-decoration:underline}.BlockQuote{color:#8496ab;border-left:.1666666667em solid #8496ab;padding-left:.5em;margin-bottom:.5em}.BlockQuote:last-child{margin-bottom:0}.Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.Button:last-child{margin-right:0}.Button .fa,.Button .far,.Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.Button--hasContent .fa,.Button--hasContent .far,.Button--hasContent .fas{margin-right:.25em}.Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.Button--fluid{display:block;margin-left:0;margin-right:0}.Button--circular{border-radius:50%}.Button--compact{padding:0 .25em;line-height:1.333em}.Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.Button--color--black:hover{transition:color 0ms,background-color 0ms}.Button--color--black:focus{transition:color .1s,background-color .1s}.Button--color--black:focus,.Button--color--black:hover{background-color:#0a0a0a;color:#fff}.Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.Button--color--white:hover{transition:color 0ms,background-color 0ms}.Button--color--white:focus{transition:color .1s,background-color .1s}.Button--color--white:focus,.Button--color--white:hover{background-color:#f3f3f3;color:#000}.Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--red:hover{transition:color 0ms,background-color 0ms}.Button--color--red:focus{transition:color .1s,background-color .1s}.Button--color--red:focus,.Button--color--red:hover{background-color:#d52b2b;color:#fff}.Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.Button--color--orange:hover{transition:color 0ms,background-color 0ms}.Button--color--orange:focus{transition:color .1s,background-color .1s}.Button--color--orange:focus,.Button--color--orange:hover{background-color:#ed6f1d;color:#fff}.Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.Button--color--yellow:focus{transition:color .1s,background-color .1s}.Button--color--yellow:focus,.Button--color--yellow:hover{background-color:#f3d00e;color:#000}.Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.Button--color--olive:hover{transition:color 0ms,background-color 0ms}.Button--color--olive:focus{transition:color .1s,background-color .1s}.Button--color--olive:focus,.Button--color--olive:hover{background-color:#afc41f;color:#fff}.Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--color--green:hover{transition:color 0ms,background-color 0ms}.Button--color--green:focus{transition:color .1s,background-color .1s}.Button--color--green:focus,.Button--color--green:hover{background-color:#27ab46;color:#fff}.Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.Button--color--teal:hover{transition:color 0ms,background-color 0ms}.Button--color--teal:focus{transition:color .1s,background-color .1s}.Button--color--teal:focus,.Button--color--teal:hover{background-color:#0aafa8;color:#fff}.Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.Button--color--blue:hover{transition:color 0ms,background-color 0ms}.Button--color--blue:focus{transition:color .1s,background-color .1s}.Button--color--blue:focus,.Button--color--blue:hover{background-color:#2883c8;color:#fff}.Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.Button--color--violet:hover{transition:color 0ms,background-color 0ms}.Button--color--violet:focus{transition:color .1s,background-color .1s}.Button--color--violet:focus,.Button--color--violet:hover{background-color:#653ac1;color:#fff}.Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.Button--color--purple:hover{transition:color 0ms,background-color 0ms}.Button--color--purple:focus{transition:color .1s,background-color .1s}.Button--color--purple:focus,.Button--color--purple:hover{background-color:#9e38c1;color:#fff}.Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.Button--color--pink:hover{transition:color 0ms,background-color 0ms}.Button--color--pink:focus{transition:color .1s,background-color .1s}.Button--color--pink:focus,.Button--color--pink:hover{background-color:#dd3794;color:#fff}.Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.Button--color--brown:hover{transition:color 0ms,background-color 0ms}.Button--color--brown:focus{transition:color .1s,background-color .1s}.Button--color--brown:focus,.Button--color--brown:hover{background-color:#a06844;color:#fff}.Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.Button--color--grey:hover{transition:color 0ms,background-color 0ms}.Button--color--grey:focus{transition:color .1s,background-color .1s}.Button--color--grey:focus,.Button--color--grey:hover{background-color:#757575;color:#fff}.Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.Button--color--good:hover{transition:color 0ms,background-color 0ms}.Button--color--good:focus{transition:color .1s,background-color .1s}.Button--color--good:focus,.Button--color--good:hover{background-color:#5da52d;color:#fff}.Button--color--average{transition:color 50ms,background-color 50ms;background-color:#cd7a0d;color:#fff}.Button--color--average:hover{transition:color 0ms,background-color 0ms}.Button--color--average:focus{transition:color .1s,background-color .1s}.Button--color--average:focus,.Button--color--average:hover{background-color:#e68d18;color:#fff}.Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--bad:hover{transition:color 0ms,background-color 0ms}.Button--color--bad:focus{transition:color .1s,background-color .1s}.Button--color--bad:focus,.Button--color--bad:hover{background-color:#d52b2b;color:#fff}.Button--color--label{transition:color 50ms,background-color 50ms;background-color:#657a94;color:#fff}.Button--color--label:hover{transition:color 0ms,background-color 0ms}.Button--color--label:focus{transition:color .1s,background-color .1s}.Button--color--label:focus,.Button--color--label:hover{background-color:#7b8da4;color:#fff}.Button--color--default{transition:color 50ms,background-color 50ms;background-color:#3e6189;color:#fff}.Button--color--default:hover{transition:color 0ms,background-color 0ms}.Button--color--default:focus{transition:color .1s,background-color .1s}.Button--color--default:focus,.Button--color--default:hover{background-color:#4c729d;color:#fff}.Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--caution:hover{transition:color 0ms,background-color 0ms}.Button--color--caution:focus{transition:color .1s,background-color .1s}.Button--color--caution:focus,.Button--color--caution:hover{background-color:#f3d00e;color:#000}.Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--danger:hover{transition:color 0ms,background-color 0ms}.Button--color--danger:focus{transition:color .1s,background-color .1s}.Button--color--danger:focus,.Button--color--danger:hover{background-color:#d52b2b;color:#fff}.Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#252525;color:#fff;background-color:rgba(37,37,37,0);color:hsla(0,0%,100%,.5)}.Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.Button--color--transparent:focus{transition:color .1s,background-color .1s}.Button--color--transparent:focus,.Button--color--transparent:hover{background-color:#323232;color:#fff}.Button--disabled{background-color:#999!important}.Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--selected:hover{transition:color 0ms,background-color 0ms}.Button--selected:focus{transition:color .1s,background-color .1s}.Button--selected:focus,.Button--selected:hover{background-color:#27ab46;color:#fff}.ColorBox{display:inline-block;width:1em;height:1em;line-height:1em;text-align:center}.Dimmer{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.75);z-index:1}.Divider--horizontal{margin:.5px 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid hsla(0,0%,100%,.1)}.Divider--vertical{height:100%;margin:0 .5px}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid hsla(0,0%,100%,.1)}.Dropdown{position:relative}.Dropdown__control{position:relative;display:inline-block;font-family:Verdana,sans-serif;font-size:1em;width:8.3333333333em;line-height:1.4166666667em;user-select:none}.Dropdown__arrow-button{float:right;padding-left:.5em;border-left:.0833333333em solid #000;border-left:.0833333333em solid rgba(0,0,0,.25)}.Dropdown__menu{overflow-y:auto;overflow-y:scroll}.Dropdown__menu,.Dropdown__menu-noscroll{position:absolute;z-index:5;width:8.3333333333em;max-height:16.6666666667em;border-radius:0 0 .1666666667em .1666666667em;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menu-noscroll{overflow-y:auto}.Dropdown__menuentry{padding:.1666666667em .3333333333em;font-family:Verdana,sans-serif;font-size:1em;line-height:1.4166666667em;transition:background-color .1s}.Dropdown__menuentry:hover{background-color:#444;transition:background-color 0ms}.Dropdown__over{top:auto;bottom:100%}.FatalError{display:block!important;position:absolute;top:0;left:0;right:0;bottom:0;padding:12px;font-size:12px;font-family:Consolas,monospace;color:#fff;background-color:#00d;z-index:1000;overflow:hidden;text-align:center}.FatalError__logo{display:inline-block;text-align:left;font-size:10px;line-height:8px;position:relative;margin-top:12px;top:0;left:0;animation:FatalError__rainbow 2s linear infinite alternate,FatalError__shadow 4s linear infinite alternate,FatalError__tfmX 3s infinite alternate,FatalError__tfmY 4s infinite alternate;white-space:pre-wrap;word-break:break-all}.FatalError__header{margin-top:12px}.FatalError__stack{text-align:left;white-space:pre-wrap;word-break:break-all;margin-top:24px;margin-bottom:24px}.FatalError__footer{margin-bottom:24px}@keyframes FatalError__rainbow{0%{color:#ff0}50%{color:#0ff}to{color:#f0f}}@keyframes FatalError__shadow{0%{left:-2px;text-shadow:4px 0 #f0f}50%{left:0;text-shadow:0 0 #0ff}to{left:2px;text-shadow:-4px 0 #ff0}}@keyframes FatalError__tfmX{0%{left:15px}to{left:-15px}}@keyframes FatalError__tfmY{to{top:-15px}}.Flex{display:-ms-flexbox;display:flex}.Flex--inline{display:inline-flex}.Flex--iefix{display:table!important}.Flex--iefix--column{display:block!important}.Flex--iefix--column>.Flex__item{display:block!important;margin-left:.5em;margin-right:.5em}.Flex__item--iefix{display:table-cell!important}.Flex--spacing--1{margin:0 -.25em}.Flex--spacing--1>.Flex__item{margin:0 .25em}.Flex--spacingPrecise--1{margin:-1px}.Flex--spacingPrecise--1>.Flex__item{margin:1px}.Flex--spacing--2{margin:0 -.5em}.Flex--spacing--2>.Flex__item{margin:0 .5em}.Flex--spacingPrecise--2{margin:-2px}.Flex--spacingPrecise--2>.Flex__item{margin:2px}.Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto -.2em;cursor:n-resize}.Knob:after{content:".";color:transparent;line-height:2.5em}.Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(180deg,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,0));border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:hsla(0,0%,100%,.9)}.Knob__popupValue,.Knob__popupValue--right{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;background-color:#000;transform:translateX(50%);white-space:nowrap}.Knob__popupValue--right{top:.25rem;right:-50%}.Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.Knob__ringTrackPivot{transform:rotate(135deg)}.Knob__ringTrack{fill:transparent;stroke:hsla(0,0%,100%,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.Knob__ringFillPivot{transform:rotate(135deg)}.Knob--bipolar .Knob__ringFillPivot{transform:rotate(270deg)}.Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms}.Knob--color--black .Knob__ringFill{stroke:#0d0d0d}.Knob--color--white .Knob__ringFill{stroke:#fff}.Knob--color--red .Knob__ringFill{stroke:#d33}.Knob--color--orange .Knob__ringFill{stroke:#f37827}.Knob--color--yellow .Knob__ringFill{stroke:#fbd814}.Knob--color--olive .Knob__ringFill{stroke:#c0d919}.Knob--color--green .Knob__ringFill{stroke:#22be47}.Knob--color--teal .Knob__ringFill{stroke:#00c5bd}.Knob--color--blue .Knob__ringFill{stroke:#238cdc}.Knob--color--violet .Knob__ringFill{stroke:#6c3fcc}.Knob--color--purple .Knob__ringFill{stroke:#a93bcd}.Knob--color--pink .Knob__ringFill{stroke:#e2439c}.Knob--color--brown .Knob__ringFill{stroke:#af6d43}.Knob--color--grey .Knob__ringFill{stroke:#7d7d7d}.Knob--color--good .Knob__ringFill{stroke:#62b62a}.Knob--color--average .Knob__ringFill{stroke:#f1951d}.Knob--color--bad .Knob__ringFill{stroke:#d33}.Knob--color--label .Knob__ringFill{stroke:#8496ab}.LabeledList{display:table;width:100%;width:calc(100% + 1em);border-collapse:collapse;border-spacing:0;margin:-.25em -.5em 0;padding:0}.LabeledList__row{display:table-row}.LabeledList__row:last-child .LabeledList__cell{padding-bottom:0}.LabeledList__cell{display:table-cell;margin:0;padding:.25em .5em;border:0;text-align:left;vertical-align:baseline}.LabeledList__label{width:1%;white-space:nowrap;min-width:5em}.LabeledList__buttons{width:.1%;white-space:nowrap;text-align:right;padding-top:.0833333333em;padding-bottom:0}.LabeledList__breakContents{word-break:break-all;word-wrap:break-word}.Modal{background-color:#252525;max-width:calc(100% - 1rem);padding:1rem}.NanoMap__container{overflow:hiddden;width:100%;z-index:1}.NanoMap__marker{z-index:10;padding:0;margin:0}.NanoMap__zoomer{z-index:20;background-color:rgba(0,0,0,.33);position:absolute;top:30px;left:0;padding:.5rem;width:30%}.NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:700;font-style:italic;color:#000;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg,transparent,transparent .8333333333em,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 1.6666666667em)}.NoticeBox--color--black{color:#fff;background-color:#000}.NoticeBox--color--white{color:#000;background-color:#b3b3b3}.NoticeBox--color--red{color:#fff;background-color:#701f1f}.NoticeBox--color--orange{color:#fff;background-color:#854114}.NoticeBox--color--yellow{color:#000;background-color:#83710d}.NoticeBox--color--olive{color:#000;background-color:#576015}.NoticeBox--color--green{color:#fff;background-color:#174e24}.NoticeBox--color--teal{color:#fff;background-color:#064845}.NoticeBox--color--blue{color:#fff;background-color:#1b4565}.NoticeBox--color--violet{color:#fff;background-color:#3b2864}.NoticeBox--color--purple{color:#fff;background-color:#542663}.NoticeBox--color--pink{color:#fff;background-color:#802257}.NoticeBox--color--brown{color:#fff;background-color:#4c3729}.NoticeBox--color--grey{color:#fff;background-color:#3e3e3e}.NoticeBox--color--good{color:#fff;background-color:#2e4b1a}.NoticeBox--color--average{color:#fff;background-color:#7b4e13}.NoticeBox--color--bad{color:#fff;background-color:#701f1f}.NoticeBox--color--label{color:#fff;background-color:#53565a}.NoticeBox--type--info{color:#fff;background-color:#235982}.NoticeBox--type--success{color:#fff;background-color:#1e662f}.NoticeBox--type--warning{color:#fff;background-color:#a95219}.NoticeBox--type--danger{color:#fff;background-color:#8f2828}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.NumberInput{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#88bfff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.NumberInput--fluid{display:block}.NumberInput__content{margin-left:.5em}.NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #88bfff;background-color:#88bfff}.NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#000;color:#fff;text-align:right}.ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:transparent;transition:border-color .5s}.ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.ProgressBar__fill--animated{transition:background-color .5s,width .5s}.ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.ProgressBar--color--default{border:.0833333333em solid #3e6189}.ProgressBar--color--default .ProgressBar__fill{background-color:#3e6189}.ProgressBar--color--black{border:.0833333333em solid #000!important}.ProgressBar--color--black .ProgressBar__fill{background-color:#000}.ProgressBar--color--white{border:.0833333333em solid #d9d9d9!important}.ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.ProgressBar--color--red{border:.0833333333em solid #bd2020!important}.ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--orange{border:.0833333333em solid #d95e0c!important}.ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.ProgressBar--color--yellow{border:.0833333333em solid #d9b804!important}.ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.ProgressBar--color--olive{border:.0833333333em solid #9aad14!important}.ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.ProgressBar--color--green{border:.0833333333em solid #1b9638!important}.ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.ProgressBar--color--teal{border:.0833333333em solid #009a93!important}.ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.ProgressBar--color--blue{border:.0833333333em solid #1c71b1!important}.ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.ProgressBar--color--violet{border:.0833333333em solid #552dab!important}.ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.ProgressBar--color--purple{border:.0833333333em solid #8b2baa!important}.ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.ProgressBar--color--pink{border:.0833333333em solid #cf2082!important}.ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.ProgressBar--color--brown{border:.0833333333em solid #8c5836!important}.ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.ProgressBar--color--grey{border:.0833333333em solid #646464!important}.ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.ProgressBar--color--good{border:.0833333333em solid #4d9121!important}.ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.ProgressBar--color--average{border:.0833333333em solid #cd7a0d!important}.ProgressBar--color--average .ProgressBar__fill{background-color:#cd7a0d}.ProgressBar--color--bad{border:.0833333333em solid #bd2020!important}.ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--label{border:.0833333333em solid #657a94!important}.ProgressBar--color--label .ProgressBar__fill{background-color:#657a94}.Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.Section:last-child{margin-bottom:0}.Section--flex{display:flex;flex-flow:column}.Section--flex .Section__content{overflow:auto;flex-grow:1}.Section__title{padding:.5em;border-bottom:.1666666667em solid #4972a1}.Section__titleText{font-size:1.1666666667em;font-weight:700}.Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.Section__content{padding:.66em .5em}.Section--fill{display:flex;flex-direction:column;height:100%}.Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.Section--fill .Section__content{flex-grow:1}.Section__content--noTopPadding{padding-top:0}.Section__content--stretchContents{height:calc(100% - 3rem)}.Section--level--1 .Section__titleText{font-size:1.1666666667em}.Section--level--2 .Section__titleText{font-size:1.0833333333em}.Section--level--3 .Section__titleText{font-size:1em}.Section--level--2,.Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.Slider{cursor:e-resize}.Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none!important}.Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #fff}.Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #fff}.Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;background-color:#000;transform:translateX(50%);white-space:nowrap}.Table{display:table;width:100%;border-collapse:collapse;border-spacing:0;margin:0}.Table--collapsing{width:auto}.Table__row{display:table-row}.Table__cell{display:table-cell;padding:0 .25em}.Table__cell:first-child{padding-left:0}.Table__cell:last-child{padding-right:0}.Table__cell--header,.Table__row--header .Table__cell{font-weight:700;padding-bottom:.5em}.Table__cell--collapsing{width:1%;white-space:nowrap}.Tabs--horizontal{border-bottom:.1666666667em solid hsla(0,0%,100%,.1);margin-bottom:.5em}.Tabs--horizontal .Tabs__tab--altSelection:after{content:"";position:absolute;bottom:0;right:0;left:0;height:.1666666667em;width:100%;background-color:#fff;border-radius:.16em}.Tabs--vertical{margin-right:.75em}.Tabs--vertical .Tabs__tabBox{border-right:.1666666667em solid hsla(0,0%,100%,.1);vertical-align:top}.Tabs--vertical .Tabs__tab{display:block!important;margin-right:0!important;margin-bottom:0;padding:.0833333333em .75em 0 .5em;border-bottom:.1666666667em solid hsla(0,0%,100%,.1)}.Tabs--vertical .Tabs__tab:last-child{border-bottom:0}.Tabs--vertical .Tabs__tab--altSelection:after{content:"";position:absolute;top:0;bottom:0;right:0;height:100%;width:.25em;background-color:#fff;border-radius:.16em}.Tooltip{position:absolute;top:0;left:0;right:0;bottom:0;font-style:normal;font-weight:400}.Tooltip:after{position:absolute;display:block;white-space:nowrap;z-index:2;padding:.5em .75em;transform:translateX(-50%);pointer-events:none;visibility:hidden;opacity:0;text-align:left;content:attr(data-tooltip);transition:all .15s;background-color:#000;box-shadow:.1em .1em 1.25em -.1em rgba(0,0,0,.5);border-radius:.16em}.Tooltip:hover:after{transition:all 70ms;pointer-events:none;visibility:visible;opacity:1}.Tooltip--long:after{width:20.8333333333em;white-space:normal}.Tooltip--top:after{bottom:100%;left:50%;transform:translateX(-50%) translateY(.5em)}.Tooltip--top:hover:after{transform:translateX(-50%) translateY(-.5em)}.Tooltip--top-left:after{bottom:100%;right:50%;transform:translateX(12px) translateY(-8px)}.Tooltip--top-left:hover:after{transform:translateX(12px) translateY(8px)}.Tooltip--top-right:after{bottom:100%;left:50%;transform:translateX(-12px) translateY(-8px)}.Tooltip--top-right:hover:after{transform:translateX(-12px) translateY(8px)}.Tooltip--bottom:after{top:100%;left:50%;transform:translateX(-50%) translateY(-.5em)}.Tooltip--bottom:hover:after{transform:translateX(-50%) translateY(.5em)}.Tooltip--bottom-left:after{top:100%;right:50%;transform:translateX(12px) translateY(-.5em)}.Tooltip--bottom-left:hover:after{transform:translateX(12px) translateY(.5em)}.Tooltip--bottom-right:after{top:100%;left:50%;transform:translateX(-12px) translateY(-.5em)}.Tooltip--bottom-right:hover:after{transform:translateX(-12px) translateY(.5em)}.Tooltip--left:after{top:50%;right:100%;transform:translateX(.5em) translateY(-50%)}.Tooltip--left:hover:after,.Tooltip--right:after{transform:translateX(-.5em) translateY(-50%)}.Tooltip--right:after{top:50%;left:100%}.Tooltip--right:hover:after{transform:translateX(.5em) translateY(-50%)}.Tooltip--scale--1:after{top:30%;left:50%}.Tooltip--scale--1:after,.Tooltip--scale--1:hover:after{transform:translateX(-50%) scale(1)}.Tooltip--scale--2:after{top:30%;left:50%}.Tooltip--scale--2:after,.Tooltip--scale--2:hover:after{transform:translateX(-50%) scale(.5)}.Tooltip--scale--3:after{top:30%;left:50%}.Tooltip--scale--3:after,.Tooltip--scale--3:hover:after{transform:translateX(-50%) scale(.3333333333)}.Tooltip--scale--4:after{top:30%;left:50%}.Tooltip--scale--4:after,.Tooltip--scale--4:hover:after{transform:translateX(-50%) scale(.25)}.Tooltip--scale--5:after{top:30%;left:50%}.Tooltip--scale--5:after,.Tooltip--scale--5:hover:after{transform:translateX(-50%) scale(.2)}.Tooltip--scale--6:after{top:30%;left:50%}.Tooltip--scale--6:after,.Tooltip--scale--6:hover:after{transform:translateX(-50%) scale(.1666666667)}.Tooltip--scale--7:after{top:30%;left:50%}.Tooltip--scale--7:after,.Tooltip--scale--7:hover:after{transform:translateX(-50%) scale(.1428571429)}.Tooltip--scale--8:after{top:30%;left:50%}.Tooltip--scale--8:after,.Tooltip--scale--8:hover:after{transform:translateX(-50%) scale(.125)}.CameraConsole__left{position:absolute;top:0;bottom:0;left:0;width:18.3333333333em}.CameraConsole__right{position:absolute;top:0;bottom:0;left:18.3333333333em;right:0;background-color:rgba(0,0,0,.33)}.CameraConsole__toolbar{left:0;margin:.25em 1em 0}.CameraConsole__toolbar,.CameraConsole__toolbarRight{position:absolute;top:0;right:0;height:2em;line-height:2em}.CameraConsole__toolbarRight{margin:.33em .5em 0}.CameraConsole__map{position:absolute;top:2.1666666667em;bottom:0;left:0;right:0;margin:.5em;text-align:center}.CameraConsole__map .NoticeBox{margin-top:calc(50% - 2em)}.IDCard__NamePlate{margin-left:-6px;margin-right:-6px;margin-top:6px;padding:.5em;border-top:.1666666667em solid #4972a1;font-size:1.1666666667em;font-weight:700}.NuclearBomb__displayBox{background-color:#002003;border:.167em inset #e8e4c9;color:#03e017;font-size:2em;font-family:monospace;padding:.25em}.NuclearBomb__Button{outline-width:.25rem!important;border-width:.65rem!important;padding-left:0!important;padding-right:0!important}.NuclearBomb__Button--keypad{background-color:#e8e4c9;border-color:#e8e4c9}.NuclearBomb__Button--keypad:hover{background-color:#f7f6ee!important;border-color:#f7f6ee!important}.NuclearBomb__Button--1{background-color:#d3cfb7!important;border-color:#d3cfb7!important;color:#a9a692!important}.NuclearBomb__Button--E{background-color:#d9b804!important;border-color:#d9b804!important}.NuclearBomb__Button--E:hover{background-color:#f3d00e!important;border-color:#f3d00e!important}.NuclearBomb__Button--C{background-color:#bd2020!important;border-color:#bd2020!important}.NuclearBomb__Button--C:hover{background-color:#d52b2b!important;border-color:#d52b2b!important}.NuclearBomb__NTIcon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMCIgdmlld0JveD0iMCAwIDQyNSAyMDAiIG9wYWNpdHk9Ii4zMyI+PHBhdGggZD0iTTE3OC4wMDQuMDM5SDEwNi44YTYuNzYxIDYuMDI2IDAgMDAtNi43NjEgNi4wMjV2MTg3Ljg3MmE2Ljc2MSA2LjAyNiAwIDAwNi43NjEgNi4wMjVoNTMuMTA3YTYuNzYxIDYuMDI2IDAgMDA2Ljc2Mi02LjAyNVY5Mi4zOTJsNzIuMjE2IDEwNC43YTYuNzYxIDYuMDI2IDAgMDA1Ljc2IDIuODdIMzE4LjJhNi43NjEgNi4wMjYgMCAwMDYuNzYxLTYuMDI2VjYuMDY0QTYuNzYxIDYuMDI2IDAgMDAzMTguMi4wNGgtNTQuNzE3YTYuNzYxIDYuMDI2IDAgMDAtNi43NiA2LjAyNXYxMDIuNjJMMTgzLjc2MyAyLjkwOWE2Ljc2MSA2LjAyNiAwIDAwLTUuNzYtMi44N3pNNC44NDUgMjIuMTA5QTEzLjQxMiAxMi41MDIgMCAwMTEzLjQ3OC4wMzloNjYuMTE4QTUuMzY1IDUgMCAwMTg0Ljk2IDUuMDR2NzkuODh6TTQyMC4xNTUgMTc3Ljg5MWExMy40MTIgMTIuNTAyIDAgMDEtOC42MzMgMjIuMDdoLTY2LjExOGE1LjM2NSA1IDAgMDEtNS4zNjUtNS4wMDF2LTc5Ljg4eiIvPjwvc3ZnPg==);background-size:70%;background-position:50%;background-repeat:no-repeat}.Roulette{font-family:Palatino}.Roulette__board{display:table;width:100%;border-collapse:collapse;border:2px solid #fff;margin:0}.Roulette__board-row{padding:0;margin:0}.Roulette__board-cell{display:table-cell;padding:0;margin:0;border:2px solid #fff;font-family:Palatino}.Roulette__board-cell:first-child{padding-left:0}.Roulette__board-cell:last-child{padding-right:0}.Roulette__board-extrabutton{text-align:center;font-size:20px;font-weight:700;height:28px;border:none!important;margin:0!important;padding-top:4px!important;color:#fff!important}.Roulette__lowertable{margin-top:8px;margin-left:80px;margin-right:80px;border-collapse:collapse;border:2px solid #fff;border-spacing:0}.Roulette__lowertable--cell{border:2px solid #fff;padding:0;margin:0}.Roulette__lowertable--betscell{vertical-align:top}.Roulette__lowertable--spinresult{text-align:center;font-size:100px;font-weight:700;vertical-align:middle}.Roulette__lowertable--spinresult-black{background-color:#000}.Roulette__lowertable--spinresult-red{background-color:#db2828}.Roulette__lowertable--spinresult-green{background-color:#20b142}.Roulette__lowertable--spinbutton{margin:0!important;border:none!important;font-size:50px;line-height:60px!important;text-align:center;font-weight:700}.Roulette__lowertable--header{width:1%;text-align:center;font-size:20px;font-weight:700}.Section--elevator--fire{background-color:#f33;background-color:rgba(255,0,0,.35)}.Section--elevator--fire>.Section__title{padding:.5em;border-bottom:.1666666667em solid red}.Layout,.Layout *{scrollbar-base-color:#1c1c1c;scrollbar-face-color:#3b3b3b;scrollbar-3dlight-color:#252525;scrollbar-highlight-color:#252525;scrollbar-track-color:#1c1c1c;scrollbar-arrow-color:#929292;scrollbar-shadow-color:#3b3b3b}.Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.Layout__content--flexRow{display:flex;flex-flow:row}.Layout__content--flexColumn{display:flex;flex-flow:column}.Layout__content--scrollable{overflow-y:auto}.NtosHeader__left{position:absolute;left:1em}.NtosHeader__right{position:absolute;right:1em}.NtosHeader__icon{margin-top:-.75em;margin-bottom:-.5em;vertical-align:middle}.NtosWindow__header{position:absolute;top:0;left:0;right:0;height:2em;line-height:1.928em;background-color:rgba(0,0,0,.5);font-family:Consolas,monospace;font-size:1.1666666667em;user-select:none;-ms-user-select:none}.NtosWindow__content>.Layout__content{margin-top:2em!important;font-family:Consolas,monospace;font-size:1.1666666667em}.TitleBar{background-color:#363636;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#363636;transition:color .25s,background-color .25s}.TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.TitleBar__statusIcon{top:0;left:12px;left:1rem;transition:color .5s;line-height:32px!important;line-height:2.6666666667rem!important}.TitleBar__close,.TitleBar__statusIcon{position:absolute;font-size:20px;font-size:1.6666666667rem}.TitleBar__close{top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.Window{bottom:0;right:0;color:#fff;background-color:#252525;background-image:linear-gradient(180deg,#2a2a2a 0,#202020)}.Window,.Window__titleBar{position:fixed;top:0;left:0}.Window__titleBar{z-index:1;width:100%;height:32px;height:2.6666666667rem}.Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.Window__contentPadding:after{height:0}.Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(62,62,62,.25);pointer-events:none}.Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.Layout__content{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMCIgdmlld0JveD0iMCAwIDQyNSAyMDAiIG9wYWNpdHk9Ii4zMyI+PHBhdGggZD0iTTE3OC4wMDQuMDM5SDEwNi44YTYuNzYxIDYuMDI2IDAgMDAtNi43NjEgNi4wMjV2MTg3Ljg3MmE2Ljc2MSA2LjAyNiAwIDAwNi43NjEgNi4wMjVoNTMuMTA3YTYuNzYxIDYuMDI2IDAgMDA2Ljc2Mi02LjAyNVY5Mi4zOTJsNzIuMjE2IDEwNC43YTYuNzYxIDYuMDI2IDAgMDA1Ljc2IDIuODdIMzE4LjJhNi43NjEgNi4wMjYgMCAwMDYuNzYxLTYuMDI2VjYuMDY0QTYuNzYxIDYuMDI2IDAgMDAzMTguMi4wNGgtNTQuNzE3YTYuNzYxIDYuMDI2IDAgMDAtNi43NiA2LjAyNXYxMDIuNjJMMTgzLjc2MyAyLjkwOWE2Ljc2MSA2LjAyNiAwIDAwLTUuNzYtMi44N3pNNC44NDUgMjIuMTA5QTEzLjQxMiAxMi41MDIgMCAwMTEzLjQ3OC4wMzloNjYuMTE4QTUuMzY1IDUgMCAwMTg0Ljk2IDUuMDR2NzkuODh6TTQyMC4xNTUgMTc3Ljg5MWExMy40MTIgMTIuNTAyIDAgMDEtOC42MzMgMjIuMDdoLTY2LjExOGE1LjM2NSA1IDAgMDEtNS4zNjUtNS4wMDF2LTc5Ljg4eiIvPjwvc3ZnPg==);background-size:70%;background-position:50%;background-repeat:no-repeat}.theme-abductor .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:2px;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-abductor .Button:last-child{margin-right:0}.theme-abductor .Button .fa,.theme-abductor .Button .far,.theme-abductor .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-abductor .Button--hasContent .fa,.theme-abductor .Button--hasContent .far,.theme-abductor .Button--hasContent .fas{margin-right:.25em}.theme-abductor .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-abductor .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-abductor .Button--circular{border-radius:50%}.theme-abductor .Button--compact{padding:0 .25em;line-height:1.333em}.theme-abductor .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#ad2350;color:#fff}.theme-abductor .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-abductor .Button--color--default:focus,.theme-abductor .Button--color--default:hover{background-color:#c42f60;color:#fff}.theme-abductor .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-abductor .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-abductor .Button--color--caution:focus,.theme-abductor .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-abductor .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-abductor .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-abductor .Button--color--danger:focus,.theme-abductor .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-abductor .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#2a314a;color:#fff;background-color:rgba(42,49,74,0);color:hsla(0,0%,100%,.5)}.theme-abductor .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-abductor .Button--color--transparent:focus,.theme-abductor .Button--color--transparent:hover{background-color:#373e59;color:#fff}.theme-abductor .Button--disabled{background-color:#363636!important}.theme-abductor .Button--selected{transition:color 50ms,background-color 50ms;background-color:#465899;color:#fff}.theme-abductor .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--selected:focus{transition:color .1s,background-color .1s}.theme-abductor .Button--selected:focus,.theme-abductor .Button--selected:hover{background-color:#5569ad;color:#fff}.theme-abductor .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:700;font-style:italic;color:#fff;background-color:#a82d55;background-image:repeating-linear-gradient(-45deg,transparent,transparent .8333333333em,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 1.6666666667em)}.theme-abductor .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-abductor .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-abductor .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-abductor .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-abductor .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-abductor .Input--fluid{display:block;width:auto}.theme-abductor .Input__baseline{display:inline-block;color:transparent}.theme-abductor .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-abductor .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-abductor .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#404b6e;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-abductor .NumberInput--fluid{display:block}.theme-abductor .NumberInput__content{margin-left:.5em}.theme-abductor .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-abductor .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #404b6e;background-color:#404b6e}.theme-abductor .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#000;color:#fff;text-align:right}.theme-abductor .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:2px;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-abductor .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-abductor .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-abductor .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-abductor .ProgressBar--color--default{border:.0833333333em solid #931e44}.theme-abductor .ProgressBar--color--default .ProgressBar__fill{background-color:#931e44}.theme-abductor .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-abductor .Section:last-child{margin-bottom:0}.theme-abductor .Section--flex{display:flex;flex-flow:column}.theme-abductor .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-abductor .Section__title{padding:.5em;border-bottom:.1666666667em solid #ad2350}.theme-abductor .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-abductor .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-abductor .Section__content{padding:.66em .5em}.theme-abductor .Section--fill{display:flex;flex-direction:column;height:100%}.theme-abductor .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-abductor .Section--fill .Section__content{flex-grow:1}.theme-abductor .Section__content--noTopPadding{padding-top:0}.theme-abductor .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-abductor .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-abductor .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-abductor .Section--level--3 .Section__titleText{font-size:1em}.theme-abductor .Section--level--2,.theme-abductor .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-abductor .Tooltip{position:absolute;top:0;left:0;right:0;bottom:0;font-style:normal;font-weight:400}.theme-abductor .Tooltip:after{position:absolute;display:block;white-space:nowrap;z-index:2;padding:.5em .75em;transform:translateX(-50%);pointer-events:none;visibility:hidden;opacity:0;text-align:left;content:attr(data-tooltip);transition:all .15s;background-color:#a82d55;box-shadow:.1em .1em 1.25em -.1em rgba(0,0,0,.5);border-radius:2px}.theme-abductor .Tooltip:hover:after{transition:all 70ms;pointer-events:none;visibility:visible;opacity:1}.theme-abductor .Tooltip--long:after{width:20.8333333333em;white-space:normal}.theme-abductor .Tooltip--top:after{bottom:100%;left:50%;transform:translateX(-50%) translateY(.5em)}.theme-abductor .Tooltip--top:hover:after{transform:translateX(-50%) translateY(-.5em)}.theme-abductor .Tooltip--top-left:after{bottom:100%;right:50%;transform:translateX(12px) translateY(-8px)}.theme-abductor .Tooltip--top-left:hover:after{transform:translateX(12px) translateY(8px)}.theme-abductor .Tooltip--top-right:after{bottom:100%;left:50%;transform:translateX(-12px) translateY(-8px)}.theme-abductor .Tooltip--top-right:hover:after{transform:translateX(-12px) translateY(8px)}.theme-abductor .Tooltip--bottom:after{top:100%;left:50%;transform:translateX(-50%) translateY(-.5em)}.theme-abductor .Tooltip--bottom:hover:after{transform:translateX(-50%) translateY(.5em)}.theme-abductor .Tooltip--bottom-left:after{top:100%;right:50%;transform:translateX(12px) translateY(-.5em)}.theme-abductor .Tooltip--bottom-left:hover:after{transform:translateX(12px) translateY(.5em)}.theme-abductor .Tooltip--bottom-right:after{top:100%;left:50%;transform:translateX(-12px) translateY(-.5em)}.theme-abductor .Tooltip--bottom-right:hover:after{transform:translateX(-12px) translateY(.5em)}.theme-abductor .Tooltip--left:after{top:50%;right:100%;transform:translateX(.5em) translateY(-50%)}.theme-abductor .Tooltip--left:hover:after,.theme-abductor .Tooltip--right:after{transform:translateX(-.5em) translateY(-50%)}.theme-abductor .Tooltip--right:after{top:50%;left:100%}.theme-abductor .Tooltip--right:hover:after{transform:translateX(.5em) translateY(-50%)}.theme-abductor .Tooltip--scale--1:after{top:30%;left:50%;transform:translateX(-50%) scale(1)}.theme-abductor .Tooltip--scale--1:hover:after{transform:translateX(-50%) scale(1)}.theme-abductor .Tooltip--scale--2:after{top:30%;left:50%;transform:translateX(-50%) scale(.5)}.theme-abductor .Tooltip--scale--2:hover:after{transform:translateX(-50%) scale(.5)}.theme-abductor .Tooltip--scale--3:after{top:30%;left:50%}.theme-abductor .Tooltip--scale--3:after,.theme-abductor .Tooltip--scale--3:hover:after{transform:translateX(-50%) scale(.3333333333)}.theme-abductor .Tooltip--scale--4:after{top:30%;left:50%;transform:translateX(-50%) scale(.25)}.theme-abductor .Tooltip--scale--4:hover:after{transform:translateX(-50%) scale(.25)}.theme-abductor .Tooltip--scale--5:after{top:30%;left:50%;transform:translateX(-50%) scale(.2)}.theme-abductor .Tooltip--scale--5:hover:after{transform:translateX(-50%) scale(.2)}.theme-abductor .Tooltip--scale--6:after{top:30%;left:50%}.theme-abductor .Tooltip--scale--6:after,.theme-abductor .Tooltip--scale--6:hover:after{transform:translateX(-50%) scale(.1666666667)}.theme-abductor .Tooltip--scale--7:after{top:30%;left:50%}.theme-abductor .Tooltip--scale--7:after,.theme-abductor .Tooltip--scale--7:hover:after{transform:translateX(-50%) scale(.1428571429)}.theme-abductor .Tooltip--scale--8:after{top:30%;left:50%;transform:translateX(-50%) scale(.125)}.theme-abductor .Tooltip--scale--8:hover:after{transform:translateX(-50%) scale(.125)}.theme-abductor .Layout,.theme-abductor .Layout *{scrollbar-base-color:#202538;scrollbar-face-color:#384263;scrollbar-3dlight-color:#2a314a;scrollbar-highlight-color:#2a314a;scrollbar-track-color:#202538;scrollbar-arrow-color:#818db8;scrollbar-shadow-color:#384263}.theme-abductor .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-abductor .Layout__content--flexRow{display:flex;flex-flow:row}.theme-abductor .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-abductor .Layout__content--scrollable{overflow-y:auto}.theme-abductor .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#2a314a;background-image:linear-gradient(180deg,#353e5e 0,#1f2436)}.theme-abductor .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-abductor .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-abductor .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-abductor .Window__contentPadding:after{height:0}.theme-abductor .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-abductor .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(68,76,104,.25);pointer-events:none}.theme-abductor .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-abductor .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-abductor .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-abductor .TitleBar{background-color:#9e1b46;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-abductor .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#9e1b46;transition:color .25s,background-color .25s}.theme-abductor .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-abductor .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-abductor .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-abductor .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-abductor .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-abductor .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-abductor .Layout__content{background-image:none}.theme-cardtable .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:0;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-cardtable .Button:last-child{margin-right:0}.theme-cardtable .Button .fa,.theme-cardtable .Button .far,.theme-cardtable .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-cardtable .Button--hasContent .fa,.theme-cardtable .Button--hasContent .far,.theme-cardtable .Button--hasContent .fas{margin-right:.25em}.theme-cardtable .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-cardtable .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-cardtable .Button--circular{border-radius:50%}.theme-cardtable .Button--compact{padding:0 .25em;line-height:1.333em}.theme-cardtable .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#117039;color:#fff}.theme-cardtable .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-cardtable .Button--color--default:focus,.theme-cardtable .Button--color--default:hover{background-color:#1c8247;color:#fff}.theme-cardtable .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-cardtable .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-cardtable .Button--color--caution:focus,.theme-cardtable .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-cardtable .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-cardtable .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-cardtable .Button--color--danger:focus,.theme-cardtable .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-cardtable .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#117039;color:#fff;background-color:rgba(17,112,57,0);color:hsla(0,0%,100%,.5)}.theme-cardtable .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-cardtable .Button--color--transparent:focus,.theme-cardtable .Button--color--transparent:hover{background-color:#1c8247;color:#fff}.theme-cardtable .Button--disabled{background-color:#363636!important}.theme-cardtable .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-cardtable .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--selected:focus{transition:color .1s,background-color .1s}.theme-cardtable .Button--selected:focus,.theme-cardtable .Button--selected:hover{background-color:#b31212;color:#fff}.theme-cardtable .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:0;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-cardtable .Input--fluid{display:block;width:auto}.theme-cardtable .Input__baseline{display:inline-block;color:transparent}.theme-cardtable .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-cardtable .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-cardtable .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #fff;border:.0833333333em solid hsla(0,0%,100%,.75);border-radius:0;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-cardtable .NumberInput--fluid{display:block}.theme-cardtable .NumberInput__content{margin-left:.5em}.theme-cardtable .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-cardtable .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #fff;background-color:#fff}.theme-cardtable .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#000;color:#fff;text-align:right}.theme-cardtable .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:0;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-cardtable .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-cardtable .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-cardtable .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-cardtable .ProgressBar--color--default{border:.0833333333em solid #000}.theme-cardtable .ProgressBar--color--default .ProgressBar__fill{background-color:#000}.theme-cardtable .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-cardtable .Section:last-child{margin-bottom:0}.theme-cardtable .Section--flex{display:flex;flex-flow:column}.theme-cardtable .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-cardtable .Section__title{padding:.5em;border-bottom:.1666666667em solid #000}.theme-cardtable .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-cardtable .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-cardtable .Section__content{padding:.66em .5em}.theme-cardtable .Section--fill{display:flex;flex-direction:column;height:100%}.theme-cardtable .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-cardtable .Section--fill .Section__content{flex-grow:1}.theme-cardtable .Section__content--noTopPadding{padding-top:0}.theme-cardtable .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-cardtable .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-cardtable .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-cardtable .Section--level--3 .Section__titleText{font-size:1em}.theme-cardtable .Section--level--2,.theme-cardtable .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-cardtable .Layout,.theme-cardtable .Layout *{scrollbar-base-color:#0d542b;scrollbar-face-color:#16914a;scrollbar-3dlight-color:#117039;scrollbar-highlight-color:#117039;scrollbar-track-color:#0d542b;scrollbar-arrow-color:#5ae695;scrollbar-shadow-color:#16914a}.theme-cardtable .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-cardtable .Layout__content--flexRow{display:flex;flex-flow:row}.theme-cardtable .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-cardtable .Layout__content--scrollable{overflow-y:auto}.theme-cardtable .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#117039;background-image:linear-gradient(180deg,#117039 0,#117039)}.theme-cardtable .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-cardtable .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-cardtable .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-cardtable .Window__contentPadding:after{height:0}.theme-cardtable .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-cardtable .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(39,148,85,.25);pointer-events:none}.theme-cardtable .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-cardtable .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-cardtable .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-cardtable .TitleBar{background-color:#381608;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-cardtable .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#381608;transition:color .25s,background-color .25s}.theme-cardtable .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-cardtable .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-cardtable .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-cardtable .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-cardtable .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-cardtable .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-cardtable .Button{border:.1666666667em solid #fff}.theme-hackerman .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-hackerman .Button:last-child{margin-right:0}.theme-hackerman .Button .fa,.theme-hackerman .Button .far,.theme-hackerman .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-hackerman .Button--hasContent .fa,.theme-hackerman .Button--hasContent .far,.theme-hackerman .Button--hasContent .fas{margin-right:.25em}.theme-hackerman .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-hackerman .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-hackerman .Button--circular{border-radius:50%}.theme-hackerman .Button--compact{padding:0 .25em;line-height:1.333em}.theme-hackerman .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#0f0;color:#000}.theme-hackerman .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-hackerman .Button--color--default:focus,.theme-hackerman .Button--color--default:hover{background-color:#26ff26;color:#000}.theme-hackerman .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.theme-hackerman .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-hackerman .Button--color--caution:focus,.theme-hackerman .Button--color--caution:hover{background-color:#f3d00e;color:#000}.theme-hackerman .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-hackerman .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-hackerman .Button--color--danger:focus,.theme-hackerman .Button--color--danger:hover{background-color:#d52b2b;color:#fff}.theme-hackerman .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#121b12;color:#fff;background-color:rgba(18,27,18,0);color:hsla(0,0%,100%,.5)}.theme-hackerman .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-hackerman .Button--color--transparent:focus,.theme-hackerman .Button--color--transparent:hover{background-color:#1d271d;color:#fff}.theme-hackerman .Button--disabled{background-color:#4a6a4a!important}.theme-hackerman .Button--selected{transition:color 50ms,background-color 50ms;background-color:#0f0;color:#000}.theme-hackerman .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--selected:focus{transition:color .1s,background-color .1s}.theme-hackerman .Button--selected:focus,.theme-hackerman .Button--selected:hover{background-color:#26ff26;color:#000}.theme-hackerman .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #0f0;border:.0833333333em solid rgba(0,255,0,.75);border-radius:.16em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-hackerman .Input--fluid{display:block;width:auto}.theme-hackerman .Input__baseline{display:inline-block;color:transparent}.theme-hackerman .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-hackerman .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-hackerman .Modal{background-color:#121b12;max-width:calc(100% - 1rem);padding:1rem}.theme-hackerman .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-hackerman .Section:last-child{margin-bottom:0}.theme-hackerman .Section--flex{display:flex;flex-flow:column}.theme-hackerman .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-hackerman .Section__title{padding:.5em;border-bottom:.1666666667em solid #0f0}.theme-hackerman .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-hackerman .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-hackerman .Section__content{padding:.66em .5em}.theme-hackerman .Section--fill{display:flex;flex-direction:column;height:100%}.theme-hackerman .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-hackerman .Section--fill .Section__content{flex-grow:1}.theme-hackerman .Section__content--noTopPadding{padding-top:0}.theme-hackerman .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-hackerman .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-hackerman .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-hackerman .Section--level--3 .Section__titleText{font-size:1em}.theme-hackerman .Section--level--2,.theme-hackerman .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-hackerman .Layout,.theme-hackerman .Layout *{scrollbar-base-color:#0e140e;scrollbar-face-color:#253725;scrollbar-3dlight-color:#121b12;scrollbar-highlight-color:#121b12;scrollbar-track-color:#0e140e;scrollbar-arrow-color:#74a274;scrollbar-shadow-color:#253725}.theme-hackerman .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-hackerman .Layout__content--flexRow{display:flex;flex-flow:row}.theme-hackerman .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-hackerman .Layout__content--scrollable{overflow-y:auto}.theme-hackerman .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#121b12;background-image:linear-gradient(180deg,#121b12 0,#121b12)}.theme-hackerman .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-hackerman .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-hackerman .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-hackerman .Window__contentPadding:after{height:0}.theme-hackerman .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-hackerman .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(40,50,40,.25);pointer-events:none}.theme-hackerman .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-hackerman .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-hackerman .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-hackerman .TitleBar{background-color:#223d22;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-hackerman .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#223d22;transition:color .25s,background-color .25s}.theme-hackerman .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-hackerman .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-hackerman .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-hackerman .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-hackerman .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-hackerman .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-hackerman .Layout__content{background-image:none}.theme-hackerman .Button{font-family:monospace;border:.1666666667em outset #0a0;outline:.0833333333em solid #007a00}.theme-hackerman .candystripe:nth-child(odd){background-color:rgba(0,100,0,.5)}.theme-malfunction .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-malfunction .Button:last-child{margin-right:0}.theme-malfunction .Button .fa,.theme-malfunction .Button .far,.theme-malfunction .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-malfunction .Button--hasContent .fa,.theme-malfunction .Button--hasContent .far,.theme-malfunction .Button--hasContent .fas{margin-right:.25em}.theme-malfunction .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-malfunction .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-malfunction .Button--circular{border-radius:50%}.theme-malfunction .Button--compact{padding:0 .25em;line-height:1.333em}.theme-malfunction .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#910101;color:#fff}.theme-malfunction .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-malfunction .Button--color--default:focus,.theme-malfunction .Button--color--default:hover{background-color:#a60b0b;color:#fff}.theme-malfunction .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-malfunction .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-malfunction .Button--color--caution:focus,.theme-malfunction .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-malfunction .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-malfunction .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-malfunction .Button--color--danger:focus,.theme-malfunction .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-malfunction .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#1b3443;color:#fff;background-color:rgba(27,52,67,0);color:hsla(0,0%,100%,.5)}.theme-malfunction .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-malfunction .Button--color--transparent:focus,.theme-malfunction .Button--color--transparent:hover{background-color:#274252;color:#fff}.theme-malfunction .Button--disabled{background-color:#363636!important}.theme-malfunction .Button--selected{transition:color 50ms,background-color 50ms;background-color:#1e5881;color:#fff}.theme-malfunction .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--selected:focus{transition:color .1s,background-color .1s}.theme-malfunction .Button--selected:focus,.theme-malfunction .Button--selected:hover{background-color:#2a6894;color:#fff}.theme-malfunction .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:700;font-style:italic;color:#fff;background-color:#1a3f57;background-image:repeating-linear-gradient(-45deg,transparent,transparent .8333333333em,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 1.6666666667em)}.theme-malfunction .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-malfunction .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-malfunction .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-malfunction .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-malfunction .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #910101;border:.0833333333em solid rgba(145,1,1,.75);border-radius:.16em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-malfunction .Input--fluid{display:block;width:auto}.theme-malfunction .Input__baseline{display:inline-block;color:transparent}.theme-malfunction .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-malfunction .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-malfunction .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #910101;border:.0833333333em solid rgba(145,1,1,.75);border-radius:.16em;color:#910101;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-malfunction .NumberInput--fluid{display:block}.theme-malfunction .NumberInput__content{margin-left:.5em}.theme-malfunction .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-malfunction .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #910101;background-color:#910101}.theme-malfunction .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#000;color:#fff;text-align:right}.theme-malfunction .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-malfunction .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-malfunction .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-malfunction .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-malfunction .ProgressBar--color--default{border:.0833333333em solid #7b0101}.theme-malfunction .ProgressBar--color--default .ProgressBar__fill{background-color:#7b0101}.theme-malfunction .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-malfunction .Section:last-child{margin-bottom:0}.theme-malfunction .Section--flex{display:flex;flex-flow:column}.theme-malfunction .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-malfunction .Section__title{padding:.5em;border-bottom:.1666666667em solid #910101}.theme-malfunction .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-malfunction .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-malfunction .Section__content{padding:.66em .5em}.theme-malfunction .Section--fill{display:flex;flex-direction:column;height:100%}.theme-malfunction .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-malfunction .Section--fill .Section__content{flex-grow:1}.theme-malfunction .Section__content--noTopPadding{padding-top:0}.theme-malfunction .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-malfunction .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-malfunction .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-malfunction .Section--level--3 .Section__titleText{font-size:1em}.theme-malfunction .Section--level--2,.theme-malfunction .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-malfunction .Tooltip{position:absolute;top:0;left:0;right:0;bottom:0;font-style:normal;font-weight:400}.theme-malfunction .Tooltip:after{position:absolute;display:block;white-space:nowrap;z-index:2;padding:.5em .75em;transform:translateX(-50%);pointer-events:none;visibility:hidden;opacity:0;text-align:left;content:attr(data-tooltip);transition:all .15s;background-color:#235577;box-shadow:.1em .1em 1.25em -.1em rgba(0,0,0,.5);border-radius:.16em}.theme-malfunction .Tooltip:hover:after{transition:all 70ms;pointer-events:none;visibility:visible;opacity:1}.theme-malfunction .Tooltip--long:after{width:20.8333333333em;white-space:normal}.theme-malfunction .Tooltip--top:after{bottom:100%;left:50%;transform:translateX(-50%) translateY(.5em)}.theme-malfunction .Tooltip--top:hover:after{transform:translateX(-50%) translateY(-.5em)}.theme-malfunction .Tooltip--top-left:after{bottom:100%;right:50%;transform:translateX(12px) translateY(-8px)}.theme-malfunction .Tooltip--top-left:hover:after{transform:translateX(12px) translateY(8px)}.theme-malfunction .Tooltip--top-right:after{bottom:100%;left:50%;transform:translateX(-12px) translateY(-8px)}.theme-malfunction .Tooltip--top-right:hover:after{transform:translateX(-12px) translateY(8px)}.theme-malfunction .Tooltip--bottom:after{top:100%;left:50%;transform:translateX(-50%) translateY(-.5em)}.theme-malfunction .Tooltip--bottom:hover:after{transform:translateX(-50%) translateY(.5em)}.theme-malfunction .Tooltip--bottom-left:after{top:100%;right:50%;transform:translateX(12px) translateY(-.5em)}.theme-malfunction .Tooltip--bottom-left:hover:after{transform:translateX(12px) translateY(.5em)}.theme-malfunction .Tooltip--bottom-right:after{top:100%;left:50%;transform:translateX(-12px) translateY(-.5em)}.theme-malfunction .Tooltip--bottom-right:hover:after{transform:translateX(-12px) translateY(.5em)}.theme-malfunction .Tooltip--left:after{top:50%;right:100%;transform:translateX(.5em) translateY(-50%)}.theme-malfunction .Tooltip--left:hover:after,.theme-malfunction .Tooltip--right:after{transform:translateX(-.5em) translateY(-50%)}.theme-malfunction .Tooltip--right:after{top:50%;left:100%}.theme-malfunction .Tooltip--right:hover:after{transform:translateX(.5em) translateY(-50%)}.theme-malfunction .Tooltip--scale--1:after{top:30%;left:50%;transform:translateX(-50%) scale(1)}.theme-malfunction .Tooltip--scale--1:hover:after{transform:translateX(-50%) scale(1)}.theme-malfunction .Tooltip--scale--2:after{top:30%;left:50%;transform:translateX(-50%) scale(.5)}.theme-malfunction .Tooltip--scale--2:hover:after{transform:translateX(-50%) scale(.5)}.theme-malfunction .Tooltip--scale--3:after{top:30%;left:50%}.theme-malfunction .Tooltip--scale--3:after,.theme-malfunction .Tooltip--scale--3:hover:after{transform:translateX(-50%) scale(.3333333333)}.theme-malfunction .Tooltip--scale--4:after{top:30%;left:50%;transform:translateX(-50%) scale(.25)}.theme-malfunction .Tooltip--scale--4:hover:after{transform:translateX(-50%) scale(.25)}.theme-malfunction .Tooltip--scale--5:after{top:30%;left:50%;transform:translateX(-50%) scale(.2)}.theme-malfunction .Tooltip--scale--5:hover:after{transform:translateX(-50%) scale(.2)}.theme-malfunction .Tooltip--scale--6:after{top:30%;left:50%}.theme-malfunction .Tooltip--scale--6:after,.theme-malfunction .Tooltip--scale--6:hover:after{transform:translateX(-50%) scale(.1666666667)}.theme-malfunction .Tooltip--scale--7:after{top:30%;left:50%}.theme-malfunction .Tooltip--scale--7:after,.theme-malfunction .Tooltip--scale--7:hover:after{transform:translateX(-50%) scale(.1428571429)}.theme-malfunction .Tooltip--scale--8:after{top:30%;left:50%;transform:translateX(-50%) scale(.125)}.theme-malfunction .Tooltip--scale--8:hover:after{transform:translateX(-50%) scale(.125)}.theme-malfunction .Layout,.theme-malfunction .Layout *{scrollbar-base-color:#142732;scrollbar-face-color:#274b61;scrollbar-3dlight-color:#1b3443;scrollbar-highlight-color:#1b3443;scrollbar-track-color:#142732;scrollbar-arrow-color:#6ba2c3;scrollbar-shadow-color:#274b61}.theme-malfunction .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-malfunction .Layout__content--flexRow{display:flex;flex-flow:row}.theme-malfunction .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-malfunction .Layout__content--scrollable{overflow-y:auto}.theme-malfunction .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#1b3443;background-image:linear-gradient(180deg,#244559 0,#12232d)}.theme-malfunction .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-malfunction .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-malfunction .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-malfunction .Window__contentPadding:after{height:0}.theme-malfunction .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-malfunction .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(50,79,96,.25);pointer-events:none}.theme-malfunction .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-malfunction .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-malfunction .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-malfunction .TitleBar{background-color:#1a3f57;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-malfunction .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#1a3f57;transition:color .25s,background-color .25s}.theme-malfunction .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-malfunction .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-malfunction .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-malfunction .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-malfunction .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-malfunction .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-malfunction .Layout__content{background-image:none}.theme-ntos .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-ntos .Button:last-child{margin-right:0}.theme-ntos .Button .fa,.theme-ntos .Button .far,.theme-ntos .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-ntos .Button--hasContent .fa,.theme-ntos .Button--hasContent .far,.theme-ntos .Button--hasContent .fas{margin-right:.25em}.theme-ntos .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-ntos .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-ntos .Button--circular{border-radius:50%}.theme-ntos .Button--compact{padding:0 .25em;line-height:1.333em}.theme-ntos .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#384e68;color:#fff}.theme-ntos .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-ntos .Button--color--default:focus,.theme-ntos .Button--color--default:hover{background-color:#465e7a;color:#fff}.theme-ntos .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.theme-ntos .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-ntos .Button--color--caution:focus,.theme-ntos .Button--color--caution:hover{background-color:#f3d00e;color:#000}.theme-ntos .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-ntos .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-ntos .Button--color--danger:focus,.theme-ntos .Button--color--danger:hover{background-color:#d52b2b;color:#fff}.theme-ntos .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#1f2b39;color:#fff;background-color:rgba(31,43,57,0);color:rgba(227,240,255,.75)}.theme-ntos .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-ntos .Button--color--transparent:focus,.theme-ntos .Button--color--transparent:hover{background-color:#2b3847;color:#fff}.theme-ntos .Button--disabled{background-color:#999!important}.theme-ntos .Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.theme-ntos .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--selected:focus{transition:color .1s,background-color .1s}.theme-ntos .Button--selected:focus,.theme-ntos .Button--selected:hover{background-color:#27ab46;color:#fff}.theme-ntos .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-ntos .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-ntos .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-ntos .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-ntos .ProgressBar--color--default{border:.0833333333em solid #384e68}.theme-ntos .ProgressBar--color--default .ProgressBar__fill{background-color:#384e68}.theme-ntos .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-ntos .Section:last-child{margin-bottom:0}.theme-ntos .Section--flex{display:flex;flex-flow:column}.theme-ntos .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-ntos .Section__title{padding:.5em;border-bottom:.1666666667em solid #4972a1}.theme-ntos .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-ntos .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-ntos .Section__content{padding:.66em .5em}.theme-ntos .Section--fill{display:flex;flex-direction:column;height:100%}.theme-ntos .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-ntos .Section--fill .Section__content{flex-grow:1}.theme-ntos .Section__content--noTopPadding{padding-top:0}.theme-ntos .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-ntos .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-ntos .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-ntos .Section--level--3 .Section__titleText{font-size:1em}.theme-ntos .Section--level--2,.theme-ntos .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-ntos .Layout,.theme-ntos .Layout *{scrollbar-base-color:#17202b;scrollbar-face-color:#2e3f55;scrollbar-3dlight-color:#1f2b39;scrollbar-highlight-color:#1f2b39;scrollbar-track-color:#17202b;scrollbar-arrow-color:#7693b5;scrollbar-shadow-color:#2e3f55}.theme-ntos .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-ntos .Layout__content--flexRow{display:flex;flex-flow:row}.theme-ntos .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-ntos .Layout__content--scrollable{overflow-y:auto}.theme-ntos .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#1f2b39;background-image:linear-gradient(180deg,#223040 0,#1b2633)}.theme-ntos .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-ntos .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-ntos .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-ntos .Window__contentPadding:after{height:0}.theme-ntos .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-ntos .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(55,69,85,.25);pointer-events:none}.theme-ntos .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-ntos .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-ntos .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-ntos .TitleBar{background-color:#2a3b4e;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-ntos .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#2a3b4e;transition:color .25s,background-color .25s}.theme-ntos .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-ntos .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-ntos .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-ntos .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-ntos .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-ntos .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-paper .Tabs--horizontal{border-bottom:.1666666667em solid hsla(0,0%,100%,.1);margin-bottom:.5em}.theme-paper .Tabs--horizontal .Tabs__tab--altSelection:after{content:"";position:absolute;bottom:0;right:0;left:0;height:.1666666667em;width:100%;background-color:#fff;border-radius:.16em}.theme-paper .Tabs--vertical{margin-right:.75em}.theme-paper .Tabs--vertical .Tabs__tabBox{border-right:.1666666667em solid hsla(0,0%,100%,.1);vertical-align:top}.theme-paper .Tabs--vertical .Tabs__tab{display:block!important;margin-right:0!important;margin-bottom:0;padding:.0833333333em .75em 0 .5em;border-bottom:.1666666667em solid hsla(0,0%,100%,.1)}.theme-paper .Tabs--vertical .Tabs__tab:last-child{border-bottom:0}.theme-paper .Tabs--vertical .Tabs__tab--altSelection:after{content:"";position:absolute;top:0;bottom:0;right:0;height:100%;width:.25em;background-color:#fff;border-radius:.16em}.theme-paper .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.1);box-shadow:inset 0 0 5px rgba(0,0,0,.2);box-sizing:border-box}.theme-paper .Section:last-child{margin-bottom:0}.theme-paper .Section--flex{display:flex;flex-flow:column}.theme-paper .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-paper .Section__title{padding:.5em;border-bottom:.1666666667em solid #fff}.theme-paper .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-paper .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-paper .Section__content{padding:.66em .5em}.theme-paper .Section--fill{display:flex;flex-direction:column;height:100%}.theme-paper .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-paper .Section--fill .Section__content{flex-grow:1}.theme-paper .Section__content--noTopPadding{padding-top:0}.theme-paper .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-paper .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-paper .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-paper .Section--level--3 .Section__titleText{font-size:1em}.theme-paper .Section--level--2,.theme-paper .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-paper .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-paper .Button:last-child{margin-right:0}.theme-paper .Button .fa,.theme-paper .Button .far,.theme-paper .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-paper .Button--hasContent .fa,.theme-paper .Button--hasContent .far,.theme-paper .Button--hasContent .fas{margin-right:.25em}.theme-paper .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-paper .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-paper .Button--circular{border-radius:50%}.theme-paper .Button--compact{padding:0 .25em;line-height:1.333em}.theme-paper .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000}.theme-paper .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-paper .Button--color--default:focus,.theme-paper .Button--color--default:hover{background-color:#f7f6ee;color:#000}.theme-paper .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-paper .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-paper .Button--color--caution:focus,.theme-paper .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-paper .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-paper .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-paper .Button--color--danger:focus,.theme-paper .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-paper .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#fff;color:#000;background-color:hsla(0,0%,100%,0);color:rgba(0,0,0,.5)}.theme-paper .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-paper .Button--color--transparent:focus,.theme-paper .Button--color--transparent:hover{background-color:#fff;color:#000}.theme-paper .Button--disabled{background-color:#363636!important}.theme-paper .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-paper .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--selected:focus{transition:color .1s,background-color .1s}.theme-paper .Button--selected:focus,.theme-paper .Button--selected:hover{background-color:#b31212;color:#fff}.theme-paper .Layout,.theme-paper .Layout *{scrollbar-base-color:#bfbfbf;scrollbar-face-color:#fff;scrollbar-3dlight-color:#fff;scrollbar-highlight-color:#fff;scrollbar-track-color:#bfbfbf;scrollbar-arrow-color:#fff;scrollbar-shadow-color:#fff}.theme-paper .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-paper .Layout__content--flexRow{display:flex;flex-flow:row}.theme-paper .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-paper .Layout__content--scrollable{overflow-y:auto}.theme-paper .Window{position:fixed;top:0;bottom:0;left:0;right:0;background-color:#fff;background-image:linear-gradient(180deg,#fff 0,#fff)}.theme-paper .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-paper .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-paper .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-paper .Window__contentPadding:after{height:0}.theme-paper .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-paper .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:hsla(0,0%,100%,.25);pointer-events:none}.theme-paper .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-paper .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-paper .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-paper .TitleBar{background-color:#fff;border-bottom:1px solid rgba(0,0,0,.25);box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-paper .TitleBar__clickable{color:rgba(0,0,0,.5);background-color:#fff;transition:color .25s,background-color .25s}.theme-paper .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-paper .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:rgba(0,0,0,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-paper .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-paper .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-paper .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-paper .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-paper .PaperInput{position:relative;display:inline-block;width:120px;background:transparent;border:none;border-bottom:1px solid #000;outline:none;background-color:rgba(255,255,62,.8);padding:0 4px;margin-right:2px;line-height:17px;overflow:visible}.theme-paper .PaperInput__baseline{display:inline-block;color:transparent}.theme-paper .PaperInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:12px;line-height:17px;height:17px;margin:0;padding:0 6px;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-paper .PaperInput__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-paper .Layout__content,.theme-paper .Window{background-image:none}.theme-paper .Window{color:#000}.theme-paper .paper-field,.theme-paper .paper-field input:disabled,.theme-paper .paper-text input,.theme-paper .paper-text input:disabled{position:relative;display:inline-block;background:transparent;border:none;border-bottom:1px solid #000;outline:none;background-color:rgba(255,255,62,.8);padding:0 4px;margin-right:2px;line-height:17px;overflow:visible}.theme-pda-retro .color-black{color:#0d0d0d!important}.theme-pda-retro .color-white{color:#fff!important}.theme-pda-retro .color-red{color:#d33!important}.theme-pda-retro .color-orange{color:#f37827!important}.theme-pda-retro .color-yellow{color:#fbd814!important}.theme-pda-retro .color-olive{color:#c0d919!important}.theme-pda-retro .color-green{color:#22be47!important}.theme-pda-retro .color-teal{color:#00c5bd!important}.theme-pda-retro .color-blue{color:#238cdc!important}.theme-pda-retro .color-violet{color:#6c3fcc!important}.theme-pda-retro .color-purple{color:#a93bcd!important}.theme-pda-retro .color-pink{color:#e2439c!important}.theme-pda-retro .color-brown{color:#af6d43!important}.theme-pda-retro .color-grey{color:#7d7d7d!important}.theme-pda-retro .color-good{color:#62b62a!important}.theme-pda-retro .color-average{color:#0d0d0d!important}.theme-pda-retro .color-bad{color:#d33!important}.theme-pda-retro .color-label{color:#0d0d0d!important}.theme-pda-retro .color-bg-black{background-color:#000!important}.theme-pda-retro .color-bg-white{background-color:#d9d9d9!important}.theme-pda-retro .color-bg-red{background-color:#bd2020!important}.theme-pda-retro .color-bg-orange{background-color:#d95e0c!important}.theme-pda-retro .color-bg-yellow{background-color:#d9b804!important}.theme-pda-retro .color-bg-olive{background-color:#9aad14!important}.theme-pda-retro .color-bg-green{background-color:#1b9638!important}.theme-pda-retro .color-bg-teal{background-color:#009a93!important}.theme-pda-retro .color-bg-blue{background-color:#1c71b1!important}.theme-pda-retro .color-bg-violet{background-color:#552dab!important}.theme-pda-retro .color-bg-purple{background-color:#8b2baa!important}.theme-pda-retro .color-bg-pink{background-color:#cf2082!important}.theme-pda-retro .color-bg-brown{background-color:#8c5836!important}.theme-pda-retro .color-bg-grey{background-color:#646464!important}.theme-pda-retro .color-bg-good{background-color:#4d9121!important}.theme-pda-retro .color-bg-average{background-color:#000!important}.theme-pda-retro .color-bg-bad{background-color:#bd2020!important}.theme-pda-retro .color-bg-label{background-color:#000!important}.theme-pda-retro .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:0;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-pda-retro .Button:last-child{margin-right:0}.theme-pda-retro .Button .fa,.theme-pda-retro .Button .far,.theme-pda-retro .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-pda-retro .Button--hasContent .fa,.theme-pda-retro .Button--hasContent .far,.theme-pda-retro .Button--hasContent .fas{margin-right:.25em}.theme-pda-retro .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-pda-retro .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-pda-retro .Button--circular{border-radius:50%}.theme-pda-retro .Button--compact{padding:0 .25em;line-height:1.333em}.theme-pda-retro .Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-pda-retro .Button--color--black:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--black:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--black:focus,.theme-pda-retro .Button--color--black:hover{background-color:#0a0a0a;color:#fff}.theme-pda-retro .Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.theme-pda-retro .Button--color--white:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--white:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--white:focus,.theme-pda-retro .Button--color--white:hover{background-color:#f3f3f3;color:#000}.theme-pda-retro .Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-pda-retro .Button--color--red:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--red:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--red:focus,.theme-pda-retro .Button--color--red:hover{background-color:#d52b2b;color:#fff}.theme-pda-retro .Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.theme-pda-retro .Button--color--orange:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--orange:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--orange:focus,.theme-pda-retro .Button--color--orange:hover{background-color:#ed6f1d;color:#fff}.theme-pda-retro .Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.theme-pda-retro .Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--yellow:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--yellow:focus,.theme-pda-retro .Button--color--yellow:hover{background-color:#f3d00e;color:#000}.theme-pda-retro .Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.theme-pda-retro .Button--color--olive:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--olive:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--olive:focus,.theme-pda-retro .Button--color--olive:hover{background-color:#afc41f;color:#fff}.theme-pda-retro .Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.theme-pda-retro .Button--color--green:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--green:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--green:focus,.theme-pda-retro .Button--color--green:hover{background-color:#27ab46;color:#fff}.theme-pda-retro .Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.theme-pda-retro .Button--color--teal:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--teal:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--teal:focus,.theme-pda-retro .Button--color--teal:hover{background-color:#0aafa8;color:#fff}.theme-pda-retro .Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.theme-pda-retro .Button--color--blue:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--blue:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--blue:focus,.theme-pda-retro .Button--color--blue:hover{background-color:#2883c8;color:#fff}.theme-pda-retro .Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.theme-pda-retro .Button--color--violet:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--violet:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--violet:focus,.theme-pda-retro .Button--color--violet:hover{background-color:#653ac1;color:#fff}.theme-pda-retro .Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.theme-pda-retro .Button--color--purple:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--purple:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--purple:focus,.theme-pda-retro .Button--color--purple:hover{background-color:#9e38c1;color:#fff}.theme-pda-retro .Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.theme-pda-retro .Button--color--pink:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--pink:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--pink:focus,.theme-pda-retro .Button--color--pink:hover{background-color:#dd3794;color:#fff}.theme-pda-retro .Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.theme-pda-retro .Button--color--brown:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--brown:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--brown:focus,.theme-pda-retro .Button--color--brown:hover{background-color:#a06844;color:#fff}.theme-pda-retro .Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.theme-pda-retro .Button--color--grey:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--grey:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--grey:focus,.theme-pda-retro .Button--color--grey:hover{background-color:#757575;color:#fff}.theme-pda-retro .Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.theme-pda-retro .Button--color--good:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--good:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--good:focus,.theme-pda-retro .Button--color--good:hover{background-color:#5da52d;color:#fff}.theme-pda-retro .Button--color--average{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-pda-retro .Button--color--average:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--average:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--average:focus,.theme-pda-retro .Button--color--average:hover{background-color:#0a0a0a;color:#fff}.theme-pda-retro .Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-pda-retro .Button--color--bad:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--bad:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--bad:focus,.theme-pda-retro .Button--color--bad:hover{background-color:#d52b2b;color:#fff}.theme-pda-retro .Button--color--label{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-pda-retro .Button--color--label:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--label:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--label:focus,.theme-pda-retro .Button--color--label:hover{background-color:#0a0a0a;color:#fff}.theme-pda-retro .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000}.theme-pda-retro .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--default:focus,.theme-pda-retro .Button--color--default:hover{background-color:#f7f6ee;color:#000}.theme-pda-retro .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-pda-retro .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--caution:focus,.theme-pda-retro .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-pda-retro .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-pda-retro .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--danger:focus,.theme-pda-retro .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-pda-retro .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#6f7961;color:#fff;background-color:rgba(111,121,97,0);color:hsla(0,0%,100%,.5)}.theme-pda-retro .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--transparent:focus,.theme-pda-retro .Button--color--transparent:hover{background-color:#818c72;color:#fff}.theme-pda-retro .Button--disabled{background-color:#505050!important}.theme-pda-retro .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-pda-retro .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--selected:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--selected:focus,.theme-pda-retro .Button--selected:hover{background-color:#b31212;color:#fff}.theme-pda-retro .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:0;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-pda-retro .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-pda-retro .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-pda-retro .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-pda-retro .ProgressBar--color--default{border:.0833333333em solid #000}.theme-pda-retro .ProgressBar--color--default .ProgressBar__fill{background-color:#000}.theme-pda-retro .ProgressBar--color--black{border:.0833333333em solid #000!important}.theme-pda-retro .ProgressBar--color--black .ProgressBar__fill{background-color:#000}.theme-pda-retro .ProgressBar--color--white{border:.0833333333em solid #d9d9d9!important}.theme-pda-retro .ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.theme-pda-retro .ProgressBar--color--red{border:.0833333333em solid #bd2020!important}.theme-pda-retro .ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.theme-pda-retro .ProgressBar--color--orange{border:.0833333333em solid #d95e0c!important}.theme-pda-retro .ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.theme-pda-retro .ProgressBar--color--yellow{border:.0833333333em solid #d9b804!important}.theme-pda-retro .ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.theme-pda-retro .ProgressBar--color--olive{border:.0833333333em solid #9aad14!important}.theme-pda-retro .ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.theme-pda-retro .ProgressBar--color--green{border:.0833333333em solid #1b9638!important}.theme-pda-retro .ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.theme-pda-retro .ProgressBar--color--teal{border:.0833333333em solid #009a93!important}.theme-pda-retro .ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.theme-pda-retro .ProgressBar--color--blue{border:.0833333333em solid #1c71b1!important}.theme-pda-retro .ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.theme-pda-retro .ProgressBar--color--violet{border:.0833333333em solid #552dab!important}.theme-pda-retro .ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.theme-pda-retro .ProgressBar--color--purple{border:.0833333333em solid #8b2baa!important}.theme-pda-retro .ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.theme-pda-retro .ProgressBar--color--pink{border:.0833333333em solid #cf2082!important}.theme-pda-retro .ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.theme-pda-retro .ProgressBar--color--brown{border:.0833333333em solid #8c5836!important}.theme-pda-retro .ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.theme-pda-retro .ProgressBar--color--grey{border:.0833333333em solid #646464!important}.theme-pda-retro .ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.theme-pda-retro .ProgressBar--color--good{border:.0833333333em solid #4d9121!important}.theme-pda-retro .ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.theme-pda-retro .ProgressBar--color--average{border:.0833333333em solid #000!important}.theme-pda-retro .ProgressBar--color--average .ProgressBar__fill{background-color:#000}.theme-pda-retro .ProgressBar--color--bad{border:.0833333333em solid #bd2020!important}.theme-pda-retro .ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.theme-pda-retro .ProgressBar--color--label{border:.0833333333em solid #000!important}.theme-pda-retro .ProgressBar--color--label .ProgressBar__fill{background-color:#000}.theme-pda-retro .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.1);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-pda-retro .Section:last-child{margin-bottom:0}.theme-pda-retro .Section--flex{display:flex;flex-flow:column}.theme-pda-retro .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-pda-retro .Section__title{padding:.5em;border-bottom:.1666666667em solid #000}.theme-pda-retro .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-pda-retro .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-pda-retro .Section__content{padding:.66em .5em}.theme-pda-retro .Section--fill{display:flex;flex-direction:column;height:100%}.theme-pda-retro .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-pda-retro .Section--fill .Section__content{flex-grow:1}.theme-pda-retro .Section__content--noTopPadding{padding-top:0}.theme-pda-retro .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-pda-retro .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-pda-retro .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-pda-retro .Section--level--3 .Section__titleText{font-size:1em}.theme-pda-retro .Section--level--2,.theme-pda-retro .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-pda-retro .Layout,.theme-pda-retro .Layout *{scrollbar-base-color:#535b49;scrollbar-face-color:#7e896e;scrollbar-3dlight-color:#6f7961;scrollbar-highlight-color:#6f7961;scrollbar-track-color:#535b49;scrollbar-arrow-color:#b7beae;scrollbar-shadow-color:#7e896e}.theme-pda-retro .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-pda-retro .Layout__content--flexRow{display:flex;flex-flow:row}.theme-pda-retro .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-pda-retro .Layout__content--scrollable{overflow-y:auto}.theme-pda-retro .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#6f7961;background-image:linear-gradient(180deg,#6f7961 0,#6f7961)}.theme-pda-retro .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-pda-retro .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-pda-retro .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-pda-retro .Window__contentPadding:after{height:0}.theme-pda-retro .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-pda-retro .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(147,156,133,.25);pointer-events:none}.theme-pda-retro .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-pda-retro .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-pda-retro .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-pda-retro .TitleBar{background-color:#363636;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-pda-retro .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#363636;transition:color .25s,background-color .25s}.theme-pda-retro .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-pda-retro .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-pda-retro .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-pda-retro .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-pda-retro .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-pda-retro .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-pda-retro .Button{color:#161613;background-color:#565d4b;border:1px solid #000}.theme-pda-retro .Layout__content{background-image:none}.theme-pda-retro .LabeledList__label{font-weight:700}.theme-pda-retro .Tooltip:after{color:#fff}.theme-retro .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:0;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-retro .Button:last-child{margin-right:0}.theme-retro .Button .fa,.theme-retro .Button .far,.theme-retro .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-retro .Button--hasContent .fa,.theme-retro .Button--hasContent .far,.theme-retro .Button--hasContent .fas{margin-right:.25em}.theme-retro .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-retro .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-retro .Button--circular{border-radius:50%}.theme-retro .Button--compact{padding:0 .25em;line-height:1.333em}.theme-retro .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000}.theme-retro .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-retro .Button--color--default:focus,.theme-retro .Button--color--default:hover{background-color:#f7f6ee;color:#000}.theme-retro .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-retro .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-retro .Button--color--caution:focus,.theme-retro .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-retro .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-retro .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-retro .Button--color--danger:focus,.theme-retro .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-retro .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000;background-color:rgba(232,228,201,0);color:hsla(0,0%,100%,.5)}.theme-retro .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-retro .Button--color--transparent:focus,.theme-retro .Button--color--transparent:hover{background-color:#f7f6ee;color:#000}.theme-retro .Button--disabled{background-color:#363636!important}.theme-retro .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-retro .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--selected:focus{transition:color .1s,background-color .1s}.theme-retro .Button--selected:focus,.theme-retro .Button--selected:hover{background-color:#b31212;color:#fff}.theme-retro .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:0;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-retro .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-retro .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-retro .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-retro .ProgressBar--color--default{border:.0833333333em solid #000}.theme-retro .ProgressBar--color--default .ProgressBar__fill{background-color:#000}.theme-retro .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-retro .Section:last-child{margin-bottom:0}.theme-retro .Section--flex{display:flex;flex-flow:column}.theme-retro .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-retro .Section__title{padding:.5em;border-bottom:.1666666667em solid #000}.theme-retro .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-retro .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-retro .Section__content{padding:.66em .5em}.theme-retro .Section--fill{display:flex;flex-direction:column;height:100%}.theme-retro .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-retro .Section--fill .Section__content{flex-grow:1}.theme-retro .Section__content--noTopPadding{padding-top:0}.theme-retro .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-retro .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-retro .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-retro .Section--level--3 .Section__titleText{font-size:1em}.theme-retro .Section--level--2,.theme-retro .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-retro .Layout,.theme-retro .Layout *{scrollbar-base-color:#c8be7d;scrollbar-face-color:#eae7ce;scrollbar-3dlight-color:#e8e4c9;scrollbar-highlight-color:#e8e4c9;scrollbar-track-color:#c8be7d;scrollbar-arrow-color:#f4f2e4;scrollbar-shadow-color:#eae7ce}.theme-retro .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-retro .Layout__content--flexRow{display:flex;flex-flow:row}.theme-retro .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-retro .Layout__content--scrollable{overflow-y:auto}.theme-retro .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#e8e4c9;background-image:linear-gradient(180deg,#e8e4c9 0,#e8e4c9)}.theme-retro .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-retro .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-retro .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-retro .Window__contentPadding:after{height:0}.theme-retro .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-retro .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(251,250,246,.25);pointer-events:none}.theme-retro .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-retro .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-retro .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-retro .TitleBar{background-color:#585337;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-retro .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#585337;transition:color .25s,background-color .25s}.theme-retro .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-retro .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-retro .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-retro .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-retro .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-retro .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-retro .Button{font-family:monospace;color:#161613;border:.1666666667em outset #e8e4c9;outline:.0833333333em solid #161613}.theme-retro .Layout__content{background-image:none}.theme-syndicate .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-syndicate .Button:last-child{margin-right:0}.theme-syndicate .Button .fa,.theme-syndicate .Button .far,.theme-syndicate .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-syndicate .Button--hasContent .fa,.theme-syndicate .Button--hasContent .far,.theme-syndicate .Button--hasContent .fas{margin-right:.25em}.theme-syndicate .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-syndicate .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-syndicate .Button--circular{border-radius:50%}.theme-syndicate .Button--compact{padding:0 .25em;line-height:1.333em}.theme-syndicate .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#397439;color:#fff}.theme-syndicate .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-syndicate .Button--color--default:focus,.theme-syndicate .Button--color--default:hover{background-color:#478647;color:#fff}.theme-syndicate .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-syndicate .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-syndicate .Button--color--caution:focus,.theme-syndicate .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-syndicate .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-syndicate .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-syndicate .Button--color--danger:focus,.theme-syndicate .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-syndicate .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#550202;color:#fff;background-color:rgba(85,2,2,0);color:hsla(0,0%,100%,.5)}.theme-syndicate .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-syndicate .Button--color--transparent:focus,.theme-syndicate .Button--color--transparent:hover{background-color:#650c0c;color:#fff}.theme-syndicate .Button--disabled{background-color:#363636!important}.theme-syndicate .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-syndicate .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--selected:focus{transition:color .1s,background-color .1s}.theme-syndicate .Button--selected:focus,.theme-syndicate .Button--selected:hover{background-color:#b31212;color:#fff}.theme-syndicate .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:700;font-style:italic;color:#fff;background-color:#910101;background-image:repeating-linear-gradient(-45deg,transparent,transparent .8333333333em,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 1.6666666667em)}.theme-syndicate .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-syndicate .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-syndicate .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-syndicate .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-syndicate .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #87ce87;border:.0833333333em solid rgba(135,206,135,.75);border-radius:.16em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-syndicate .Input--fluid{display:block;width:auto}.theme-syndicate .Input__baseline{display:inline-block;color:transparent}.theme-syndicate .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-syndicate .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-syndicate .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #87ce87;border:.0833333333em solid rgba(135,206,135,.75);border-radius:.16em;color:#87ce87;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-syndicate .NumberInput--fluid{display:block}.theme-syndicate .NumberInput__content{margin-left:.5em}.theme-syndicate .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-syndicate .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #87ce87;background-color:#87ce87}.theme-syndicate .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#000;color:#fff;text-align:right}.theme-syndicate .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-syndicate .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-syndicate .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-syndicate .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-syndicate .ProgressBar--color--default{border:.0833333333em solid #306330}.theme-syndicate .ProgressBar--color--default .ProgressBar__fill{background-color:#306330}.theme-syndicate .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-syndicate .Section:last-child{margin-bottom:0}.theme-syndicate .Section--flex{display:flex;flex-flow:column}.theme-syndicate .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-syndicate .Section__title{padding:.5em;border-bottom:.1666666667em solid #397439}.theme-syndicate .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-syndicate .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-syndicate .Section__content{padding:.66em .5em}.theme-syndicate .Section--fill{display:flex;flex-direction:column;height:100%}.theme-syndicate .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-syndicate .Section--fill .Section__content{flex-grow:1}.theme-syndicate .Section__content--noTopPadding{padding-top:0}.theme-syndicate .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-syndicate .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-syndicate .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-syndicate .Section--level--3 .Section__titleText{font-size:1em}.theme-syndicate .Section--level--2,.theme-syndicate .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-syndicate .Tooltip{position:absolute;top:0;left:0;right:0;bottom:0;font-style:normal;font-weight:400}.theme-syndicate .Tooltip:after{position:absolute;display:block;white-space:nowrap;z-index:2;padding:.5em .75em;transform:translateX(-50%);pointer-events:none;visibility:hidden;opacity:0;text-align:left;content:attr(data-tooltip);transition:all .15s;background-color:#4a0202;box-shadow:.1em .1em 1.25em -.1em rgba(0,0,0,.5);border-radius:.16em}.theme-syndicate .Tooltip:hover:after{transition:all 70ms;pointer-events:none;visibility:visible;opacity:1}.theme-syndicate .Tooltip--long:after{width:20.8333333333em;white-space:normal}.theme-syndicate .Tooltip--top:after{bottom:100%;left:50%;transform:translateX(-50%) translateY(.5em)}.theme-syndicate .Tooltip--top:hover:after{transform:translateX(-50%) translateY(-.5em)}.theme-syndicate .Tooltip--top-left:after{bottom:100%;right:50%;transform:translateX(12px) translateY(-8px)}.theme-syndicate .Tooltip--top-left:hover:after{transform:translateX(12px) translateY(8px)}.theme-syndicate .Tooltip--top-right:after{bottom:100%;left:50%;transform:translateX(-12px) translateY(-8px)}.theme-syndicate .Tooltip--top-right:hover:after{transform:translateX(-12px) translateY(8px)}.theme-syndicate .Tooltip--bottom:after{top:100%;left:50%;transform:translateX(-50%) translateY(-.5em)}.theme-syndicate .Tooltip--bottom:hover:after{transform:translateX(-50%) translateY(.5em)}.theme-syndicate .Tooltip--bottom-left:after{top:100%;right:50%;transform:translateX(12px) translateY(-.5em)}.theme-syndicate .Tooltip--bottom-left:hover:after{transform:translateX(12px) translateY(.5em)}.theme-syndicate .Tooltip--bottom-right:after{top:100%;left:50%;transform:translateX(-12px) translateY(-.5em)}.theme-syndicate .Tooltip--bottom-right:hover:after{transform:translateX(-12px) translateY(.5em)}.theme-syndicate .Tooltip--left:after{top:50%;right:100%;transform:translateX(.5em) translateY(-50%)}.theme-syndicate .Tooltip--left:hover:after,.theme-syndicate .Tooltip--right:after{transform:translateX(-.5em) translateY(-50%)}.theme-syndicate .Tooltip--right:after{top:50%;left:100%}.theme-syndicate .Tooltip--right:hover:after{transform:translateX(.5em) translateY(-50%)}.theme-syndicate .Tooltip--scale--1:after{top:30%;left:50%;transform:translateX(-50%) scale(1)}.theme-syndicate .Tooltip--scale--1:hover:after{transform:translateX(-50%) scale(1)}.theme-syndicate .Tooltip--scale--2:after{top:30%;left:50%;transform:translateX(-50%) scale(.5)}.theme-syndicate .Tooltip--scale--2:hover:after{transform:translateX(-50%) scale(.5)}.theme-syndicate .Tooltip--scale--3:after{top:30%;left:50%}.theme-syndicate .Tooltip--scale--3:after,.theme-syndicate .Tooltip--scale--3:hover:after{transform:translateX(-50%) scale(.3333333333)}.theme-syndicate .Tooltip--scale--4:after{top:30%;left:50%;transform:translateX(-50%) scale(.25)}.theme-syndicate .Tooltip--scale--4:hover:after{transform:translateX(-50%) scale(.25)}.theme-syndicate .Tooltip--scale--5:after{top:30%;left:50%;transform:translateX(-50%) scale(.2)}.theme-syndicate .Tooltip--scale--5:hover:after{transform:translateX(-50%) scale(.2)}.theme-syndicate .Tooltip--scale--6:after{top:30%;left:50%}.theme-syndicate .Tooltip--scale--6:after,.theme-syndicate .Tooltip--scale--6:hover:after{transform:translateX(-50%) scale(.1666666667)}.theme-syndicate .Tooltip--scale--7:after{top:30%;left:50%}.theme-syndicate .Tooltip--scale--7:after,.theme-syndicate .Tooltip--scale--7:hover:after{transform:translateX(-50%) scale(.1428571429)}.theme-syndicate .Tooltip--scale--8:after{top:30%;left:50%;transform:translateX(-50%) scale(.125)}.theme-syndicate .Tooltip--scale--8:hover:after{transform:translateX(-50%) scale(.125)}.theme-syndicate .Layout,.theme-syndicate .Layout *{scrollbar-base-color:#400202;scrollbar-face-color:#7e0303;scrollbar-3dlight-color:#550202;scrollbar-highlight-color:#550202;scrollbar-track-color:#400202;scrollbar-arrow-color:#fa3030;scrollbar-shadow-color:#7e0303}.theme-syndicate .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-syndicate .Layout__content--flexRow{display:flex;flex-flow:row}.theme-syndicate .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-syndicate .Layout__content--scrollable{overflow-y:auto}.theme-syndicate .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#550202;background-image:linear-gradient(180deg,#730303 0,#370101)}.theme-syndicate .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-syndicate .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-syndicate .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-syndicate .Window__contentPadding:after{height:0}.theme-syndicate .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-syndicate .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(117,22,22,.25);pointer-events:none}.theme-syndicate .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-syndicate .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-syndicate .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-syndicate .TitleBar{background-color:#910101;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-syndicate .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#910101;transition:color .25s,background-color .25s}.theme-syndicate .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-syndicate .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-syndicate .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-syndicate .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-syndicate .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-syndicate .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-syndicate .Layout__content{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMCIgdmlld0JveD0iMCAwIDIwMCAyODkuNzQyIiBvcGFjaXR5PSIuMzMiPjxwYXRoIGQ9Ik05My41MzggMGMtMTguMTEzIDAtMzQuMjIgMy4xMTItNDguMzI0IDkuMzM0LTEzLjk2NSA2LjIyMi0yNC42MTIgMTUuMDcyLTMxLjk0IDI2LjU0N0M2LjA4NCA0Ny4yMiAyLjk3MiA2MC42MzEgMi45NzIgNzYuMTE2YzAgMTAuNjQ3IDIuNzI1IDIwLjQ2NSA4LjE3NSAyOS40NTMgNS42MTYgOC45ODcgMTQuMDM5IDE3LjM1MiAyNS4yNyAyNS4wOTQgMTEuMjMgNy42MDYgMjYuNTA3IDE1LjQxOSA0NS44MyAyMy40MzggMTkuOTg0IDguMjk2IDM0Ljg0OSAxNS41NTUgNDQuNTkzIDIxLjc3NiA5Ljc0NCA2LjIyMyAxNi43NjEgMTIuODU5IDIxLjA1NSAxOS45MSA0LjI5NSA3LjA1MiA2LjQ0MiAxNS43NjQgNi40NDIgMjYuMTM0IDAgMTYuMTc4LTUuMjAyIDI4LjQ4My0xNS42MDYgMzYuOTE3LTEwLjI0IDguNDM1LTI1LjAyMiAxMi42NTMtNDQuMzQ1IDEyLjY1My0xNC4wMzkgMC0yNS41MTYtMS42Ni0zNC40MzQtNC45NzgtOC45MTgtMy40NTctMTYuMTg2LTguNzExLTIxLjgtMTUuNzYzLTUuNjE2LTcuMDUyLTEwLjA3Ni0xNi42NjEtMTMuMzc5LTI4LjgyOUgwdjU2LjgyN2MzMy44NTcgNy4zMjggNjMuNzQ5IDEwLjk5NCA4OS42NzggMTAuOTk0IDE2LjAyIDAgMzAuNzItMS4zODMgNDQuMDk4LTQuMTQ4IDEzLjU0Mi0yLjkwNCAyNS4xMDQtNy40NjcgMzQuNjgzLTEzLjY5IDkuNzQ0LTYuMzU5IDE3LjM0LTE0LjUxOSAyMi43OS0yNC40NzQgNS40NS0xMC4wOTMgOC4xNzUtMjIuNCA4LjE3NS0zNi45MTcgMC0xMi45OTctMy4zMDItMjQuMzM1LTkuOTA4LTM0LjAxNC02LjQ0LTkuODE4LTE1LjUyNS0xOC41MjctMjcuMjUxLTI2LjEzMi0xMS41NjEtNy42MDQtMjcuOTExLTE1LjgzMS00OS4wNTEtMjQuNjgtMTcuNTA2LTcuMTktMzAuNzItMTMuNjktMzkuNjM4LTE5LjQ5N1M1NC45NjkgOTMuNzU2IDQ5LjQ3OSA4Ny4zMTZjLTUuNDI2LTYuMzY2LTkuNjU4LTE1LjA3LTkuNjU4LTI0Ljg4NyAwLTkuMjY0IDIuMDc1LTE3LjIxNCA2LjIyMy0yMy44NUM1Ny4xNDIgMjQuMTggODcuMzMxIDM2Ljc4MiA5MS4xMiA2Mi45MjVjNC44NCA2Ljc3NSA4Ljg1IDE2LjI0NyAxMi4wMyAyOC40MTVoMjAuNTMydi01NmMtNC40NzktNS45MjQtOS45NTUtMTAuNjMxLTE1LjkwOS0xNC4zNzMgMS42NC40NzkgMy4xOSAxLjAyMyA0LjYzOSAxLjY0IDYuNDk4IDIuNjI2IDEyLjE2OCA3LjMyNyAxNy4wMDcgMTQuMTAzIDQuODQgNi43NzUgOC44NSAxNi4yNDYgMTIuMDMgMjguNDE0IDAgMCA4LjQ4LS4xMjkgOC40OS0uMDAyLjQxNyA2LjQxNS0xLjc1NCA5LjQ1My00LjEyNCAxMi41NjEtMi40MTcgMy4xNy01LjE0NSA2Ljc5LTQuMDAzIDEzLjAwMyAxLjUwOCA4LjIwMyAxMC4xODQgMTAuNTk3IDE0LjYyMiA5LjMxMi0zLjMxOC0uNS01LjMxOC0xLjc1LTUuMzE4LTEuNzVzMS44NzYuOTk5IDUuNjUtMS4zNmMtMy4yNzYuOTU2LTEwLjcwNC0uNzk3LTExLjgtNi43NjMtLjk1OC01LjIwOC45NDYtNy4yOTUgMy40LTEwLjUxNCAyLjQ1NS0zLjIyIDUuMjg1LTYuOTU5IDQuNjg1LTE0LjQ4OWwuMDAzLjAwMmg4LjkyN3YtNTZjLTE1LjA3Mi0zLjg3MS0yNy42NTMtNi4zNi0zNy43NDctNy40NjVDMTE0LjI3OS41NTIgMTA0LjA0NiAwIDkzLjUzNyAwem03MC4zMjEgMTcuMzA5bC4yMzggNDAuMzA1YzEuMzE4IDEuMjI2IDIuNDQgMi4yNzggMy4zNDEgMy4xMDYgNC44NCA2Ljc3NSA4Ljg1IDE2LjI0NiAxMi4wMyAyOC40MTRIMjAwdi01NmMtNi42NzctNC41OTQtMTkuODM2LTEwLjQ3My0zNi4xNC0xNS44MjV6bS0yOC4xMiA1LjYwNWw4LjU2NSAxNy43MTdjLTExLjk3LTYuNDY3LTEzLjg0Ny05LjcxNy04LjU2NS0xNy43MTd6bTIyLjc5NyAwYzIuNzcxIDggMS43ODcgMTEuMjUtNC40OTQgMTcuNzE3bDQuNDk0LTE3LjcxN3ptMTUuMjIyIDI0LjAwOWw4LjU2NSAxNy43MTZjLTExLjk3LTYuNDY2LTEzLjg0Ny05LjcxNy04LjU2NS0xNy43MTZ6bTIyLjc5NyAwYzIuNzcxIDggMS43ODcgMTEuMjUtNC40OTQgMTcuNzE2bDQuNDk0LTE3LjcxNnpNOTcuNDQgNDkuMTNsOC41NjUgMTcuNzE2Yy0xMS45Ny02LjQ2Ny0xMy44NDctOS43MTctOC41NjUtMTcuNzE2em0yMi43OTUgMGMyLjc3MiA3Ljk5OSAxLjc4OCAxMS4yNS00LjQ5MyAxNy43MTZsNC40OTMtMTcuNzE2eiIvPjwvc3ZnPg==)}
\ No newline at end of file
+body,html{box-sizing:border-box;height:100%;margin:0;font-size:12px}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif}*,:after,:before{box-sizing:inherit}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:.5rem 0}h1{font-size:18px;font-size:1.5rem}h2{font-size:16px;font-size:1.333rem}h3{font-size:14px;font-size:1.167rem}h4{font-size:12px;font-size:1rem}td,th{vertical-align:baseline;text-align:left}.candystripe:nth-child(odd){background-color:rgba(0,0,0,.25)}.color-black{color:#0d0d0d!important}.color-white{color:#fff!important}.color-red{color:#d33!important}.color-orange{color:#f37827!important}.color-yellow{color:#fbd814!important}.color-olive{color:#c0d919!important}.color-green{color:#22be47!important}.color-teal{color:#00c5bd!important}.color-blue{color:#238cdc!important}.color-violet{color:#6c3fcc!important}.color-purple{color:#a93bcd!important}.color-pink{color:#e2439c!important}.color-brown{color:#af6d43!important}.color-grey{color:#7d7d7d!important}.color-good{color:#62b62a!important}.color-average{color:#f1951d!important}.color-bad{color:#d33!important}.color-label{color:#8496ab!important}.color-bg-black{background-color:#000!important}.color-bg-white{background-color:#d9d9d9!important}.color-bg-red{background-color:#bd2020!important}.color-bg-orange{background-color:#d95e0c!important}.color-bg-yellow{background-color:#d9b804!important}.color-bg-olive{background-color:#9aad14!important}.color-bg-green{background-color:#1b9638!important}.color-bg-teal{background-color:#009a93!important}.color-bg-blue{background-color:#1c71b1!important}.color-bg-violet{background-color:#552dab!important}.color-bg-purple{background-color:#8b2baa!important}.color-bg-pink{background-color:#cf2082!important}.color-bg-brown{background-color:#8c5836!important}.color-bg-grey{background-color:#646464!important}.color-bg-good{background-color:#4d9121!important}.color-bg-average{background-color:#cd7a0d!important}.color-bg-bad{background-color:#bd2020!important}.color-bg-label{background-color:#657a94!important}.debug-layout,.debug-layout :not(g):not(path){color:hsla(0,0%,100%,.9)!important;background:transparent!important;outline:1px solid hsla(0,0%,100%,.5)!important;box-shadow:none!important;filter:none!important}.debug-layout:hover,.debug-layout :not(g):not(path):hover{outline-color:hsla(0,0%,100%,.8)!important}.outline-dotted{outline-style:dotted!important}.outline-dashed{outline-style:dashed!important}.outline-solid{outline-style:solid!important}.outline-double{outline-style:double!important}.outline-groove{outline-style:groove!important}.outline-ridge{outline-style:ridge!important}.outline-inset{outline-style:inset!important}.outline-outset{outline-style:outset!important}.outline-color-black{outline:.167rem solid #0d0d0d!important}.outline-color-white{outline:.167rem solid #fff!important}.outline-color-red{outline:.167rem solid #d33!important}.outline-color-orange{outline:.167rem solid #f37827!important}.outline-color-yellow{outline:.167rem solid #fbd814!important}.outline-color-olive{outline:.167rem solid #c0d919!important}.outline-color-green{outline:.167rem solid #22be47!important}.outline-color-teal{outline:.167rem solid #00c5bd!important}.outline-color-blue{outline:.167rem solid #238cdc!important}.outline-color-violet{outline:.167rem solid #6c3fcc!important}.outline-color-purple{outline:.167rem solid #a93bcd!important}.outline-color-pink{outline:.167rem solid #e2439c!important}.outline-color-brown{outline:.167rem solid #af6d43!important}.outline-color-grey{outline:.167rem solid #7d7d7d!important}.outline-color-good{outline:.167rem solid #62b62a!important}.outline-color-average{outline:.167rem solid #f1951d!important}.outline-color-bad{outline:.167rem solid #d33!important}.outline-color-label{outline:.167rem solid #8496ab!important}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-baseline{text-align:baseline}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-pre{white-space:pre}.text-bold{font-weight:700}.text-italic{font-style:italic}.text-underline{text-decoration:underline}.BlockQuote{color:#8496ab;border-left:.1666666667em solid #8496ab;padding-left:.5em;margin-bottom:.5em}.BlockQuote:last-child{margin-bottom:0}.Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.Button:last-child{margin-right:0}.Button .fa,.Button .far,.Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.Button--hasContent .fa,.Button--hasContent .far,.Button--hasContent .fas{margin-right:.25em}.Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.Button--fluid{display:block;margin-left:0;margin-right:0}.Button--circular{border-radius:50%}.Button--compact{padding:0 .25em;line-height:1.333em}.Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.Button--color--black:hover{transition:color 0ms,background-color 0ms}.Button--color--black:focus{transition:color .1s,background-color .1s}.Button--color--black:focus,.Button--color--black:hover{background-color:#0a0a0a;color:#fff}.Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.Button--color--white:hover{transition:color 0ms,background-color 0ms}.Button--color--white:focus{transition:color .1s,background-color .1s}.Button--color--white:focus,.Button--color--white:hover{background-color:#f3f3f3;color:#000}.Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--red:hover{transition:color 0ms,background-color 0ms}.Button--color--red:focus{transition:color .1s,background-color .1s}.Button--color--red:focus,.Button--color--red:hover{background-color:#d52b2b;color:#fff}.Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.Button--color--orange:hover{transition:color 0ms,background-color 0ms}.Button--color--orange:focus{transition:color .1s,background-color .1s}.Button--color--orange:focus,.Button--color--orange:hover{background-color:#ed6f1d;color:#fff}.Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.Button--color--yellow:focus{transition:color .1s,background-color .1s}.Button--color--yellow:focus,.Button--color--yellow:hover{background-color:#f3d00e;color:#000}.Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.Button--color--olive:hover{transition:color 0ms,background-color 0ms}.Button--color--olive:focus{transition:color .1s,background-color .1s}.Button--color--olive:focus,.Button--color--olive:hover{background-color:#afc41f;color:#fff}.Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--color--green:hover{transition:color 0ms,background-color 0ms}.Button--color--green:focus{transition:color .1s,background-color .1s}.Button--color--green:focus,.Button--color--green:hover{background-color:#27ab46;color:#fff}.Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.Button--color--teal:hover{transition:color 0ms,background-color 0ms}.Button--color--teal:focus{transition:color .1s,background-color .1s}.Button--color--teal:focus,.Button--color--teal:hover{background-color:#0aafa8;color:#fff}.Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.Button--color--blue:hover{transition:color 0ms,background-color 0ms}.Button--color--blue:focus{transition:color .1s,background-color .1s}.Button--color--blue:focus,.Button--color--blue:hover{background-color:#2883c8;color:#fff}.Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.Button--color--violet:hover{transition:color 0ms,background-color 0ms}.Button--color--violet:focus{transition:color .1s,background-color .1s}.Button--color--violet:focus,.Button--color--violet:hover{background-color:#653ac1;color:#fff}.Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.Button--color--purple:hover{transition:color 0ms,background-color 0ms}.Button--color--purple:focus{transition:color .1s,background-color .1s}.Button--color--purple:focus,.Button--color--purple:hover{background-color:#9e38c1;color:#fff}.Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.Button--color--pink:hover{transition:color 0ms,background-color 0ms}.Button--color--pink:focus{transition:color .1s,background-color .1s}.Button--color--pink:focus,.Button--color--pink:hover{background-color:#dd3794;color:#fff}.Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.Button--color--brown:hover{transition:color 0ms,background-color 0ms}.Button--color--brown:focus{transition:color .1s,background-color .1s}.Button--color--brown:focus,.Button--color--brown:hover{background-color:#a06844;color:#fff}.Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.Button--color--grey:hover{transition:color 0ms,background-color 0ms}.Button--color--grey:focus{transition:color .1s,background-color .1s}.Button--color--grey:focus,.Button--color--grey:hover{background-color:#757575;color:#fff}.Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.Button--color--good:hover{transition:color 0ms,background-color 0ms}.Button--color--good:focus{transition:color .1s,background-color .1s}.Button--color--good:focus,.Button--color--good:hover{background-color:#5da52d;color:#fff}.Button--color--average{transition:color 50ms,background-color 50ms;background-color:#cd7a0d;color:#fff}.Button--color--average:hover{transition:color 0ms,background-color 0ms}.Button--color--average:focus{transition:color .1s,background-color .1s}.Button--color--average:focus,.Button--color--average:hover{background-color:#e68d18;color:#fff}.Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--bad:hover{transition:color 0ms,background-color 0ms}.Button--color--bad:focus{transition:color .1s,background-color .1s}.Button--color--bad:focus,.Button--color--bad:hover{background-color:#d52b2b;color:#fff}.Button--color--label{transition:color 50ms,background-color 50ms;background-color:#657a94;color:#fff}.Button--color--label:hover{transition:color 0ms,background-color 0ms}.Button--color--label:focus{transition:color .1s,background-color .1s}.Button--color--label:focus,.Button--color--label:hover{background-color:#7b8da4;color:#fff}.Button--color--default{transition:color 50ms,background-color 50ms;background-color:#3e6189;color:#fff}.Button--color--default:hover{transition:color 0ms,background-color 0ms}.Button--color--default:focus{transition:color .1s,background-color .1s}.Button--color--default:focus,.Button--color--default:hover{background-color:#4c729d;color:#fff}.Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--caution:hover{transition:color 0ms,background-color 0ms}.Button--color--caution:focus{transition:color .1s,background-color .1s}.Button--color--caution:focus,.Button--color--caution:hover{background-color:#f3d00e;color:#000}.Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--danger:hover{transition:color 0ms,background-color 0ms}.Button--color--danger:focus{transition:color .1s,background-color .1s}.Button--color--danger:focus,.Button--color--danger:hover{background-color:#d52b2b;color:#fff}.Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#252525;color:#fff;background-color:rgba(37,37,37,0);color:hsla(0,0%,100%,.5)}.Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.Button--color--transparent:focus{transition:color .1s,background-color .1s}.Button--color--transparent:focus,.Button--color--transparent:hover{background-color:#323232;color:#fff}.Button--disabled{background-color:#999!important}.Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--selected:hover{transition:color 0ms,background-color 0ms}.Button--selected:focus{transition:color .1s,background-color .1s}.Button--selected:focus,.Button--selected:hover{background-color:#27ab46;color:#fff}.ColorBox{display:inline-block;width:1em;height:1em;line-height:1em;text-align:center}.Dimmer{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.75);z-index:1}.Divider--horizontal{margin:.5px 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid hsla(0,0%,100%,.1)}.Divider--vertical{height:100%;margin:0 .5px}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid hsla(0,0%,100%,.1)}.Dropdown{position:relative}.Dropdown__control{position:relative;display:inline-block;font-family:Verdana,sans-serif;font-size:1em;width:8.3333333333em;line-height:1.4166666667em;user-select:none}.Dropdown__arrow-button{float:right;padding-left:.5em;border-left:.0833333333em solid #000;border-left:.0833333333em solid rgba(0,0,0,.25)}.Dropdown__menu{overflow-y:auto;overflow-y:scroll}.Dropdown__menu,.Dropdown__menu-noscroll{position:absolute;z-index:5;width:8.3333333333em;max-height:16.6666666667em;border-radius:0 0 .1666666667em .1666666667em;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menu-noscroll{overflow-y:auto}.Dropdown__menuentry{padding:.1666666667em .3333333333em;font-family:Verdana,sans-serif;font-size:1em;line-height:1.4166666667em;transition:background-color .1s}.Dropdown__menuentry:hover{background-color:#444;transition:background-color 0ms}.Dropdown__over{top:auto;bottom:100%}.FatalError{display:block!important;position:absolute;top:0;left:0;right:0;bottom:0;padding:12px;font-size:12px;font-family:Consolas,monospace;color:#fff;background-color:#00d;z-index:1000;overflow:hidden;text-align:center}.FatalError__logo{display:inline-block;text-align:left;font-size:10px;line-height:8px;position:relative;margin-top:12px;top:0;left:0;animation:FatalError__rainbow 2s linear infinite alternate,FatalError__shadow 4s linear infinite alternate,FatalError__tfmX 3s infinite alternate,FatalError__tfmY 4s infinite alternate;white-space:pre-wrap;word-break:break-all}.FatalError__header{margin-top:12px}.FatalError__stack{text-align:left;white-space:pre-wrap;word-break:break-all;margin-top:24px;margin-bottom:24px}.FatalError__footer{margin-bottom:24px}@keyframes FatalError__rainbow{0%{color:#ff0}50%{color:#0ff}to{color:#f0f}}@keyframes FatalError__shadow{0%{left:-2px;text-shadow:4px 0 #f0f}50%{left:0;text-shadow:0 0 #0ff}to{left:2px;text-shadow:-4px 0 #ff0}}@keyframes FatalError__tfmX{0%{left:15px}to{left:-15px}}@keyframes FatalError__tfmY{to{top:-15px}}.Flex{display:-ms-flexbox;display:flex}.Flex--inline{display:inline-flex}.Flex--iefix{display:table!important}.Flex--iefix--column{display:block!important}.Flex--iefix--column>.Flex__item{display:block!important;margin-left:.5em;margin-right:.5em}.Flex__item--iefix{display:table-cell!important}.Flex--spacing--1{margin:0 -.25em}.Flex--spacing--1>.Flex__item{margin:0 .25em}.Flex--spacingPrecise--1{margin:-1px}.Flex--spacingPrecise--1>.Flex__item{margin:1px}.Flex--spacing--2{margin:0 -.5em}.Flex--spacing--2>.Flex__item{margin:0 .5em}.Flex--spacingPrecise--2{margin:-2px}.Flex--spacingPrecise--2>.Flex__item{margin:2px}.Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto -.2em;cursor:n-resize}.Knob:after{content:".";color:transparent;line-height:2.5em}.Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(180deg,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,0));border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:hsla(0,0%,100%,.9)}.Knob__popupValue,.Knob__popupValue--right{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;background-color:#000;transform:translateX(50%);white-space:nowrap}.Knob__popupValue--right{top:.25rem;right:-50%}.Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.Knob__ringTrackPivot{transform:rotate(135deg)}.Knob__ringTrack{fill:transparent;stroke:hsla(0,0%,100%,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.Knob__ringFillPivot{transform:rotate(135deg)}.Knob--bipolar .Knob__ringFillPivot{transform:rotate(270deg)}.Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms}.Knob--color--black .Knob__ringFill{stroke:#0d0d0d}.Knob--color--white .Knob__ringFill{stroke:#fff}.Knob--color--red .Knob__ringFill{stroke:#d33}.Knob--color--orange .Knob__ringFill{stroke:#f37827}.Knob--color--yellow .Knob__ringFill{stroke:#fbd814}.Knob--color--olive .Knob__ringFill{stroke:#c0d919}.Knob--color--green .Knob__ringFill{stroke:#22be47}.Knob--color--teal .Knob__ringFill{stroke:#00c5bd}.Knob--color--blue .Knob__ringFill{stroke:#238cdc}.Knob--color--violet .Knob__ringFill{stroke:#6c3fcc}.Knob--color--purple .Knob__ringFill{stroke:#a93bcd}.Knob--color--pink .Knob__ringFill{stroke:#e2439c}.Knob--color--brown .Knob__ringFill{stroke:#af6d43}.Knob--color--grey .Knob__ringFill{stroke:#7d7d7d}.Knob--color--good .Knob__ringFill{stroke:#62b62a}.Knob--color--average .Knob__ringFill{stroke:#f1951d}.Knob--color--bad .Knob__ringFill{stroke:#d33}.Knob--color--label .Knob__ringFill{stroke:#8496ab}.LabeledList{display:table;width:100%;width:calc(100% + 1em);border-collapse:collapse;border-spacing:0;margin:-.25em -.5em 0;padding:0}.LabeledList__row{display:table-row}.LabeledList__row:last-child .LabeledList__cell{padding-bottom:0}.LabeledList__cell{display:table-cell;margin:0;padding:.25em .5em;border:0;text-align:left;vertical-align:baseline}.LabeledList__label{width:1%;white-space:nowrap;min-width:5em}.LabeledList__buttons{width:.1%;white-space:nowrap;text-align:right;padding-top:.0833333333em;padding-bottom:0}.LabeledList__breakContents{word-break:break-all;word-wrap:break-word}.Modal{background-color:#252525;max-width:calc(100% - 1rem);padding:1rem}.NanoMap__container{overflow:hiddden;width:100%;z-index:1}.NanoMap__marker{z-index:10;padding:0;margin:0}.NanoMap__zoomer{z-index:20;background-color:rgba(0,0,0,.33);position:absolute;top:30px;left:0;padding:.5rem;width:30%}.NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:700;font-style:italic;color:#000;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg,transparent,transparent .8333333333em,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 1.6666666667em)}.NoticeBox--color--black{color:#fff;background-color:#000}.NoticeBox--color--white{color:#000;background-color:#b3b3b3}.NoticeBox--color--red{color:#fff;background-color:#701f1f}.NoticeBox--color--orange{color:#fff;background-color:#854114}.NoticeBox--color--yellow{color:#000;background-color:#83710d}.NoticeBox--color--olive{color:#000;background-color:#576015}.NoticeBox--color--green{color:#fff;background-color:#174e24}.NoticeBox--color--teal{color:#fff;background-color:#064845}.NoticeBox--color--blue{color:#fff;background-color:#1b4565}.NoticeBox--color--violet{color:#fff;background-color:#3b2864}.NoticeBox--color--purple{color:#fff;background-color:#542663}.NoticeBox--color--pink{color:#fff;background-color:#802257}.NoticeBox--color--brown{color:#fff;background-color:#4c3729}.NoticeBox--color--grey{color:#fff;background-color:#3e3e3e}.NoticeBox--color--good{color:#fff;background-color:#2e4b1a}.NoticeBox--color--average{color:#fff;background-color:#7b4e13}.NoticeBox--color--bad{color:#fff;background-color:#701f1f}.NoticeBox--color--label{color:#fff;background-color:#53565a}.NoticeBox--type--info{color:#fff;background-color:#235982}.NoticeBox--type--success{color:#fff;background-color:#1e662f}.NoticeBox--type--warning{color:#fff;background-color:#a95219}.NoticeBox--type--danger{color:#fff;background-color:#8f2828}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.NumberInput{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#88bfff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.NumberInput--fluid{display:block}.NumberInput__content{margin-left:.5em}.NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #88bfff;background-color:#88bfff}.NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#000;color:#fff;text-align:right}.ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:transparent;transition:border-color .5s}.ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.ProgressBar__fill--animated{transition:background-color .5s,width .5s}.ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.ProgressBar--color--default{border:.0833333333em solid #3e6189}.ProgressBar--color--default .ProgressBar__fill{background-color:#3e6189}.ProgressBar--color--black{border:.0833333333em solid #000!important}.ProgressBar--color--black .ProgressBar__fill{background-color:#000}.ProgressBar--color--white{border:.0833333333em solid #d9d9d9!important}.ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.ProgressBar--color--red{border:.0833333333em solid #bd2020!important}.ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--orange{border:.0833333333em solid #d95e0c!important}.ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.ProgressBar--color--yellow{border:.0833333333em solid #d9b804!important}.ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.ProgressBar--color--olive{border:.0833333333em solid #9aad14!important}.ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.ProgressBar--color--green{border:.0833333333em solid #1b9638!important}.ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.ProgressBar--color--teal{border:.0833333333em solid #009a93!important}.ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.ProgressBar--color--blue{border:.0833333333em solid #1c71b1!important}.ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.ProgressBar--color--violet{border:.0833333333em solid #552dab!important}.ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.ProgressBar--color--purple{border:.0833333333em solid #8b2baa!important}.ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.ProgressBar--color--pink{border:.0833333333em solid #cf2082!important}.ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.ProgressBar--color--brown{border:.0833333333em solid #8c5836!important}.ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.ProgressBar--color--grey{border:.0833333333em solid #646464!important}.ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.ProgressBar--color--good{border:.0833333333em solid #4d9121!important}.ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.ProgressBar--color--average{border:.0833333333em solid #cd7a0d!important}.ProgressBar--color--average .ProgressBar__fill{background-color:#cd7a0d}.ProgressBar--color--bad{border:.0833333333em solid #bd2020!important}.ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--label{border:.0833333333em solid #657a94!important}.ProgressBar--color--label .ProgressBar__fill{background-color:#657a94}.Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.Section:last-child{margin-bottom:0}.Section--flex{display:flex;flex-flow:column}.Section--flex .Section__content{overflow:auto;flex-grow:1}.Section__title{padding:.5em;border-bottom:.1666666667em solid #4972a1}.Section__titleText{font-size:1.1666666667em;font-weight:700}.Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.Section__content{padding:.66em .5em}.Section--fill{display:flex;flex-direction:column;height:100%}.Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.Section--fill .Section__content{flex-grow:1}.Section__content--noTopPadding{padding-top:0}.Section__content--stretchContents{height:calc(100% - 3rem)}.Section--level--1 .Section__titleText{font-size:1.1666666667em}.Section--level--2 .Section__titleText{font-size:1.0833333333em}.Section--level--3 .Section__titleText{font-size:1em}.Section--level--2,.Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.Slider{cursor:e-resize}.Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none!important}.Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #fff}.Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #fff}.Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;background-color:#000;transform:translateX(50%);white-space:nowrap}.Table{display:table;width:100%;border-collapse:collapse;border-spacing:0;margin:0}.Table--collapsing{width:auto}.Table__row{display:table-row}.Table__cell{display:table-cell;padding:0 .25em}.Table__cell:first-child{padding-left:0}.Table__cell:last-child{padding-right:0}.Table__cell--header,.Table__row--header .Table__cell{font-weight:700;padding-bottom:.5em}.Table__cell--collapsing{width:1%;white-space:nowrap}.Tabs--horizontal{border-bottom:.1666666667em solid hsla(0,0%,100%,.1);margin-bottom:.5em}.Tabs--horizontal .Tabs__tab--altSelection:after{content:"";position:absolute;bottom:0;right:0;left:0;height:.1666666667em;width:100%;background-color:#fff;border-radius:.16em}.Tabs--vertical{margin-right:.75em}.Tabs--vertical .Tabs__tabBox{border-right:.1666666667em solid hsla(0,0%,100%,.1);vertical-align:top}.Tabs--vertical .Tabs__tab{display:block!important;margin-right:0!important;margin-bottom:0;padding:.0833333333em .75em 0 .5em;border-bottom:.1666666667em solid hsla(0,0%,100%,.1)}.Tabs--vertical .Tabs__tab:last-child{border-bottom:0}.Tabs--vertical .Tabs__tab--altSelection:after{content:"";position:absolute;top:0;bottom:0;right:0;height:100%;width:.25em;background-color:#fff;border-radius:.16em}.Tooltip{position:absolute;top:0;left:0;right:0;bottom:0;font-style:normal;font-weight:400}.Tooltip:after{position:absolute;display:block;white-space:nowrap;z-index:2;padding:.5em .75em;transform:translateX(-50%);pointer-events:none;visibility:hidden;opacity:0;text-align:left;content:attr(data-tooltip);transition:all .15s;background-color:#000;box-shadow:.1em .1em 1.25em -.1em rgba(0,0,0,.5);border-radius:.16em}.Tooltip:hover:after{transition:all 70ms;pointer-events:none;visibility:visible;opacity:1}.Tooltip--long:after{width:20.8333333333em;white-space:normal}.Tooltip--top:after{bottom:100%;left:50%;transform:translateX(-50%) translateY(.5em)}.Tooltip--top:hover:after{transform:translateX(-50%) translateY(-.5em)}.Tooltip--top-left:after{bottom:100%;right:50%;transform:translateX(12px) translateY(-8px)}.Tooltip--top-left:hover:after{transform:translateX(12px) translateY(8px)}.Tooltip--top-right:after{bottom:100%;left:50%;transform:translateX(-12px) translateY(-8px)}.Tooltip--top-right:hover:after{transform:translateX(-12px) translateY(8px)}.Tooltip--bottom:after{top:100%;left:50%;transform:translateX(-50%) translateY(-.5em)}.Tooltip--bottom:hover:after{transform:translateX(-50%) translateY(.5em)}.Tooltip--bottom-left:after{top:100%;right:50%;transform:translateX(12px) translateY(-.5em)}.Tooltip--bottom-left:hover:after{transform:translateX(12px) translateY(.5em)}.Tooltip--bottom-right:after{top:100%;left:50%;transform:translateX(-12px) translateY(-.5em)}.Tooltip--bottom-right:hover:after{transform:translateX(-12px) translateY(.5em)}.Tooltip--left:after{top:50%;right:100%;transform:translateX(.5em) translateY(-50%)}.Tooltip--left:hover:after,.Tooltip--right:after{transform:translateX(-.5em) translateY(-50%)}.Tooltip--right:after{top:50%;left:100%}.Tooltip--right:hover:after{transform:translateX(.5em) translateY(-50%)}.Tooltip--scale--1:after{top:30%;left:50%}.Tooltip--scale--1:after,.Tooltip--scale--1:hover:after{transform:translateX(-50%) scale(1)}.Tooltip--scale--2:after{top:30%;left:50%}.Tooltip--scale--2:after,.Tooltip--scale--2:hover:after{transform:translateX(-50%) scale(.5)}.Tooltip--scale--3:after{top:30%;left:50%}.Tooltip--scale--3:after,.Tooltip--scale--3:hover:after{transform:translateX(-50%) scale(.3333333333)}.Tooltip--scale--4:after{top:30%;left:50%}.Tooltip--scale--4:after,.Tooltip--scale--4:hover:after{transform:translateX(-50%) scale(.25)}.Tooltip--scale--5:after{top:30%;left:50%}.Tooltip--scale--5:after,.Tooltip--scale--5:hover:after{transform:translateX(-50%) scale(.2)}.Tooltip--scale--6:after{top:30%;left:50%}.Tooltip--scale--6:after,.Tooltip--scale--6:hover:after{transform:translateX(-50%) scale(.1666666667)}.Tooltip--scale--7:after{top:30%;left:50%}.Tooltip--scale--7:after,.Tooltip--scale--7:hover:after{transform:translateX(-50%) scale(.1428571429)}.Tooltip--scale--8:after{top:30%;left:50%}.Tooltip--scale--8:after,.Tooltip--scale--8:hover:after{transform:translateX(-50%) scale(.125)}.CameraConsole__left{position:absolute;top:0;bottom:0;left:0;width:18.3333333333em}.CameraConsole__right{position:absolute;top:0;bottom:0;left:18.3333333333em;right:0;background-color:rgba(0,0,0,.33)}.CameraConsole__toolbar{left:0;margin:.25em 1em 0}.CameraConsole__toolbar,.CameraConsole__toolbarRight{position:absolute;top:0;right:0;height:2em;line-height:2em}.CameraConsole__toolbarRight{margin:.33em .5em 0}.CameraConsole__map{position:absolute;top:2.1666666667em;bottom:0;left:0;right:0;margin:.5em;text-align:center}.CameraConsole__map .NoticeBox{margin-top:calc(50% - 2em)}.IDCard__NamePlate{margin-left:-6px;margin-right:-6px;margin-top:6px;padding:.5em;border-top:.1666666667em solid #4972a1;font-size:1.1666666667em;font-weight:700}.NuclearBomb__displayBox{background-color:#002003;border:.167em inset #e8e4c9;color:#03e017;font-size:2em;font-family:monospace;padding:.25em}.NuclearBomb__Button{outline-width:.25rem!important;border-width:.65rem!important;padding-left:0!important;padding-right:0!important}.NuclearBomb__Button--keypad{background-color:#e8e4c9;border-color:#e8e4c9}.NuclearBomb__Button--keypad:hover{background-color:#f7f6ee!important;border-color:#f7f6ee!important}.NuclearBomb__Button--1{background-color:#d3cfb7!important;border-color:#d3cfb7!important;color:#a9a692!important}.NuclearBomb__Button--E{background-color:#d9b804!important;border-color:#d9b804!important}.NuclearBomb__Button--E:hover{background-color:#f3d00e!important;border-color:#f3d00e!important}.NuclearBomb__Button--C{background-color:#bd2020!important;border-color:#bd2020!important}.NuclearBomb__Button--C:hover{background-color:#d52b2b!important;border-color:#d52b2b!important}.NuclearBomb__NTIcon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMCIgdmlld0JveD0iMCAwIDQyNSAyMDAiIG9wYWNpdHk9Ii4zMyI+PHBhdGggZD0iTTE3OC4wMDQuMDM5SDEwNi44YTYuNzYxIDYuMDI2IDAgMDAtNi43NjEgNi4wMjV2MTg3Ljg3MmE2Ljc2MSA2LjAyNiAwIDAwNi43NjEgNi4wMjVoNTMuMTA3YTYuNzYxIDYuMDI2IDAgMDA2Ljc2Mi02LjAyNVY5Mi4zOTJsNzIuMjE2IDEwNC43YTYuNzYxIDYuMDI2IDAgMDA1Ljc2IDIuODdIMzE4LjJhNi43NjEgNi4wMjYgMCAwMDYuNzYxLTYuMDI2VjYuMDY0QTYuNzYxIDYuMDI2IDAgMDAzMTguMi4wNGgtNTQuNzE3YTYuNzYxIDYuMDI2IDAgMDAtNi43NiA2LjAyNXYxMDIuNjJMMTgzLjc2MyAyLjkwOWE2Ljc2MSA2LjAyNiAwIDAwLTUuNzYtMi44N3pNNC44NDUgMjIuMTA5QTEzLjQxMiAxMi41MDIgMCAwMTEzLjQ3OC4wMzloNjYuMTE4QTUuMzY1IDUgMCAwMTg0Ljk2IDUuMDR2NzkuODh6TTQyMC4xNTUgMTc3Ljg5MWExMy40MTIgMTIuNTAyIDAgMDEtOC42MzMgMjIuMDdoLTY2LjExOGE1LjM2NSA1IDAgMDEtNS4zNjUtNS4wMDF2LTc5Ljg4eiIvPjwvc3ZnPg==);background-size:70%;background-position:50%;background-repeat:no-repeat}.Roulette{font-family:Palatino}.Roulette__board{display:table;width:100%;border-collapse:collapse;border:2px solid #fff;margin:0}.Roulette__board-row{padding:0;margin:0}.Roulette__board-cell{display:table-cell;padding:0;margin:0;border:2px solid #fff;font-family:Palatino}.Roulette__board-cell:first-child{padding-left:0}.Roulette__board-cell:last-child{padding-right:0}.Roulette__board-extrabutton{text-align:center;font-size:20px;font-weight:700;height:28px;border:none!important;margin:0!important;padding-top:4px!important;color:#fff!important}.Roulette__lowertable{margin-top:8px;margin-left:80px;margin-right:80px;border-collapse:collapse;border:2px solid #fff;border-spacing:0}.Roulette__lowertable--cell{border:2px solid #fff;padding:0;margin:0}.Roulette__lowertable--betscell{vertical-align:top}.Roulette__lowertable--spinresult{text-align:center;font-size:100px;font-weight:700;vertical-align:middle}.Roulette__lowertable--spinresult-black{background-color:#000}.Roulette__lowertable--spinresult-red{background-color:#db2828}.Roulette__lowertable--spinresult-green{background-color:#20b142}.Roulette__lowertable--spinbutton{margin:0!important;border:none!important;font-size:50px;line-height:60px!important;text-align:center;font-weight:700}.Roulette__lowertable--header{width:1%;text-align:center;font-size:20px;font-weight:700}.TinderMessage_First_Received,.TinderMessage_First_Sent,.TinderMessage_Subsequent_Received,.TinderMessage_Subsequent_Sent{padding:6px;z-index:1;word-break:break-all;max-width:100%}.TinderMessage_First_Sent,.TinderMessage_Subsequent_Sent{text-align:right;background-color:#4d9121}.TinderMessage_First_Sent{border-radius:10px 10px 0 10px}.TinderMessage_Subsequent_Sent{border-radius:10px 0 0 10px}.TinderMessage_First_Received,.TinderMessage_Subsequent_Received{text-align:left;background-color:#cd7a0d}.TinderMessage_First_Received{border-radius:10px 10px 10px 0}.TinderMessage_Subsequent_Received{border-radius:0 10px 10px 0}.ClassicMessage_Received,.ClassicMessage_Sent{word-break:break-all}.ClassicMessage_Sent{color:#4d9121}.ClassicMessage_Received{color:#cd7a0d}.Section--elevator--fire{background-color:#f33;background-color:rgba(255,0,0,.35)}.Section--elevator--fire>.Section__title{padding:.5em;border-bottom:.1666666667em solid red}.Layout,.Layout *{scrollbar-base-color:#1c1c1c;scrollbar-face-color:#3b3b3b;scrollbar-3dlight-color:#252525;scrollbar-highlight-color:#252525;scrollbar-track-color:#1c1c1c;scrollbar-arrow-color:#929292;scrollbar-shadow-color:#3b3b3b}.Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.Layout__content--flexRow{display:flex;flex-flow:row}.Layout__content--flexColumn{display:flex;flex-flow:column}.Layout__content--scrollable{overflow-y:auto}.NtosHeader__left{position:absolute;left:1em}.NtosHeader__right{position:absolute;right:1em}.NtosHeader__icon{margin-top:-.75em;margin-bottom:-.5em;vertical-align:middle}.NtosWindow__header{position:absolute;top:0;left:0;right:0;height:2em;line-height:1.928em;background-color:rgba(0,0,0,.5);font-family:Consolas,monospace;font-size:1.1666666667em;user-select:none;-ms-user-select:none}.NtosWindow__content>.Layout__content{margin-top:2em!important;font-family:Consolas,monospace;font-size:1.1666666667em}.TitleBar{background-color:#363636;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#363636;transition:color .25s,background-color .25s}.TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.TitleBar__statusIcon{top:0;left:12px;left:1rem;transition:color .5s;line-height:32px!important;line-height:2.6666666667rem!important}.TitleBar__close,.TitleBar__statusIcon{position:absolute;font-size:20px;font-size:1.6666666667rem}.TitleBar__close{top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.Window{bottom:0;right:0;color:#fff;background-color:#252525;background-image:linear-gradient(180deg,#2a2a2a 0,#202020)}.Window,.Window__titleBar{position:fixed;top:0;left:0}.Window__titleBar{z-index:1;width:100%;height:32px;height:2.6666666667rem}.Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.Window__contentPadding:after{height:0}.Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(62,62,62,.25);pointer-events:none}.Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.Layout__content{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMCIgdmlld0JveD0iMCAwIDQyNSAyMDAiIG9wYWNpdHk9Ii4zMyI+PHBhdGggZD0iTTE3OC4wMDQuMDM5SDEwNi44YTYuNzYxIDYuMDI2IDAgMDAtNi43NjEgNi4wMjV2MTg3Ljg3MmE2Ljc2MSA2LjAyNiAwIDAwNi43NjEgNi4wMjVoNTMuMTA3YTYuNzYxIDYuMDI2IDAgMDA2Ljc2Mi02LjAyNVY5Mi4zOTJsNzIuMjE2IDEwNC43YTYuNzYxIDYuMDI2IDAgMDA1Ljc2IDIuODdIMzE4LjJhNi43NjEgNi4wMjYgMCAwMDYuNzYxLTYuMDI2VjYuMDY0QTYuNzYxIDYuMDI2IDAgMDAzMTguMi4wNGgtNTQuNzE3YTYuNzYxIDYuMDI2IDAgMDAtNi43NiA2LjAyNXYxMDIuNjJMMTgzLjc2MyAyLjkwOWE2Ljc2MSA2LjAyNiAwIDAwLTUuNzYtMi44N3pNNC44NDUgMjIuMTA5QTEzLjQxMiAxMi41MDIgMCAwMTEzLjQ3OC4wMzloNjYuMTE4QTUuMzY1IDUgMCAwMTg0Ljk2IDUuMDR2NzkuODh6TTQyMC4xNTUgMTc3Ljg5MWExMy40MTIgMTIuNTAyIDAgMDEtOC42MzMgMjIuMDdoLTY2LjExOGE1LjM2NSA1IDAgMDEtNS4zNjUtNS4wMDF2LTc5Ljg4eiIvPjwvc3ZnPg==);background-size:70%;background-position:50%;background-repeat:no-repeat}.theme-abductor .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:2px;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-abductor .Button:last-child{margin-right:0}.theme-abductor .Button .fa,.theme-abductor .Button .far,.theme-abductor .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-abductor .Button--hasContent .fa,.theme-abductor .Button--hasContent .far,.theme-abductor .Button--hasContent .fas{margin-right:.25em}.theme-abductor .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-abductor .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-abductor .Button--circular{border-radius:50%}.theme-abductor .Button--compact{padding:0 .25em;line-height:1.333em}.theme-abductor .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#ad2350;color:#fff}.theme-abductor .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-abductor .Button--color--default:focus,.theme-abductor .Button--color--default:hover{background-color:#c42f60;color:#fff}.theme-abductor .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-abductor .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-abductor .Button--color--caution:focus,.theme-abductor .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-abductor .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-abductor .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-abductor .Button--color--danger:focus,.theme-abductor .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-abductor .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#2a314a;color:#fff;background-color:rgba(42,49,74,0);color:hsla(0,0%,100%,.5)}.theme-abductor .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-abductor .Button--color--transparent:focus,.theme-abductor .Button--color--transparent:hover{background-color:#373e59;color:#fff}.theme-abductor .Button--disabled{background-color:#363636!important}.theme-abductor .Button--selected{transition:color 50ms,background-color 50ms;background-color:#465899;color:#fff}.theme-abductor .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--selected:focus{transition:color .1s,background-color .1s}.theme-abductor .Button--selected:focus,.theme-abductor .Button--selected:hover{background-color:#5569ad;color:#fff}.theme-abductor .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:700;font-style:italic;color:#fff;background-color:#a82d55;background-image:repeating-linear-gradient(-45deg,transparent,transparent .8333333333em,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 1.6666666667em)}.theme-abductor .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-abductor .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-abductor .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-abductor .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-abductor .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-abductor .Input--fluid{display:block;width:auto}.theme-abductor .Input__baseline{display:inline-block;color:transparent}.theme-abductor .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-abductor .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-abductor .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#404b6e;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-abductor .NumberInput--fluid{display:block}.theme-abductor .NumberInput__content{margin-left:.5em}.theme-abductor .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-abductor .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #404b6e;background-color:#404b6e}.theme-abductor .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#000;color:#fff;text-align:right}.theme-abductor .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:2px;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-abductor .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-abductor .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-abductor .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-abductor .ProgressBar--color--default{border:.0833333333em solid #931e44}.theme-abductor .ProgressBar--color--default .ProgressBar__fill{background-color:#931e44}.theme-abductor .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-abductor .Section:last-child{margin-bottom:0}.theme-abductor .Section--flex{display:flex;flex-flow:column}.theme-abductor .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-abductor .Section__title{padding:.5em;border-bottom:.1666666667em solid #ad2350}.theme-abductor .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-abductor .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-abductor .Section__content{padding:.66em .5em}.theme-abductor .Section--fill{display:flex;flex-direction:column;height:100%}.theme-abductor .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-abductor .Section--fill .Section__content{flex-grow:1}.theme-abductor .Section__content--noTopPadding{padding-top:0}.theme-abductor .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-abductor .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-abductor .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-abductor .Section--level--3 .Section__titleText{font-size:1em}.theme-abductor .Section--level--2,.theme-abductor .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-abductor .Tooltip{position:absolute;top:0;left:0;right:0;bottom:0;font-style:normal;font-weight:400}.theme-abductor .Tooltip:after{position:absolute;display:block;white-space:nowrap;z-index:2;padding:.5em .75em;transform:translateX(-50%);pointer-events:none;visibility:hidden;opacity:0;text-align:left;content:attr(data-tooltip);transition:all .15s;background-color:#a82d55;box-shadow:.1em .1em 1.25em -.1em rgba(0,0,0,.5);border-radius:2px}.theme-abductor .Tooltip:hover:after{transition:all 70ms;pointer-events:none;visibility:visible;opacity:1}.theme-abductor .Tooltip--long:after{width:20.8333333333em;white-space:normal}.theme-abductor .Tooltip--top:after{bottom:100%;left:50%;transform:translateX(-50%) translateY(.5em)}.theme-abductor .Tooltip--top:hover:after{transform:translateX(-50%) translateY(-.5em)}.theme-abductor .Tooltip--top-left:after{bottom:100%;right:50%;transform:translateX(12px) translateY(-8px)}.theme-abductor .Tooltip--top-left:hover:after{transform:translateX(12px) translateY(8px)}.theme-abductor .Tooltip--top-right:after{bottom:100%;left:50%;transform:translateX(-12px) translateY(-8px)}.theme-abductor .Tooltip--top-right:hover:after{transform:translateX(-12px) translateY(8px)}.theme-abductor .Tooltip--bottom:after{top:100%;left:50%;transform:translateX(-50%) translateY(-.5em)}.theme-abductor .Tooltip--bottom:hover:after{transform:translateX(-50%) translateY(.5em)}.theme-abductor .Tooltip--bottom-left:after{top:100%;right:50%;transform:translateX(12px) translateY(-.5em)}.theme-abductor .Tooltip--bottom-left:hover:after{transform:translateX(12px) translateY(.5em)}.theme-abductor .Tooltip--bottom-right:after{top:100%;left:50%;transform:translateX(-12px) translateY(-.5em)}.theme-abductor .Tooltip--bottom-right:hover:after{transform:translateX(-12px) translateY(.5em)}.theme-abductor .Tooltip--left:after{top:50%;right:100%;transform:translateX(.5em) translateY(-50%)}.theme-abductor .Tooltip--left:hover:after,.theme-abductor .Tooltip--right:after{transform:translateX(-.5em) translateY(-50%)}.theme-abductor .Tooltip--right:after{top:50%;left:100%}.theme-abductor .Tooltip--right:hover:after{transform:translateX(.5em) translateY(-50%)}.theme-abductor .Tooltip--scale--1:after{top:30%;left:50%;transform:translateX(-50%) scale(1)}.theme-abductor .Tooltip--scale--1:hover:after{transform:translateX(-50%) scale(1)}.theme-abductor .Tooltip--scale--2:after{top:30%;left:50%;transform:translateX(-50%) scale(.5)}.theme-abductor .Tooltip--scale--2:hover:after{transform:translateX(-50%) scale(.5)}.theme-abductor .Tooltip--scale--3:after{top:30%;left:50%}.theme-abductor .Tooltip--scale--3:after,.theme-abductor .Tooltip--scale--3:hover:after{transform:translateX(-50%) scale(.3333333333)}.theme-abductor .Tooltip--scale--4:after{top:30%;left:50%;transform:translateX(-50%) scale(.25)}.theme-abductor .Tooltip--scale--4:hover:after{transform:translateX(-50%) scale(.25)}.theme-abductor .Tooltip--scale--5:after{top:30%;left:50%;transform:translateX(-50%) scale(.2)}.theme-abductor .Tooltip--scale--5:hover:after{transform:translateX(-50%) scale(.2)}.theme-abductor .Tooltip--scale--6:after{top:30%;left:50%}.theme-abductor .Tooltip--scale--6:after,.theme-abductor .Tooltip--scale--6:hover:after{transform:translateX(-50%) scale(.1666666667)}.theme-abductor .Tooltip--scale--7:after{top:30%;left:50%}.theme-abductor .Tooltip--scale--7:after,.theme-abductor .Tooltip--scale--7:hover:after{transform:translateX(-50%) scale(.1428571429)}.theme-abductor .Tooltip--scale--8:after{top:30%;left:50%;transform:translateX(-50%) scale(.125)}.theme-abductor .Tooltip--scale--8:hover:after{transform:translateX(-50%) scale(.125)}.theme-abductor .Layout,.theme-abductor .Layout *{scrollbar-base-color:#202538;scrollbar-face-color:#384263;scrollbar-3dlight-color:#2a314a;scrollbar-highlight-color:#2a314a;scrollbar-track-color:#202538;scrollbar-arrow-color:#818db8;scrollbar-shadow-color:#384263}.theme-abductor .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-abductor .Layout__content--flexRow{display:flex;flex-flow:row}.theme-abductor .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-abductor .Layout__content--scrollable{overflow-y:auto}.theme-abductor .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#2a314a;background-image:linear-gradient(180deg,#353e5e 0,#1f2436)}.theme-abductor .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-abductor .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-abductor .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-abductor .Window__contentPadding:after{height:0}.theme-abductor .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-abductor .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(68,76,104,.25);pointer-events:none}.theme-abductor .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-abductor .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-abductor .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-abductor .TitleBar{background-color:#9e1b46;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-abductor .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#9e1b46;transition:color .25s,background-color .25s}.theme-abductor .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-abductor .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-abductor .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-abductor .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-abductor .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-abductor .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-abductor .Layout__content{background-image:none}.theme-cardtable .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:0;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-cardtable .Button:last-child{margin-right:0}.theme-cardtable .Button .fa,.theme-cardtable .Button .far,.theme-cardtable .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-cardtable .Button--hasContent .fa,.theme-cardtable .Button--hasContent .far,.theme-cardtable .Button--hasContent .fas{margin-right:.25em}.theme-cardtable .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-cardtable .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-cardtable .Button--circular{border-radius:50%}.theme-cardtable .Button--compact{padding:0 .25em;line-height:1.333em}.theme-cardtable .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#117039;color:#fff}.theme-cardtable .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-cardtable .Button--color--default:focus,.theme-cardtable .Button--color--default:hover{background-color:#1c8247;color:#fff}.theme-cardtable .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-cardtable .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-cardtable .Button--color--caution:focus,.theme-cardtable .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-cardtable .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-cardtable .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-cardtable .Button--color--danger:focus,.theme-cardtable .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-cardtable .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#117039;color:#fff;background-color:rgba(17,112,57,0);color:hsla(0,0%,100%,.5)}.theme-cardtable .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-cardtable .Button--color--transparent:focus,.theme-cardtable .Button--color--transparent:hover{background-color:#1c8247;color:#fff}.theme-cardtable .Button--disabled{background-color:#363636!important}.theme-cardtable .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-cardtable .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--selected:focus{transition:color .1s,background-color .1s}.theme-cardtable .Button--selected:focus,.theme-cardtable .Button--selected:hover{background-color:#b31212;color:#fff}.theme-cardtable .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:0;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-cardtable .Input--fluid{display:block;width:auto}.theme-cardtable .Input__baseline{display:inline-block;color:transparent}.theme-cardtable .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-cardtable .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-cardtable .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #fff;border:.0833333333em solid hsla(0,0%,100%,.75);border-radius:0;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-cardtable .NumberInput--fluid{display:block}.theme-cardtable .NumberInput__content{margin-left:.5em}.theme-cardtable .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-cardtable .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #fff;background-color:#fff}.theme-cardtable .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#000;color:#fff;text-align:right}.theme-cardtable .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:0;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-cardtable .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-cardtable .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-cardtable .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-cardtable .ProgressBar--color--default{border:.0833333333em solid #000}.theme-cardtable .ProgressBar--color--default .ProgressBar__fill{background-color:#000}.theme-cardtable .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-cardtable .Section:last-child{margin-bottom:0}.theme-cardtable .Section--flex{display:flex;flex-flow:column}.theme-cardtable .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-cardtable .Section__title{padding:.5em;border-bottom:.1666666667em solid #000}.theme-cardtable .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-cardtable .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-cardtable .Section__content{padding:.66em .5em}.theme-cardtable .Section--fill{display:flex;flex-direction:column;height:100%}.theme-cardtable .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-cardtable .Section--fill .Section__content{flex-grow:1}.theme-cardtable .Section__content--noTopPadding{padding-top:0}.theme-cardtable .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-cardtable .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-cardtable .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-cardtable .Section--level--3 .Section__titleText{font-size:1em}.theme-cardtable .Section--level--2,.theme-cardtable .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-cardtable .Layout,.theme-cardtable .Layout *{scrollbar-base-color:#0d542b;scrollbar-face-color:#16914a;scrollbar-3dlight-color:#117039;scrollbar-highlight-color:#117039;scrollbar-track-color:#0d542b;scrollbar-arrow-color:#5ae695;scrollbar-shadow-color:#16914a}.theme-cardtable .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-cardtable .Layout__content--flexRow{display:flex;flex-flow:row}.theme-cardtable .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-cardtable .Layout__content--scrollable{overflow-y:auto}.theme-cardtable .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#117039;background-image:linear-gradient(180deg,#117039 0,#117039)}.theme-cardtable .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-cardtable .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-cardtable .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-cardtable .Window__contentPadding:after{height:0}.theme-cardtable .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-cardtable .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(39,148,85,.25);pointer-events:none}.theme-cardtable .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-cardtable .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-cardtable .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-cardtable .TitleBar{background-color:#381608;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-cardtable .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#381608;transition:color .25s,background-color .25s}.theme-cardtable .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-cardtable .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-cardtable .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-cardtable .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-cardtable .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-cardtable .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-cardtable .Button{border:.1666666667em solid #fff}.theme-hackerman .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-hackerman .Button:last-child{margin-right:0}.theme-hackerman .Button .fa,.theme-hackerman .Button .far,.theme-hackerman .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-hackerman .Button--hasContent .fa,.theme-hackerman .Button--hasContent .far,.theme-hackerman .Button--hasContent .fas{margin-right:.25em}.theme-hackerman .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-hackerman .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-hackerman .Button--circular{border-radius:50%}.theme-hackerman .Button--compact{padding:0 .25em;line-height:1.333em}.theme-hackerman .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#0f0;color:#000}.theme-hackerman .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-hackerman .Button--color--default:focus,.theme-hackerman .Button--color--default:hover{background-color:#26ff26;color:#000}.theme-hackerman .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.theme-hackerman .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-hackerman .Button--color--caution:focus,.theme-hackerman .Button--color--caution:hover{background-color:#f3d00e;color:#000}.theme-hackerman .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-hackerman .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-hackerman .Button--color--danger:focus,.theme-hackerman .Button--color--danger:hover{background-color:#d52b2b;color:#fff}.theme-hackerman .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#121b12;color:#fff;background-color:rgba(18,27,18,0);color:hsla(0,0%,100%,.5)}.theme-hackerman .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-hackerman .Button--color--transparent:focus,.theme-hackerman .Button--color--transparent:hover{background-color:#1d271d;color:#fff}.theme-hackerman .Button--disabled{background-color:#4a6a4a!important}.theme-hackerman .Button--selected{transition:color 50ms,background-color 50ms;background-color:#0f0;color:#000}.theme-hackerman .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--selected:focus{transition:color .1s,background-color .1s}.theme-hackerman .Button--selected:focus,.theme-hackerman .Button--selected:hover{background-color:#26ff26;color:#000}.theme-hackerman .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #0f0;border:.0833333333em solid rgba(0,255,0,.75);border-radius:.16em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-hackerman .Input--fluid{display:block;width:auto}.theme-hackerman .Input__baseline{display:inline-block;color:transparent}.theme-hackerman .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-hackerman .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-hackerman .Modal{background-color:#121b12;max-width:calc(100% - 1rem);padding:1rem}.theme-hackerman .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-hackerman .Section:last-child{margin-bottom:0}.theme-hackerman .Section--flex{display:flex;flex-flow:column}.theme-hackerman .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-hackerman .Section__title{padding:.5em;border-bottom:.1666666667em solid #0f0}.theme-hackerman .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-hackerman .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-hackerman .Section__content{padding:.66em .5em}.theme-hackerman .Section--fill{display:flex;flex-direction:column;height:100%}.theme-hackerman .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-hackerman .Section--fill .Section__content{flex-grow:1}.theme-hackerman .Section__content--noTopPadding{padding-top:0}.theme-hackerman .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-hackerman .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-hackerman .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-hackerman .Section--level--3 .Section__titleText{font-size:1em}.theme-hackerman .Section--level--2,.theme-hackerman .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-hackerman .Layout,.theme-hackerman .Layout *{scrollbar-base-color:#0e140e;scrollbar-face-color:#253725;scrollbar-3dlight-color:#121b12;scrollbar-highlight-color:#121b12;scrollbar-track-color:#0e140e;scrollbar-arrow-color:#74a274;scrollbar-shadow-color:#253725}.theme-hackerman .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-hackerman .Layout__content--flexRow{display:flex;flex-flow:row}.theme-hackerman .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-hackerman .Layout__content--scrollable{overflow-y:auto}.theme-hackerman .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#121b12;background-image:linear-gradient(180deg,#121b12 0,#121b12)}.theme-hackerman .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-hackerman .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-hackerman .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-hackerman .Window__contentPadding:after{height:0}.theme-hackerman .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-hackerman .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(40,50,40,.25);pointer-events:none}.theme-hackerman .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-hackerman .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-hackerman .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-hackerman .TitleBar{background-color:#223d22;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-hackerman .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#223d22;transition:color .25s,background-color .25s}.theme-hackerman .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-hackerman .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-hackerman .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-hackerman .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-hackerman .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-hackerman .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-hackerman .Layout__content{background-image:none}.theme-hackerman .Button{font-family:monospace;border:.1666666667em outset #0a0;outline:.0833333333em solid #007a00}.theme-hackerman .candystripe:nth-child(odd){background-color:rgba(0,100,0,.5)}.theme-malfunction .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-malfunction .Button:last-child{margin-right:0}.theme-malfunction .Button .fa,.theme-malfunction .Button .far,.theme-malfunction .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-malfunction .Button--hasContent .fa,.theme-malfunction .Button--hasContent .far,.theme-malfunction .Button--hasContent .fas{margin-right:.25em}.theme-malfunction .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-malfunction .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-malfunction .Button--circular{border-radius:50%}.theme-malfunction .Button--compact{padding:0 .25em;line-height:1.333em}.theme-malfunction .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#910101;color:#fff}.theme-malfunction .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-malfunction .Button--color--default:focus,.theme-malfunction .Button--color--default:hover{background-color:#a60b0b;color:#fff}.theme-malfunction .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-malfunction .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-malfunction .Button--color--caution:focus,.theme-malfunction .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-malfunction .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-malfunction .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-malfunction .Button--color--danger:focus,.theme-malfunction .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-malfunction .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#1b3443;color:#fff;background-color:rgba(27,52,67,0);color:hsla(0,0%,100%,.5)}.theme-malfunction .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-malfunction .Button--color--transparent:focus,.theme-malfunction .Button--color--transparent:hover{background-color:#274252;color:#fff}.theme-malfunction .Button--disabled{background-color:#363636!important}.theme-malfunction .Button--selected{transition:color 50ms,background-color 50ms;background-color:#1e5881;color:#fff}.theme-malfunction .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--selected:focus{transition:color .1s,background-color .1s}.theme-malfunction .Button--selected:focus,.theme-malfunction .Button--selected:hover{background-color:#2a6894;color:#fff}.theme-malfunction .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:700;font-style:italic;color:#fff;background-color:#1a3f57;background-image:repeating-linear-gradient(-45deg,transparent,transparent .8333333333em,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 1.6666666667em)}.theme-malfunction .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-malfunction .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-malfunction .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-malfunction .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-malfunction .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #910101;border:.0833333333em solid rgba(145,1,1,.75);border-radius:.16em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-malfunction .Input--fluid{display:block;width:auto}.theme-malfunction .Input__baseline{display:inline-block;color:transparent}.theme-malfunction .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-malfunction .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-malfunction .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #910101;border:.0833333333em solid rgba(145,1,1,.75);border-radius:.16em;color:#910101;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-malfunction .NumberInput--fluid{display:block}.theme-malfunction .NumberInput__content{margin-left:.5em}.theme-malfunction .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-malfunction .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #910101;background-color:#910101}.theme-malfunction .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#000;color:#fff;text-align:right}.theme-malfunction .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-malfunction .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-malfunction .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-malfunction .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-malfunction .ProgressBar--color--default{border:.0833333333em solid #7b0101}.theme-malfunction .ProgressBar--color--default .ProgressBar__fill{background-color:#7b0101}.theme-malfunction .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-malfunction .Section:last-child{margin-bottom:0}.theme-malfunction .Section--flex{display:flex;flex-flow:column}.theme-malfunction .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-malfunction .Section__title{padding:.5em;border-bottom:.1666666667em solid #910101}.theme-malfunction .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-malfunction .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-malfunction .Section__content{padding:.66em .5em}.theme-malfunction .Section--fill{display:flex;flex-direction:column;height:100%}.theme-malfunction .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-malfunction .Section--fill .Section__content{flex-grow:1}.theme-malfunction .Section__content--noTopPadding{padding-top:0}.theme-malfunction .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-malfunction .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-malfunction .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-malfunction .Section--level--3 .Section__titleText{font-size:1em}.theme-malfunction .Section--level--2,.theme-malfunction .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-malfunction .Tooltip{position:absolute;top:0;left:0;right:0;bottom:0;font-style:normal;font-weight:400}.theme-malfunction .Tooltip:after{position:absolute;display:block;white-space:nowrap;z-index:2;padding:.5em .75em;transform:translateX(-50%);pointer-events:none;visibility:hidden;opacity:0;text-align:left;content:attr(data-tooltip);transition:all .15s;background-color:#235577;box-shadow:.1em .1em 1.25em -.1em rgba(0,0,0,.5);border-radius:.16em}.theme-malfunction .Tooltip:hover:after{transition:all 70ms;pointer-events:none;visibility:visible;opacity:1}.theme-malfunction .Tooltip--long:after{width:20.8333333333em;white-space:normal}.theme-malfunction .Tooltip--top:after{bottom:100%;left:50%;transform:translateX(-50%) translateY(.5em)}.theme-malfunction .Tooltip--top:hover:after{transform:translateX(-50%) translateY(-.5em)}.theme-malfunction .Tooltip--top-left:after{bottom:100%;right:50%;transform:translateX(12px) translateY(-8px)}.theme-malfunction .Tooltip--top-left:hover:after{transform:translateX(12px) translateY(8px)}.theme-malfunction .Tooltip--top-right:after{bottom:100%;left:50%;transform:translateX(-12px) translateY(-8px)}.theme-malfunction .Tooltip--top-right:hover:after{transform:translateX(-12px) translateY(8px)}.theme-malfunction .Tooltip--bottom:after{top:100%;left:50%;transform:translateX(-50%) translateY(-.5em)}.theme-malfunction .Tooltip--bottom:hover:after{transform:translateX(-50%) translateY(.5em)}.theme-malfunction .Tooltip--bottom-left:after{top:100%;right:50%;transform:translateX(12px) translateY(-.5em)}.theme-malfunction .Tooltip--bottom-left:hover:after{transform:translateX(12px) translateY(.5em)}.theme-malfunction .Tooltip--bottom-right:after{top:100%;left:50%;transform:translateX(-12px) translateY(-.5em)}.theme-malfunction .Tooltip--bottom-right:hover:after{transform:translateX(-12px) translateY(.5em)}.theme-malfunction .Tooltip--left:after{top:50%;right:100%;transform:translateX(.5em) translateY(-50%)}.theme-malfunction .Tooltip--left:hover:after,.theme-malfunction .Tooltip--right:after{transform:translateX(-.5em) translateY(-50%)}.theme-malfunction .Tooltip--right:after{top:50%;left:100%}.theme-malfunction .Tooltip--right:hover:after{transform:translateX(.5em) translateY(-50%)}.theme-malfunction .Tooltip--scale--1:after{top:30%;left:50%;transform:translateX(-50%) scale(1)}.theme-malfunction .Tooltip--scale--1:hover:after{transform:translateX(-50%) scale(1)}.theme-malfunction .Tooltip--scale--2:after{top:30%;left:50%;transform:translateX(-50%) scale(.5)}.theme-malfunction .Tooltip--scale--2:hover:after{transform:translateX(-50%) scale(.5)}.theme-malfunction .Tooltip--scale--3:after{top:30%;left:50%}.theme-malfunction .Tooltip--scale--3:after,.theme-malfunction .Tooltip--scale--3:hover:after{transform:translateX(-50%) scale(.3333333333)}.theme-malfunction .Tooltip--scale--4:after{top:30%;left:50%;transform:translateX(-50%) scale(.25)}.theme-malfunction .Tooltip--scale--4:hover:after{transform:translateX(-50%) scale(.25)}.theme-malfunction .Tooltip--scale--5:after{top:30%;left:50%;transform:translateX(-50%) scale(.2)}.theme-malfunction .Tooltip--scale--5:hover:after{transform:translateX(-50%) scale(.2)}.theme-malfunction .Tooltip--scale--6:after{top:30%;left:50%}.theme-malfunction .Tooltip--scale--6:after,.theme-malfunction .Tooltip--scale--6:hover:after{transform:translateX(-50%) scale(.1666666667)}.theme-malfunction .Tooltip--scale--7:after{top:30%;left:50%}.theme-malfunction .Tooltip--scale--7:after,.theme-malfunction .Tooltip--scale--7:hover:after{transform:translateX(-50%) scale(.1428571429)}.theme-malfunction .Tooltip--scale--8:after{top:30%;left:50%;transform:translateX(-50%) scale(.125)}.theme-malfunction .Tooltip--scale--8:hover:after{transform:translateX(-50%) scale(.125)}.theme-malfunction .Layout,.theme-malfunction .Layout *{scrollbar-base-color:#142732;scrollbar-face-color:#274b61;scrollbar-3dlight-color:#1b3443;scrollbar-highlight-color:#1b3443;scrollbar-track-color:#142732;scrollbar-arrow-color:#6ba2c3;scrollbar-shadow-color:#274b61}.theme-malfunction .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-malfunction .Layout__content--flexRow{display:flex;flex-flow:row}.theme-malfunction .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-malfunction .Layout__content--scrollable{overflow-y:auto}.theme-malfunction .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#1b3443;background-image:linear-gradient(180deg,#244559 0,#12232d)}.theme-malfunction .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-malfunction .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-malfunction .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-malfunction .Window__contentPadding:after{height:0}.theme-malfunction .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-malfunction .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(50,79,96,.25);pointer-events:none}.theme-malfunction .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-malfunction .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-malfunction .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-malfunction .TitleBar{background-color:#1a3f57;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-malfunction .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#1a3f57;transition:color .25s,background-color .25s}.theme-malfunction .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-malfunction .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-malfunction .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-malfunction .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-malfunction .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-malfunction .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-malfunction .Layout__content{background-image:none}.theme-ntos .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-ntos .Button:last-child{margin-right:0}.theme-ntos .Button .fa,.theme-ntos .Button .far,.theme-ntos .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-ntos .Button--hasContent .fa,.theme-ntos .Button--hasContent .far,.theme-ntos .Button--hasContent .fas{margin-right:.25em}.theme-ntos .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-ntos .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-ntos .Button--circular{border-radius:50%}.theme-ntos .Button--compact{padding:0 .25em;line-height:1.333em}.theme-ntos .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#384e68;color:#fff}.theme-ntos .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-ntos .Button--color--default:focus,.theme-ntos .Button--color--default:hover{background-color:#465e7a;color:#fff}.theme-ntos .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.theme-ntos .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-ntos .Button--color--caution:focus,.theme-ntos .Button--color--caution:hover{background-color:#f3d00e;color:#000}.theme-ntos .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-ntos .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-ntos .Button--color--danger:focus,.theme-ntos .Button--color--danger:hover{background-color:#d52b2b;color:#fff}.theme-ntos .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#1f2b39;color:#fff;background-color:rgba(31,43,57,0);color:rgba(227,240,255,.75)}.theme-ntos .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-ntos .Button--color--transparent:focus,.theme-ntos .Button--color--transparent:hover{background-color:#2b3847;color:#fff}.theme-ntos .Button--disabled{background-color:#999!important}.theme-ntos .Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.theme-ntos .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--selected:focus{transition:color .1s,background-color .1s}.theme-ntos .Button--selected:focus,.theme-ntos .Button--selected:hover{background-color:#27ab46;color:#fff}.theme-ntos .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-ntos .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-ntos .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-ntos .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-ntos .ProgressBar--color--default{border:.0833333333em solid #384e68}.theme-ntos .ProgressBar--color--default .ProgressBar__fill{background-color:#384e68}.theme-ntos .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-ntos .Section:last-child{margin-bottom:0}.theme-ntos .Section--flex{display:flex;flex-flow:column}.theme-ntos .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-ntos .Section__title{padding:.5em;border-bottom:.1666666667em solid #4972a1}.theme-ntos .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-ntos .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-ntos .Section__content{padding:.66em .5em}.theme-ntos .Section--fill{display:flex;flex-direction:column;height:100%}.theme-ntos .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-ntos .Section--fill .Section__content{flex-grow:1}.theme-ntos .Section__content--noTopPadding{padding-top:0}.theme-ntos .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-ntos .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-ntos .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-ntos .Section--level--3 .Section__titleText{font-size:1em}.theme-ntos .Section--level--2,.theme-ntos .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-ntos .Layout,.theme-ntos .Layout *{scrollbar-base-color:#17202b;scrollbar-face-color:#2e3f55;scrollbar-3dlight-color:#1f2b39;scrollbar-highlight-color:#1f2b39;scrollbar-track-color:#17202b;scrollbar-arrow-color:#7693b5;scrollbar-shadow-color:#2e3f55}.theme-ntos .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-ntos .Layout__content--flexRow{display:flex;flex-flow:row}.theme-ntos .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-ntos .Layout__content--scrollable{overflow-y:auto}.theme-ntos .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#1f2b39;background-image:linear-gradient(180deg,#223040 0,#1b2633)}.theme-ntos .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-ntos .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-ntos .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-ntos .Window__contentPadding:after{height:0}.theme-ntos .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-ntos .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(55,69,85,.25);pointer-events:none}.theme-ntos .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-ntos .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-ntos .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-ntos .TitleBar{background-color:#2a3b4e;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-ntos .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#2a3b4e;transition:color .25s,background-color .25s}.theme-ntos .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-ntos .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-ntos .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-ntos .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-ntos .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-ntos .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-paper .Tabs--horizontal{border-bottom:.1666666667em solid hsla(0,0%,100%,.1);margin-bottom:.5em}.theme-paper .Tabs--horizontal .Tabs__tab--altSelection:after{content:"";position:absolute;bottom:0;right:0;left:0;height:.1666666667em;width:100%;background-color:#fff;border-radius:.16em}.theme-paper .Tabs--vertical{margin-right:.75em}.theme-paper .Tabs--vertical .Tabs__tabBox{border-right:.1666666667em solid hsla(0,0%,100%,.1);vertical-align:top}.theme-paper .Tabs--vertical .Tabs__tab{display:block!important;margin-right:0!important;margin-bottom:0;padding:.0833333333em .75em 0 .5em;border-bottom:.1666666667em solid hsla(0,0%,100%,.1)}.theme-paper .Tabs--vertical .Tabs__tab:last-child{border-bottom:0}.theme-paper .Tabs--vertical .Tabs__tab--altSelection:after{content:"";position:absolute;top:0;bottom:0;right:0;height:100%;width:.25em;background-color:#fff;border-radius:.16em}.theme-paper .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.1);box-shadow:inset 0 0 5px rgba(0,0,0,.2);box-sizing:border-box}.theme-paper .Section:last-child{margin-bottom:0}.theme-paper .Section--flex{display:flex;flex-flow:column}.theme-paper .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-paper .Section__title{padding:.5em;border-bottom:.1666666667em solid #fff}.theme-paper .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-paper .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-paper .Section__content{padding:.66em .5em}.theme-paper .Section--fill{display:flex;flex-direction:column;height:100%}.theme-paper .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-paper .Section--fill .Section__content{flex-grow:1}.theme-paper .Section__content--noTopPadding{padding-top:0}.theme-paper .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-paper .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-paper .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-paper .Section--level--3 .Section__titleText{font-size:1em}.theme-paper .Section--level--2,.theme-paper .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-paper .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-paper .Button:last-child{margin-right:0}.theme-paper .Button .fa,.theme-paper .Button .far,.theme-paper .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-paper .Button--hasContent .fa,.theme-paper .Button--hasContent .far,.theme-paper .Button--hasContent .fas{margin-right:.25em}.theme-paper .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-paper .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-paper .Button--circular{border-radius:50%}.theme-paper .Button--compact{padding:0 .25em;line-height:1.333em}.theme-paper .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000}.theme-paper .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-paper .Button--color--default:focus,.theme-paper .Button--color--default:hover{background-color:#f7f6ee;color:#000}.theme-paper .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-paper .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-paper .Button--color--caution:focus,.theme-paper .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-paper .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-paper .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-paper .Button--color--danger:focus,.theme-paper .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-paper .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#fff;color:#000;background-color:hsla(0,0%,100%,0);color:rgba(0,0,0,.5)}.theme-paper .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-paper .Button--color--transparent:focus,.theme-paper .Button--color--transparent:hover{background-color:#fff;color:#000}.theme-paper .Button--disabled{background-color:#363636!important}.theme-paper .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-paper .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--selected:focus{transition:color .1s,background-color .1s}.theme-paper .Button--selected:focus,.theme-paper .Button--selected:hover{background-color:#b31212;color:#fff}.theme-paper .Layout,.theme-paper .Layout *{scrollbar-base-color:#bfbfbf;scrollbar-face-color:#fff;scrollbar-3dlight-color:#fff;scrollbar-highlight-color:#fff;scrollbar-track-color:#bfbfbf;scrollbar-arrow-color:#fff;scrollbar-shadow-color:#fff}.theme-paper .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-paper .Layout__content--flexRow{display:flex;flex-flow:row}.theme-paper .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-paper .Layout__content--scrollable{overflow-y:auto}.theme-paper .Window{position:fixed;top:0;bottom:0;left:0;right:0;background-color:#fff;background-image:linear-gradient(180deg,#fff 0,#fff)}.theme-paper .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-paper .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-paper .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-paper .Window__contentPadding:after{height:0}.theme-paper .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-paper .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:hsla(0,0%,100%,.25);pointer-events:none}.theme-paper .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-paper .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-paper .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-paper .TitleBar{background-color:#fff;border-bottom:1px solid rgba(0,0,0,.25);box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-paper .TitleBar__clickable{color:rgba(0,0,0,.5);background-color:#fff;transition:color .25s,background-color .25s}.theme-paper .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-paper .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:rgba(0,0,0,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-paper .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-paper .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-paper .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-paper .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-paper .PaperInput{position:relative;display:inline-block;width:120px;background:transparent;border:none;border-bottom:1px solid #000;outline:none;background-color:rgba(255,255,62,.8);padding:0 4px;margin-right:2px;line-height:17px;overflow:visible}.theme-paper .PaperInput__baseline{display:inline-block;color:transparent}.theme-paper .PaperInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:12px;line-height:17px;height:17px;margin:0;padding:0 6px;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-paper .PaperInput__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-paper .Layout__content,.theme-paper .Window{background-image:none}.theme-paper .Window{color:#000}.theme-paper .paper-field,.theme-paper .paper-field input:disabled,.theme-paper .paper-text input,.theme-paper .paper-text input:disabled{position:relative;display:inline-block;background:transparent;border:none;border-bottom:1px solid #000;outline:none;background-color:rgba(255,255,62,.8);padding:0 4px;margin-right:2px;line-height:17px;overflow:visible}.theme-pda-retro .color-black{color:#0d0d0d!important}.theme-pda-retro .color-white{color:#fff!important}.theme-pda-retro .color-red{color:#d33!important}.theme-pda-retro .color-orange{color:#f37827!important}.theme-pda-retro .color-yellow{color:#fbd814!important}.theme-pda-retro .color-olive{color:#c0d919!important}.theme-pda-retro .color-green{color:#22be47!important}.theme-pda-retro .color-teal{color:#00c5bd!important}.theme-pda-retro .color-blue{color:#238cdc!important}.theme-pda-retro .color-violet{color:#6c3fcc!important}.theme-pda-retro .color-purple{color:#a93bcd!important}.theme-pda-retro .color-pink{color:#e2439c!important}.theme-pda-retro .color-brown{color:#af6d43!important}.theme-pda-retro .color-grey{color:#7d7d7d!important}.theme-pda-retro .color-good{color:#62b62a!important}.theme-pda-retro .color-average{color:#0d0d0d!important}.theme-pda-retro .color-bad{color:#d33!important}.theme-pda-retro .color-label{color:#0d0d0d!important}.theme-pda-retro .color-bg-black{background-color:#000!important}.theme-pda-retro .color-bg-white{background-color:#d9d9d9!important}.theme-pda-retro .color-bg-red{background-color:#bd2020!important}.theme-pda-retro .color-bg-orange{background-color:#d95e0c!important}.theme-pda-retro .color-bg-yellow{background-color:#d9b804!important}.theme-pda-retro .color-bg-olive{background-color:#9aad14!important}.theme-pda-retro .color-bg-green{background-color:#1b9638!important}.theme-pda-retro .color-bg-teal{background-color:#009a93!important}.theme-pda-retro .color-bg-blue{background-color:#1c71b1!important}.theme-pda-retro .color-bg-violet{background-color:#552dab!important}.theme-pda-retro .color-bg-purple{background-color:#8b2baa!important}.theme-pda-retro .color-bg-pink{background-color:#cf2082!important}.theme-pda-retro .color-bg-brown{background-color:#8c5836!important}.theme-pda-retro .color-bg-grey{background-color:#646464!important}.theme-pda-retro .color-bg-good{background-color:#4d9121!important}.theme-pda-retro .color-bg-average{background-color:#000!important}.theme-pda-retro .color-bg-bad{background-color:#bd2020!important}.theme-pda-retro .color-bg-label{background-color:#000!important}.theme-pda-retro .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:0;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-pda-retro .Button:last-child{margin-right:0}.theme-pda-retro .Button .fa,.theme-pda-retro .Button .far,.theme-pda-retro .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-pda-retro .Button--hasContent .fa,.theme-pda-retro .Button--hasContent .far,.theme-pda-retro .Button--hasContent .fas{margin-right:.25em}.theme-pda-retro .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-pda-retro .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-pda-retro .Button--circular{border-radius:50%}.theme-pda-retro .Button--compact{padding:0 .25em;line-height:1.333em}.theme-pda-retro .Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-pda-retro .Button--color--black:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--black:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--black:focus,.theme-pda-retro .Button--color--black:hover{background-color:#0a0a0a;color:#fff}.theme-pda-retro .Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.theme-pda-retro .Button--color--white:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--white:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--white:focus,.theme-pda-retro .Button--color--white:hover{background-color:#f3f3f3;color:#000}.theme-pda-retro .Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-pda-retro .Button--color--red:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--red:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--red:focus,.theme-pda-retro .Button--color--red:hover{background-color:#d52b2b;color:#fff}.theme-pda-retro .Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.theme-pda-retro .Button--color--orange:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--orange:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--orange:focus,.theme-pda-retro .Button--color--orange:hover{background-color:#ed6f1d;color:#fff}.theme-pda-retro .Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.theme-pda-retro .Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--yellow:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--yellow:focus,.theme-pda-retro .Button--color--yellow:hover{background-color:#f3d00e;color:#000}.theme-pda-retro .Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.theme-pda-retro .Button--color--olive:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--olive:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--olive:focus,.theme-pda-retro .Button--color--olive:hover{background-color:#afc41f;color:#fff}.theme-pda-retro .Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.theme-pda-retro .Button--color--green:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--green:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--green:focus,.theme-pda-retro .Button--color--green:hover{background-color:#27ab46;color:#fff}.theme-pda-retro .Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.theme-pda-retro .Button--color--teal:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--teal:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--teal:focus,.theme-pda-retro .Button--color--teal:hover{background-color:#0aafa8;color:#fff}.theme-pda-retro .Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.theme-pda-retro .Button--color--blue:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--blue:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--blue:focus,.theme-pda-retro .Button--color--blue:hover{background-color:#2883c8;color:#fff}.theme-pda-retro .Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.theme-pda-retro .Button--color--violet:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--violet:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--violet:focus,.theme-pda-retro .Button--color--violet:hover{background-color:#653ac1;color:#fff}.theme-pda-retro .Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.theme-pda-retro .Button--color--purple:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--purple:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--purple:focus,.theme-pda-retro .Button--color--purple:hover{background-color:#9e38c1;color:#fff}.theme-pda-retro .Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.theme-pda-retro .Button--color--pink:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--pink:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--pink:focus,.theme-pda-retro .Button--color--pink:hover{background-color:#dd3794;color:#fff}.theme-pda-retro .Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.theme-pda-retro .Button--color--brown:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--brown:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--brown:focus,.theme-pda-retro .Button--color--brown:hover{background-color:#a06844;color:#fff}.theme-pda-retro .Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.theme-pda-retro .Button--color--grey:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--grey:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--grey:focus,.theme-pda-retro .Button--color--grey:hover{background-color:#757575;color:#fff}.theme-pda-retro .Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.theme-pda-retro .Button--color--good:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--good:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--good:focus,.theme-pda-retro .Button--color--good:hover{background-color:#5da52d;color:#fff}.theme-pda-retro .Button--color--average{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-pda-retro .Button--color--average:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--average:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--average:focus,.theme-pda-retro .Button--color--average:hover{background-color:#0a0a0a;color:#fff}.theme-pda-retro .Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-pda-retro .Button--color--bad:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--bad:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--bad:focus,.theme-pda-retro .Button--color--bad:hover{background-color:#d52b2b;color:#fff}.theme-pda-retro .Button--color--label{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-pda-retro .Button--color--label:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--label:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--label:focus,.theme-pda-retro .Button--color--label:hover{background-color:#0a0a0a;color:#fff}.theme-pda-retro .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000}.theme-pda-retro .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--default:focus,.theme-pda-retro .Button--color--default:hover{background-color:#f7f6ee;color:#000}.theme-pda-retro .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-pda-retro .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--caution:focus,.theme-pda-retro .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-pda-retro .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-pda-retro .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--danger:focus,.theme-pda-retro .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-pda-retro .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#6f7961;color:#fff;background-color:rgba(111,121,97,0);color:hsla(0,0%,100%,.5)}.theme-pda-retro .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--color--transparent:focus,.theme-pda-retro .Button--color--transparent:hover{background-color:#818c72;color:#fff}.theme-pda-retro .Button--disabled{background-color:#505050!important}.theme-pda-retro .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-pda-retro .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--selected:focus{transition:color .1s,background-color .1s}.theme-pda-retro .Button--selected:focus,.theme-pda-retro .Button--selected:hover{background-color:#b31212;color:#fff}.theme-pda-retro .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:0;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-pda-retro .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-pda-retro .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-pda-retro .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-pda-retro .ProgressBar--color--default{border:.0833333333em solid #000}.theme-pda-retro .ProgressBar--color--default .ProgressBar__fill{background-color:#000}.theme-pda-retro .ProgressBar--color--black{border:.0833333333em solid #000!important}.theme-pda-retro .ProgressBar--color--black .ProgressBar__fill{background-color:#000}.theme-pda-retro .ProgressBar--color--white{border:.0833333333em solid #d9d9d9!important}.theme-pda-retro .ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.theme-pda-retro .ProgressBar--color--red{border:.0833333333em solid #bd2020!important}.theme-pda-retro .ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.theme-pda-retro .ProgressBar--color--orange{border:.0833333333em solid #d95e0c!important}.theme-pda-retro .ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.theme-pda-retro .ProgressBar--color--yellow{border:.0833333333em solid #d9b804!important}.theme-pda-retro .ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.theme-pda-retro .ProgressBar--color--olive{border:.0833333333em solid #9aad14!important}.theme-pda-retro .ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.theme-pda-retro .ProgressBar--color--green{border:.0833333333em solid #1b9638!important}.theme-pda-retro .ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.theme-pda-retro .ProgressBar--color--teal{border:.0833333333em solid #009a93!important}.theme-pda-retro .ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.theme-pda-retro .ProgressBar--color--blue{border:.0833333333em solid #1c71b1!important}.theme-pda-retro .ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.theme-pda-retro .ProgressBar--color--violet{border:.0833333333em solid #552dab!important}.theme-pda-retro .ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.theme-pda-retro .ProgressBar--color--purple{border:.0833333333em solid #8b2baa!important}.theme-pda-retro .ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.theme-pda-retro .ProgressBar--color--pink{border:.0833333333em solid #cf2082!important}.theme-pda-retro .ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.theme-pda-retro .ProgressBar--color--brown{border:.0833333333em solid #8c5836!important}.theme-pda-retro .ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.theme-pda-retro .ProgressBar--color--grey{border:.0833333333em solid #646464!important}.theme-pda-retro .ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.theme-pda-retro .ProgressBar--color--good{border:.0833333333em solid #4d9121!important}.theme-pda-retro .ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.theme-pda-retro .ProgressBar--color--average{border:.0833333333em solid #000!important}.theme-pda-retro .ProgressBar--color--average .ProgressBar__fill{background-color:#000}.theme-pda-retro .ProgressBar--color--bad{border:.0833333333em solid #bd2020!important}.theme-pda-retro .ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.theme-pda-retro .ProgressBar--color--label{border:.0833333333em solid #000!important}.theme-pda-retro .ProgressBar--color--label .ProgressBar__fill{background-color:#000}.theme-pda-retro .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.1);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-pda-retro .Section:last-child{margin-bottom:0}.theme-pda-retro .Section--flex{display:flex;flex-flow:column}.theme-pda-retro .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-pda-retro .Section__title{padding:.5em;border-bottom:.1666666667em solid #000}.theme-pda-retro .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-pda-retro .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-pda-retro .Section__content{padding:.66em .5em}.theme-pda-retro .Section--fill{display:flex;flex-direction:column;height:100%}.theme-pda-retro .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-pda-retro .Section--fill .Section__content{flex-grow:1}.theme-pda-retro .Section__content--noTopPadding{padding-top:0}.theme-pda-retro .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-pda-retro .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-pda-retro .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-pda-retro .Section--level--3 .Section__titleText{font-size:1em}.theme-pda-retro .Section--level--2,.theme-pda-retro .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-pda-retro .TinderMessage_First_Received,.theme-pda-retro .TinderMessage_First_Sent,.theme-pda-retro .TinderMessage_Subsequent_Received,.theme-pda-retro .TinderMessage_Subsequent_Sent{padding:6px;z-index:1;word-break:break-all;max-width:100%}.theme-pda-retro .TinderMessage_First_Sent,.theme-pda-retro .TinderMessage_Subsequent_Sent{text-align:right;background-color:#9faa91}.theme-pda-retro .TinderMessage_First_Sent{border-radius:10px 10px 0 10px}.theme-pda-retro .TinderMessage_Subsequent_Sent{border-radius:10px 0 0 10px}.theme-pda-retro .TinderMessage_First_Received,.theme-pda-retro .TinderMessage_Subsequent_Received{text-align:left;background-color:#b8b37b}.theme-pda-retro .TinderMessage_First_Received{border-radius:10px 10px 10px 0}.theme-pda-retro .TinderMessage_Subsequent_Received{border-radius:0 10px 10px 0}.theme-pda-retro .ClassicMessage_Received,.theme-pda-retro .ClassicMessage_Sent{word-break:break-all}.theme-pda-retro .ClassicMessage_Sent{color:#9faa91}.theme-pda-retro .ClassicMessage_Received{color:#b8b37b}.theme-pda-retro .Layout,.theme-pda-retro .Layout *{scrollbar-base-color:#535b49;scrollbar-face-color:#7e896e;scrollbar-3dlight-color:#6f7961;scrollbar-highlight-color:#6f7961;scrollbar-track-color:#535b49;scrollbar-arrow-color:#b7beae;scrollbar-shadow-color:#7e896e}.theme-pda-retro .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-pda-retro .Layout__content--flexRow{display:flex;flex-flow:row}.theme-pda-retro .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-pda-retro .Layout__content--scrollable{overflow-y:auto}.theme-pda-retro .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#6f7961;background-image:linear-gradient(180deg,#6f7961 0,#6f7961)}.theme-pda-retro .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-pda-retro .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-pda-retro .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-pda-retro .Window__contentPadding:after{height:0}.theme-pda-retro .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-pda-retro .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(147,156,133,.25);pointer-events:none}.theme-pda-retro .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-pda-retro .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-pda-retro .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-pda-retro .TitleBar{background-color:#363636;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-pda-retro .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#363636;transition:color .25s,background-color .25s}.theme-pda-retro .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-pda-retro .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-pda-retro .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-pda-retro .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-pda-retro .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-pda-retro .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-pda-retro .Button{color:#161613;background-color:#565d4b;border:1px solid #000}.theme-pda-retro .Layout__content{background-image:none}.theme-pda-retro .LabeledList__label{font-weight:700}.theme-pda-retro .Tooltip:after{color:#fff}.theme-retro .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:0;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-retro .Button:last-child{margin-right:0}.theme-retro .Button .fa,.theme-retro .Button .far,.theme-retro .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-retro .Button--hasContent .fa,.theme-retro .Button--hasContent .far,.theme-retro .Button--hasContent .fas{margin-right:.25em}.theme-retro .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-retro .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-retro .Button--circular{border-radius:50%}.theme-retro .Button--compact{padding:0 .25em;line-height:1.333em}.theme-retro .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000}.theme-retro .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-retro .Button--color--default:focus,.theme-retro .Button--color--default:hover{background-color:#f7f6ee;color:#000}.theme-retro .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-retro .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-retro .Button--color--caution:focus,.theme-retro .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-retro .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-retro .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-retro .Button--color--danger:focus,.theme-retro .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-retro .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000;background-color:rgba(232,228,201,0);color:hsla(0,0%,100%,.5)}.theme-retro .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-retro .Button--color--transparent:focus,.theme-retro .Button--color--transparent:hover{background-color:#f7f6ee;color:#000}.theme-retro .Button--disabled{background-color:#363636!important}.theme-retro .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-retro .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--selected:focus{transition:color .1s,background-color .1s}.theme-retro .Button--selected:focus,.theme-retro .Button--selected:hover{background-color:#b31212;color:#fff}.theme-retro .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:0;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-retro .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-retro .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-retro .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-retro .ProgressBar--color--default{border:.0833333333em solid #000}.theme-retro .ProgressBar--color--default .ProgressBar__fill{background-color:#000}.theme-retro .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-retro .Section:last-child{margin-bottom:0}.theme-retro .Section--flex{display:flex;flex-flow:column}.theme-retro .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-retro .Section__title{padding:.5em;border-bottom:.1666666667em solid #000}.theme-retro .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-retro .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-retro .Section__content{padding:.66em .5em}.theme-retro .Section--fill{display:flex;flex-direction:column;height:100%}.theme-retro .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-retro .Section--fill .Section__content{flex-grow:1}.theme-retro .Section__content--noTopPadding{padding-top:0}.theme-retro .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-retro .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-retro .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-retro .Section--level--3 .Section__titleText{font-size:1em}.theme-retro .Section--level--2,.theme-retro .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-retro .Layout,.theme-retro .Layout *{scrollbar-base-color:#c8be7d;scrollbar-face-color:#eae7ce;scrollbar-3dlight-color:#e8e4c9;scrollbar-highlight-color:#e8e4c9;scrollbar-track-color:#c8be7d;scrollbar-arrow-color:#f4f2e4;scrollbar-shadow-color:#eae7ce}.theme-retro .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-retro .Layout__content--flexRow{display:flex;flex-flow:row}.theme-retro .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-retro .Layout__content--scrollable{overflow-y:auto}.theme-retro .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#e8e4c9;background-image:linear-gradient(180deg,#e8e4c9 0,#e8e4c9)}.theme-retro .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-retro .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-retro .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-retro .Window__contentPadding:after{height:0}.theme-retro .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-retro .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(251,250,246,.25);pointer-events:none}.theme-retro .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-retro .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-retro .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-retro .TitleBar{background-color:#585337;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-retro .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#585337;transition:color .25s,background-color .25s}.theme-retro .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-retro .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-retro .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-retro .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-retro .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-retro .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-retro .Button{font-family:monospace;color:#161613;border:.1666666667em outset #e8e4c9;outline:.0833333333em solid #161613}.theme-retro .Layout__content{background-image:none}.theme-syndicate .Button{position:relative;display:inline-block;line-height:1.6666666667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-syndicate .Button:last-child{margin-right:0}.theme-syndicate .Button .fa,.theme-syndicate .Button .far,.theme-syndicate .Button .fas{margin-left:-.25em;margin-right:-.25em;min-width:1.3333333333em;text-align:center}.theme-syndicate .Button--hasContent .fa,.theme-syndicate .Button--hasContent .far,.theme-syndicate .Button--hasContent .fas{margin-right:.25em}.theme-syndicate .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-syndicate .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-syndicate .Button--circular{border-radius:50%}.theme-syndicate .Button--compact{padding:0 .25em;line-height:1.333em}.theme-syndicate .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#397439;color:#fff}.theme-syndicate .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--default:focus{transition:color .1s,background-color .1s}.theme-syndicate .Button--color--default:focus,.theme-syndicate .Button--color--default:hover{background-color:#478647;color:#fff}.theme-syndicate .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-syndicate .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--caution:focus{transition:color .1s,background-color .1s}.theme-syndicate .Button--color--caution:focus,.theme-syndicate .Button--color--caution:hover{background-color:#d67313;color:#fff}.theme-syndicate .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-syndicate .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--danger:focus{transition:color .1s,background-color .1s}.theme-syndicate .Button--color--danger:focus,.theme-syndicate .Button--color--danger:hover{background-color:#afb30a;color:#fff}.theme-syndicate .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#550202;color:#fff;background-color:rgba(85,2,2,0);color:hsla(0,0%,100%,.5)}.theme-syndicate .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--transparent:focus{transition:color .1s,background-color .1s}.theme-syndicate .Button--color--transparent:focus,.theme-syndicate .Button--color--transparent:hover{background-color:#650c0c;color:#fff}.theme-syndicate .Button--disabled{background-color:#363636!important}.theme-syndicate .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-syndicate .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--selected:focus{transition:color .1s,background-color .1s}.theme-syndicate .Button--selected:focus,.theme-syndicate .Button--selected:hover{background-color:#b31212;color:#fff}.theme-syndicate .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:700;font-style:italic;color:#fff;background-color:#910101;background-image:repeating-linear-gradient(-45deg,transparent,transparent .8333333333em,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 1.6666666667em)}.theme-syndicate .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-syndicate .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-syndicate .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-syndicate .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-syndicate .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #87ce87;border:.0833333333em solid rgba(135,206,135,.75);border-radius:.16em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-syndicate .Input--fluid{display:block;width:auto}.theme-syndicate .Input__baseline{display:inline-block;color:transparent}.theme-syndicate .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.theme-syndicate .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:hsla(0,0%,100%,.45)}.theme-syndicate .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #87ce87;border:.0833333333em solid rgba(135,206,135,.75);border-radius:.16em;color:#87ce87;background-color:#000;background-color:rgba(0,0,0,.75);padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-syndicate .NumberInput--fluid{display:block}.theme-syndicate .NumberInput__content{margin-left:.5em}.theme-syndicate .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-syndicate .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #87ce87;background-color:#87ce87}.theme-syndicate .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#000;color:#fff;text-align:right}.theme-syndicate .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color .5s}.theme-syndicate .ProgressBar__fill{position:absolute;top:-.5px;left:0;bottom:-.5px}.theme-syndicate .ProgressBar__fill--animated{transition:background-color .5s,width .5s}.theme-syndicate .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-syndicate .ProgressBar--color--default{border:.0833333333em solid #306330}.theme-syndicate .ProgressBar--color--default .ProgressBar__fill{background-color:#306330}.theme-syndicate .Section{position:relative;margin-bottom:.5em;background-color:#1a1a1a;background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5);box-sizing:border-box}.theme-syndicate .Section:last-child{margin-bottom:0}.theme-syndicate .Section--flex{display:flex;flex-flow:column}.theme-syndicate .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-syndicate .Section__title{padding:.5em;border-bottom:.1666666667em solid #397439}.theme-syndicate .Section__titleText{font-size:1.1666666667em;font-weight:700}.theme-syndicate .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-syndicate .Section__content{padding:.66em .5em}.theme-syndicate .Section--fill{display:flex;flex-direction:column;height:100%}.theme-syndicate .Section--scrollable .Section__content{overflow-y:auto;height:100%;overflow-x:hidden}.theme-syndicate .Section--fill .Section__content{flex-grow:1}.theme-syndicate .Section__content--noTopPadding{padding-top:0}.theme-syndicate .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-syndicate .Section--level--1 .Section__titleText{font-size:1.1666666667em}.theme-syndicate .Section--level--2 .Section__titleText{font-size:1.0833333333em}.theme-syndicate .Section--level--3 .Section__titleText{font-size:1em}.theme-syndicate .Section--level--2,.theme-syndicate .Section--level--3{background-color:transparent;box-shadow:none;margin-left:-.5em;margin-right:-.5em}.theme-syndicate .Tooltip{position:absolute;top:0;left:0;right:0;bottom:0;font-style:normal;font-weight:400}.theme-syndicate .Tooltip:after{position:absolute;display:block;white-space:nowrap;z-index:2;padding:.5em .75em;transform:translateX(-50%);pointer-events:none;visibility:hidden;opacity:0;text-align:left;content:attr(data-tooltip);transition:all .15s;background-color:#4a0202;box-shadow:.1em .1em 1.25em -.1em rgba(0,0,0,.5);border-radius:.16em}.theme-syndicate .Tooltip:hover:after{transition:all 70ms;pointer-events:none;visibility:visible;opacity:1}.theme-syndicate .Tooltip--long:after{width:20.8333333333em;white-space:normal}.theme-syndicate .Tooltip--top:after{bottom:100%;left:50%;transform:translateX(-50%) translateY(.5em)}.theme-syndicate .Tooltip--top:hover:after{transform:translateX(-50%) translateY(-.5em)}.theme-syndicate .Tooltip--top-left:after{bottom:100%;right:50%;transform:translateX(12px) translateY(-8px)}.theme-syndicate .Tooltip--top-left:hover:after{transform:translateX(12px) translateY(8px)}.theme-syndicate .Tooltip--top-right:after{bottom:100%;left:50%;transform:translateX(-12px) translateY(-8px)}.theme-syndicate .Tooltip--top-right:hover:after{transform:translateX(-12px) translateY(8px)}.theme-syndicate .Tooltip--bottom:after{top:100%;left:50%;transform:translateX(-50%) translateY(-.5em)}.theme-syndicate .Tooltip--bottom:hover:after{transform:translateX(-50%) translateY(.5em)}.theme-syndicate .Tooltip--bottom-left:after{top:100%;right:50%;transform:translateX(12px) translateY(-.5em)}.theme-syndicate .Tooltip--bottom-left:hover:after{transform:translateX(12px) translateY(.5em)}.theme-syndicate .Tooltip--bottom-right:after{top:100%;left:50%;transform:translateX(-12px) translateY(-.5em)}.theme-syndicate .Tooltip--bottom-right:hover:after{transform:translateX(-12px) translateY(.5em)}.theme-syndicate .Tooltip--left:after{top:50%;right:100%;transform:translateX(.5em) translateY(-50%)}.theme-syndicate .Tooltip--left:hover:after,.theme-syndicate .Tooltip--right:after{transform:translateX(-.5em) translateY(-50%)}.theme-syndicate .Tooltip--right:after{top:50%;left:100%}.theme-syndicate .Tooltip--right:hover:after{transform:translateX(.5em) translateY(-50%)}.theme-syndicate .Tooltip--scale--1:after{top:30%;left:50%;transform:translateX(-50%) scale(1)}.theme-syndicate .Tooltip--scale--1:hover:after{transform:translateX(-50%) scale(1)}.theme-syndicate .Tooltip--scale--2:after{top:30%;left:50%;transform:translateX(-50%) scale(.5)}.theme-syndicate .Tooltip--scale--2:hover:after{transform:translateX(-50%) scale(.5)}.theme-syndicate .Tooltip--scale--3:after{top:30%;left:50%}.theme-syndicate .Tooltip--scale--3:after,.theme-syndicate .Tooltip--scale--3:hover:after{transform:translateX(-50%) scale(.3333333333)}.theme-syndicate .Tooltip--scale--4:after{top:30%;left:50%;transform:translateX(-50%) scale(.25)}.theme-syndicate .Tooltip--scale--4:hover:after{transform:translateX(-50%) scale(.25)}.theme-syndicate .Tooltip--scale--5:after{top:30%;left:50%;transform:translateX(-50%) scale(.2)}.theme-syndicate .Tooltip--scale--5:hover:after{transform:translateX(-50%) scale(.2)}.theme-syndicate .Tooltip--scale--6:after{top:30%;left:50%}.theme-syndicate .Tooltip--scale--6:after,.theme-syndicate .Tooltip--scale--6:hover:after{transform:translateX(-50%) scale(.1666666667)}.theme-syndicate .Tooltip--scale--7:after{top:30%;left:50%}.theme-syndicate .Tooltip--scale--7:after,.theme-syndicate .Tooltip--scale--7:hover:after{transform:translateX(-50%) scale(.1428571429)}.theme-syndicate .Tooltip--scale--8:after{top:30%;left:50%;transform:translateX(-50%) scale(.125)}.theme-syndicate .Tooltip--scale--8:hover:after{transform:translateX(-50%) scale(.125)}.theme-syndicate .Layout,.theme-syndicate .Layout *{scrollbar-base-color:#400202;scrollbar-face-color:#7e0303;scrollbar-3dlight-color:#550202;scrollbar-highlight-color:#550202;scrollbar-track-color:#400202;scrollbar-arrow-color:#fa3030;scrollbar-shadow-color:#7e0303}.theme-syndicate .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.theme-syndicate .Layout__content--flexRow{display:flex;flex-flow:row}.theme-syndicate .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-syndicate .Layout__content--scrollable{overflow-y:auto}.theme-syndicate .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#550202;background-image:linear-gradient(180deg,#730303 0,#370101)}.theme-syndicate .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-syndicate .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-syndicate .Window__contentPadding{margin:.5rem;height:calc(100% - 1.01rem)}.theme-syndicate .Window__contentPadding:after{height:0}.theme-syndicate .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-syndicate .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(117,22,22,.25);pointer-events:none}.theme-syndicate .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-syndicate .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-syndicate .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-syndicate .TitleBar{background-color:#910101;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-syndicate .TitleBar__clickable{color:hsla(0,0%,100%,.5);background-color:#910101;transition:color .25s,background-color .25s}.theme-syndicate .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-syndicate .TitleBar__title{position:absolute;top:0;left:46px;left:3.8333333333rem;color:hsla(0,0%,100%,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap}.theme-syndicate .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-syndicate .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px!important;line-height:2.6666666667rem!important}.theme-syndicate .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-syndicate .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-syndicate .Layout__content{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMCIgdmlld0JveD0iMCAwIDIwMCAyODkuNzQyIiBvcGFjaXR5PSIuMzMiPjxwYXRoIGQ9Ik05My41MzggMGMtMTguMTEzIDAtMzQuMjIgMy4xMTItNDguMzI0IDkuMzM0LTEzLjk2NSA2LjIyMi0yNC42MTIgMTUuMDcyLTMxLjk0IDI2LjU0N0M2LjA4NCA0Ny4yMiAyLjk3MiA2MC42MzEgMi45NzIgNzYuMTE2YzAgMTAuNjQ3IDIuNzI1IDIwLjQ2NSA4LjE3NSAyOS40NTMgNS42MTYgOC45ODcgMTQuMDM5IDE3LjM1MiAyNS4yNyAyNS4wOTQgMTEuMjMgNy42MDYgMjYuNTA3IDE1LjQxOSA0NS44MyAyMy40MzggMTkuOTg0IDguMjk2IDM0Ljg0OSAxNS41NTUgNDQuNTkzIDIxLjc3NiA5Ljc0NCA2LjIyMyAxNi43NjEgMTIuODU5IDIxLjA1NSAxOS45MSA0LjI5NSA3LjA1MiA2LjQ0MiAxNS43NjQgNi40NDIgMjYuMTM0IDAgMTYuMTc4LTUuMjAyIDI4LjQ4My0xNS42MDYgMzYuOTE3LTEwLjI0IDguNDM1LTI1LjAyMiAxMi42NTMtNDQuMzQ1IDEyLjY1My0xNC4wMzkgMC0yNS41MTYtMS42Ni0zNC40MzQtNC45NzgtOC45MTgtMy40NTctMTYuMTg2LTguNzExLTIxLjgtMTUuNzYzLTUuNjE2LTcuMDUyLTEwLjA3Ni0xNi42NjEtMTMuMzc5LTI4LjgyOUgwdjU2LjgyN2MzMy44NTcgNy4zMjggNjMuNzQ5IDEwLjk5NCA4OS42NzggMTAuOTk0IDE2LjAyIDAgMzAuNzItMS4zODMgNDQuMDk4LTQuMTQ4IDEzLjU0Mi0yLjkwNCAyNS4xMDQtNy40NjcgMzQuNjgzLTEzLjY5IDkuNzQ0LTYuMzU5IDE3LjM0LTE0LjUxOSAyMi43OS0yNC40NzQgNS40NS0xMC4wOTMgOC4xNzUtMjIuNCA4LjE3NS0zNi45MTcgMC0xMi45OTctMy4zMDItMjQuMzM1LTkuOTA4LTM0LjAxNC02LjQ0LTkuODE4LTE1LjUyNS0xOC41MjctMjcuMjUxLTI2LjEzMi0xMS41NjEtNy42MDQtMjcuOTExLTE1LjgzMS00OS4wNTEtMjQuNjgtMTcuNTA2LTcuMTktMzAuNzItMTMuNjktMzkuNjM4LTE5LjQ5N1M1NC45NjkgOTMuNzU2IDQ5LjQ3OSA4Ny4zMTZjLTUuNDI2LTYuMzY2LTkuNjU4LTE1LjA3LTkuNjU4LTI0Ljg4NyAwLTkuMjY0IDIuMDc1LTE3LjIxNCA2LjIyMy0yMy44NUM1Ny4xNDIgMjQuMTggODcuMzMxIDM2Ljc4MiA5MS4xMiA2Mi45MjVjNC44NCA2Ljc3NSA4Ljg1IDE2LjI0NyAxMi4wMyAyOC40MTVoMjAuNTMydi01NmMtNC40NzktNS45MjQtOS45NTUtMTAuNjMxLTE1LjkwOS0xNC4zNzMgMS42NC40NzkgMy4xOSAxLjAyMyA0LjYzOSAxLjY0IDYuNDk4IDIuNjI2IDEyLjE2OCA3LjMyNyAxNy4wMDcgMTQuMTAzIDQuODQgNi43NzUgOC44NSAxNi4yNDYgMTIuMDMgMjguNDE0IDAgMCA4LjQ4LS4xMjkgOC40OS0uMDAyLjQxNyA2LjQxNS0xLjc1NCA5LjQ1My00LjEyNCAxMi41NjEtMi40MTcgMy4xNy01LjE0NSA2Ljc5LTQuMDAzIDEzLjAwMyAxLjUwOCA4LjIwMyAxMC4xODQgMTAuNTk3IDE0LjYyMiA5LjMxMi0zLjMxOC0uNS01LjMxOC0xLjc1LTUuMzE4LTEuNzVzMS44NzYuOTk5IDUuNjUtMS4zNmMtMy4yNzYuOTU2LTEwLjcwNC0uNzk3LTExLjgtNi43NjMtLjk1OC01LjIwOC45NDYtNy4yOTUgMy40LTEwLjUxNCAyLjQ1NS0zLjIyIDUuMjg1LTYuOTU5IDQuNjg1LTE0LjQ4OWwuMDAzLjAwMmg4LjkyN3YtNTZjLTE1LjA3Mi0zLjg3MS0yNy42NTMtNi4zNi0zNy43NDctNy40NjVDMTE0LjI3OS41NTIgMTA0LjA0NiAwIDkzLjUzNyAwem03MC4zMjEgMTcuMzA5bC4yMzggNDAuMzA1YzEuMzE4IDEuMjI2IDIuNDQgMi4yNzggMy4zNDEgMy4xMDYgNC44NCA2Ljc3NSA4Ljg1IDE2LjI0NiAxMi4wMyAyOC40MTRIMjAwdi01NmMtNi42NzctNC41OTQtMTkuODM2LTEwLjQ3My0zNi4xNC0xNS44MjV6bS0yOC4xMiA1LjYwNWw4LjU2NSAxNy43MTdjLTExLjk3LTYuNDY3LTEzLjg0Ny05LjcxNy04LjU2NS0xNy43MTd6bTIyLjc5NyAwYzIuNzcxIDggMS43ODcgMTEuMjUtNC40OTQgMTcuNzE3bDQuNDk0LTE3LjcxN3ptMTUuMjIyIDI0LjAwOWw4LjU2NSAxNy43MTZjLTExLjk3LTYuNDY2LTEzLjg0Ny05LjcxNy04LjU2NS0xNy43MTZ6bTIyLjc5NyAwYzIuNzcxIDggMS43ODcgMTEuMjUtNC40OTQgMTcuNzE2bDQuNDk0LTE3LjcxNnpNOTcuNDQgNDkuMTNsOC41NjUgMTcuNzE2Yy0xMS45Ny02LjQ2Ny0xMy44NDctOS43MTctOC41NjUtMTcuNzE2em0yMi43OTUgMGMyLjc3MiA3Ljk5OSAxLjc4OCAxMS4yNS00LjQ5MyAxNy43MTZsNC40OTMtMTcuNzE2eiIvPjwvc3ZnPg==)}
\ No newline at end of file
diff --git a/tgui/packages/tgui/public/tgui.bundle.js b/tgui/packages/tgui/public/tgui.bundle.js
index df0b106b21c..4e19265f5b0 100644
--- a/tgui/packages/tgui/public/tgui.bundle.js
+++ b/tgui/packages/tgui/public/tgui.bundle.js
@@ -32,4 +32,4 @@ r.perf.mark("inception",window.__inception__),r.perf.mark("init");var d,u=(0,l.c
/*! (C) WebReflection Mit Style License */
if(!document.createEvent){var t,n=!0,o=!1,r="__IE8__"+Math.random(),a=Object.defineProperty||function(e,t,n){e[t]=n.value},i=Object.defineProperties||function(t,n){for(var o in n)if(l.call(n,o))try{a(t,o,n[o])}catch(r){e.console}},c=Object.getOwnPropertyDescriptor,l=Object.prototype.hasOwnProperty,d=e.Element.prototype,u=e.Text.prototype,s=/^[a-z]+$/,m=/loaded|complete/,p={},h=document.createElement("div"),f=document.documentElement,C=f.removeAttribute,N=f.setAttribute,b=function(e){return{enumerable:!0,writable:!0,configurable:!0,value:e}};_(e.HTMLCommentElement.prototype,d,"nodeValue"),_(e.HTMLScriptElement.prototype,null,"text"),_(u,null,"nodeValue"),_(e.HTMLTitleElement.prototype,null,"text"),a(e.HTMLStyleElement.prototype,"textContent",(t=c(e.CSSStyleSheet.prototype,"cssText"),k((function(){return t.get.call(this.styleSheet)}),(function(e){t.set.call(this.styleSheet,e)}))));var V=/\b\s*alpha\s*\(\s*opacity\s*=\s*(\d+)\s*\)/;a(e.CSSStyleDeclaration.prototype,"opacity",{get:function(){var e=this.filter.match(V);return e?(e[1]/100).toString():""},set:function(e){this.zoom=1;var t=!1;e=e<1?" alpha(opacity="+Math.round(100*e)+")":"",this.filter=this.filter.replace(V,(function(){return t=!0,e})),!t&&e&&(this.filter+=e)}}),i(d,{textContent:{get:L,set:S},firstElementChild:{get:function(){for(var e=this.childNodes||[],t=0,n=e.length;t3?c(i):null,V=String(i.key),g=String(i.char),v=i.location,k=i.keyCode||(i.keyCode=V)&&V.charCodeAt(0)||0,_=i.charCode||(i.charCode=g)&&g.charCodeAt(0)||0,y=i.bubbles,L=i.cancelable,B=i.repeat,x=i.locale,w=i.view||e;if(i.which||(i.which=i.keyCode),"initKeyEvent"in m)m.initKeyEvent(t,y,L,w,p,f,h,C,k,_);else if(0>>0),t=Element.prototype,n=t.querySelector,o=t.querySelectorAll;function r(t,n,o){t.setAttribute(e,null);var r=n.call(t,String(o).replace(/(^|,\s*)(:scope([ >]|$))/g,(function(t,n,o,r){return n+"["+e+"]"+(r||" ")})));return t.removeAttribute(e),r}t.querySelector=function(e){return r(this,n,e)},t.querySelectorAll=function(e){return r(this,o,e)}}()}}(window),function(e){var t=e.WeakMap||function(){var e,t=0,n=!1,o=!1;function r(t,r,a){o=a,n=!1,e=undefined,t.dispatchEvent(r)}function a(e){this.value=e}function c(){t++,this.__ce__=new i("@DOMMap:"+t+Math.random())}return a.prototype.handleEvent=function(t){n=!0,o?t.currentTarget.removeEventListener(t.type,this,!1):e=this.value},c.prototype={constructor:c,"delete":function(e){return r(e,this.__ce__,!0),n},get:function(t){r(t,this.__ce__,!1);var n=e;return e=undefined,n},has:function(e){return r(e,this.__ce__,!1),n},set:function(e,t){return r(e,this.__ce__,!0),e.addEventListener(this.__ce__.type,new a(t),!1),this}},c}();function n(){}function o(e,t,n){function r(e){r.once&&(e.currentTarget.removeEventListener(e.type,t,r),r.removed=!0),r.passive&&(e.preventDefault=o.preventDefault),"function"==typeof r.callback?r.callback.call(this,e):r.callback&&r.callback.handleEvent(e),r.passive&&delete e.preventDefault}return r.type=e,r.callback=t,r.capture=!!n.capture,r.passive=!!n.passive,r.once=!!n.once,r.removed=!1,r}n.prototype=(Object.create||Object)(null),o.preventDefault=function(){};var r,a,i=e.CustomEvent,c=e.dispatchEvent,l=e.addEventListener,d=e.removeEventListener,u=0,s=function(){u++},m=[].indexOf||function(e){for(var t=this.length;t--&&this[t]!==e;);return t},p=function(e){return"".concat(e.capture?"1":"0",e.passive?"1":"0",e.once?"1":"0")};try{l("_",s,{once:!0}),c(new i("_")),c(new i("_")),d("_",s,{once:!0})}catch(h){}1!==u&&(a=new t,r=function(e){if(e){var t=e.prototype;t.addEventListener=function(e){return function(t,r,i){if(i&&"boolean"!=typeof i){var c,l,d,u=a.get(this),s=p(i);u||a.set(this,u=new n),t in u||(u[t]={handler:[],wrap:[]}),l=u[t],(c=m.call(l.handler,r))<0?(c=l.handler.push(r)-1,l.wrap[c]=d=new n):d=l.wrap[c],s in d||(d[s]=o(t,r,i),e.call(this,t,d[s],d[s].capture))}else e.call(this,t,r,i)}}(t.addEventListener),t.removeEventListener=function(e){return function(t,n,o){if(o&&"boolean"!=typeof o){var r,i,c,l,d=a.get(this);if(d&&t in d&&(c=d[t],-1<(i=m.call(c.handler,n))&&(r=p(o))in(l=c.wrap[i]))){for(r in e.call(this,t,l[r],l[r].capture),delete l[r],l)return;c.handler.splice(i,1),c.wrap.splice(i,1),0===c.handler.length&&delete d[t]}}else e.call(this,t,n,o)}}(t.removeEventListener)}},e.EventTarget?r(EventTarget):(r(e.Text),r(e.Element||e.HTMLElement),r(e.HTMLDocument),r(e.Window||{prototype:e}),r(e.XMLHttpRequest)))}(window)},function(e,t,n){"use strict";!function(e){if("undefined"!=typeof e.setAttribute){var t=function(e){return e.replace(/-[a-z]/g,(function(e){return e[1].toUpperCase()}))};e.setProperty=function(e,n){var o=t(e);if(!n)return this.removeAttribute(o);var r=String(n);return this.setAttribute(o,r)},e.getPropertyValue=function(e){var n=t(e);return this.getAttribute(n)||null},e.removeProperty=function(e){var n=t(e),o=this.getAttribute(n);return this.removeAttribute(n),o}}}(CSSStyleDeclaration.prototype)},function(e,t,n){"use strict";window.Int32Array||(window.Int32Array=Array)},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";(function(e){var o=void 0!==e&&e||"undefined"!=typeof self&&self||window,r=Function.prototype.apply;function a(e,t){this._id=e,this._clearFn=t}t.setTimeout=function(){return new a(r.call(setTimeout,o,arguments),clearTimeout)},t.setInterval=function(){return new a(r.call(setInterval,o,arguments),clearInterval)},t.clearTimeout=t.clearInterval=function(e){e&&e.close()},a.prototype.unref=a.prototype.ref=function(){},a.prototype.close=function(){this._clearFn.call(o,this._id)},t.enroll=function(e,t){clearTimeout(e._idleTimeoutId),e._idleTimeout=t},t.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},t._unrefActive=t.active=function(e){clearTimeout(e._idleTimeoutId);var t=e._idleTimeout;t>=0&&(e._idleTimeoutId=setTimeout((function(){e._onTimeout&&e._onTimeout()}),t))},n(435),t.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==e&&e.setImmediate||void 0,t.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==e&&e.clearImmediate||void 0}).call(this,n(75))},function(e,t,n){"use strict";(function(e,t){!function(e,n){if(!e.setImmediate){var o,r,a,i,c,l=1,d={},u=!1,s=e.document,m=Object.getPrototypeOf&&Object.getPrototypeOf(e);m=m&&m.setTimeout?m:e,"[object process]"==={}.toString.call(e.process)?o=function(e){t.nextTick((function(){h(e)}))}:!function(){if(e.postMessage&&!e.importScripts){var t=!0,n=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=n,t}}()?e.MessageChannel?((a=new MessageChannel).port1.onmessage=function(e){h(e.data)},o=function(e){a.port2.postMessage(e)}):s&&"onreadystatechange"in s.createElement("script")?(r=s.documentElement,o=function(e){var t=s.createElement("script");t.onreadystatechange=function(){h(e),t.onreadystatechange=null,r.removeChild(t),t=null},r.appendChild(t)}):o=function(e){setTimeout(h,0,e)}:(i="setImmediate$"+Math.random()+"$",c=function(t){t.source===e&&"string"==typeof t.data&&0===t.data.indexOf(i)&&h(+t.data.slice(i.length))},e.addEventListener?e.addEventListener("message",c,!1):e.attachEvent("onmessage",c),o=function(t){e.postMessage(i+t,"*")}),m.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),n=0;n1)for(var n=1;n=e.length?{done:!0}:{done:!1,value:e[t++]}};throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(t=e[Symbol.iterator]()).next.bind(t)}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,o=new Array(t);n1?r-1:0),i=1;i1?t-1:0),o=1;o=0||(r[n]=e[n]);return r}(e,["className"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["BlockQuote",t])},n)))}},function(e,t,n){"use strict";t.__esModule=!0,t.ByondUi=void 0;var o=n(0),r=n(10),a=n(444),i=n(24),c=n(19);function l(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var d=(0,i.createLogger)("ByondUi"),u=[];window.addEventListener("beforeunload",(function(){for(var e=0;e=0||(r[n]=e[n]);return r}(t,["data","rangeX","rangeY","fillColor","strokeColor","strokeWidth"]),C=this.state.viewBox,N=function(e,t,n,o){if(0===e.length)return[];var a=(0,r.zipWith)(Math.min).apply(void 0,e),i=(0,r.zipWith)(Math.max).apply(void 0,e);return n!==undefined&&(a[0]=n[0],i[0]=n[1]),o!==undefined&&(a[1]=o[0],i[1]=o[1]),(0,r.map)((function(e){return(0,r.zipWith)((function(e,t,n,o){return(e-t)/(n-t)*o}))(e,a,i,t)}))(e)}(a,C,c,l);if(N.length>0){var b=N[0],V=N[N.length-1];N.push([C[0]+h,V[1]]),N.push([C[0]+h,-h]),N.push([-h,-h]),N.push([-h,b[1]])}var g=function(e){for(var t="",n=0;n=0||(r[n]=e[n]);return r}(t,["children","color","title","buttons"]);return(0,o.createComponentVNode)(2,r.Box,{mb:1,children:[(0,o.createVNode)(1,"div","Table",[(0,o.createVNode)(1,"div","Table__cell",(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Button,Object.assign({fluid:!0,color:l,icon:n?"chevron-down":"chevron-right",onClick:function(){return e.setState({open:!n})}},s,{children:d}))),2),u&&(0,o.createVNode)(1,"div","Table__cell Table__cell--collapsing",u,0)],0),n&&(0,o.createComponentVNode)(2,r.Box,{mt:1,children:i})]})},i}(o.Component);t.Collapsible=i},function(e,t,n){"use strict";t.__esModule=!0,t.ColorBox=void 0;var o=n(0),r=n(10),a=n(19);var i=function(e){var t=e.content,n=(e.children,e.className),i=e.color,c=e.backgroundColor,l=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["content","children","className","color","backgroundColor"]);return l.color=t?null:"transparent",l.backgroundColor=i||c,(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["ColorBox",n,(0,a.computeBoxClassName)(l)]),t||".",0,Object.assign({},(0,a.computeBoxProps)(l))))};t.ColorBox=i,i.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.Dropdown=void 0;var o=n(0),r=n(10),a=n(19),i=n(129);function c(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var l=function(e){var t,n;function l(t){var n;return(n=e.call(this,t)||this).state={selected:t.selected,open:!1},n.handleClick=function(){n.state.open&&n.setOpen(!1)},n}n=e,(t=l).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var d=l.prototype;return d.componentWillUnmount=function(){window.removeEventListener("click",this.handleClick)},d.setOpen=function(e){var t=this;this.setState({open:e}),e?(setTimeout((function(){return window.addEventListener("click",t.handleClick)})),this.menuRef.focus()):window.removeEventListener("click",this.handleClick)},d.setSelected=function(e){this.setState({selected:e}),this.setOpen(!1),this.props.onSelected(e)},d.buildMenu=function(){var e=this,t=this.props,n=t.options,r=void 0===n?[]:n,a=t.placeholder,i=r.map((function(t){return(0,o.createVNode)(1,"div","Dropdown__menuentry",t,0,{onClick:function(){e.setSelected(t)}},t)}));return a&&i.unshift((0,o.createVNode)(1,"div","Dropdown__menuentry",[(0,o.createTextVNode)("-- "),a,(0,o.createTextVNode)(" --")],0,{onClick:function(){e.setSelected(null)}},a)),i},d.render=function(){var e=this,t=this.props,n=t.color,l=void 0===n?"default":n,d=t.over,u=t.noscroll,s=t.nochevron,m=t.width,p=t.maxHeight,h=(t.onClick,t.selected,t.disabled),f=t.placeholder,C=c(t,["color","over","noscroll","nochevron","width","maxHeight","onClick","selected","disabled","placeholder"]),N=C.className,b=c(C,["className"]),V=d?!this.state.open:this.state.open,g=this.state.open?(0,o.createVNode)(1,"div",(0,r.classes)([u?"Dropdown__menu-noscroll":"Dropdown__menu",d&&"Dropdown__over"]),this.buildMenu(),0,{tabIndex:"-1",style:{width:m,"max-height":p}},null,(function(t){e.menuRef=t})):null;return(0,o.createVNode)(1,"div","Dropdown",[(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({width:m,className:(0,r.classes)(["Dropdown__control","Button","Button--color--"+l,h&&"Button--disabled",N])},b,{onClick:function(){h&&!e.state.open||e.setOpen(!e.state.open)},children:[(0,o.createVNode)(1,"span","Dropdown__selected-text",this.state.selected||f,0),!!s||(0,o.createVNode)(1,"span","Dropdown__arrow-button",(0,o.createComponentVNode)(2,i.Icon,{name:V?"chevron-up":"chevron-down"}),2)]}))),g],0)},l}(o.Component);t.Dropdown=l},function(e,t,n){"use strict";t.__esModule=!0,t.GridColumn=t.Grid=void 0;var o=n(0),r=n(182),a=n(10);function i(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var c=function(e){var t=e.children,n=i(e,["children"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Table,Object.assign({},n,{children:(0,o.createComponentVNode)(2,r.Table.Row,{children:t})})))};t.Grid=c,c.defaultHooks=a.pureComponentHooks;var l=function(e){var t=e.size,n=void 0===t?1:t,a=e.style,c=i(e,["size","style"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Table.Cell,Object.assign({style:Object.assign({width:n+"%"},a)},c)))};t.GridColumn=l,c.defaultHooks=a.pureComponentHooks,c.Column=l},function(e,t,n){"use strict";t.__esModule=!0,t.Input=void 0;var o=n(0),r=n(10),a=n(19);function i(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var c=function(e){return(0,r.isFalsy)(e)?"":e},l=function(e){var t,n;function l(){var t;return(t=e.call(this)||this).inputRef=(0,o.createRef)(),t.state={editing:!1},t.handleInput=function(e){var n=t.state.editing,o=t.props.onInput;n||t.setEditing(!0),o&&o(e,e.target.value)},t.handleFocus=function(e){t.state.editing||t.setEditing(!0)},t.handleBlur=function(e){var n=t.state.editing,o=t.props.onChange;n&&(t.setEditing(!1),o&&o(e,e.target.value))},t.handleKeyDown=function(e){var n=t.props,o=n.onInput,r=n.onChange,a=n.onEnter;return 13===e.keyCode?(t.setEditing(!1),r&&r(e,e.target.value),o&&o(e,e.target.value),a&&a(e,e.target.value),void(t.props.selfClear?e.target.value="":e.target.blur())):27===e.keyCode?(t.setEditing(!1),e.target.value=c(t.props.value),void e.target.blur()):void 0},t}n=e,(t=l).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var d=l.prototype;return d.componentDidMount=function(){var e=this.props.value,t=this.inputRef.current;t&&(t.value=c(e),this.props.autofocus&&(t.focus(),t.selectionStart=0,t.selectionEnd=t.value.length))},d.componentDidUpdate=function(e,t){var n=this.state.editing,o=e.value,r=this.props.value,a=this.inputRef.current;a&&!n&&o!==r&&(a.value=c(r))},d.setEditing=function(e){this.setState({editing:e})},d.render=function(){var e=this.props,t=(e.selfClear,e.onInput,e.onChange,e.onEnter,e.value,e.maxLength),n=e.placeholder,c=(e.autofocus,i(e,["selfClear","onInput","onChange","onEnter","value","maxLength","placeholder","autofocus"])),l=c.className,d=c.fluid,u=i(c,["className","fluid"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["Input",d&&"Input--fluid",l])},u,{children:[(0,o.createVNode)(1,"div","Input__baseline",".",16),(0,o.createVNode)(64,"input","Input__input",null,1,{placeholder:n,onInput:this.handleInput,onFocus:this.handleFocus,onBlur:this.handleBlur,onKeyDown:this.handleKeyDown,maxLength:t},null,this.inputRef)]})))},l}(o.Component);t.Input=l},function(e,t,n){"use strict";t.__esModule=!0,t.Knob=void 0;var o=n(0),r=n(5),a=n(10),i=n(19),c=n(130),l=n(131);t.Knob=function(e){if(Byond.IS_LTE_IE8)return(0,o.normalizeProps)((0,o.createComponentVNode)(2,l.NumberInput,Object.assign({},e)));var t=e.animated,n=e.forcedInputWidth,d=e.format,u=e.maxValue,s=e.minValue,m=e.onChange,p=e.onDrag,h=e.step,f=e.stepPixelSize,C=e.suppressFlicker,N=e.unit,b=e.value,V=e.className,g=e.style,v=e.fillValue,k=e.color,_=e.ranges,y=void 0===_?{}:_,L=e.size,B=e.bipolar,x=(e.children,e.popUpPosition),w=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["animated","forcedInputWidth","format","maxValue","minValue","onChange","onDrag","step","stepPixelSize","suppressFlicker","unit","value","className","style","fillValue","color","ranges","size","bipolar","children","popUpPosition"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.DraggableControl,Object.assign({dragMatrix:[0,-1]},{animated:t,forcedInputWidth:n,format:d,maxValue:u,minValue:s,onChange:m,onDrag:p,step:h,stepPixelSize:f,suppressFlicker:C,unit:N,value:b},{children:function(e){var t=e.dragging,n=(e.editing,e.value),c=e.displayValue,l=e.displayElement,d=e.inputElement,m=e.handleDragStart,p=(0,r.scale)(null!=v?v:c,s,u),h=(0,r.scale)(c,s,u),f=k||(0,r.keyOfMatchingRange)(null!=v?v:n,y)||"default",C=270*(h-.5);return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,a.classes)(["Knob","Knob--color--"+f,B&&"Knob--bipolar",V,(0,i.computeBoxClassName)(w)]),[(0,o.createVNode)(1,"div","Knob__circle",(0,o.createVNode)(1,"div","Knob__cursorBox",(0,o.createVNode)(1,"div","Knob__cursor"),2,{style:{transform:"rotate("+C+"deg)"}}),2),t&&(0,o.createVNode)(1,"div",(0,a.classes)(["Knob__popupValue",x&&"Knob__popupValue--"+x]),l,0),(0,o.createVNode)(32,"svg","Knob__ring Knob__ringTrackPivot",(0,o.createVNode)(32,"circle","Knob__ringTrack",null,1,{cx:"50",cy:"50",r:"50"}),2,{viewBox:"0 0 100 100"}),(0,o.createVNode)(32,"svg","Knob__ring Knob__ringFillPivot",(0,o.createVNode)(32,"circle","Knob__ringFill",null,1,{style:{"stroke-dashoffset":((B?2.75:2)-1.5*p)*Math.PI*50},cx:"50",cy:"50",r:"50"}),2,{viewBox:"0 0 100 100"}),d],0,Object.assign({},(0,i.computeBoxProps)(Object.assign({style:Object.assign({"font-size":L+"rem"},g)},w)),{onMouseDown:m})))}})))}},function(e,t,n){"use strict";t.__esModule=!0,t.LabeledControls=void 0;var o=n(0),r=n(181);function a(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var i=function(e){var t=e.children,n=a(e,["children"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Flex,Object.assign({mx:-.5,align:"stretch",justify:"space-between"},n,{children:t})))};t.LabeledControls=i;i.Item=function(e){var t=e.label,n=e.children,i=a(e,["label","children"]);return(0,o.createComponentVNode)(2,r.Flex.Item,{mx:1,children:(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Flex,Object.assign({minWidth:"52px",height:"100%",direction:"column",align:"center",textAlign:"center",justify:"space-between"},i,{children:[(0,o.createComponentVNode)(2,r.Flex.Item),(0,o.createComponentVNode)(2,r.Flex.Item,{children:n}),(0,o.createComponentVNode)(2,r.Flex.Item,{color:"label",children:t})]})))})}},function(e,t,n){"use strict";t.__esModule=!0,t.LabeledListDivider=t.LabeledListItem=t.LabeledList=void 0;var o=n(0),r=n(10),a=n(19),i=n(180),c=function(e){var t=e.children;return(0,o.createVNode)(1,"table","LabeledList",t,0)};t.LabeledList=c,c.defaultHooks=r.pureComponentHooks;var l=function(e){var t=e.className,n=e.label,i=e.labelColor,c=void 0===i?"label":i,l=e.color,d=e.textAlign,u=e.verticalAlign,s=e.buttons,m=e.content,p=e.children;return(0,o.createVNode)(1,"tr",(0,r.classes)(["LabeledList__row",t]),[(0,o.createComponentVNode)(2,a.Box,{as:"td",color:c,verticalAlign:u,className:(0,r.classes)(["LabeledList__cell","LabeledList__label"]),children:n?n+":":null}),(0,o.createComponentVNode)(2,a.Box,{as:"td",color:l,textAlign:d,verticalAlign:u,className:(0,r.classes)(["LabeledList__cell","LabeledList__content"]),colSpan:s?undefined:2,children:[m,p]}),s&&(0,o.createVNode)(1,"td","LabeledList__cell LabeledList__buttons",s,0)],0)};t.LabeledListItem=l,l.defaultHooks=r.pureComponentHooks;var d=function(e){var t=e.size?(0,a.unit)(Math.max(0,e.size-1)):0;return(0,o.createVNode)(1,"tr","LabeledList__row",(0,o.createVNode)(1,"td",null,(0,o.createComponentVNode)(2,i.Divider),2,{colSpan:3,style:{"padding-top":t,"padding-bottom":t}}),2)};t.LabeledListDivider=d,d.defaultHooks=r.pureComponentHooks,c.Item=l,c.Divider=d},function(e,t,n){"use strict";t.__esModule=!0,t.NanoMap=void 0;var o=n(0),r=n(2),a=n(1);var i=function(e){return e.stopPropagation&&e.stopPropagation(),e.preventDefault&&e.preventDefault(),e.cancelBubble=!0,e.returnValue=!1,!1},c=function(e){var t,n;function c(t){var n;n=e.call(this,t)||this;var o=window.innerWidth/2-256,r=window.innerHeight/2-256;return n.state={offsetX:o,offsetY:r,transform:"none",dragging:!1,originX:null,originY:null,zoom:1},n.handleDragStart=function(e){n.ref=e.target,n.setState({dragging:!1,originX:e.screenX,originY:e.screenY}),document.addEventListener("mousemove",n.handleDragMove),document.addEventListener("mouseup",n.handleDragEnd),i(e)},n.handleDragMove=function(e){n.setState((function(t){var n=Object.assign({},t),o=e.screenX-n.originX,r=e.screenY-n.originY;return t.dragging?(n.offsetX+=o,n.offsetY+=r,n.originX=e.screenX,n.originY=e.screenY):n.dragging=!0,n})),i(e)},n.handleDragEnd=function(e){n.setState({dragging:!1,originX:null,originY:null}),document.removeEventListener("mousemove",n.handleDragMove),document.removeEventListener("mouseup",n.handleDragEnd),i(e)},n.handleZoom=function(e,o){n.setState((function(e){var n=Math.min(Math.max(o,1),8),r=1.5*(n-e.zoom);e.zoom=n;var a=e.offsetX-262*r;a<-500&&(a=-500),a>500&&(a=500);var i=e.offsetY-256*r;return i<-200&&(i=-200),i>200&&(i=200),e.offsetX=a,e.offsetY=i,t.onZoom&&t.onZoom(e.zoom),e}))},n}return n=e,(t=c).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n,c.prototype.render=function(){var e=(0,a.useBackend)(this.context).config,t=this.state,n=t.dragging,i=t.offsetX,c=t.offsetY,d=t.zoom,u=void 0===d?1:d,s=this.props.children,m=280*u+"px",p={width:m,height:m,"margin-top":c+"px","margin-left":i+"px",overflow:"hidden",position:"relative","background-image":"url("+e.map+"_nanomap_z"+e.mapZLevel+".png)","background-size":"cover","background-repeat":"no-repeat","text-align":"center",cursor:n?"move":"auto"};return(0,o.createComponentVNode)(2,r.Box,{className:"NanoMap__container",children:[(0,o.createComponentVNode)(2,r.Box,{style:p,textAlign:"center",onMouseDown:this.handleDragStart,children:(0,o.createComponentVNode)(2,r.Box,{children:s})}),(0,o.createComponentVNode)(2,l,{zoom:u,onZoom:this.handleZoom})]})},c}(o.Component);t.NanoMap=c;c.Marker=function(e,t){var n=e.x,a=e.y,c=e.zoom,l=void 0===c?1:c,d=e.icon,u=e.tooltip,s=e.color,m=e.onClick,p=2*n*l-l-3,h=2*a*l-l-3;return(0,o.createVNode)(1,"div",null,(0,o.createComponentVNode)(2,r.Box,{position:"absolute",className:"NanoMap__marker",lineHeight:"0",bottom:h+"px",left:p+"px",onMouseDown:function(e){i(e),m(e)},children:[(0,o.createComponentVNode)(2,r.Icon,{name:d,color:s,fontSize:"6px"}),(0,o.createComponentVNode)(2,r.Tooltip,{content:u})]}),2)};var l=function(e,t){var n=(0,a.useBackend)(t),i=n.act,c=n.config,l=n.data;return(0,o.createComponentVNode)(2,r.Box,{className:"NanoMap__zoomer",children:(0,o.createComponentVNode)(2,r.LabeledList,{children:[(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Zoom",children:(0,o.createComponentVNode)(2,r.Slider,{minValue:"1",maxValue:"8",stepPixelSize:"10",format:function(e){return e+"x"},value:e.zoom,onDrag:function(t,n){return e.onZoom(t,n)}})}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Z-Level",children:l.map_levels.sort((function(e,t){return Number(e)-Number(t)})).map((function(e){return(0,o.createComponentVNode)(2,r.Button,{selected:~~e==~~c.mapZLevel,content:e,onClick:function(){i("setZLevel",{mapZLevel:e})}},e)}))})]})})};c.Zoomer=l},function(e,t,n){"use strict";t.__esModule=!0,t.Modal=void 0;var o=n(0),r=n(10),a=n(19),i=n(179);t.Modal=function(e){var t,n=e.className,c=e.children,l=e.onEnter,d=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","children","onEnter"]);return l&&(t=function(e){13===(e.which||e.keyCode)&&l(e)}),(0,o.createComponentVNode)(2,i.Dimmer,{onKeyDown:t,children:(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["Modal",n,(0,a.computeBoxClassName)(d)]),c,0,Object.assign({},(0,a.computeBoxProps)(d))))})}},function(e,t,n){"use strict";t.__esModule=!0,t.NoticeBox=void 0;var o=n(0),r=n(10),a=n(19);var i=function(e){var t=e.className,n=e.color,i=e.info,c=(e.warning,e.success),l=e.danger,d=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","color","info","warning","success","danger"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["NoticeBox",n&&"NoticeBox--color--"+n,i&&"NoticeBox--type--info",c&&"NoticeBox--type--success",l&&"NoticeBox--type--danger",t])},d)))};t.NoticeBox=i,i.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.ProgressBar=void 0;var o=n(0),r=n(5),a=n(10),i=n(19);var c=function(e){var t=e.className,n=e.value,c=e.minValue,l=void 0===c?0:c,d=e.maxValue,u=void 0===d?1:d,s=e.color,m=e.ranges,p=void 0===m?{}:m,h=e.children,f=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","value","minValue","maxValue","color","ranges","children"]),C=(0,r.scale)(n,l,u),N=h!==undefined,b=s||(0,r.keyOfMatchingRange)(n,p)||"default";return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,a.classes)(["ProgressBar","ProgressBar--color--"+b,t,(0,i.computeBoxClassName)(f)]),[(0,o.createVNode)(1,"div","ProgressBar__fill ProgressBar__fill--animated",null,1,{style:{width:100*(0,r.clamp01)(C)+"%"}}),(0,o.createVNode)(1,"div","ProgressBar__content",N?h:(0,r.toFixed)(100*C)+"%",0)],4,Object.assign({},(0,i.computeBoxProps)(f))))};t.ProgressBar=c,c.defaultHooks=a.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.Section=void 0;var o=n(0),r=n(10),a=n(19);var i=function(e){var t=e.className,n=e.title,i=e.level,c=void 0===i?1:i,l=e.buttons,d=e.fill,u=e.stretchContents,s=e.noTopPadding,m=e.children,p=e.scrollable,h=e.flexGrow,f=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","title","level","buttons","fill","stretchContents","noTopPadding","children","scrollable","flexGrow"]),C=!(0,r.isFalsy)(n)||!(0,r.isFalsy)(l),N=!(0,r.isFalsy)(m);return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["Section","Section--level--"+c,d&&"Section--fill",p&&"Section--scrollable",h&&"Section--flex",t].concat((0,a.computeBoxClassName)(f))),[C&&(0,o.createVNode)(1,"div","Section__title",[(0,o.createVNode)(1,"span","Section__titleText",n,0),(0,o.createVNode)(1,"div","Section__buttons",l,0)],4),N&&(0,o.createVNode)(1,"div",(0,r.classes)(["Section__content",!!u&&"Section__content--stretchContents",!!s&&"Section__content--noTopPadding"]),m,0)],0,Object.assign({},(0,a.computeBoxProps)(f))))};t.Section=i,i.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.Slider=void 0;var o=n(0),r=n(5),a=n(10),i=n(19),c=n(130),l=n(131);t.Slider=function(e){if(Byond.IS_LTE_IE8)return(0,o.normalizeProps)((0,o.createComponentVNode)(2,l.NumberInput,Object.assign({},e)));var t=e.animated,n=e.format,d=e.maxValue,u=e.minValue,s=e.onChange,m=e.onDrag,p=e.step,h=e.stepPixelSize,f=e.suppressFlicker,C=e.unit,N=e.value,b=e.className,V=e.fillValue,g=e.color,v=e.ranges,k=void 0===v?{}:v,_=e.children,y=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["animated","format","maxValue","minValue","onChange","onDrag","step","stepPixelSize","suppressFlicker","unit","value","className","fillValue","color","ranges","children"]),L=_!==undefined;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.DraggableControl,Object.assign({dragMatrix:[1,0]},{animated:t,format:n,maxValue:d,minValue:u,onChange:s,onDrag:m,step:p,stepPixelSize:h,suppressFlicker:f,unit:C,value:N},{children:function(e){var t=e.dragging,n=(e.editing,e.value),c=e.displayValue,l=e.displayElement,s=e.inputElement,m=e.handleDragStart,p=V!==undefined&&null!==V,h=((0,r.scale)(n,u,d),(0,r.scale)(null!=V?V:c,u,d)),f=(0,r.scale)(c,u,d),C=g||(0,r.keyOfMatchingRange)(null!=V?V:n,k)||"default";return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,a.classes)(["Slider","ProgressBar","ProgressBar--color--"+C,b,(0,i.computeBoxClassName)(y)]),[(0,o.createVNode)(1,"div",(0,a.classes)(["ProgressBar__fill",p&&"ProgressBar__fill--animated"]),null,1,{style:{width:100*(0,r.clamp01)(h)+"%",opacity:.4}}),(0,o.createVNode)(1,"div","ProgressBar__fill",null,1,{style:{width:100*(0,r.clamp01)(Math.min(h,f))+"%"}}),(0,o.createVNode)(1,"div","Slider__cursorOffset",[(0,o.createVNode)(1,"div","Slider__cursor"),(0,o.createVNode)(1,"div","Slider__pointer"),t&&(0,o.createVNode)(1,"div","Slider__popupValue",l,0)],0,{style:{width:100*(0,r.clamp01)(f)+"%"}}),(0,o.createVNode)(1,"div","ProgressBar__content",L?_:l,0),s],0,Object.assign({},(0,i.computeBoxProps)(y),{onMouseDown:m})))}})))}},function(e,t,n){"use strict";t.__esModule=!0,t.Tabs=void 0;var o=n(0),r=n(10),a=n(19),i=n(128);function c(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var l=function(e){var t=e.className,n=e.vertical,i=e.children,l=c(e,["className","vertical","children"]);return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["Tabs",n?"Tabs--vertical":"Tabs--horizontal",t,(0,a.computeBoxClassName)(l)]),(0,o.createVNode)(1,"div","Tabs__tabBox",i,0),2,Object.assign({},(0,a.computeBoxProps)(l))))};t.Tabs=l;l.Tab=function(e){var t=e.className,n=e.selected,a=e.altSelection,l=c(e,["className","selected","altSelection"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.Button,Object.assign({className:(0,r.classes)(["Tabs__tab",n&&"Tabs__tab--selected",a&&n&&"Tabs__tab--altSelection",t]),selected:!a&&n,color:"transparent"},l)))}},function(e,t,n){var o={"./AICard.js":462,"./APC.js":463,"./AccountsTerminal.js":464,"./AgentCard.js":465,"./AiAirlock.js":466,"./AiRestorer.js":467,"./AiSupermatter.js":468,"./AirAlarm.js":469,"./AlgaeFarm.js":471,"./AppearanceChanger.js":472,"./ArcadeBattle.js":473,"./AreaScrubberControl.js":474,"./AssemblyInfrared.js":475,"./AssemblyProx.js":476,"./AssemblyTimer.js":477,"./AtmosAlertConsole.js":478,"./AtmosControl.js":185,"./AtmosFilter.js":479,"./AtmosMixer.js":480,"./Autolathe.js":481,"./Batteryrack.js":482,"./BeaconLocator.js":483,"./Biogenerator.js":484,"./BodyDesigner.js":485,"./BodyScanner.js":486,"./BombTester.js":487,"./BotanyEditor.js":488,"./BotanyIsolator.js":489,"./BrigTimer.js":490,"./CameraConsole.js":186,"./Canister.js":491,"./ChemDispenser.js":492,"./ChemMaster.js":496,"./Cleanbot.js":497,"./CloningConsole.js":498,"./ColorMate.js":499,"./CommunicationsConsole.js":188,"./Communicator.js":500,"./ComputerFabricator.js":501,"./CookingAppliance.js":502,"./CrewManifest.js":94,"./CrewMonitor.js":189,"./Cryo.js":503,"./CryoStorage.js":190,"./CryoStorageVr.js":504,"./DNAForensics.js":505,"./DNAModifier.js":506,"./DestinationTagger.js":507,"./DiseaseSplicer.js":508,"./DishIncubator.js":509,"./DisposalBin.js":510,"./DroneConsole.js":511,"./EmbeddedController.js":512,"./ExonetNode.js":513,"./ExosuitFabricator.js":132,"./Farmbot.js":514,"./Fax.js":515,"./FileCabinet.js":516,"./Floorbot.js":517,"./GasPump.js":518,"./GasTemperatureSystem.js":519,"./GeneralAtmoControl.js":520,"./GeneralRecords.js":521,"./Gps.js":522,"./GravityGenerator.js":523,"./GuestPass.js":524,"./Holodeck.js":525,"./ICAssembly.js":526,"./ICCircuit.js":527,"./ICDetailer.js":528,"./ICPrinter.js":529,"./IDCard.js":530,"./IdentificationComputer.js":133,"./InventoryPanel.js":531,"./InventoryPanelHuman.js":532,"./IsolationCentrifuge.js":533,"./JanitorCart.js":534,"./Jukebox.js":535,"./LawManager.js":536,"./LookingGlass.js":537,"./MechaControlConsole.js":538,"./Medbot.js":539,"./MedicalRecords.js":540,"./MessageMonitor.js":541,"./Microwave.js":542,"./MiningOreProcessingConsole.js":543,"./MiningStackingConsole.js":544,"./MiningVendor.js":545,"./MuleBot.js":546,"./NIF.js":547,"./NTNetRelay.js":548,"./Newscaster.js":549,"./NoticeBoard.js":550,"./NtosAccessDecrypter.js":551,"./NtosArcade.js":552,"./NtosAtmosControl.js":553,"./NtosCameraConsole.js":554,"./NtosCommunicationsConsole.js":555,"./NtosConfiguration.js":556,"./NtosCrewMonitor.js":557,"./NtosDigitalWarrant.js":558,"./NtosEmailAdministration.js":559,"./NtosEmailClient.js":193,"./NtosFileManager.js":560,"./NtosIdentificationComputer.js":561,"./NtosMain.js":562,"./NtosNetChat.js":563,"./NtosNetDos.js":564,"./NtosNetDownloader.js":565,"./NtosNetMonitor.js":566,"./NtosNetTransfer.js":567,"./NtosNewsBrowser.js":568,"./NtosOvermapNavigation.js":569,"./NtosPowerMonitor.js":570,"./NtosRCON.js":571,"./NtosRevelation.js":572,"./NtosShutoffMonitor.js":573,"./NtosStationAlertConsole.js":574,"./NtosSupermatterMonitor.js":575,"./NtosUAV.js":576,"./NtosWordProcessor.js":577,"./OmniFilter.js":578,"./OmniMixer.js":579,"./OperatingComputer.js":580,"./OvermapDisperser.js":581,"./OvermapEngines.js":582,"./OvermapHelm.js":583,"./OvermapNavigation.js":194,"./OvermapShieldGenerator.js":584,"./OvermapShipSensors.js":585,"./ParticleAccelerator.js":586,"./PartsLathe.js":587,"./PathogenicIsolator.js":588,"./Pda.js":589,"./Photocopier.js":604,"./PipeDispenser.js":605,"./PlantAnalyzer.js":606,"./PointDefenseControl.js":607,"./PortableGenerator.js":608,"./PortablePump.js":609,"./PortableScrubber.js":610,"./PortableTurret.js":611,"./PowerMonitor.js":135,"./PressureRegulator.js":612,"./PrisonerManagement.js":613,"./RCON.js":195,"./RIGSuit.js":614,"./Radio.js":615,"./RapidPipeDispenser.js":200,"./RequestConsole.js":616,"./ResearchConsole.js":617,"./ResearchServerController.js":618,"./ResleevingConsole.js":619,"./ResleevingPod.js":620,"./RoboticsControlConsole.js":621,"./RogueZones.js":622,"./Secbot.js":623,"./SecurityRecords.js":624,"./SeedStorage.js":625,"./ShieldCapacitor.js":626,"./ShieldGenerator.js":627,"./ShutoffMonitor.js":196,"./ShuttleControl.js":628,"./Signaler.js":199,"./Sleeper.js":629,"./SmartVend.js":630,"./Smes.js":631,"./SolarControl.js":632,"./SpaceHeater.js":633,"./Stack.js":634,"./StationAlertConsole.js":197,"./SuitCycler.js":635,"./SuitStorageUnit.js":636,"./SupermatterMonitor.js":198,"./SupplyConsole.js":637,"./TEGenerator.js":638,"./Tank.js":639,"./TankDispenser.js":640,"./TelecommsLogBrowser.js":641,"./TelecommsMachineBrowser.js":642,"./TelecommsMultitoolMenu.js":643,"./Teleporter.js":644,"./TelesciConsole.js":645,"./TimeClock.js":646,"./TransferValve.js":647,"./TurbineControl.js":648,"./Turbolift.js":649,"./Uplink.js":650,"./Vending.js":651,"./VolumePanel.js":652,"./VorePanel.js":653,"./Wires.js":654,"./XenoarchArtifactAnalyzer.js":655,"./XenoarchArtifactHarvester.js":656,"./XenoarchDepthScanner.js":657,"./XenoarchHandheldPowerUtilizer.js":658,"./XenoarchReplicator.js":659,"./XenoarchSpectrometer.js":660,"./XenoarchSuspension.js":661,"./pAIAtmos.js":662,"./pAIDirectives.js":663,"./pAIDoorjack.js":664,"./pAIInterface.js":665,"./pAIMedrecords.js":666,"./pAISecrecords.js":667};function r(e){var t=a(e);return n(t)}function a(e){if(!n.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}r.keys=function(){return Object.keys(o)},r.resolve=a,e.exports=r,r.id=461},function(e,t,n){"use strict";t.__esModule=!0,t.AICard=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.AICard=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.has_ai,u=l.integrity,s=l.backup_capacitor,m=l.flushing,p=l.has_laws,h=l.laws,f=l.wireless,C=l.radio;if(0===d)return(0,o.createComponentVNode)(2,i.Window,{width:600,height:470,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createVNode)(1,"h3",null,"No AI detected.",16)})})})});var N=null;N=u>=75?"green":u>=25?"yellow":"red";var b=null;return s>=75&&(b="green"),b=s>=25?"yellow":"red",(0,o.createComponentVNode)(2,i.Window,{width:600,height:470,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,display:"inline-block",children:(0,o.createVNode)(1,"h3",null,name,0)}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:N,value:u/100})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:b,value:s/100})})]})}),(0,o.createComponentVNode)(2,a.Box,{color:"red",children:(0,o.createVNode)(1,"h2",null,1===m?"Wipe of AI in progress...":"",0)})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Laws",children:!!p&&(0,o.createComponentVNode)(2,a.Box,{children:h.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",children:e},t)}))})||(0,o.createComponentVNode)(2,a.Box,{color:"red",children:(0,o.createVNode)(1,"h3",null,"No laws detected.",16)})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Wireless Activity",children:(0,o.createComponentVNode)(2,a.Button,{icon:f?"check":"times",content:f?"Enabled":"Disabled",color:f?"green":"red",onClick:function(){return c("wireless")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subspace Transceiver",children:(0,o.createComponentVNode)(2,a.Button,{icon:C?"check":"times",content:C?"Enabled":"Disabled",color:C?"green":"red",onClick:function(){return c("radio")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"AI Power",children:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"radiation",confirmIcon:"radiation",disabled:m||0===u,confirmColor:"red",content:"Shutdown",onClick:function(){return c("wipe")}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.APC=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(184),l=n(61);t.APC=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),c=(0,o.createComponentVNode)(2,u);return a.gridCheck?c=(0,o.createComponentVNode)(2,s):a.failTime&&(c=(0,o.createComponentVNode)(2,m)),(0,o.createComponentVNode)(2,i.Window,{width:450,height:475,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:c})})};var d={2:{color:"good",externalPowerText:"External Power",chargingText:"Fully Charged"},1:{color:"average",externalPowerText:"Low External Power",chargingText:"Charging"},0:{color:"bad",externalPowerText:"No External Power",chargingText:"Not Charging"}},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,u=l.locked&&!l.siliconUser,s=(l.normallyLocked,d[l.externalPower]||d[0]),m=d[l.chargingStatus]||d[0],p=l.powerChannels||[],h=l.powerCellStatus/100;return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.InterfaceLockNoticeBox,{deny:l.emagged,denialMessage:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{color:"bad",fontSize:"1.5rem",children:"Fault in ID authenticator."}),(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Please contact maintenance for service."})],4)}),(0,o.createComponentVNode)(2,a.Section,{title:"Power Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Main Breaker",color:s.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:l.isOperating?"power-off":"times",content:l.isOperating?"On":"Off",selected:l.isOperating&&!u,color:l.isOperating?"":"bad",disabled:u,onClick:function(){return i("breaker")}}),children:["[ ",s.externalPowerText," ]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Cell",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:"good",value:h})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Mode",color:m.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:l.chargeMode?"sync":"times",content:l.chargeMode?"Auto":"Off",selected:l.chargeMode,disabled:u,onClick:function(){return i("charge")}}),children:["[ ",m.chargingText," ]"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Power Channels",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[p.map((function(e){var t=e.topicParams;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.title,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{inline:!0,mx:2,color:e.status>=2?"good":"bad",children:e.status>=2?"On":"Off"}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Auto",selected:!u&&(1===e.status||3===e.status),disabled:u,onClick:function(){return i("channel",t.auto)}}),(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:"On",selected:!u&&2===e.status,disabled:u,onClick:function(){return i("channel",t.on)}}),(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Off",selected:!u&&0===e.status,disabled:u,onClick:function(){return i("channel",t.off)}})],4),children:[e.powerLoad," W"]},e.title)})),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Load",children:l.totalCharging?(0,o.createVNode)(1,"b",null,[l.totalLoad,(0,o.createTextVNode)(" W (+ "),l.totalCharging,(0,o.createTextVNode)(" W charging)")],0):(0,o.createVNode)(1,"b",null,[l.totalLoad,(0,o.createTextVNode)(" W")],0)})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Misc",buttons:!!l.siliconUser&&(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:"Overload",onClick:function(){return i("overload")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cover Lock",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:l.coverLocked?"lock":"unlock",content:l.coverLocked?"Engaged":"Disengaged",selected:l.coverLocked,disabled:u,onClick:function(){return i("cover")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Night Shift Lighting",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:"Disabled",selected:2===l.nightshiftSetting,onClick:function(){return i("nightshift",{nightshift:2})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:"Automatic",selected:1===l.nightshiftSetting,onClick:function(){return i("nightshift",{nightshift:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:"Enabled",selected:3===l.nightshiftSetting,onClick:function(){return i("nightshift",{nightshift:3})}})],4)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Emergency Lighting",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:l.emergencyLights?"Enabled":"Disabled",selected:l.emergencyLights,onClick:function(){return i("emergency_lighting")}})})]})})],4)},s=function(e,t){return(0,o.createComponentVNode)(2,l.FullscreenNotice,{title:"System Failure",children:[(0,o.createComponentVNode)(2,a.Box,{fontSize:"1.5rem",bold:!0,children:(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",verticalAlign:"middle",size:3,mr:"1rem"})}),(0,o.createComponentVNode)(2,a.Box,{fontSize:"1.5rem",bold:!0,children:"Power surge detected, grid check in effect..."})]})},m=function(e,t){var n=(0,r.useBackend)(t),i=n.data,c=n.act,l=(0,o.createComponentVNode)(2,a.Button,{icon:"repeat",content:"Restart Now",color:"good",onClick:function(){return c("reboot")}});return i.locked&&!i.siliconUser&&(l=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Swipe an ID card for manual reboot."})),(0,o.createComponentVNode)(2,a.Dimmer,{textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:(0,o.createVNode)(1,"h1",null,"SYSTEM FAILURE",16)}),(0,o.createComponentVNode)(2,a.Box,{color:"average",children:(0,o.createVNode)(1,"h2",null,"I/O regulators malfunction detected! Waiting for system reboot...",16)}),(0,o.createComponentVNode)(2,a.Box,{color:"good",children:["Automatic reboot in ",i.failTime," seconds..."]}),(0,o.createComponentVNode)(2,a.Box,{mt:4,children:l})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.AccountsTerminal=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.AccountsTerminal=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.id_inserted,s=d.id_card,m=d.access_level,p=d.machine_id;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:640,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Machine",color:"average",children:p}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID",children:(0,o.createComponentVNode)(2,a.Button,{icon:u?"eject":"sign-in-alt",fluid:!0,content:s,onClick:function(){return l("insert_card")}})})]})}),m>0&&(0,o.createComponentVNode)(2,c)]})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,s=c.creating_new_account,m=c.detailed_account_view;return(0,o.createComponentVNode)(2,a.Section,{title:"Menu",children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:!s&&!m,icon:"home",onClick:function(){return i("view_accounts_list")},children:"Home"}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:s,icon:"cog",onClick:function(){return i("create_account")},children:"New Account"}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{disabled:s,icon:"print",onClick:function(){return i("print")},children:"Print"})]}),s&&(0,o.createComponentVNode)(2,l)||m&&(0,o.createComponentVNode)(2,d)||(0,o.createComponentVNode)(2,u)]})},l=function(e,t){var n=(0,r.useBackend)(t).act,i=(0,r.useSharedState)(t,"holder",""),c=i[0],l=i[1],d=(0,r.useSharedState)(t,"money",""),u=d[0],s=d[1];return(0,o.createComponentVNode)(2,a.Section,{title:"Create Account",level:2,children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account Holder",children:(0,o.createComponentVNode)(2,a.Input,{value:c,fluid:!0,onInput:function(e,t){return l(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Initial Deposit",children:(0,o.createComponentVNode)(2,a.Input,{value:u,fluid:!0,onInput:function(e,t){return s(t)}})})]}),(0,o.createComponentVNode)(2,a.Button,{disabled:!c||!u,mt:1,fluid:!0,icon:"plus",onClick:function(){return n("finalise_create_account",{holder_name:c,starting_funds:u})},content:"Create"})]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.access_level,d=c.station_account_number,u=c.account_number,s=c.owner_name,m=c.money,p=c.suspended,h=c.transactions;return(0,o.createComponentVNode)(2,a.Section,{title:"Account Details",level:2,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"ban",selected:p,content:"Suspend",onClick:function(){return i("toggle_suspension")}}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account Number",children:["#",u]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Holder",children:s}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Balance",children:[m,"\u20ae"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:p?"bad":"good",children:p?"SUSPENDED":"Active"})]}),(0,o.createComponentVNode)(2,a.Section,{title:"CentCom Administrator",level:2,mt:1,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Payroll",children:(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"bad",fluid:!0,icon:"ban",confirmIcon:"ban",content:"Revoke",confirmContent:"This cannot be undone.",disabled:u===d,onClick:function(){return i("revoke_payroll")}})})})}),l>=2&&(0,o.createComponentVNode)(2,a.Section,{title:"Silent Funds Transfer",level:2,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("add_funds")},content:"Add Funds"}),(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("remove_funds")},content:"Remove Funds"})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Transactions",level:2,mt:1,children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Timestamp"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Target"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Reason"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Value"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Terminal"})]}),h.map((function(e,t){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:[e.date," ",e.time]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.target_name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.purpose}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[e.amount,"\u20ae"]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.source_terminal})]},t)}))]})})]})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.accounts;return(0,o.createComponentVNode)(2,a.Section,{title:"NanoTrasen Accounts",level:2,children:c.length&&(0,o.createComponentVNode)(2,a.LabeledList,{children:c.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.owner_name+e.suspended,color:e.suspended?"bad":null,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,content:"#"+e.account_number,onClick:function(){return i("view_account_detail",{account_index:e.account_index})}})},e.account_index)}))})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"There are no accounts available."})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AgentCard=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.AgentCard=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.entries,u=l.electronic_warfare;return(0,o.createComponentVNode)(2,i.Window,{width:550,height:400,theme:"syndicate",children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Info",children:(0,o.createComponentVNode)(2,a.Table,{children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c(e.name.toLowerCase().replace(/ /g,""))},icon:"cog"})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.value})]},e.name)}))})}),(0,o.createComponentVNode)(2,a.Section,{title:"Electronic Warfare",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{checked:u,content:u?"Electronic warfare is enabled. This will prevent you from being tracked by the AI.":"Electronic warfare disabled.",onClick:function(){return c("electronic_warfare")}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AiAirlock=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c={2:{color:"good",localStatusText:"Optimal"},1:{color:"average",localStatusText:"Caution"},0:{color:"bad",localStatusText:"Offline"}};t.AiAirlock=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=c[d.power.main]||c[0],s=c[d.power.backup]||c[0],m=c[d.shock]||c[0];return(0,o.createComponentVNode)(2,i.Window,{width:500,height:390,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Power Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Main",color:u.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",disabled:!d.power.main,content:"Disrupt",onClick:function(){return l("disrupt-main")}}),children:[d.power.main?"Online":"Offline"," ",d.wires.main_1&&d.wires.main_2?d.power.main_timeleft>0&&"["+d.power.main_timeleft+"s]":"[Wires have been cut!]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Backup",color:s.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",disabled:!d.power.backup,content:"Disrupt",onClick:function(){return l("disrupt-backup")}}),children:[d.power.backup?"Online":"Offline"," ",d.wires.backup_1&&d.wires.backup_2?d.power.backup_timeleft>0&&"["+d.power.backup_timeleft+"s]":"[Wires have been cut!]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Electrify",color:m.color,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",disabled:!(d.wires.shock&&0===d.shock),content:"Restore",onClick:function(){return l("shock-restore")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bolt",disabled:!d.wires.shock,content:"Temporary",onClick:function(){return l("shock-temp")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bolt",disabled:!d.wires.shock,content:"Permanent",onClick:function(){return l("shock-perm")}})],4),children:[2===d.shock?"Safe":"Electrified"," ",(d.wires.shock?d.shock_timeleft>0&&"["+d.shock_timeleft+"s]":"[Wires have been cut!]")||-1===d.shock_timeleft&&"[Permanent]"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Access and Door Control",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID Scan",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.id_scanner?"power-off":"times",content:d.id_scanner?"Enabled":"Disabled",selected:d.id_scanner,disabled:!d.wires.id_scanner,onClick:function(){return l("idscan-toggle")}}),children:!d.wires.id_scanner&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Bolts",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.locked?"lock":"unlock",content:d.locked?"Lowered":"Raised",selected:d.locked,disabled:!d.wires.bolts,onClick:function(){return l("bolt-toggle")}}),children:!d.wires.bolts&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Bolt Lights",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.lights?"power-off":"times",content:d.lights?"Enabled":"Disabled",selected:d.lights,disabled:!d.wires.lights,onClick:function(){return l("light-toggle")}}),children:!d.wires.lights&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Force Sensors",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.safe?"power-off":"times",content:d.safe?"Enabled":"Disabled",selected:d.safe,disabled:!d.wires.safe,onClick:function(){return l("safe-toggle")}}),children:!d.wires.safe&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Timing Safety",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.speed?"power-off":"times",content:d.speed?"Enabled":"Disabled",selected:d.speed,disabled:!d.wires.timing,onClick:function(){return l("speed-toggle")}}),children:!d.wires.timing&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Control",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.opened?"sign-out-alt":"sign-in-alt",content:d.opened?"Open":"Closed",selected:d.opened,disabled:d.locked||d.welded,onClick:function(){return l("open-close")}}),children:!(!d.locked&&!d.welded)&&(0,o.createVNode)(1,"span",null,[(0,o.createTextVNode)("[Door is "),d.locked?"bolted":"",d.locked&&d.welded?" and ":"",d.welded?"welded":"",(0,o.createTextVNode)("!]")],0)})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AiRestorerContent=t.AiRestorer=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.AiRestorer=function(){return(0,o.createComponentVNode)(2,i.Window,{width:370,height:360,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,c)})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.AI_present,d=c.error,u=c.name,s=c.laws,m=c.isDead,p=c.restoring,h=c.health,f=c.ejectable;return(0,o.createFragment)([d&&(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:d}),!!f&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:l?u:"----------",disabled:!l,onClick:function(){return i("PRG_eject")}}),!!l&&(0,o.createComponentVNode)(2,a.Section,{title:f?"System Status":u,buttons:(0,o.createComponentVNode)(2,a.Box,{inline:!0,bold:!0,color:m?"bad":"good",children:m?"Nonfunctional":"Functional"}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:h,minValue:0,maxValue:100,ranges:{good:[70,Infinity],average:[50,70],bad:[-Infinity,50]}})})}),!!p&&(0,o.createComponentVNode)(2,a.Box,{bold:!0,textAlign:"center",fontSize:"20px",color:"good",mt:1,children:"RECONSTRUCTION IN PROGRESS"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"plus",content:"Begin Reconstruction",disabled:p,mt:1,onClick:function(){return i("PRG_beginReconstruction")}}),(0,o.createComponentVNode)(2,a.Section,{title:"Laws",level:2,children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{className:"candystripe",children:e},e)}))})]})],0)};t.AiRestorerContent=c},function(e,t,n){"use strict";t.__esModule=!0,t.AiSupermatter=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=(n(20),n(61));t.AiSupermatter=function(e,t){var n=(0,r.useBackend)(t).data,a=(n.integrity_percentage,n.ambient_temp,n.ambient_pressure,n.detonating),c=(0,o.createComponentVNode)(2,d);return a&&(c=(0,o.createComponentVNode)(2,l)),(0,o.createComponentVNode)(2,i.Window,{width:500,height:300,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:c})})};var l=function(e,t){return(0,o.createComponentVNode)(2,c.FullscreenNotice,{title:"DETONATION IMMINENT",children:(0,o.createComponentVNode)(2,a.Box,{fontSize:"1.5rem",bold:!0,color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{color:"bad",name:"exclamation-triangle",verticalAlign:"middle",size:3,mr:"1rem"}),(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"CRYSTAL DELAMINATING"}),(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Evacuate area immediately"})]})})},d=function(e,t){var n=(0,r.useBackend)(t).data,i=n.integrity_percentage,c=n.ambient_temp,l=n.ambient_pressure;return(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Crystal Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:i,maxValue:100,ranges:{good:[90,Infinity],average:[25,90],bad:[-Infinity,25]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Environment Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:c,maxValue:1e4,ranges:{bad:[5e3,Infinity],average:[4e3,5e3],good:[-Infinity,4e3]},children:[c," K"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Environment Pressure",children:[l," kPa"]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AirAlarm=void 0;var o=n(0),r=n(5),a=(n(7),n(1)),i=n(2),c=n(28),l=n(3),d=n(184),u=n(470);t.AirAlarm=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),i=r.locked&&!r.siliconUser&&!r.remoteUser;return(0,o.createComponentVNode)(2,l.Window,{width:440,height:650,resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d.InterfaceLockNoticeBox),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m),!i&&(0,o.createComponentVNode)(2,h)]})})};var s=function(e,t){var n=(0,a.useBackend)(t).data,l=(n.environment_data||[]).filter((function(e){return e.value>=.01})),d={0:{color:"good",localStatusText:"Optimal"},1:{color:"average",localStatusText:"Caution"},2:{color:"bad",localStatusText:"Danger (Internals Required)"}},u=d[n.danger_level]||d[0];return(0,o.createComponentVNode)(2,i.Section,{title:"Air Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[l.length>0&&(0,o.createFragment)([l.map((function(e){var t=d[e.danger_level]||d[0];return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:(0,c.getGasLabel)(e.name),color:t.color,children:[(0,r.toFixed)(e.value,2),e.unit]},e.name)})),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Local status",color:u.color,children:u.localStatusText}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Area status",color:n.atmos_alarm||n.fire_alarm?"bad":"good",children:(n.atmos_alarm?"Atmosphere Alarm":n.fire_alarm&&"Fire Alarm")||"Nominal"})],0)||(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Warning",color:"bad",children:"Cannot obtain air sample for analysis."}),!!n.emagged&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Warning",color:"bad",children:"Safety measures offline. Device may exhibit abnormal behavior."})]})})},m=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.target_temperature,d=c.rcon;return(0,o.createComponentVNode)(2,i.Section,{title:"Comfort Settings",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Remote Control",children:[(0,o.createComponentVNode)(2,i.Button,{selected:1===d,content:"Off",onClick:function(){return r("rcon",{rcon:1})}}),(0,o.createComponentVNode)(2,i.Button,{selected:2===d,content:"Auto",onClick:function(){return r("rcon",{rcon:2})}}),(0,o.createComponentVNode)(2,i.Button,{selected:3===d,content:"On",onClick:function(){return r("rcon",{rcon:3})}})]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Thermostat",children:(0,o.createComponentVNode)(2,i.Button,{content:l,onClick:function(){return r("temperature")}})})]})})},p={home:{title:"Air Controls",component:function(){return f}},vents:{title:"Vent Controls",component:function(){return C}},scrubbers:{title:"Scrubber Controls",component:function(){return N}},modes:{title:"Operating Mode",component:function(){return b}},thresholds:{title:"Alarm Thresholds",component:function(){return V}}},h=function(e,t){var n=(0,a.useLocalState)(t,"screen"),r=n[0],c=n[1],l=p[r]||p.home,d=l.component();return(0,o.createComponentVNode)(2,i.Section,{title:l.title,buttons:r&&(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return c()}}),children:(0,o.createComponentVNode)(2,d)})},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=(0,a.useLocalState)(t,"screen"),d=(l[0],l[1]),u=c.mode,s=c.atmos_alarm;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:s?"exclamation-triangle":"exclamation",color:s&&"caution",content:"Area Atmosphere Alarm",onClick:function(){return r(s?"reset":"alarm")}}),(0,o.createComponentVNode)(2,i.Box,{mt:1}),(0,o.createComponentVNode)(2,i.Button,{icon:3===u?"exclamation-triangle":"exclamation",color:3===u&&"danger",content:"Panic Siphon",onClick:function(){return r("mode",{mode:3===u?1:3})}}),(0,o.createComponentVNode)(2,i.Box,{mt:2}),(0,o.createComponentVNode)(2,i.Button,{icon:"sign-out-alt",content:"Vent Controls",onClick:function(){return d("vents")}}),(0,o.createComponentVNode)(2,i.Box,{mt:1}),(0,o.createComponentVNode)(2,i.Button,{icon:"filter",content:"Scrubber Controls",onClick:function(){return d("scrubbers")}}),(0,o.createComponentVNode)(2,i.Box,{mt:1}),(0,o.createComponentVNode)(2,i.Button,{icon:"cog",content:"Operating Mode",onClick:function(){return d("modes")}}),(0,o.createComponentVNode)(2,i.Box,{mt:1}),(0,o.createComponentVNode)(2,i.Button,{icon:"chart-bar",content:"Alarm Thresholds",onClick:function(){return d("thresholds")}})],4)},C=function(e,t){var n=(0,a.useBackend)(t).data.vents;return n&&0!==n.length?n.map((function(e){return(0,o.createComponentVNode)(2,u.Vent,{vent:e},e.id_tag)})):"Nothing to show"},N=function(e,t){var n=(0,a.useBackend)(t).data.scrubbers;return n&&0!==n.length?n.map((function(e){return(0,o.createComponentVNode)(2,u.Scrubber,{scrubber:e},e.id_tag)})):"Nothing to show"},b=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.modes;return c&&0!==c.length?c.map((function(e){return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:e.selected?"check-square-o":"square-o",selected:e.selected,color:e.selected&&e.danger&&"danger",content:e.name,onClick:function(){return r("mode",{mode:e.mode})}}),(0,o.createComponentVNode)(2,i.Box,{mt:1})],4,e.mode)})):"Nothing to show"},V=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data.thresholds;return(0,o.createVNode)(1,"table","LabeledList",[(0,o.createVNode)(1,"thead",null,(0,o.createVNode)(1,"tr",null,[(0,o.createVNode)(1,"td"),(0,o.createVNode)(1,"td","color-bad","min2",16),(0,o.createVNode)(1,"td","color-average","min1",16),(0,o.createVNode)(1,"td","color-average","max1",16),(0,o.createVNode)(1,"td","color-bad","max2",16)],4),2),(0,o.createVNode)(1,"tbody",null,d.map((function(e){return(0,o.createVNode)(1,"tr",null,[(0,o.createVNode)(1,"td","LabeledList__label",(0,o.createVNode)(1,"span","color-"+(0,c.getGasColor)(e.name),(0,c.getGasLabel)(e.name),0),2),e.settings.map((function(e){return(0,o.createVNode)(1,"td",null,(0,o.createComponentVNode)(2,i.Button,{content:(0,r.toFixed)(e.selected,2),onClick:function(){return l("threshold",{env:e.env,"var":e.val})}}),2,null,e.val)}))],0,null,e.name)})),0)],4,{style:{width:"100%"}})}},function(e,t,n){"use strict";t.__esModule=!0,t.Scrubber=t.Vent=void 0;var o=n(0),r=n(7),a=n(1),i=n(2);n(28);t.Vent=function(e,t){var n=e.vent,c=(0,a.useBackend)(t).act,l=n.id_tag,d=n.long_name,u=n.power,s=n.checks,m=n.excheck,p=n.incheck,h=n.direction,f=n.external,C=n.internal,N=n.extdefault,b=n.intdefault;return(0,o.createComponentVNode)(2,i.Section,{level:2,title:(0,r.decodeHtmlEntities)(d),buttons:(0,o.createComponentVNode)(2,i.Button,{icon:u?"power-off":"times",selected:u,content:u?"On":"Off",onClick:function(){return c("power",{id_tag:l,val:Number(!u)})}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mode",children:(0,o.createComponentVNode)(2,i.Button,{icon:"sign-in-alt",content:"siphon"!==h?"Pressurizing":"Siphoning",color:"siphon"===h&&"danger",onClick:function(){return c("direction",{id_tag:l,val:Number("siphon"===h)})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pressure Regulator",children:[(0,o.createComponentVNode)(2,i.Button,{icon:"sign-in-alt",content:"Internal",selected:p,onClick:function(){return c("incheck",{id_tag:l,val:s})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"sign-out-alt",content:"External",selected:m,onClick:function(){return c("excheck",{id_tag:l,val:s})}})]}),!!p&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Internal Target",children:[(0,o.createComponentVNode)(2,i.NumberInput,{value:Math.round(C),unit:"kPa",width:"75px",minValue:0,step:10,maxValue:5066,onChange:function(e,t){return c("set_internal_pressure",{id_tag:l,value:t})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"undo",disabled:b,content:"Reset",onClick:function(){return c("reset_internal_pressure",{id_tag:l})}})]}),!!m&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"External Target",children:[(0,o.createComponentVNode)(2,i.NumberInput,{value:Math.round(f),unit:"kPa",width:"75px",minValue:0,step:10,maxValue:5066,onChange:function(e,t){return c("set_external_pressure",{id_tag:l,value:t})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"undo",disabled:N,content:"Reset",onClick:function(){return c("reset_external_pressure",{id_tag:l})}})]})]})})};t.Scrubber=function(e,t){var n=e.scrubber,c=(0,a.useBackend)(t).act,l=n.long_name,d=n.power,u=n.scrubbing,s=n.id_tag,m=(n.widenet,n.filters);return(0,o.createComponentVNode)(2,i.Section,{level:2,title:(0,r.decodeHtmlEntities)(l),buttons:(0,o.createComponentVNode)(2,i.Button,{icon:d?"power-off":"times",content:d?"On":"Off",selected:d,onClick:function(){return c("power",{id_tag:s,val:Number(!d)})}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mode",children:(0,o.createComponentVNode)(2,i.Button,{icon:u?"filter":"sign-in-alt",color:u||"danger",content:u?"Scrubbing":"Siphoning",onClick:function(){return c("scrubbing",{id_tag:s,val:Number(!u)})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Filters",children:u&&m.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{icon:e.val?"check-square-o":"square-o",content:e.name,title:e.name,selected:e.val,onClick:function(){return c(e.command,{id_tag:s,val:!e.val})}},e.name)}))||"N/A"})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AlgaeFarm=void 0;var o=n(0),r=n(1),a=n(2),i=(n(20),n(3)),c=(n(5),n(7));t.AlgaeFarm=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.usePower,s=d.materials,m=d.last_flow_rate,p=d.last_power_draw,h=d.inputDir,f=d.outputDir,C=d.input,N=d.output,b=d.errorText;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:300,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[b&&(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",verticalAlign:"middle",children:b})}),(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:"Processing",selected:2===u,onClick:function(){return l("toggle")}}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate",children:[m," L/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Draw",children:[p," W"]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider,{size:1}),s.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:(0,c.capitalize)(e.display),children:[(0,o.createComponentVNode)(2,a.ProgressBar,{width:"80%",value:e.qty,maxValue:e.max,children:[e.qty,"/",e.max]}),(0,o.createComponentVNode)(2,a.Button,{ml:1,content:"Eject",onClick:function(){return l("ejectMaterial",{mat:e.name})}})]},e.name)}))]}),(0,o.createComponentVNode)(2,a.Table,{mt:1,children:(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Gas Input ("+h+")",children:C?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Pressure",children:[C.pressure," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:C.name,children:[C.percent,"% (",C.moles," moles)"]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No connection detected."})})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Gas Output ("+f+")",children:N?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Pressure",children:[N.pressure," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:N.name,children:[N.percent,"% (",N.moles," moles)"]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No connection detected."})})})]})})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AppearanceChanger=void 0;var o=n(0),r=n(9),a=n(7),i=n(1),c=n(2),l=n(3);t.AppearanceChanger=function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.config),h=n.data,f=h.name,C=h.specimen,N=h.gender,b=h.gender_id,V=h.hair_style,g=h.facial_hair_style,v=h.change_race,k=h.change_gender,_=h.change_eye_color,y=h.change_skin_tone,L=h.change_skin_color,B=h.change_hair_color,x=h.change_facial_hair_color,w=h.change_hair,S=h.change_facial_hair,I=h.mapRef,T=r.title,A=_||y||L||B||x,E=-1;v?E=0:k?E=1:A?E=2:w?E=4:S&&(E=5);var M=(0,i.useLocalState)(t,"tabIndex",E),P=M[0],O=M[1];return(0,o.createComponentVNode)(2,l.Window,{width:700,height:650,title:(0,a.decodeHtmlEntities)(T),children:(0,o.createComponentVNode)(2,l.Window.Content,{children:[(0,o.createComponentVNode)(2,c.Section,{title:"Reflection",children:(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,c.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:f}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Species",color:v?null:"grey",children:C}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Biological Sex",color:k?null:"grey",children:N?(0,a.capitalize)(N):"Not Set"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Gender Identity",color:A?null:"grey",children:b?(0,a.capitalize)(b):"Not Set"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Hair Style",color:w?null:"grey",children:V?(0,a.capitalize)(V):"Not Set"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Facial Hair Style",color:S?null:"grey",children:g?(0,a.capitalize)(g):"Not Set"})]})}),(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.ByondUi,{style:{width:"256px",height:"256px"},params:{id:I,type:"map"}})})]})}),(0,o.createComponentVNode)(2,c.Tabs,{children:[v?(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:0===P,onClick:function(){return O(0)},children:"Race"}):null,k?(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:1===P,onClick:function(){return O(1)},children:"Gender & Sex"}):null,A?(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:2===P,onClick:function(){return O(2)},children:"Colors"}):null,w?(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:3===P,onClick:function(){return O(3)},children:"Hair"}):null,S?(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:4===P,onClick:function(){return O(4)},children:"Facial Hair"}):null]}),(0,o.createComponentVNode)(2,c.Box,{height:"43%",children:[v&&0===P?(0,o.createComponentVNode)(2,d):null,k&&1===P?(0,o.createComponentVNode)(2,u):null,A&&2===P?(0,o.createComponentVNode)(2,s):null,w&&3===P?(0,o.createComponentVNode)(2,m):null,S&&4===P?(0,o.createComponentVNode)(2,p):null]})]})})};var d=function(e,t){var n=(0,i.useBackend)(t),a=n.act,l=n.data,d=l.species,u=l.specimen,s=(0,r.sortBy)((function(e){return e.specimen}))(d||[]);return(0,o.createComponentVNode)(2,c.Section,{title:"Species",fill:!0,scrollable:!0,children:s.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{content:e.specimen,selected:u===e.specimen,onClick:function(){return a("race",{race:e.specimen})}},e.specimen)}))})},u=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=a.gender,d=a.gender_id,u=a.genders,s=a.id_genders;return(0,o.createComponentVNode)(2,c.Section,{title:"Gender & Sex",fill:!0,scrollable:!0,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Biological Sex",children:u.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{selected:e.gender_key===l,content:e.gender_name,onClick:function(){return r("gender",{gender:e.gender_key})}},e.gender_key)}))}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Gender Identity",children:s.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{selected:e.gender_key===d,content:e.gender_name,onClick:function(){return r("gender_id",{gender_id:e.gender_key})}},e.gender_key)}))})]})})},s=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=a.change_eye_color,d=a.change_skin_tone,u=a.change_skin_color,s=a.change_hair_color,m=a.change_facial_hair_color,p=a.eye_color,h=a.skin_color,f=a.hair_color,C=a.facial_hair_color;return(0,o.createComponentVNode)(2,c.Section,{title:"Colors",fill:!0,scrollable:!0,children:[l?(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:p,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Eye Color",onClick:function(){return r("eye_color")}})]}):null,d?(0,o.createComponentVNode)(2,c.Box,{children:(0,o.createComponentVNode)(2,c.Button,{content:"Change Skin Tone",onClick:function(){return r("skin_tone")}})}):null,u?(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:h,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Skin Color",onClick:function(){return r("skin_color")}})]}):null,s?(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:f,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Hair Color",onClick:function(){return r("hair_color")}})]}):null,m?(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:C,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Facial Hair Color",onClick:function(){return r("facial_hair_color")}})]}):null]})},m=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=a.hair_style,d=a.hair_styles;return(0,o.createComponentVNode)(2,c.Section,{title:"Hair",fill:!0,scrollable:!0,children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return r("hair",{hair:e.hairstyle})},selected:e.hairstyle===l,content:e.hairstyle},e.hairstyle)}))})},p=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=a.facial_hair_style,d=a.facial_hair_styles;return(0,o.createComponentVNode)(2,c.Section,{title:"Facial Hair",fill:!0,scrollable:!0,children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return r("facial_hair",{facial_hair:e.facialhairstyle})},selected:e.facialhairstyle===l,content:e.facialhairstyle},e.facialhairstyle)}))})}},function(e,t,n){"use strict";t.__esModule=!0,t.ArcadeBattle=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.ArcadeBattle=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=(l.name,l.temp),u=l.enemyAction,s=l.enemyName,m=l.playerHP,p=l.playerMP,h=l.enemyHP,f=(l.enemyMP,l.gameOver);return(0,o.createComponentVNode)(2,i.Window,{width:400,height:240,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:s,textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Section,{color:"label",children:[(0,o.createComponentVNode)(2,a.Box,{children:d}),(0,o.createComponentVNode)(2,a.Box,{children:!f&&u})]}),(0,o.createComponentVNode)(2,a.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Player Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,minValue:0,maxValue:30,ranges:{olive:[31,Infinity],good:[20,31],average:[10,20],bad:[-Infinity,10]},children:[m,"HP"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Player Magic",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:p,minValue:0,maxValue:10,ranges:{purple:[11,Infinity],violet:[3,11],bad:[-Infinity,3]},children:[p,"MP"]})})]})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Enemy HP",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:h,minValue:0,maxValue:45,ranges:{olive:[31,Infinity],good:[20,31],average:[10,20],bad:[-Infinity,10]},children:[h,"HP"]})})})})]}),f&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:1,color:"green",content:"New Game",onClick:function(){return c("newgame")}})||(0,o.createComponentVNode)(2,a.Flex,{mt:2,justify:"space-between",spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"fist-raised",tooltip:"Go in for the kill!",tooltipPosition:"top",onClick:function(){return c("attack")},content:"Attack!"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"band-aid",tooltip:"Heal yourself!",tooltipPosition:"top",onClick:function(){return c("heal")},content:"Heal!"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"magic",tooltip:"Recharge your magic!",tooltipPosition:"top",onClick:function(){return c("charge")},content:"Recharge!"})})]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AreaScrubberControl=void 0;var o=n(0),r=n(2),a=n(1),i=n(3),c=n(7);t.AreaScrubberControl=function(e,t){var n=(0,a.useBackend)(t),c=n.act,d=n.data,u=(0,a.useLocalState)(t,"showArea",!1),s=u[0],m=u[1],p=d.scrubbers;return p?(0,o.createComponentVNode)(2,i.Window,{width:600,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,r.Section,{children:[(0,o.createComponentVNode)(2,r.Flex,{wrap:"wrap",children:[(0,o.createComponentVNode)(2,r.Flex.Item,{m:"2px",basis:"49%",children:(0,o.createComponentVNode)(2,r.Button,{textAlign:"center",fluid:!0,icon:"search",content:"Scan",onClick:function(){return c("scan")}})}),(0,o.createComponentVNode)(2,r.Flex.Item,{m:"2px",basis:"49%",grow:1,children:(0,o.createComponentVNode)(2,r.Button,{textAlign:"center",fluid:!0,icon:"layer-group",content:"Show Areas",selected:s,onClick:function(){return m(!s)}})}),(0,o.createComponentVNode)(2,r.Flex.Item,{m:"2px",basis:"49%",children:(0,o.createComponentVNode)(2,r.Button,{textAlign:"center",fluid:!0,icon:"toggle-on",content:"All On",onClick:function(){return c("allon")}})}),(0,o.createComponentVNode)(2,r.Flex.Item,{m:"2px",basis:"49%",grow:1,children:(0,o.createComponentVNode)(2,r.Button,{textAlign:"center",fluid:!0,icon:"toggle-off",content:"All Off",onClick:function(){return c("alloff")}})})]}),(0,o.createComponentVNode)(2,r.Flex,{wrap:"wrap",children:p.map((function(e){return(0,o.createComponentVNode)(2,r.Flex.Item,{m:"2px",basis:"32%",children:(0,o.createComponentVNode)(2,l,{scrubber:e,showArea:s})},e.id)}))})]})})}):(0,o.createComponentVNode)(2,r.Section,{title:"Error",children:[(0,o.createComponentVNode)(2,r.Box,{color:"bad",children:"No Scrubbers Detected."}),(0,o.createComponentVNode)(2,r.Button,{fluid:!0,icon:"search",content:"Scan",onClick:function(){return c("scan")}})]})};var l=function(e,t){var n=(0,a.useBackend)(t).act,i=e.scrubber,l=e.showArea;return(0,o.createComponentVNode)(2,r.Section,{title:i.name,children:[(0,o.createComponentVNode)(2,r.Button,{fluid:!0,icon:"power-off",content:i.on?"Enabled":"Disabled",selected:i.on,onClick:function(){return n("toggle",{id:i.id})}}),(0,o.createComponentVNode)(2,r.LabeledList,{children:[(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Pressure",children:[i.pressure," kPa"]}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Flow Rate",children:[i.flow_rate," L/s"]}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Load",children:[i.load," W"]}),l&&(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Area",children:(0,c.toTitleCase)(i.area)})]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.AssemblyInfrared=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.AssemblyInfrared=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.visible;return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Infrared Unit",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Laser",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",fluid:!0,selected:d,onClick:function(){return c("state")},children:d?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Visibility",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eye",fluid:!0,selected:u,onClick:function(){return c("visible")},children:u?"Able to be seen":"Invisible"})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AssemblyProx=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=n(20);t.AssemblyProx=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data,s=u.timing,m=u.time,p=u.range,h=u.maxRange,f=u.scanning;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,i.Section,{title:"Timing Unit",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Timer",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"stopwatch",selected:s,onClick:function(){return d("timing")},children:s?"Counting Down":"Disabled"}),children:(0,o.createComponentVNode)(2,i.NumberInput,{animated:!0,fluid:!0,value:m/10,minValue:0,maxValue:600,format:function(e){return(0,l.formatTime)((0,r.round)(e))},onDrag:function(e,t){return d("set_time",{time:t})}})})})}),(0,o.createComponentVNode)(2,i.Section,{title:"Prox Unit",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Range",children:(0,o.createComponentVNode)(2,i.NumberInput,{minValue:1,value:p,maxValue:h,onDrag:function(e,t){return d("range",{range:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Armed",children:[(0,o.createComponentVNode)(2,i.Button,{mr:1,icon:f?"lock":"lock-open",selected:f,onClick:function(){return d("scanning")},children:f?"ARMED":"Unarmed"}),"Movement sensor is active when armed!"]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AssemblyTimer=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=n(20);t.AssemblyTimer=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data,s=u.timing,m=u.time;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,i.Section,{title:"Timing Unit",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Timer",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"stopwatch",selected:s,onClick:function(){return d("timing")},children:s?"Counting Down":"Disabled"}),children:(0,o.createComponentVNode)(2,i.NumberInput,{animated:!0,fluid:!0,value:m/10,minValue:0,maxValue:600,format:function(e){return(0,l.formatTime)((0,r.round)(e))},onDrag:function(e,t){return d("set_time",{time:t})}})})})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosAlertConsole=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.AtmosAlertConsole=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.priority_alarms||[],u=l.minor_alarms||[];return(0,o.createComponentVNode)(2,i.Window,{width:350,height:300,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Alarms",children:(0,o.createVNode)(1,"ul",null,[0===d.length&&(0,o.createVNode)(1,"li","color-good","No Priority Alerts",16),d.map((function(e){return(0,o.createVNode)(1,"li",null,(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:e.name,color:"bad",onClick:function(){return c("clear",{ref:e.ref})}}),2,null,e.name)})),0===u.length&&(0,o.createVNode)(1,"li","color-good","No Minor Alerts",16),u.map((function(e){return(0,o.createVNode)(1,"li",null,(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:e.name,color:"average",onClick:function(){return c("clear",{ref:e.ref})}}),2,null,e.name)}))],0)})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosFilter=void 0;var o=n(0),r=n(1),a=n(2),i=(n(28),n(3));t.AtmosFilter=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.filter_types||[];return(0,o.createComponentVNode)(2,i.Window,{width:390,height:187,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.on?"power-off":"times",content:l.on?"On":"Off",selected:l.on,onClick:function(){return c("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transfer Rate",children:[(0,o.createComponentVNode)(2,a.Box,{inline:!0,mr:1,children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:l.last_flow_rate,format:function(e){return e+" L/s"}})}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:parseFloat(l.rate),width:"63px",unit:"L/s",minValue:0,maxValue:200,onDrag:function(e,t){return c("rate",{rate:t})}}),(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"plus",content:"Max",disabled:l.rate===l.max_rate,onClick:function(){return c("rate",{rate:"max"})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Filter",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{selected:e.selected,content:e.name,onClick:function(){return c("filter",{filterset:e.f_type})}},e.name)}))})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosMixer=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.AtmosMixer=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data;return(0,o.createComponentVNode)(2,i.Window,{width:370,height:195,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.on?"power-off":"times",content:l.on?"On":"Off",selected:l.on,onClick:function(){return c("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Output Pressure",children:[(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:parseFloat(l.set_pressure),unit:"kPa",width:"75px",minValue:0,maxValue:l.max_pressure,step:10,onChange:function(e,t){return c("pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"plus",content:"Max",disabled:l.set_pressure===l.max_pressure,onClick:function(){return c("pressure",{pressure:"max"})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider,{size:1}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{color:"label",children:(0,o.createVNode)(1,"u",null,"Concentrations",16)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Node 1 ("+l.node1_dir+")",children:(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:l.node1_concentration,unit:"%",width:"60px",minValue:0,maxValue:100,stepPixelSize:2,onDrag:function(e,t){return c("node1",{concentration:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Node 2 ("+l.node2_dir+")",children:(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:l.node2_concentration,unit:"%",width:"60px",minValue:0,maxValue:100,stepPixelSize:2,onDrag:function(e,t){return c("node2",{concentration:t})}})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Autolathe=void 0;var o=n(0),r=(n(5),n(44)),a=n(9),i=n(1),c=n(2),l=n(3),d=n(132),u=n(7),s=function(e,t){if(null===e.requirements)return!0;for(var n=Object.keys(e.requirements),o=function(){var n=a[r],o=t.find((function(e){return e.name===n}));return o?o.amount=e[1].price/d.build_eff,e[1]})).sort(l[C]);if(0!==n.length)return b&&(n=n.reverse()),g=!0,(0,o.createComponentVNode)(2,m,{title:e[0],items:n},e[0])}));return(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",overflow:"auto",children:(0,o.createComponentVNode)(2,i.Section,{onClick:function(e){return(0,c.refocusLayout)()},children:g?v:(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No items matching your criteria was found!"})})})},u=function(e,t){var n=(0,a.useLocalState)(t,"search",""),r=(n[0],n[1]),c=(0,a.useLocalState)(t,"sort",""),d=(c[0],c[1]),u=(0,a.useLocalState)(t,"descending",!1),s=u[0],m=u[1];return(0,o.createComponentVNode)(2,i.Box,{mb:"0.5rem",children:(0,o.createComponentVNode)(2,i.Flex,{width:"100%",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",mr:"0.5rem",children:(0,o.createComponentVNode)(2,i.Input,{placeholder:"Search by item name..",width:"100%",onInput:function(e,t){return r(t)}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"30%",children:(0,o.createComponentVNode)(2,i.Dropdown,{selected:"Alphabetical",options:Object.keys(l),width:"100%",lineHeight:"19px",onSelected:function(e){return d(e)}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Button,{icon:s?"arrow-down":"arrow-up",height:"19px",tooltip:s?"Descending order":"Ascending order",tooltipPosition:"bottom-left",ml:"0.5rem",onClick:function(){return m(!s)}})})]})})},s=function(e,t){return!!e.affordable&&!(e.reagent&&!t.beaker)},m=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=e.title,d=e.items,u=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["title","items"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.Collapsible,Object.assign({open:!0,title:l},u,{children:d.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Box,{display:"inline-block",verticalAlign:"middle",lineHeight:"20px",style:{float:"left"},children:e.name}),(0,o.createComponentVNode)(2,i.Button,{disabled:!s(e,c),content:(e.price/c.build_eff).toLocaleString("en-US"),width:"15%",textAlign:"center",style:{float:"right"},onClick:function(){return r("purchase",{cat:l,name:e.name})}}),(0,o.createComponentVNode)(2,i.Box,{style:{clear:"both"}})]},e.name)}))})))}},function(e,t,n){"use strict";t.__esModule=!0,t.BodyDesigner=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3);t.BodyDesigner=function(e,t){var n=(0,a.useBackend)(t),r=n.act,d=n.data,u=d.menu,s=d.disk,m=d.diskStored,p=d.activeBodyRecord,h=l[u];return(0,o.createComponentVNode)(2,c.Window,{width:400,height:650,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[s?(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"save",content:"Save To Disk",onClick:function(){return r("savetodisk")},disabled:!p}),(0,o.createComponentVNode)(2,i.Button,{icon:"save",content:"Load From Disk",onClick:function(){return r("loadfromdisk")},disabled:!m}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject",onClick:function(){return r("ejectdisk")}})]}):null,h]})})};var l={Main:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act;n.data;return(0,o.createComponentVNode)(2,i.Section,{title:"Database Functions",children:[(0,o.createComponentVNode)(2,i.Button,{icon:"eye",content:"View Individual Body Records",onClick:function(){return r("menu",{menu:"Body Records"})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"eye",content:"View Stock Body Records",onClick:function(){return r("menu",{menu:"Stock Records"})}})]})})),"Body Records":(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.bodyrecords;return(0,o.createComponentVNode)(2,i.Section,{title:"Body Records",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return r("menu",{menu:"Main"})}}),children:c.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{icon:"eye",content:e.name,onClick:function(){return r("view_brec",{view_brec:e.recref})}},e.name)}))})})),"Stock Records":(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.stock_bodyrecords;return(0,o.createComponentVNode)(2,i.Section,{title:"Stock Records",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return r("menu",{menu:"Main"})}}),children:c.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{icon:"eye",content:e,onClick:function(){return r("view_stock_brec",{view_stock_brec:e})}},e)}))})})),"Specific Record":(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.activeBodyRecord,u=l.mapRef;return d?(0,o.createComponentVNode)(2,i.Flex,{direction:"column",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"165px",children:(0,o.createComponentVNode)(2,i.Section,{title:"Specific Record",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return c("menu",{menu:"Main"})}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:d.real_name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Species",children:d.speciesname}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Bio. Sex",children:(0,o.createComponentVNode)(2,i.Button,{icon:"pen",content:(0,r.capitalize)(d.gender),onClick:function(){return c("href_conversion",{target_href:"bio_gender",target_value:1})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Synthetic",children:d.synthetic}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mind Compat",children:[d.locked,(0,o.createComponentVNode)(2,i.Button,{ml:1,icon:"eye",content:"View OOC Notes",disabled:!d.booc,onClick:function(){return c("boocnotes")}})]})]})})}),(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"130px",children:(0,o.createComponentVNode)(2,i.ByondUi,{style:{width:"100%",height:"128px"},params:{id:u,type:"map"}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"300px",children:(0,o.createComponentVNode)(2,i.Section,{title:"Customize",height:"300px",style:{overflow:"auto"},children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Scale",children:(0,o.createComponentVNode)(2,i.Button,{icon:"pen",content:d.scale,onClick:function(){return c("href_conversion",{target_href:"size_multiplier",target_value:1})}})}),Object.keys(d.styles).map((function(e){var t=d.styles[e];return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,children:[t.styleHref?(0,o.createComponentVNode)(2,i.Button,{icon:"pen",content:t.style,onClick:function(){return c("href_conversion",{target_href:t.styleHref,target_value:1})}}):null,t.colorHref?(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"pen",content:t.color,onClick:function(){return c("href_conversion",{target_href:t.colorHref,target_value:1})}}),(0,o.createComponentVNode)(2,i.ColorBox,{verticalAlign:"top",width:"32px",height:"20px",color:t.color,style:{border:"1px solid #fff"}})]}):null,t.colorHref2?(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"pen",content:t.color2,onClick:function(){return c("href_conversion",{target_href:t.colorHref2,target_value:1})}}),(0,o.createComponentVNode)(2,i.ColorBox,{verticalAlign:"top",width:"32px",height:"20px",color:t.color2,style:{border:"1px solid #fff"}})]}):null]},e)})),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Body Markings",children:[(0,o.createComponentVNode)(2,i.Button,{icon:"plus",content:"Add Marking",onClick:function(){return c("href_conversion",{target_href:"marking_style",target_value:1})}}),(0,o.createComponentVNode)(2,i.Flex,{wrap:"wrap",justify:"center",align:"center",children:Object.keys(d.markings).map((function(e){var t=d.markings[e];return(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"100%",children:(0,o.createComponentVNode)(2,i.Flex,{children:[(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Button,{mr:.2,fluid:!0,icon:"times",color:"red",onClick:function(){return c("href_conversion",{target_href:"marking_remove",target_value:e})}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,backgroundColor:t,content:e,onClick:function(){return c("href_conversion",{target_href:"marking_color",target_value:e})}})})]})},e)}))})]})]})})})]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"ERROR: Record Not Found!"})})),"OOC Notes":(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.activeBodyRecord;return(0,o.createComponentVNode)(2,i.Section,{title:"Body OOC Notes (This is OOC!)",height:"100%",scrollable:!0,buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return r("menu",{menu:"Specific Record"})}}),style:{"word-break":"break-all"},children:c&&c.booc||"ERROR: Body record not found!"})}))}},function(e,t,n){"use strict";t.__esModule=!0,t.BodyScanner=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=[["good","Alive"],["average","Unconscious"],["bad","DEAD"]],d=[["hasBorer","bad",function(e){return"Large growth detected in frontal lobe, possibly cancerous. Surgical removal is recommended."}],["hasVirus","bad",function(e){return"Viral pathogen detected in blood stream."}],["blind","average",function(e){return"Cataracts detected."}],["colourblind","average",function(e){return"Photoreceptor abnormalities detected."}],["nearsighted","average",function(e){return"Retinal misalignment detected."}],["humanPrey","average",function(e){return"Foreign Humanoid(s) detected: "+e.humanPrey}],["livingPrey","average",function(e){return"Foreign Creature(s) detected: "+e.livingPrey}],["objectPrey","average",function(e){return"Foreign Object(s) detected: "+e.objectPrey}]],u=[["Respiratory","oxyLoss"],["Brain","brainLoss"],["Toxin","toxLoss"],["Radiation","radLoss"],["Brute","bruteLoss"],["Genetic","cloneLoss"],["Burn","fireLoss"],["Paralysis","paralysis"]],s={average:[.25,.5],bad:[.5,Infinity]},m=function(e,t){for(var n=[],o=0;o0?e.reduce((function(e,t){return null===e?t:(0,o.createFragment)([e,!!t&&(0,o.createComponentVNode)(2,i.Box,{children:t})],0)})):null},h=function(e){if(e>100){if(e<300)return"mild infection";if(e<400)return"mild infection+";if(e<500)return"mild infection++";if(e<700)return"acute infection";if(e<800)return"acute infection+";if(e<900)return"acute infection++";if(e>=900)return"septic"}return""};t.BodyScanner=function(e,t){var n=(0,a.useBackend)(t).data,r=n.occupied,i=n.occupant,l=void 0===i?{}:i,d=r?(0,o.createComponentVNode)(2,f,{occupant:l}):(0,o.createComponentVNode)(2,_);return(0,o.createComponentVNode)(2,c.Window,{width:690,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:d})})};var f=function(e){var t=e.occupant;return(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,C,{occupant:t}),(0,o.createComponentVNode)(2,N,{occupant:t}),(0,o.createComponentVNode)(2,b,{occupant:t}),(0,o.createComponentVNode)(2,V,{occupant:t}),(0,o.createComponentVNode)(2,v,{organs:t.extOrgan}),(0,o.createComponentVNode)(2,k,{organs:t.intOrgan})]})},C=function(e,t){var n=(0,a.useBackend)(t),c=n.act,d=n.data,u=d.occupant;return(0,o.createComponentVNode)(2,i.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"user-slash",onClick:function(){return c("ejectify")},children:"Eject"}),(0,o.createComponentVNode)(2,i.Button,{icon:"print",onClick:function(){return c("print_p")},children:"Print Report"})],4),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:u.maxHealth,value:u.health/u.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",color:l[u.stat][0],children:l[u.stat][1]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Temperature",children:[(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:(0,r.round)(u.bodyTempC,0)}),"\xb0C,\xa0",(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:(0,r.round)(u.bodyTempF,0)}),"\xb0F"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Blood Volume",children:[(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:(0,r.round)(u.blood.volume,0)})," units\xa0(",(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:(0,r.round)(u.blood.percent,0)}),"%)"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Weight",children:(0,r.round)(d.occupant.weight)+"lbs, "+(0,r.round)(d.occupant.weight/2.20463)+"kgs"})]})})},N=function(e){var t=e.occupant;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Blood Reagents",children:t.reagents?(0,o.createComponentVNode)(2,i.Table,{children:[(0,o.createComponentVNode)(2,i.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Reagent"}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",children:"Amount"})]}),t.reagents.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",children:[e.amount," Units ",e.overdose?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"OVERDOSING"}):null]})]},e.name)}))]}):(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"No Blood Reagents Detected"})}),(0,o.createComponentVNode)(2,i.Section,{title:"Stomach Reagents",children:t.ingested?(0,o.createComponentVNode)(2,i.Table,{children:[(0,o.createComponentVNode)(2,i.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Reagent"}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",children:"Amount"})]}),t.ingested.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",children:[e.amount," Units ",e.overdose?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"OVERDOSING"}):null]})]},e.name)}))]}):(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"No Stomach Reagents Detected"})})],4)},b=function(e){var t=e.occupant,n=t.hasBorer||t.blind||t.colourblind||t.nearsighted||t.hasVirus;return(n=n||t.humanPrey||t.livingPrey||t.objectPrey)?(0,o.createComponentVNode)(2,i.Section,{title:"Abnormalities",children:d.map((function(e,n){if(t[e[0]])return(0,o.createComponentVNode)(2,i.Box,{color:e[1],bold:"bad"===e[1],children:e[2](t)})}))}):(0,o.createComponentVNode)(2,i.Section,{title:"Abnormalities",children:(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No abnormalities found."})})},V=function(e){var t=e.occupant;return(0,o.createComponentVNode)(2,i.Section,{title:"Damage",children:(0,o.createComponentVNode)(2,i.Table,{children:m(u,(function(e,n,r){return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Table.Row,{color:"label",children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:[e[0],":"]}),(0,o.createComponentVNode)(2,i.Table.Cell,{children:!!n&&n[0]+":"})]}),(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:(0,o.createComponentVNode)(2,g,{value:t[e[1]],marginBottom:r0&&"0.5rem",value:e.totalLoss/100,ranges:s,children:[(0,o.createComponentVNode)(2,i.Box,{float:"left",display:"inline",children:[!!e.bruteLoss&&(0,o.createComponentVNode)(2,i.Box,{display:"inline",position:"relative",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"bone"}),(0,r.round)(e.bruteLoss,0),"\xa0",(0,o.createComponentVNode)(2,i.Tooltip,{position:"top",content:"Brute damage"})]}),!!e.fireLoss&&(0,o.createComponentVNode)(2,i.Box,{display:"inline",position:"relative",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"fire"}),(0,r.round)(e.fireLoss,0),(0,o.createComponentVNode)(2,i.Tooltip,{position:"top",content:"Burn damage"})]})]}),(0,o.createComponentVNode)(2,i.Box,{display:"inline",children:(0,r.round)(e.totalLoss,0)})]})}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",width:"33%",children:[(0,o.createComponentVNode)(2,i.Box,{color:"average",display:"inline",children:p([e.internalBleeding&&"Internal bleeding",!!e.status.bleeding&&"External bleeding",e.lungRuptured&&"Ruptured lung",e.destroyed&&"Destroyed",!!e.status.broken&&e.status.broken,h(e.germ_level),!!e.open&&"Open incision"])}),(0,o.createComponentVNode)(2,i.Box,{display:"inline",children:[p([!!e.status.splinted&&"Splinted",!!e.status.robotic&&"Robotic",!!e.status.dead&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"DEAD"})]),p(e.implants.map((function(e){return e.known?e.name:"Unknown object"})))]})]})]},t)}))]})})},k=function(e){return 0===e.organs.length?(0,o.createComponentVNode)(2,i.Section,{title:"Internal Organs",children:(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"N/A"})}):(0,o.createComponentVNode)(2,i.Section,{title:"Internal Organs",children:(0,o.createComponentVNode)(2,i.Table,{children:[(0,o.createComponentVNode)(2,i.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"center",children:"Damage"}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",children:"Injuries"})]}),e.organs.map((function(e,t){return(0,o.createComponentVNode)(2,i.Table.Row,{textTransform:"capitalize",children:[(0,o.createComponentVNode)(2,i.Table.Cell,{width:"33%",children:e.name}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:e.maxHealth,value:e.damage/100,mt:t>0&&"0.5rem",ranges:s,children:(0,r.round)(e.damage,0)})}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",width:"33%",children:[(0,o.createComponentVNode)(2,i.Box,{color:"average",display:"inline",children:p([h(e.germ_level)])}),(0,o.createComponentVNode)(2,i.Box,{display:"inline",children:p([1===e.robotic&&"Robotic",2===e.robotic&&"Assisted",!!e.dead&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"DEAD"})])})]})]},t)}))]})})},_=function(){return(0,o.createComponentVNode)(2,i.Section,{textAlign:"center",flexGrow:"1",children:(0,o.createComponentVNode)(2,i.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected."]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BombTester=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);n(24);t.BombTester=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.simulating,s=d.mode,m=d.tank1,p=d.tank1ref,h=d.tank2,f=d.tank2ref,C=d.canister,N=d.sim_canister_output;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:400,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:u&&(0,o.createComponentVNode)(2,c)||(0,o.createComponentVNode)(2,a.Section,{title:"Virtual Explosive Simulator v2.01",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mode",children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("set_mode",{mode:1})},selected:1===s,children:"Single Tank"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("set_mode",{mode:2})},selected:2===s,children:"Transfer Valve"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("set_mode",{mode:3})},selected:3===s,children:"Canister"})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Primary Slot",children:m&&(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("remove_tank",{ref:p})},icon:"eject",children:m})||(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("add_tank",{slot:1})},icon:"upload",children:"Insert Tank"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Secondary Slot",children:h&&(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("remove_tank",{ref:f})},icon:"eject",children:h})||(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("add_tank",{slot:2})},icon:"upload",children:"Insert Tank"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Connected Canister",buttons:(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("canister_scan")},icon:"search",children:"Scan"}),children:C&&(0,o.createComponentVNode)(2,a.Box,{color:"label",children:C})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No tank connected."})}),C&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Canister Release Pressure",children:(0,o.createComponentVNode)(2,a.Slider,{minValue:0,value:N,maxValue:1013.25,onDrag:function(e,t){return l("set_can_pressure",{pressure:t})}})})]}),(0,o.createComponentVNode)(2,a.Button,{mt:2,color:"red",icon:"bomb",fontSize:2,onClick:function(){return l("start_sim")},fluid:!0,children:"Begin Simulation"})]})})})};var c=function(e){var t,n;function r(t){var n;n=e.call(this,t)||this;var o=Math.random()>.5,r=Math.random()>.5;return n.state={x:o?340:0,y:r?205:0,reverseX:!1,reverseY:!1},n.process=setInterval((function(){n.setState((function(e){var t=Object.assign({},e);return t.reverseX?t.x-2<-5?(t.reverseX=!1,t.x+=2):t.x-=2:t.x+2>340?(t.reverseX=!0,t.x-=2):t.x+=2,t.reverseY?t.y-2<-20?(t.reverseY=!1,t.y+=2):t.y-=2:t.y+2>205?(t.reverseY=!0,t.y-=2):t.y+=2,t}))}),1),n}n=e,(t=r).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var i=r.prototype;return i.componentWillUnmount=function(){clearInterval(this.process)},i.render=function(){var e=this.state,t={position:"relative",left:e.x+"px",top:e.y+"px"};return(0,o.createComponentVNode)(2,a.Section,{title:"Simulation in progress!",fill:!0,children:(0,o.createComponentVNode)(2,a.Box,{position:"absolute",style:{overflow:"hidden",width:"100%",height:"100%"},children:(0,o.createComponentVNode)(2,a.Icon,{style:t,name:"bomb",size:10,color:"red"})})})},r}(o.Component)},function(e,t,n){"use strict";t.__esModule=!0,t.BotanyEditor=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.BotanyEditor=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.activity,u=l.degradation,s=l.disk,m=l.sourceName,p=l.locus,h=l.loaded;return d?(0,o.createComponentVNode)(2,i.Window,{width:470,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:"Scanning..."})})}):(0,o.createComponentVNode)(2,i.Window,{width:470,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Buffered Genetic Data",children:s&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Source",children:m}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gene Decay",children:[u,"%"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Locus",children:p})]}),(0,o.createComponentVNode)(2,a.Button,{mt:1,icon:"eject",onClick:function(){return c("eject_disk")},children:"Eject Loaded Disk"})]})||(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:"No disk loaded."})}),(0,o.createComponentVNode)(2,a.Section,{title:"Loaded Material",children:h&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:h})}),(0,o.createComponentVNode)(2,a.Button,{mt:1,icon:"cog",onClick:function(){return c("apply_gene")},children:"Apply Gene Mods"}),(0,o.createComponentVNode)(2,a.Button,{mt:1,icon:"eject",onClick:function(){return c("eject_packet")},children:"Eject Target"})]})||(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:"No target seed packet loaded."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BotanyIsolator=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.BotanyIsolator=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.geneMasks,u=l.activity,s=l.degradation,m=l.disk,p=l.loaded,h=l.hasGenetics,f=l.sourceName;return u?(0,o.createComponentVNode)(2,i.Window,{width:470,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:"Scanning..."})})}):(0,o.createComponentVNode)(2,i.Window,{width:470,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Buffered Genetic Data",children:h&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Source",children:f}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gene decay",children:[s,"%"]}),m&&d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.mask,children:(0,o.createComponentVNode)(2,a.Button,{mb:-1,icon:"download",onClick:function(){return c("get_gene",{get_gene:e.tag})},children:"Extract"})},e.mask)}))||null]}),m&&(0,o.createComponentVNode)(2,a.Box,{mt:1,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return c("eject_disk")},children:"Eject Loaded Disk"}),(0,o.createComponentVNode)(2,a.Button,{icon:"trash",onClick:function(){return c("clear_buffer")},children:"Clear Genetic Buffer"})]})||(0,o.createComponentVNode)(2,a.NoticeBox,{mt:1,warning:!0,children:"No disk inserted."})]})||(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:"No Data Buffered."}),m&&(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return c("eject_disk")},children:"Eject Loaded Disk"})||(0,o.createComponentVNode)(2,a.NoticeBox,{mt:1,warning:!0,children:"No disk inserted."})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Loaded Material",children:p&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Packet Loaded",children:p})}),(0,o.createComponentVNode)(2,a.Button,{mt:1,icon:"cog",onClick:function(){return c("scan_genome")},children:"Process Genome"}),(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return c("eject_packet")},children:"Eject Packet"})]})||(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:"No packet loaded."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BrigTimer=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=n(20);t.BrigTimer=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data;return(0,o.createComponentVNode)(2,c.Window,{width:300,height:138,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i.Section,{title:"Cell Timer",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"clock-o",content:u.timing?"Stop":"Start",selected:u.timing,onClick:function(){return d(u.timing?"stop":"start")}}),u.flash_found&&(0,o.createComponentVNode)(2,i.Button,{icon:"lightbulb-o",content:u.flash_charging?"Recharging":"Flash",disabled:u.flash_charging,onClick:function(){return d("flash")}})||null],0),children:[(0,o.createComponentVNode)(2,i.NumberInput,{animated:!0,fluid:!0,value:u.time_left/10,minValue:0,maxValue:u.max_time_left/10,format:function(e){return(0,l.formatTime)((0,r.round)(e))},onDrag:function(e,t){return d("time",{time:t})}}),(0,o.createComponentVNode)(2,i.Flex,{mt:1,children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"hourglass-start",content:"Add "+(0,l.formatTime)(u.preset_short/10),onClick:function(){return d("preset",{preset:"short"})}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"hourglass-start",content:"Add "+(0,l.formatTime)(u.preset_medium/10),onClick:function(){return d("preset",{preset:"medium"})}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"hourglass-start",content:"Add "+(0,l.formatTime)(u.preset_long/10),onClick:function(){return d("preset",{preset:"long"})}})})]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Canister=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(20),l=n(3);t.Canister=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data,s=u.connected,m=u.can_relabel,p=u.pressure,h=u.releasePressure,f=u.defaultReleasePressure,C=u.minReleasePressure,N=u.maxReleasePressure,b=u.valveOpen,V=u.holding;return(0,o.createComponentVNode)(2,l.Window,{width:360,height:242,resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{children:[(0,o.createComponentVNode)(2,i.Section,{title:"Canister",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"pencil-alt",disabled:!m,content:"Relabel",onClick:function(){return d("relabel")}}),children:(0,o.createComponentVNode)(2,i.LabeledControls,{children:[(0,o.createComponentVNode)(2,i.LabeledControls.Item,{minWidth:"66px",label:"Tank Pressure",children:(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:p,format:function(e){return e<1e4?(0,r.toFixed)(e)+" kPa":(0,c.formatSiUnit)(1e3*e,1,"Pa")}})}),(0,o.createComponentVNode)(2,i.LabeledControls.Item,{label:"Regulator",children:(0,o.createComponentVNode)(2,i.Box,{position:"relative",left:"-8px",children:[(0,o.createComponentVNode)(2,i.Knob,{forcedInputWidth:"60px",size:1.25,color:!!b&&"yellow",value:h,unit:"kPa",minValue:C,maxValue:N,stepPixelSize:1,onDrag:function(e,t){return d("pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,position:"absolute",top:"-2px",right:"-20px",color:"transparent",icon:"fast-forward",onClick:function(){return d("pressure",{pressure:N})}}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,position:"absolute",top:"16px",right:"-20px",color:"transparent",icon:"undo",onClick:function(){return d("pressure",{pressure:f})}})]})}),(0,o.createComponentVNode)(2,i.LabeledControls.Item,{label:"Valve",children:(0,o.createComponentVNode)(2,i.Button,{my:.5,width:"50px",lineHeight:2,fontSize:"11px",color:b?V?"caution":"danger":null,content:b?"Open":"Closed",onClick:function(){return d("valve")}})}),(0,o.createComponentVNode)(2,i.LabeledControls.Item,{mr:1,label:"Port",children:(0,o.createComponentVNode)(2,i.Box,{position:"relative",children:[(0,o.createComponentVNode)(2,i.Icon,{size:1.25,name:s?"plug":"times",color:s?"good":"bad"}),(0,o.createComponentVNode)(2,i.Tooltip,{content:s?"Connected":"Disconnected",position:"top"})]})})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Holding Tank",buttons:!!V&&(0,o.createComponentVNode)(2,i.Button,{icon:"eject",color:b&&"danger",content:"Eject",onClick:function(){return d("eject")}}),children:[!!V&&(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Label",children:V.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pressure",children:[(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:V.pressure})," kPa"]})]}),!V&&(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No Holding Tank"})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ChemDispenser=void 0;var o=n(0),r=n(1),a=n(2),i=n(187),c=n(3),l=[5,10,20,30,40,60],d=[1,5,10];t.ChemDispenser=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{width:390,height:655,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m)]})})};var u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.amount;return(0,o.createComponentVNode)(2,a.Section,{title:"Settings",flex:"content",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Dispense",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",wrap:"wrap",spacing:"1",children:l.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",children:(0,o.createComponentVNode)(2,a.Button,{textAlign:"center",selected:c===e,content:e+"u",m:"0",fluid:!0,onClick:function(){return i("amount",{amount:e})}})},t)}))})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Custom Amount",children:(0,o.createComponentVNode)(2,a.Slider,{step:1,stepPixelSize:5,value:c,minValue:1,maxValue:120,onDrag:function(e,t){return i("amount",{amount:t})}})})]})})},s=function(e,t){for(var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.chemicals,d=void 0===l?[]:l,u=[],s=0;s<(d.length+1)%3;s++)u.push(!0);return(0,o.createComponentVNode)(2,a.Section,{title:c.glass?"Drink Dispenser":"Chemical Dispenser",flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",wrap:"wrap",height:"100%",spacingPrecise:"2",align:"flex-start",alignContent:"flex-start",children:[d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"40%",height:"20px",children:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",width:"100%",height:"100%",align:"flex-start",content:e.title+" ("+e.amount+")",onClick:function(){return i("dispense",{reagent:e.id})}})},t)})),u.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"25%",height:"20px"},t)}))]})})},m=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,u=l.isBeakerLoaded,s=l.beakerCurrentVolume,m=l.beakerMaxVolume,p=l.beakerContents,h=void 0===p?[]:p;return(0,o.createComponentVNode)(2,a.Section,{title:"Beaker",flex:"content",minHeight:"25%",buttons:(0,o.createComponentVNode)(2,a.Box,{children:[!!u&&(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"label",mr:2,children:[s," / ",m," units"]}),(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:"Eject",disabled:!u,onClick:function(){return c("ejectBeaker")}})]}),children:(0,o.createComponentVNode)(2,i.BeakerContents,{beakerLoaded:u,beakerContents:h,buttons:function(e){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"Isolate",icon:"compress-arrows-alt",onClick:function(){return c("remove",{reagent:e.id,amount:-1})}}),d.map((function(t,n){return(0,o.createComponentVNode)(2,a.Button,{content:t,onClick:function(){return c("remove",{reagent:e.id,amount:t})}},n)})),(0,o.createComponentVNode)(2,a.Button,{content:"ALL",onClick:function(){return c("remove",{reagent:e.id,amount:e.volume})}})],0)}})})}},function(e,t,n){"use strict";e.exports=n(494)()},function(e,t,n){"use strict";var o=n(495);function r(){}function a(){}a.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,a,i){if(i!==o){var c=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw c.name="Invariant Violation",c}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:r};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";t.__esModule=!0,t.ChemMaster=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(187),l=n(45),d=[1,5,10,30,60];t.ChemMaster=function(e,t){var n=(0,r.useBackend)(t).data,a=n.condi,c=n.beaker,d=n.beaker_reagents,p=void 0===d?[]:d,h=n.buffer_reagents,f=void 0===h?[]:h,C=n.mode;return(0,o.createComponentVNode)(2,i.Window,{width:575,height:500,resizable:!0,children:[(0,o.createComponentVNode)(2,l.ComplexModal),(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,u,{beaker:c,beakerReagents:p,bufferNonEmpty:f.length>0}),(0,o.createComponentVNode)(2,s,{mode:C,bufferReagents:f}),(0,o.createComponentVNode)(2,m,{isCondiment:a,bufferNonEmpty:f.length>0})]})]})};var u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,u=(n.data,e.beaker),s=e.beakerReagents,m=e.bufferNonEmpty;return(0,o.createComponentVNode)(2,a.Section,{title:"Beaker",buttons:m?(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"eject",disabled:!u,content:"Eject and Clear Buffer",onClick:function(){return i("eject")}}):(0,o.createComponentVNode)(2,a.Button,{icon:"eject",disabled:!u,content:"Eject and Clear Buffer",onClick:function(){return i("eject")}}),children:u?(0,o.createComponentVNode)(2,c.BeakerContents,{beakerLoaded:!0,beakerContents:s,buttons:function(e,n){return(0,o.createComponentVNode)(2,a.Box,{mb:n0?(0,o.createComponentVNode)(2,c.BeakerContents,{beakerLoaded:!0,beakerContents:s,buttons:function(e,r){return(0,o.createComponentVNode)(2,a.Box,{mb:r0?l.desc:"N/A"}),l.blood_type&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood type",children:l.blood_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood DNA",className:"LabeledList__breakContents",children:l.blood_dna})],4),!c.condi&&(0,o.createComponentVNode)(2,a.Button,{icon:c.printing?"spinner":"print",disabled:c.printing,iconSpin:!!c.printing,ml:"0.5rem",content:"Print",onClick:function(){return i("print",{idx:l.idx,beaker:e.args.beaker})}})]})})})}))},function(e,t,n){"use strict";t.__esModule=!0,t.Cleanbot=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Cleanbot=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.open,s=l.locked,m=l.version,p=l.blood,h=(l.patrol,l.wet_floors),f=l.spray_blood,C=l.rgbpanel,N=l.red_switch,b=l.green_switch,V=l.blue_switch;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:400,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Automatic Station Cleaner "+m,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("start")},children:d?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",color:u?"bad":"good",children:u?"Open":"Closed"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Behavior Controls",color:s?"good":"bad",children:s?"Locked":"Unlocked"})]})}),!s&&(0,o.createComponentVNode)(2,a.Section,{title:"Behavior Controls",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:p?"toggle-on":"toggle-off",selected:p,onClick:function(){return c("blood")},children:p?"Cleans Blood":"Ignores Blood"})})||null,!s&&u&&(0,o.createComponentVNode)(2,a.Section,{title:"Maintenance Panel",children:C&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{fontSize:5.39,icon:N?"toggle-on":"toggle-off",backgroundColor:N?"red":"maroon",onClick:function(){return c("red_switch")}}),(0,o.createComponentVNode)(2,a.Button,{fontSize:5.39,icon:b?"toggle-on":"toggle-off",backgroundColor:b?"green":"darkgreen",onClick:function(){return c("green_switch")}}),(0,o.createComponentVNode)(2,a.Button,{fontSize:5.39,icon:V?"toggle-on":"toggle-off",backgroundColor:V?"blue":"darkblue",onClick:function(){return c("blue_switch")}})]})||(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Odd Looking Screw Twiddled",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,selected:h,onClick:function(){return c("wet_floors")},icon:"screwdriver",children:h?"Yes":"No"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Weird Button Pressed",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"brown",selected:f,onClick:function(){return c("spray_blood")},icon:"screwdriver",children:f?"Yes":"No"})})]})})})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.CloningConsole=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(28),l=n(45),d=n(3),u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data,d=e.args,u=d.activerecord,s=d.realname,m=d.health,p=d.unidentity,h=d.strucenzymes,f=m.split(" - ");return(0,o.createComponentVNode)(2,i.Section,{level:2,m:"-1rem",pb:"1rem",title:"Records of "+s,children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Damage",children:f.length>1?(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{color:c.COLORS.damageType.oxy,display:"inline",children:f[0]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,i.Box,{color:c.COLORS.damageType.toxin,display:"inline",children:f[2]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,i.Box,{color:c.COLORS.damageType.brute,display:"inline",children:f[3]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,i.Box,{color:c.COLORS.damageType.burn,display:"inline",children:f[1]})],4):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Unknown"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"UI",className:"LabeledList__breakContents",children:p}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"SE",className:"LabeledList__breakContents",children:h}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Disk",children:[(0,o.createComponentVNode)(2,i.Button.Confirm,{disabled:!l.disk,icon:"arrow-circle-down",content:"Import",onClick:function(){return r("disk",{option:"load"})}}),(0,o.createComponentVNode)(2,i.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export UI",onClick:function(){return r("disk",{option:"save",savetype:"ui"})}}),(0,o.createComponentVNode)(2,i.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export UI and UE",onClick:function(){return r("disk",{option:"save",savetype:"ue"})}}),(0,o.createComponentVNode)(2,i.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export SE",onClick:function(){return r("disk",{option:"save",savetype:"se"})}})]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,i.Button,{disabled:!l.podready,icon:"user-plus",content:"Clone",onClick:function(){return r("clone",{ref:u})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"trash",content:"Delete",onClick:function(){return r("del_rec")}})]})]})})};t.CloningConsole=function(e,t){var n=(0,a.useBackend)(t);n.act,n.data.menu;return(0,l.modalRegisterBodyOverride)("view_rec",u),(0,o.createComponentVNode)(2,d.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,l.ComplexModal,{maxWidth:"75%",maxHeight:"75%"}),(0,o.createComponentVNode)(2,d.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,f),(0,o.createComponentVNode)(2,C),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,i.Section,{noTopPadding:!0,flexGrow:"1",children:(0,o.createComponentVNode)(2,m)})]})]})};var s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.menu;return(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===c,icon:"home",onClick:function(){return r("menu",{num:1})},children:"Main"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:2===c,icon:"folder",onClick:function(){return r("menu",{num:2})},children:"Records"})]})},m=function(e,t){var n,r=(0,a.useBackend)(t).data.menu;return 1===r?n=(0,o.createComponentVNode)(2,p):2===r&&(n=(0,o.createComponentVNode)(2,h)),n},p=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.loading,u=l.scantemp,s=l.occupant,m=l.locked,p=l.can_brainscan,h=l.scan_mode,f=l.numberofpods,C=l.pods,N=l.selected_pod,b=m&&!!s;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Scanner",level:"2",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{display:"inline",color:"label",children:"Scanner Lock:\xa0"}),(0,o.createComponentVNode)(2,i.Button,{disabled:!s,selected:b,icon:b?"toggle-on":"toggle-off",content:b?"Engaged":"Disengaged",onClick:function(){return c("lock")}}),(0,o.createComponentVNode)(2,i.Button,{disabled:b||!s,icon:"user-slash",content:"Eject Occupant",onClick:function(){return c("eject")}})],4),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",children:d?(0,o.createComponentVNode)(2,i.Box,{color:"average",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"spinner",spin:!0}),"\xa0 Scanning..."]}):(0,o.createComponentVNode)(2,i.Box,{color:u.color,children:u.text})}),!!p&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Scan Mode",children:(0,o.createComponentVNode)(2,i.Button,{icon:h?"brain":"male",content:h?"Brain":"Body",onClick:function(){return c("toggle_mode")}})})]}),(0,o.createComponentVNode)(2,i.Button,{disabled:!s||d,icon:"user",content:"Scan Occupant",mt:"0.5rem",mb:"0",onClick:function(){return c("scan")}})]}),(0,o.createComponentVNode)(2,i.Section,{title:"Pods",level:"2",children:f?C.map((function(e,t){var n;return n="cloning"===e.status?(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:"100",value:e.progress/100,ranges:{good:[.75,Infinity],average:[.25,.75],bad:[-Infinity,.25]},mt:"0.5rem",children:(0,o.createComponentVNode)(2,i.Box,{textAlign:"center",children:(0,r.round)(e.progress,0)+"%"})}):"mess"===e.status?(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:"bad",mt:"0.5rem",children:"ERROR"}):(0,o.createComponentVNode)(2,i.Button,{selected:N===e.pod,icon:N===e.pod&&"check",content:"Select",mt:"0.5rem",onClick:function(){return c("selectpod",{ref:e.pod})}}),(0,o.createComponentVNode)(2,i.Box,{width:"64px",textAlign:"center",display:"inline-block",mr:"0.5rem",children:[(0,o.createVNode)(1,"img",null,null,1,{src:"pod_"+e.status+".gif",style:{width:"100%","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createComponentVNode)(2,i.Box,{color:"label",children:["Pod #",t+1]}),(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:e.biomass>=150?"good":"bad",display:"inline",children:[(0,o.createComponentVNode)(2,i.Icon,{name:e.biomass>=150?"circle":"circle-o"}),"\xa0",e.biomass]}),n]},t)})):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"No pods detected. Unable to clone."})})],4)},h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.records;return c.length?(0,o.createComponentVNode)(2,i.Box,{mt:"0.5rem",children:c.map((function(e,t){return(0,o.createComponentVNode)(2,i.Button,{icon:"user",mb:"0.5rem",content:e.realname,onClick:function(){return r("view_rec",{ref:e.record})}},t)}))}):(0,o.createComponentVNode)(2,i.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No records found."]})})},f=function(e,t){var n,r=(0,a.useBackend)(t),c=r.act,l=r.data.temp;if(l&&l.text&&!(l.text.length<=0)){var d=((n={})[l.style]=!0,n);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.NoticeBox,Object.assign({},d,{children:[(0,o.createComponentVNode)(2,i.Box,{display:"inline-block",verticalAlign:"middle",children:l.text}),(0,o.createComponentVNode)(2,i.Button,{icon:"times-circle",float:"right",onClick:function(){return c("cleartemp")}}),(0,o.createComponentVNode)(2,i.Box,{clear:"both"})]})))}},C=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.scanner,d=c.numberofpods,u=c.autoallowed,s=c.autoprocess,m=c.disk;return(0,o.createComponentVNode)(2,i.Section,{title:"Status",buttons:(0,o.createFragment)([!!u&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{display:"inline",color:"label",children:"Auto-processing:\xa0"}),(0,o.createComponentVNode)(2,i.Button,{selected:s,icon:s?"toggle-on":"toggle-off",content:s?"Enabled":"Disabled",onClick:function(){return r("autoprocess",{on:s?0:1})}})],4),(0,o.createComponentVNode)(2,i.Button,{disabled:!m,icon:"eject",content:"Eject Disk",onClick:function(){return r("disk",{option:"eject"})}})],0),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Scanner",children:l?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"Connected"}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Not connected!"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pods",children:d?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:[d," connected"]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"None connected!"})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ColorMate=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.ColorMate=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.items,u=l.activecolor,s=Math.min(270+15*d.length,600);return(0,o.createComponentVNode)(2,i.Window,{width:300,height:s,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:d.length&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Paint",children:(0,o.createComponentVNode)(2,a.Flex,{justify:"center",align:"center",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",children:(0,o.createComponentVNode)(2,a.Box,{backgroundColor:u,width:"120px",height:"120px"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50% ",children:[(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eye-dropper",onClick:function(){return c("select")},children:"Select Color"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"fill-drip",onClick:function(){return c("paint")},children:"Paint Items"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"tint-slash",onClick:function(){return c("clear")},children:"Remove Paintjob"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",onClick:function(){return c("eject")},children:"Eject Items"})]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Items",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{children:["#",t+1,": ",e]},t)}))})],4)||(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No items inserted."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Communicator=void 0;var o=n(0),r=n(9),a=n(7),i=n(1),c=n(2),l=n(3),d=n(94),u={};t.Communicator=function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.data.currentTab);return(0,o.createComponentVNode)(2,l.Window,{width:475,height:700,resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{children:[(0,o.createComponentVNode)(2,m),(0,o.createComponentVNode)(2,c.Box,{height:"88%",mb:1,style:{"overflow-y":"auto"},children:u[r]||(0,o.createComponentVNode)(2,s)}),(0,o.createComponentVNode)(2,p)]})})};var s=function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.data.currentTab);return(0,o.createComponentVNode)(2,c.Section,{title:"Error!",children:["You tried to access tab #",r,", but there was no template defined!"]})},m=function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.data),l=r.time,d=r.connectionStatus,u=r.owner,s=r.occupation;return(0,o.createComponentVNode)(2,c.Section,{children:(0,o.createComponentVNode)(2,c.Flex,{align:"center",justify:"space-between",children:[(0,o.createComponentVNode)(2,c.Flex.Item,{color:"average",children:l}),(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.Icon,{color:1===d?"good":"bad",name:1===d?"signal":"exclamation-triangle"})}),(0,o.createComponentVNode)(2,c.Flex.Item,{color:"average",children:(0,a.decodeHtmlEntities)(u)}),(0,o.createComponentVNode)(2,c.Flex.Item,{color:"average",children:(0,a.decodeHtmlEntities)(s)})]})})},p=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data.flashlight;return(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"80%",children:(0,o.createComponentVNode)(2,c.Button,{p:1,fluid:!0,icon:"home",iconSize:2,textAlign:"center",onClick:function(){return r("switch_tab",{switch_tab:1})}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"20%",children:(0,o.createComponentVNode)(2,c.Button,{icon:"lightbulb",iconSize:2,p:1,fluid:!0,textAlign:"center",selected:a,tooltip:"Flashlight",tooltipPosition:"top",onClick:function(){return r("Light")}})})]})};u[1]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data.homeScreen;return(0,o.createComponentVNode)(2,c.Flex,{mt:2,wrap:"wrap",align:"center",justify:"center",children:a.map((function(e){return(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"25%",textAlign:"center",mb:2,children:[(0,o.createComponentVNode)(2,c.Button,{style:{"border-radius":"10%",border:"1px solid #000"},width:"64px",height:"64px",position:"relative",onClick:function(){return r("switch_tab",{switch_tab:e.number})},children:(0,o.createComponentVNode)(2,c.Icon,{name:e.icon,position:"absolute",size:3,top:"25%",left:"25%"})}),(0,o.createComponentVNode)(2,c.Box,{children:e.module})]},e.number)}))})}));var h=function(e,t){for(var n=(0,i.useBackend)(t),r=n.act,a=n.data.targetAddress,l=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"].map((function(e){return(0,o.createComponentVNode)(2,c.Button,{content:e,fontSize:2,fluid:!0,onClick:function(){return r("add_hex",{add_hex:e})}},e)})),d=[],u=0;un?t.length>n?t.slice(0,n)+"...":t:e+t};u[40]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),r=n.act,l=n.data,d=l.targetAddressName,u=l.targetAddress,s=l.imList,m=(0,i.useLocalState)(t,"clipboardMode",!1),p=m[0],h=m[1];return p?(0,o.createComponentVNode)(2,c.Section,{title:(0,o.createComponentVNode)(2,c.Box,{inline:!0,style:{"white-space":"nowrap","overflow-x":"hidden"},width:"90%",children:C("Conversation with ",(0,a.decodeHtmlEntities)(d),30)}),buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"eye",selected:p,tooltip:"Exit Clipboard Mode",tooltipPosition:"bottom-left",onClick:function(){return h(!p)}}),height:"100%",stretchContents:!0,children:[(0,o.createComponentVNode)(2,c.Section,{style:{height:"95%","overflow-y":"auto"},children:s.map((function(e,t){return(0,o.createComponentVNode)(2,c.Box,{color:f(e,u)?"#4d9121":"#cd7a0d",children:[f(e,u)?"You":"Them",": ",e.im]},t)}))}),(0,o.createComponentVNode)(2,c.Button,{icon:"comment",onClick:function(){return r("message",{message:u})},content:"Message"})]}):(0,o.createComponentVNode)(2,c.Section,{title:(0,o.createComponentVNode)(2,c.Box,{inline:!0,style:{"white-space":"nowrap","overflow-x":"hidden"},width:"100%",children:C("Conversation with ",(0,a.decodeHtmlEntities)(d),30)}),buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"eye",selected:p,tooltip:"Enter Clipboard Mode",tooltipPosition:"bottom-left",onClick:function(){return h(!p)}}),height:"100%",stretchContents:!0,children:[(0,o.createComponentVNode)(2,c.Section,{style:{height:"95%","overflow-y":"auto"},children:s.map((function(e,t){return(0,o.createComponentVNode)(2,c.Box,{textAlign:f(e,u)?"right":"left",position:"relative",mb:1,children:[(0,o.createComponentVNode)(2,c.Icon,{fontSize:2.5,color:f(e,u)?"#4d9121":"#cd7a0d",position:"absolute",left:f(e,u)?null:"0px",right:f(e,u)?"0px":null,bottom:"-4px",style:{"z-index":"0",transform:f(e,u)?"scale(-1, 1)":null},name:"comment"}),(0,o.createComponentVNode)(2,c.Box,{inline:!0,backgroundColor:f(e,u)?"#4d9121":"#cd7a0d",p:1,maxWidth:"100%",position:"relative",textAlign:f(e,u)?"left":"right",style:{"z-index":"1","border-radius":"10px","word-break":"break-all"},children:[f(e,u)?"You:":"Them:"," ",(0,a.decodeHtmlEntities)(e.im)]})]},t)}))}),(0,o.createComponentVNode)(2,c.Button,{icon:"comment",onClick:function(){return r("message",{message:u})},content:"Message"})]})}));var N=function(e,t){var n=(0,i.useBackend)(t),r=n.act,l=n.data.target_feed;return(0,o.createComponentVNode)(2,c.Section,{title:(0,a.decodeHtmlEntities)(l.name)+" by "+(0,a.decodeHtmlEntities)(l.author),level:2,buttons:(0,o.createComponentVNode)(2,c.Button,{content:"Back",icon:"chevron-up",onClick:function(){return r("newsfeed",{newsfeed:null})}}),children:l.messages.map((function(e){return(0,o.createComponentVNode)(2,c.Section,{children:["- ",(0,a.decodeHtmlEntities)(e.body),!!e.img&&(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/png;base64,"+e.img}),(0,a.decodeHtmlEntities)(e.caption)||null]}),(0,o.createComponentVNode)(2,c.Box,{color:"grey",children:["[",e.message_type," by ",(0,a.decodeHtmlEntities)(e.author)," - ",e.time_stamp,"]"]})]},e.ref)}))})},b=function(e,t){var n=(0,i.useBackend)(t),r=n.act,l=n.data,d=l.feeds,u=l.latest_news;return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Section,{title:"Recent News",level:2,children:(0,o.createComponentVNode)(2,c.Section,{children:u.map((function(e){return(0,o.createComponentVNode)(2,c.Box,{mb:2,children:[(0,o.createVNode)(1,"h5",null,[(0,a.decodeHtmlEntities)(e.channel),(0,o.createComponentVNode)(2,c.Button,{ml:1,icon:"chevron-up",onClick:function(){return r("newsfeed",{newsfeed:e.index})},content:"Go to"})],0),"- ",(0,a.decodeHtmlEntities)(e.body),!!e.img&&(0,o.createComponentVNode)(2,c.Box,{children:["[image omitted, view story for more details]",e.caption||null]}),(0,o.createComponentVNode)(2,c.Box,{fontSize:.9,children:["[",e.message_type," by ",(0,o.createComponentVNode)(2,c.Box,{inline:!0,color:"average",children:e.author})," - ",e.time_stamp,"]"]})]},e.index)}))})}),(0,o.createComponentVNode)(2,c.Section,{title:"News Feeds",level:2,children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{fluid:!0,icon:"chevron-up",onClick:function(){return r("newsfeed",{newsfeed:e.index})},content:e.name},e.index)}))})],4)};u[5]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.data),a=r.feeds,l=r.target_feed;return(0,o.createComponentVNode)(2,c.Section,{title:"News",stretchContents:!0,height:"100%",children:!a.length&&(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Error: No newsfeeds available. Please try again later."})||l&&(0,o.createComponentVNode)(2,N)||(0,o.createComponentVNode)(2,b)})}));u[6]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data.note;return(0,o.createComponentVNode)(2,c.Section,{title:"Note Keeper",height:"100%",stretchContents:!0,buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"pen",onClick:function(){return r("edit")},content:"Edit Notes"}),children:(0,o.createComponentVNode)(2,c.Section,{color:"average",width:"100%",height:"100%",style:{"word-break":"break-all","overflow-y":"auto"},children:a})})}));u[7]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),l=(n.act,n.data),d=l.aircontents,u=l.weather;return(0,o.createComponentVNode)(2,c.Section,{title:"Weather",children:[(0,o.createComponentVNode)(2,c.Section,{level:2,title:"Current Conditions",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,r.filter)((function(e){return"0"!==e.val||"Pressure"===e.entry||"Temperature"===e.entry}))(d).map((function(e){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.entry,color:(t=e.val,n=e.bad_low,r=e.poor_low,i=e.poor_high,l=e.bad_high,ti?"average":t>l?"bad":"good"),children:[e.val,(0,a.decodeHtmlEntities)(e.units)]},e.entry);var t,n,r,i,l}))})}),(0,o.createComponentVNode)(2,c.Section,{level:2,title:"Weather Reports",children:!!u.length&&(0,o.createComponentVNode)(2,c.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.Planet,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Time",children:e.Time}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Weather",children:(0,a.toTitleCase)(e.Weather)}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Temperature",children:["Current: ",e.Temperature.toFixed(),"\xb0C | High: ",e.High.toFixed(),"\xb0C | Low: ",e.Low.toFixed(),"\xb0C"]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Wind Direction",children:e.WindDir}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Wind Speed",children:e.WindSpeed}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Forecast",children:(0,a.decodeHtmlEntities)(e.Forecast)})]})},e.Planet)}))})||(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"No weather reports available. Please check back later."})})]})})),u[8]=(0,o.createComponentVNode)(2,d.CrewManifestContent);u[9]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),r=n.act,l=n.data,d=l.owner,u=l.occupation,s=l.connectionStatus,m=l.address,p=l.visible,h=l.ring;return(0,o.createComponentVNode)(2,c.Section,{title:"Settings",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Owner",children:(0,o.createComponentVNode)(2,c.Button,{icon:"pen",fluid:!0,content:(0,a.decodeHtmlEntities)(d),onClick:function(){return r("rename")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Occupation",children:(0,a.decodeHtmlEntities)(u)}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Connection",children:1===s?(0,o.createComponentVNode)(2,c.Box,{color:"good",children:"Connected"}):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Disconnected"})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Device EPv2 Address",children:m}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Visibility",children:(0,o.createComponentVNode)(2,c.Button.Checkbox,{checked:p,selected:p,fluid:!0,content:p?"This device can be seen by other devices.":"This device is invisible to other devices.",onClick:function(){return r("toggle_visibility")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Ringer",children:(0,o.createComponentVNode)(2,c.Button.Checkbox,{checked:h,selected:h,fluid:!0,content:h?"Ringer on.":"Ringer off.",onClick:function(){return r("toggle_ringer")}})})]})})}))},function(e,t,n){"use strict";t.__esModule=!0,t.ComputerFabricator=void 0;var o=n(0),r=(n(7),n(1)),a=n(2),i=n(3);t.ComputerFabricator=function(e,t){var n=(0,r.useBackend)(t),s=n.act,m=n.data;return(0,o.createComponentVNode)(2,i.Window,{title:"Personal Computer Vendor",width:500,height:420,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{italic:!0,fontSize:"20px",children:"Your perfect device, only three steps away..."}),0!==m.state&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mb:1,icon:"circle",content:"Clear Order",onClick:function(){return s("clean_order")}}),0===m.state&&(0,o.createComponentVNode)(2,c),1===m.state&&(0,o.createComponentVNode)(2,l),2===m.state&&(0,o.createComponentVNode)(2,d),3===m.state&&(0,o.createComponentVNode)(2,u)]})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act;n.data;return(0,o.createComponentVNode)(2,a.Section,{title:"Step 1",minHeight:"306px",children:[(0,o.createComponentVNode)(2,a.Box,{mt:5,bold:!0,textAlign:"center",fontSize:"40px",children:"Choose your Device"}),(0,o.createComponentVNode)(2,a.Box,{mt:3,children:(0,o.createComponentVNode)(2,a.Grid,{width:"100%",children:[(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"laptop",content:"Laptop",textAlign:"center",fontSize:"30px",lineHeight:2,onClick:function(){return i("pick_device",{pick:"1"})}})}),(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"tablet-alt",content:"Tablet",textAlign:"center",fontSize:"30px",lineHeight:2,onClick:function(){return i("pick_device",{pick:"2"})}})})]})})]})},l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data;return(0,o.createComponentVNode)(2,a.Section,{title:"Step 2: Customize your device",minHeight:"282px",buttons:(0,o.createComponentVNode)(2,a.Box,{bold:!0,color:"good",children:[c.totalprice,"\u20ae"]}),children:[(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Battery:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"Allows your device to operate without external utility power\nsource. Advanced batteries increase battery life.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_battery,onClick:function(){return i("hw_battery",{battery:"1"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Upgraded",selected:2===c.hw_battery,onClick:function(){return i("hw_battery",{battery:"2"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Advanced",selected:3===c.hw_battery,onClick:function(){return i("hw_battery",{battery:"3"})}})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Hard Drive:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"Stores file on your device. Advanced drives can store more\nfiles, but use more power, shortening battery life.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_disk,onClick:function(){return i("hw_disk",{disk:"1"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Upgraded",selected:2===c.hw_disk,onClick:function(){return i("hw_disk",{disk:"2"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Advanced",selected:3===c.hw_disk,onClick:function(){return i("hw_disk",{disk:"3"})}})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Network Card:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"Allows your device to wirelessly connect to stationwide NTNet\nnetwork. Basic cards are limited to on-station use, while\nadvanced cards can operate anywhere near the station, which\nincludes asteroid outposts",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"None",selected:0===c.hw_netcard,onClick:function(){return i("hw_netcard",{netcard:"0"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_netcard,onClick:function(){return i("hw_netcard",{netcard:"1"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Advanced",selected:2===c.hw_netcard,onClick:function(){return i("hw_netcard",{netcard:"2"})}})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Nano Printer:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"A device that allows for various paperwork manipulations,\nsuch as, scanning of documents or printing new ones.\nThis device was certified EcoFriendlyPlus and is capable of\nrecycling existing paper for printing purposes.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"None",selected:0===c.hw_nanoprint,onClick:function(){return i("hw_nanoprint",{print:"0"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_nanoprint,onClick:function(){return i("hw_nanoprint",{print:"1"})}})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Secondary Card Reader:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"Adds a secondary RFID card reader, for manipulating or\nreading from a second standard RFID card.\nPlease note that a primary card reader is necessary to\nallow the device to read your identification, but one\nis included in the base price.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"None",selected:0===c.hw_card,onClick:function(){return i("hw_card",{card:"0"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_card,onClick:function(){return i("hw_card",{card:"1"})}})})]}),2!==c.devtype&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Processor Unit:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"A component critical for your device's functionality.\nIt allows you to run programs from your hard drive.\nAdvanced CPUs use more power, but allow you to run\nmore programs on background at once.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_cpu,onClick:function(){return i("hw_cpu",{cpu:"1"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Advanced",selected:2===c.hw_cpu,onClick:function(){return i("hw_cpu",{cpu:"2"})}})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Tesla Relay:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"An advanced wireless power relay that allows your device\nto connect to nearby area power controller to provide\nalternative power source. This component is currently\nunavailable on tablet computers due to size restrictions.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"None",selected:0===c.hw_tesla,onClick:function(){return i("hw_tesla",{tesla:"0"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_tesla,onClick:function(){return i("hw_tesla",{tesla:"1"})}})})]})],4)]}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:3,content:"Confirm Order",color:"good",textAlign:"center",fontSize:"18px",lineHeight:2,onClick:function(){return i("confirm_order")}})]})},d=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data);return(0,o.createComponentVNode)(2,a.Section,{title:"Step 3: Payment",minHeight:"282px",children:[(0,o.createComponentVNode)(2,a.Box,{italic:!0,textAlign:"center",fontSize:"20px",children:"Your device is ready for fabrication..."}),(0,o.createComponentVNode)(2,a.Box,{bold:!0,mt:2,textAlign:"center",fontSize:"16px",children:[(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:"Please swipe your ID now to authorize payment of:"}),"\xa0",(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"good",children:[i.totalprice,"\u20ae"]})]})]})},u=function(e,t){return(0,o.createComponentVNode)(2,a.Section,{minHeight:"282px",children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,textAlign:"center",fontSize:"28px",mt:10,children:"Thank you for your purchase!"}),(0,o.createComponentVNode)(2,a.Box,{italic:!0,mt:1,textAlign:"center",children:"If you experience any difficulties with your new device, please contact your local network administrator."})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.CookingAppliance=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.CookingAppliance=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.temperature,u=l.optimalTemp,s=l.temperatureEnough,m=l.efficiency,p=l.containersRemovable,h=l.our_contents;return(0,o.createComponentVNode)(2,i.Window,{width:600,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:s?"good":"blue",value:d,maxValue:u+100,children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:d}),"\xb0C / ",u,"\xb0C"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Efficiency",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m}),"%"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Containers",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:h.map((function(e,t){return e.empty?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Slot #"+(t+1),children:(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("slot",{slot:t+1})},children:"Empty"})}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Slot #"+(t+1),verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!p,onClick:function(){return c("slot",{slot:t+1})},children:e.container||"No Container"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.progressText[0],value:e.progress,maxValue:1,children:e.progressText[1]})})]})},t)}))})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Cryo=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=[{label:"Resp.",type:"oxyLoss"},{label:"Toxin",type:"toxLoss"},{label:"Brute",type:"bruteLoss"},{label:"Burn",type:"fireLoss"}],l=[["good","Conscious"],["average","Unconscious"],["bad","DEAD"]];t.Cryo=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{width:520,height:470,resizeable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:(0,o.createComponentVNode)(2,d)})})};var d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,d=n.data,s=d.isOperating,m=d.hasOccupant,p=d.occupant,h=void 0===p?[]:p,f=d.cellTemperature,C=d.cellTemperatureStatus,N=d.isBeakerLoaded;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Occupant",flexGrow:"1",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"user-slash",onClick:function(){return i("ejectOccupant")},disabled:!m,children:"Eject"}),children:m?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Occupant",children:h.name||"Unknown"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:h.health,max:h.maxHealth,value:h.health/h.maxHealth,color:h.health>0?"good":"average",children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(h.health)})})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:l[h.stat][0],children:l[h.stat][1]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(h.bodyTemperature)})," K"]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),c.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.label,children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:h[e.type]/100,ranges:{bad:[.01,Infinity]},children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(h[e.type])})})},e.id)}))]}):(0,o.createComponentVNode)(2,a.Flex,{height:"100%",textAlign:"center",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected."]})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Cell",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return i("ejectBeaker")},disabled:!N,children:"Eject Beaker"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return i(s?"switchOff":"switchOn")},selected:s,children:s?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",color:C,children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:f})," K"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Beaker",children:(0,o.createComponentVNode)(2,u)})]})})],4)},u=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data),c=i.isBeakerLoaded,l=i.beakerLabel,d=i.beakerVolume;return c?(0,o.createFragment)([l||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No label"}),(0,o.createComponentVNode)(2,a.Box,{color:!d&&"bad",children:d?(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:d,format:function(e){return Math.round(e)+" units remaining"}}):"Beaker is empty"})],0):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No beaker loaded"})}},function(e,t,n){"use strict";t.__esModule=!0,t.CryoStorageItemsVr=t.CryoStorageVr=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(190);t.CryoStorageVr=function(e,t){var n=(0,r.useBackend)(t),d=(n.act,n.data),u=d.real_name,s=d.allow_items,m=(0,r.useLocalState)(t,"tab",0),p=m[0],h=m[1];return(0,o.createComponentVNode)(2,i.Window,{width:400,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===p,onClick:function(){return h(0)},children:"Crew"}),!!s&&(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===p,onClick:function(){return h(1)},children:"Items"})]}),(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:["Welcome, ",u,"."]}),0===p&&(0,o.createComponentVNode)(2,c.CryoStorageCrew),!!s&&1===p&&(0,o.createComponentVNode)(2,l)]})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.items);return(0,o.createComponentVNode)(2,a.Section,{title:"Stored Items",children:i.length&&i.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{color:"label",children:e},e)}))||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No items stored."})})};t.CryoStorageItemsVr=l},function(e,t,n){"use strict";t.__esModule=!0,t.DNAForensics=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.DNAForensics=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.scan_progress,u=l.scanning,s=l.bloodsamp,m=l.bloodsamp_desc;return(0,o.createComponentVNode)(2,i.Window,{width:540,height:326,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{selected:u,disabled:!s,icon:"power-off",onClick:function(){return c("scanItem")},children:u?"Halt Scan":"Begin Scan"}),(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:"eject",onClick:function(){return c("ejectItem")},children:"Eject Bloodsample"})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Scan Progress",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[99,Infinity],violet:[-Infinity,99]},value:d,maxValue:100})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Blood Sample",children:s&&(0,o.createComponentVNode)(2,a.Box,{children:[s,(0,o.createComponentVNode)(2,a.Box,{color:"label",children:m})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No blood sample inserted."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.DNAModifier=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(45),l=[["good","Alive"],["average","Unconscious"],["bad","DEAD"]],d=[["ui","Modify U.I.","dna"],["se","Modify S.E.","dna"],["buffer","Transfer Buffers","syringe"],["rejuvenators","Rejuvenators","flask"]],u=[5,10,20,30,50];t.DNAModifier=function(e,t){var n,a=(0,r.useBackend)(t),l=(a.act,a.data),d=l.irradiating,u=l.dnaBlockSize,p=l.occupant;return t.dnaBlockSize=u,t.isDNAInvalid=!p.isViableSubject||!p.uniqueIdentity||!p.structuralEnzymes,d&&(n=(0,o.createComponentVNode)(2,g,{duration:d})),(0,o.createComponentVNode)(2,i.Window,{width:660,height:700,resizable:!0,children:[(0,o.createComponentVNode)(2,c.ComplexModal),n,(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m)]})]})};var s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,d=c.locked,u=c.hasOccupant,s=c.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{color:"label",display:"inline",mr:"0.5rem",children:"Door Lock:"}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u,selected:d,icon:d?"toggle-on":"toggle-off",content:d?"Engaged":"Disengaged",onClick:function(){return i("toggleLock")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u||d,icon:"user-slash",content:"Eject",onClick:function(){return i("ejectOccupant")}})],4),children:u?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:s.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:s.minHealth,max:s.maxHealth,value:s.health/s.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:l[s.stat][0],children:l[s.stat][1]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider)]})}),t.isDNAInvalid?(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-circle"}),"\xa0 The occupant's DNA structure is ruined beyond recognition, please insert a subject with an intact DNA structure."]}):(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Radiation",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:"0",max:"100",value:s.radiationLevel/100,color:"average"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Unique Enzymes",children:c.occupant.uniqueEnzymes?c.occupant.uniqueEnzymes:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-circle"}),"\xa0 Unknown"]})})]})],0):(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"Cell unoccupied."})})},m=function(e,t){var n,i=(0,r.useBackend)(t),c=i.act,l=i.data,u=l.selectedMenuKey,s=l.hasOccupant;l.occupant;return s?t.isDNAInvalid?(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No operation possible on this subject."]})})}):("ui"===u?n=(0,o.createFragment)([(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,f)],4):"se"===u?n=(0,o.createFragment)([(0,o.createComponentVNode)(2,h),(0,o.createComponentVNode)(2,f)],4):"buffer"===u?n=(0,o.createComponentVNode)(2,C):"rejuvenators"===u&&(n=(0,o.createComponentVNode)(2,V)),(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:[(0,o.createComponentVNode)(2,a.Tabs,{children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:u===e[0],onClick:function(){return c("selectMenuKey",{key:e[0]})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:e[2]}),e[1]]},t)}))}),n]})):(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant in DNA modifier."]})})})},p=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.selectedUIBlock,d=c.selectedUISubBlock,u=c.selectedUITarget,s=c.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Modify Unique Identifier",level:"2",children:[(0,o.createComponentVNode)(2,v,{dnaString:s.uniqueIdentity,selectedBlock:l,selectedSubblock:d,blockSize:t.dnaBlockSize,action:"selectUIBlock"}),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"15",stepPixelSize:"20",value:u,format:function(e){return e.toString(16).toUpperCase()},ml:"0",onChange:function(e,t){return i("changeUITarget",{value:t})}})})}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Irradiate Block",mt:"0.5rem",onClick:function(){return i("pulseUIRadiation")}})]})},h=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.selectedSEBlock,d=c.selectedSESubBlock,u=c.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Modify Structural Enzymes",level:"2",children:[(0,o.createComponentVNode)(2,v,{dnaString:u.structuralEnzymes,selectedBlock:l,selectedSubblock:d,blockSize:t.dnaBlockSize,action:"selectSEBlock"}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Irradiate Block",onClick:function(){return i("pulseSERadiation")}})]})},f=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.radiationIntensity,d=c.radiationDuration;return(0,o.createComponentVNode)(2,a.Section,{title:"Radiation Emitter",level:"2",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Intensity",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"10",stepPixelSize:"20",value:l,popUpPosition:"right",ml:"0",onChange:function(e,t){return i("radiationIntensity",{value:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Duration",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"20",stepPixelSize:"10",unit:"s",value:d,popUpPosition:"right",ml:"0",onChange:function(e,t){return i("radiationDuration",{value:t})}})})]}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Pulse Radiation",tooltip:"Mutates a random block of either the occupant's UI or SE.",tooltipPosition:"top-right",mt:"0.5rem",onClick:function(){return i("pulseRadiation")}})]})},C=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.buffers.map((function(e,t){return(0,o.createComponentVNode)(2,N,{id:t+1,name:"Buffer "+(t+1),buffer:e},t)})));return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Buffers",level:"2",children:i}),(0,o.createComponentVNode)(2,b)],4)},N=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=e.id,d=e.name,u=e.buffer,s=c.isInjectorReady,m=d+(u.data?" - "+u.label:"");return(0,o.createComponentVNode)(2,a.Box,{backgroundColor:"rgba(0, 0, 0, 0.33)",mb:"0.5rem",children:(0,o.createComponentVNode)(2,a.Section,{title:m,level:"3",mx:"0",lineHeight:"18px",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:!u.data,icon:"trash",content:"Clear",onClick:function(){return i("bufferOption",{option:"clear",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u.data,icon:"pen",content:"Rename",onClick:function(){return i("bufferOption",{option:"changeLabel",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u.data||!c.hasDisk,icon:"save",content:"Export",tooltip:"Exports this buffer to the currently loaded data disk.",tooltipPosition:"bottom-left",onClick:function(){return i("bufferOption",{option:"saveDisk",id:l})}})],4),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Write",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject U.I",mb:"0",onClick:function(){return i("bufferOption",{option:"saveUI",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject U.I and U.E.",mb:"0",onClick:function(){return i("bufferOption",{option:"saveUIAndUE",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject S.E.",mb:"0",onClick:function(){return i("bufferOption",{option:"saveSE",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!c.hasDisk||!c.disk.data,icon:"arrow-circle-down",content:"From Disk",mb:"0",onClick:function(){return i("bufferOption",{option:"loadDisk",id:l})}})]}),!!u.data&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subject",children:u.owner||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Unknown"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Data Type",children:["ui"===u.type?"Unique Identifiers":"Structural Enzymes",!!u.ue&&" and Unique Enzymes"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transfer to",children:[(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:s?"syringe":"spinner",iconSpin:!s,content:"Injector",mb:"0",onClick:function(){return i("bufferOption",{option:"createInjector",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:s?"syringe":"spinner",iconSpin:!s,content:"Block Injector",mb:"0",onClick:function(){return i("bufferOption",{option:"createInjector",id:l,block:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"user",content:"Subject",mb:"0",onClick:function(){return i("bufferOption",{option:"transfer",id:l})}})]})],4)]}),!u.data&&(0,o.createComponentVNode)(2,a.Box,{color:"label",mt:"0.5rem",children:"This buffer is empty."})]})})},b=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.hasDisk,d=c.disk;return(0,o.createComponentVNode)(2,a.Section,{title:"Data Disk",level:"2",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:!l||!d.data,icon:"trash",content:"Wipe",onClick:function(){return i("wipeDisk")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!l,icon:"eject",content:"Eject",onClick:function(){return i("ejectDisk")}})],4),children:l?d.data?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Label",children:d.label?d.label:"No label"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subject",children:d.owner?d.owner:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Unknown"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Data Type",children:["ui"===d.type?"Unique Identifiers":"Structural Enzymes",!!d.ue&&" and Unique Enzymes"]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"Disk is blank."}):(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",my:"1rem",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"save-o",size:"4"}),(0,o.createVNode)(1,"br"),"No disk inserted."]})})},V=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.isBeakerLoaded,d=c.beakerVolume,s=c.beakerLabel;return(0,o.createComponentVNode)(2,a.Section,{title:"Rejuvenators and Beaker",level:"2",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!l,icon:"eject",content:"Eject",onClick:function(){return i("ejectBeaker")}}),children:l?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Inject",children:[u.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{disabled:e>d,icon:"syringe",content:e,onClick:function(){return i("injectRejuvenators",{amount:e})}},t)})),(0,o.createComponentVNode)(2,a.Button,{disabled:d<=0,icon:"syringe",content:"All",onClick:function(){return i("injectRejuvenators",{amount:d})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Beaker",children:[(0,o.createComponentVNode)(2,a.Box,{mb:"0.5rem",children:s||"No label"}),d?(0,o.createComponentVNode)(2,a.Box,{color:"good",children:[d," unit",1===d?"":"s"," remaining"]}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Empty"})]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",my:"25%",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",size:"4"}),(0,o.createVNode)(1,"br"),"No beaker loaded."]})})},g=function(e,t){return(0,o.createComponentVNode)(2,a.Dimmer,{textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"spinner",size:"5",spin:!0}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Box,{color:"average",children:(0,o.createVNode)(1,"h1",null,[(0,o.createComponentVNode)(2,a.Icon,{name:"radiation"}),(0,o.createTextVNode)("\xa0Irradiating occupant\xa0"),(0,o.createComponentVNode)(2,a.Icon,{name:"radiation"})],4)}),(0,o.createComponentVNode)(2,a.Box,{color:"label",children:(0,o.createVNode)(1,"h3",null,[(0,o.createTextVNode)("For "),e.duration,(0,o.createTextVNode)(" second"),1===e.duration?"":"s"],0)})]})},v=function(e,t){for(var n=(0,r.useBackend)(t),i=n.act,c=(n.data,e.dnaString),l=e.selectedBlock,d=e.selectedSubblock,u=e.blockSize,s=e.action,m=c.split(""),p=[],h=function(e){for(var t=e/u+1,n=[],r=function(r){var c=r+1;n.push((0,o.createComponentVNode)(2,a.Button,{selected:l===t&&d===c,content:m[e+r],mb:"0",onClick:function(){return i(s,{block:t,subblock:c})}}))},c=0;c1?"Dangerous!":null]},e.stage)}))||(0,o.createComponentVNode)(2,a.Box,{children:"No virus sample loaded."})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Affected Species",color:"label",children:[m&&m.length?null:"None",m.sort().join(", ")]}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Reverse Engineering",children:[(0,o.createComponentVNode)(2,a.Box,{color:"bad",mb:1,children:(0,o.createVNode)(1,"i",null,"CAUTION: Reverse engineering will destroy the viral sample.",16)}),d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.stage,icon:"exchange-alt",onClick:function(){return i("grab",{grab:e.reference})}},e.stage)})),(0,o.createComponentVNode)(2,a.Button,{content:"Species",icon:"exchange-alt",onClick:function(){return i("affected_species")}})]})],4)]})},l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=(c.dish_inserted,c.buffer),d=c.species_buffer,u=(c.effects,c.info);c.growth,c.affected_species,c.busy;return(0,o.createComponentVNode)(2,a.Section,{title:"Storage",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Memory Buffer",children:l?(0,o.createComponentVNode)(2,a.Box,{children:[l.name," (",l.stage,")"]}):d?(0,o.createComponentVNode)(2,a.Box,{children:d}):"Empty"})}),(0,o.createComponentVNode)(2,a.Button,{mt:1,icon:"save",content:"Save To Disk",disabled:!l&&!d,onClick:function(){return i("disk")}}),l?(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Splice #1",disabled:l.stage>1,onClick:function(){return i("splice",{splice:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Splice #2",disabled:l.stage>2,onClick:function(){return i("splice",{splice:2})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Splice #3",disabled:l.stage>3,onClick:function(){return i("splice",{splice:3})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Splice #4",disabled:l.stage>4,onClick:function(){return i("splice",{splice:4})}})]}):d?(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Splice Species",disabled:!d||u,onClick:function(){return i("splice",{splice:5})}})}):null]})}},function(e,t,n){"use strict";t.__esModule=!0,t.DishIncubator=void 0;var o=n(0),r=(n(5),n(20)),a=n(1),i=n(2),c=n(3);t.DishIncubator=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=d.on,s=d.system_in_use,m=d.food_supply,p=d.radiation,h=d.growth,f=d.toxins,C=d.chemicals_inserted,N=d.can_breed_virus,b=d.chemical_volume,V=d.max_chemical_volume,g=d.dish_inserted,v=d.blood_already_infected,k=d.virus,_=d.analysed,y=d.infection_rate;return(0,o.createComponentVNode)(2,c.Window,{width:400,height:600,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Section,{title:"Environmental Conditions",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"power-off",selected:u,content:u?"On":"Off",onClick:function(){return l("power")}}),children:[(0,o.createComponentVNode)(2,i.Flex,{spacing:1,mb:1,children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"radiation",content:"Add Radiation",onClick:function(){return l("rad")}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button.Confirm,{fluid:!0,color:"red",icon:"trash",confirmIcon:"trash",content:"Flush System",disabled:!s,onClick:function(){return l("flush")}})})]}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Virus Food",children:(0,o.createComponentVNode)(2,i.ProgressBar,{minValue:0,maxValue:100,ranges:{good:[40,Infinity],average:[20,40],bad:[-Infinity,20]},value:m})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Radiation Level",children:(0,o.createComponentVNode)(2,i.ProgressBar,{minValue:0,maxValue:100,color:p>=50?"bad":h>=25?"average":"good",value:p,children:[(0,r.formatCommaNumber)(1e4*p)," \xb5Sv"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Toxicity",children:(0,o.createComponentVNode)(2,i.ProgressBar,{minValue:0,maxValue:100,ranges:{bad:[50,Infinity],average:[25,50],good:[-Infinity,25]},value:f})})]})]}),(0,o.createComponentVNode)(2,i.Section,{title:N?"Vial":"Chemicals",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject "+(N?"Vial":"Chemicals"),disabled:!C,onClick:function(){return l("ejectchem")}}),(0,o.createComponentVNode)(2,i.Button,{icon:"virus",content:"Breed Virus",disabled:!N,onClick:function(){return l("virus")}})],4),children:C&&(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Volume",children:(0,o.createComponentVNode)(2,i.ProgressBar,{minValue:0,maxValue:V,value:b,children:[b,"/",V]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Breeding Environment",color:N?"good":"average",children:[g?N?"Suitable":"No hemolytic samples detected":"N/A",v?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"CAUTION: Viral infection detected in blood sample."}):null]})]})})||(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No chemicals inserted."})}),(0,o.createComponentVNode)(2,i.Section,{title:"Virus Dish",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject Dish",disabled:!g,onClick:function(){return l("ejectdish")}}),children:g?k?(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Growth Density",children:(0,o.createComponentVNode)(2,i.ProgressBar,{minValue:0,maxValue:100,ranges:{good:[50,Infinity],average:[25,50],bad:[-Infinity,25]},value:h})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Infection Rate",children:_?y:"Unknown."})]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"No virus detected."}):(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No dish loaded."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.DisposalBin=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.DisposalBin=function(e,t){var n,c,l=(0,r.useBackend)(t),d=l.act,u=l.data;return 2===u.mode?(n="good",c="Ready"):u.mode<=0?(n="bad",c="N/A"):1===u.mode?(n="average",c="Pressurizing"):(n="average",c="Idle"),(0,o.createComponentVNode)(2,i.Window,{width:300,height:250,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,m:1,children:"Status"}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"State",color:n,children:c}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{bad:[-Infinity,0],average:[0,99],good:[99,Infinity]},value:u.pressure,minValue:0,maxValue:100})})]}),(0,o.createComponentVNode)(2,a.Box,{bold:!0,m:1,children:"Controls"}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Handle",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"toggle-off",disabled:u.isAI||u.panel_open,content:"Disengaged",selected:u.flushing?null:"selected",onClick:function(){return d("disengageHandle")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"toggle-on",disabled:u.isAI||u.panel_open,content:"Engaged",selected:u.flushing?"selected":null,onClick:function(){return d("engageHandle")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"toggle-off",disabled:-1===u.mode,content:"Off",selected:u.mode?null:"selected",onClick:function(){return d("pumpOff")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"toggle-on",disabled:-1===u.mode,content:"On",selected:u.mode?"selected":null,onClick:function(){return d("pumpOn")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Eject",children:(0,o.createComponentVNode)(2,a.Button,{icon:"sign-out-alt",disabled:u.isAI,content:"Eject Contents",onClick:function(){return d("eject")}})})]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.DroneConsole=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.DroneConsole=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.drones,u=l.areas,s=l.selected_area,m=l.fabricator,p=l.fabPower;return(0,o.createComponentVNode)(2,i.Window,{width:600,height:350,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Drone Fabricator",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!m,selected:p,icon:"power-off",content:p?"Enabled":"Disabled",onClick:function(){return c("toggle_fab")}}),children:m?(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Linked."}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:["Fabricator not detected.",(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Search for Fabricator",onClick:function(){return c("search_fab")}})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Request Drone",children:[(0,o.createComponentVNode)(2,a.Dropdown,{options:u?u.sort():null,selected:s,width:"100%",onSelected:function(e){return c("set_dcall_area",{area:e})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"share-square",content:"Send Ping",onClick:function(){return c("ping")}})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Maintenance Units",children:d&&d.length?(0,o.createComponentVNode)(2,a.LabeledList,{children:d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Resync",onClick:function(){return c("resync",{ref:e.ref})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"exclamation-triangle",color:"red",content:"Shutdown",onClick:function(){return c("shutdown",{ref:e.ref})}})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:e.loc}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge",children:[e.charge," / ",e.maxCharge]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Active",children:e.active?"Yes":"No"})]})},e.name)}))}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No drones detected."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.EmbeddedController=void 0;var o=n(0),r=(n(7),n(5),n(1)),a=n(2),i=n(3),c=((0,n(24).createLogger)("fuck"),{});t.EmbeddedController=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data.internalTemplateName),l=c[a];if(!l)throw Error("Unable to find Component for template name: "+a);return(0,o.createComponentVNode)(2,i.Window,{width:450,height:340,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,l)})})};var l=function(e,t){var n=e.bars;return(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:n.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.label,children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.color(e.value),minValue:e.minValue,maxValue:e.maxValue,value:e.value,children:e.textValue})},e.label)}))})})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.data,c=n.act,l=!0;i.interior_status&&"open"===i.interior_status.state?l=!1:i.external_pressure&&i.chamber_pressure&&(l=!(Math.abs(i.external_pressure-i.chamber_pressure)>5));var d=!0;return i.exterior_status&&"open"===i.exterior_status.state?d=!1:i.internal_pressure&&i.chamber_pressure&&(d=!(Math.abs(i.internal_pressure-i.chamber_pressure)>5)),(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{disabled:i.airlock_disabled,icon:"arrow-left",content:"Cycle to Exterior",onClick:function(){return c("cycle_ext")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:i.airlock_disabled,icon:"arrow-right",content:"Cycle to Interior",onClick:function(){return c("cycle_int")}})]}),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:i.airlock_disabled,color:l?"":"bad",icon:"exclamation-triangle",confirmIcon:"exclamation-triangle",content:"Force Exterior Door",onClick:function(){return c("force_ext")}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:i.airlock_disabled,color:d?"":"bad",icon:"exclamation-triangle",confirmIcon:"exclamation-triangle",content:"Force Interior Door",onClick:function(){return c("force_int")}})]})],4)},u=function(e,t){var n=(0,r.useBackend)(t),i=n.data,c=(n.act,{docked:(0,o.createComponentVNode)(2,s),undocking:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"EJECTING-STAND CLEAR!"}),undocked:(0,o.createComponentVNode)(2,a.Box,{color:"grey",children:"POD EJECTED"}),docking:(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"INITIALIZING..."})}),l=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"ERROR"});return"open"===i.exterior_status.state?l=(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"OPEN"}):"unlocked"===i.exterior_status.lock?l=(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"UNSECURED"}):"locked"===i.exterior_status.lock&&(l=(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"SECURED"})),(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Escape Pod Status",children:c[i.docking_status]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Docking Hatch",children:l})]})})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.data;n.act;return i.armed?(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"ARMED"}):(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"SYSTEMS OK"})},m=function(e,t){var n=(0,r.useBackend)(t),i=n.data,c=n.act;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{disabled:!i.override_enabled,icon:"exclamation-triangle",content:"Force Exterior Door",color:"docked"!==i.docking_status?"bad":"",onClick:function(){return c("force_door")}}),(0,o.createComponentVNode)(2,a.Button,{selected:i.override_enabled,color:"docked"!==i.docking_status?"bad":"average",icon:"exclamation-triangle",content:"Override",onClick:function(){return c("toggle_override")}})]})},p=function(e,t){var n=(0,r.useBackend)(t),i=n.data,c=(n.act,{docked:(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"DOCKED"}),docking:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"DOCKING"}),undocking:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"UNDOCKING"}),undocked:(0,o.createComponentVNode)(2,a.Box,{color:"grey",children:"NOT IN USE"})}[i.docking_status]);return i.override_enabled&&(c=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[i.docking_status.toUpperCase(),"-OVERRIDE ENABLED"]})),c};c.AirlockConsoleAdvanced=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,u=function(e){return e<80||e>120?"bad":e<95||e>110?"average":"good"},s=[{minValue:0,maxValue:202,value:c.external_pressure,label:"External Pressure",textValue:c.external_pressure+" kPa",color:u},{minValue:0,maxValue:202,value:c.chamber_pressure,label:"Chamber Pressure",textValue:c.chamber_pressure+" kPa",color:u},{minValue:0,maxValue:202,value:c.internal_pressure,label:"Internal Pressure",textValue:c.internal_pressure+" kPa",color:u}];return(0,o.createFragment)([(0,o.createComponentVNode)(2,l,{bars:s}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Purge",onClick:function(){return i("purge")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"lock-open",content:"Secure",onClick:function(){return i("secure")}})]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!c.processing,icon:"ban",color:"bad",content:"Abort",onClick:function(){return i("abort")}})})]})],4)};c.AirlockConsoleSimple=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,u=[{minValue:0,maxValue:202,value:c.chamber_pressure,label:"Chamber Pressure",textValue:c.chamber_pressure+" kPa",color:function(e){return e<80||e>120?"bad":e<95||e>110?"average":"good"}}];return(0,o.createFragment)([(0,o.createComponentVNode)(2,l,{bars:u}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!c.processing,icon:"ban",color:"bad",content:"Abort",onClick:function(){return i("abort")}})})]})],4)};c.AirlockConsolePhoron=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,u=[{minValue:0,maxValue:202,value:c.chamber_pressure,label:"Chamber Pressure",textValue:c.chamber_pressure+" kPa",color:function(e){return e<80||e>120?"bad":e<95||e>110?"average":"good"}},{minValue:0,maxValue:100,value:c.chamber_phoron,label:"Chamber Phoron",textValue:c.chamber_phoron+" mol",color:function(e){return e>5?"bad":e>.5?"average":"good"}}];return(0,o.createFragment)([(0,o.createComponentVNode)(2,l,{bars:u}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!c.processing,icon:"ban",color:"bad",content:"Abort",onClick:function(){return i("abort")}})})]})],4)};c.AirlockConsoleDocking=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,u=[{minValue:0,maxValue:202,value:c.chamber_pressure,label:"Chamber Pressure",textValue:c.chamber_pressure+" kPa",color:function(e){return e<80||e>120?"bad":e<95||e>110?"average":"good"}}];return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Dock",buttons:c.airlock_disabled||c.override_enabled?(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",color:c.override_enabled?"red":"",content:"Override",onClick:function(){return i("toggle_override")}}):null,children:(0,o.createComponentVNode)(2,p)}),(0,o.createComponentVNode)(2,l,{bars:u}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!c.processing,icon:"ban",color:"bad",content:"Abort",onClick:function(){return i("abort")}})})]})],4)};c.DockingConsoleSimple=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"ERROR"});return"open"===c.exterior_status.state?l=(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"OPEN"}):"unlocked"===c.exterior_status.lock?l=(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"UNSECURED"}):"locked"===c.exterior_status.lock&&(l=(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"SECURED"})),(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",disabled:!c.override_enabled,content:"Force exterior door",onClick:function(){return i("force_door")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",color:c.override_enabled?"red":"",content:"Override",onClick:function(){return i("toggle_override")}})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Dock Status",children:(0,o.createComponentVNode)(2,p)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Docking Hatch",children:l})]})})};c.DockingConsoleMulti=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Docking Status",children:(0,o.createComponentVNode)(2,p)}),(0,o.createComponentVNode)(2,a.Section,{title:"Airlocks",children:n.airlocks.length?(0,o.createComponentVNode)(2,a.LabeledList,{children:n.airlocks.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{color:e.override_enabled?"bad":"good",label:e.name,children:e.override_enabled?"OVERRIDE ENABLED":"STATUS OK"},e.name)}))}):(0,o.createComponentVNode)(2,a.Flex,{height:"100%",mt:"0.5em",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"door-closed",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No airlocks found."]})})})],4)};c.DoorAccessConsole=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l="open"===c.interior_status.state||"closed"===c.exterior_status.state,d="open"===c.exterior_status.state||"closed"===c.interior_status.state;return(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:l?"arrow-left":"exclamation-triangle",content:l?"Cycle To Exterior":"Lock Exterior Door",onClick:function(){i(l?"cycle_ext_door":"force_ext")}}),(0,o.createComponentVNode)(2,a.Button,{icon:d?"arrow-right":"exclamation-triangle",content:d?"Cycle To Interior":"Lock Interior Door",onClick:function(){i(d?"cycle_int_door":"force_int")}})],0),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Exterior Door Status",children:"closed"===c.exterior_status.state?"Locked":"Open"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Interior Door Status",children:"closed"===c.interior_status.state?"Locked":"Open"})]})})};c.EscapePodConsole=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data;return(0,o.createFragment)([(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:[(0,o.createComponentVNode)(2,m),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",disabled:c.armed,color:c.armed?"bad":"average",content:"ARM",onClick:function(){return i("manual_arm")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",disabled:!c.can_force,color:"bad",content:"MANUAL EJECT",onClick:function(){return i("force_launch")}})]})]})],4)};c.EscapePodBerthConsole=function(e,t){(0,r.useBackend)(t).data;return(0,o.createFragment)([(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,m)})],4)}},function(e,t,n){"use strict";t.__esModule=!0,t.ExonetNode=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.ExonetNode=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.allowPDAs,s=l.allowCommunicators,m=l.allowNewscasters,p=l.logs;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,content:"Power "+(d?"On":"Off"),onClick:function(){return c("toggle_power")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Incoming PDA Messages",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:u,content:u?"Open":"Closed",onClick:function(){return c("toggle_PDA_port")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Incoming Communicators",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:s,content:s?"Open":"Closed",onClick:function(){return c("toggle_communicator_port")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Incoming Newscaster Content",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:m,content:m?"Open":"Closed",onClick:function(){return c("toggle_newscaster_port")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Logging",children:(0,o.createComponentVNode)(2,a.Flex,{wrap:"wrap",children:[p.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{m:"2px",basis:"49%",grow:t%2,children:e},t)})),p&&0!==p.length?null:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No logs found."})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Farmbot=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Farmbot=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.locked,s=l.tank,m=l.tankVolume,p=l.tankMaxVolume,h=l.waters_trays,f=l.refills_water,C=l.uproots_weeds,N=l.replaces_nutriment;l.collects_produce,l.removes_dead;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:540,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Automatic Hyrdoponic Assisting Unit v2.0",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("power")},children:d?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Water Tank",children:s&&(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,maxValue:p,children:[m," / ",p]})||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No water tank detected."})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Behavior Controls",color:u?"good":"bad",children:u?"Locked":"Unlocked"})]})}),!u&&(0,o.createComponentVNode)(2,a.Section,{title:"Behavior Controls",children:[(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Watering Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Water plants",children:(0,o.createComponentVNode)(2,a.Button,{icon:h?"toggle-on":"toggle-off",selected:h,onClick:function(){return c("water")},children:h?"Yes":"No"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Refill watertank",children:(0,o.createComponentVNode)(2,a.Button,{icon:f?"toggle-on":"toggle-off",selected:f,onClick:function(){return c("refill")},children:f?"Yes":"No"})})]})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Weeding controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Weed plants",children:(0,o.createComponentVNode)(2,a.Button,{icon:C?"toggle-on":"toggle-off",selected:C,onClick:function(){return c("weed")},children:C?"Yes":"No"})})})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Nutriment controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Replace fertilizer",children:(0,o.createComponentVNode)(2,a.Button,{icon:N?"toggle-on":"toggle-off",selected:N,onClick:function(){return c("replacenutri")},children:N?"Yes":"No"})})})})]})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.FaxContent=t.Fax=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(95),l=n(96);t.Fax=function(e,t){return(0,r.useBackend)(t).data.authenticated?(0,o.createComponentVNode)(2,i.Window,{width:600,height:250,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,c.LoginInfo),(0,o.createComponentVNode)(2,d)]})}):(0,o.createComponentVNode)(2,i.Window,{width:600,height:250,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,l.LoginScreen)]})})};var d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.bossName,d=c.copyItem,u=c.cooldown,s=c.destination;return(0,o.createComponentVNode)(2,a.Section,{children:[!!u&&(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:"Transmitter arrays realigning. Please stand by."}),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network",children:[l," Quantum Entanglement Network"]})}),d&&(0,o.createComponentVNode)(2,a.Box,{mt:1,children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Currently Sending",children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sending To",children:(0,o.createComponentVNode)(2,a.Button,{icon:"map-marker-alt",content:s,onClick:function(){return i("dept")}})})]}),(0,o.createComponentVNode)(2,a.Button,{icon:"share-square",onClick:function(){return i("send")},content:"Send",fluid:!0})]})||(0,o.createComponentVNode)(2,a.Box,{mt:1,children:"Please insert item to transmit."})]})};t.FaxContent=d;var u=function(e,t){var n=(0,r.useBackend)(t),i=n.act;return n.data.copyItem?(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",onClick:function(){return i("remove")},content:"Remove Item"})}):null}},function(e,t,n){"use strict";t.__esModule=!0,t.FileCabinet=void 0;var o=n(0),r=n(9),a=n(1),i=n(2),c=n(3);t.FileCabinet=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data.contents,u=(0,r.sortBy)((function(e){return e.name}))(d||[]);return(0,o.createComponentVNode)(2,c.Window,{width:350,height:300,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i.Section,{children:u.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"file",content:e.name,onClick:function(){return l("retrieve",{ref:e.ref})}},e.ref)}))})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Floorbot=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Floorbot=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.open,s=l.locked,m=l.amount,p=l.possible_bmode,h=l.improvefloors,f=l.eattiles,C=l.maketiles,N=l.bmode;return(0,o.createComponentVNode)(2,i.Window,{width:390,height:310,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Automatic Station Floor Repairer v2.0",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("start")},children:d?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tiles Left",children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",color:u?"bad":"good",children:u?"Open":"Closed"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Behavior Controls",color:s?"good":"bad",children:s?"Locked":"Unlocked"})]})}),!s&&(0,o.createComponentVNode)(2,a.Section,{title:"Behavior Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Improves Floors",children:(0,o.createComponentVNode)(2,a.Button,{icon:h?"toggle-on":"toggle-off",selected:h,onClick:function(){return c("improve")},children:h?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Finds Tiles",children:(0,o.createComponentVNode)(2,a.Button,{icon:f?"toggle-on":"toggle-off",selected:f,onClick:function(){return c("tiles")},children:f?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Makes Metal Sheets into Tiles",children:(0,o.createComponentVNode)(2,a.Button,{icon:C?"toggle-on":"toggle-off",selected:C,onClick:function(){return c("make")},children:C?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Bridge Mode",children:(0,o.createComponentVNode)(2,a.Dropdown,{over:!0,width:"100%",placeholder:"Disabled",selected:N,options:p,onSelected:function(e){return c("bridgemode",{dir:e})}})})]})})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GasPump=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.GasPump=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.pressure_set,s=l.last_flow_rate,m=l.last_power_draw,p=l.max_power_draw;return(0,o.createComponentVNode)(2,i.Window,{width:470,height:290,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:s/10})," L/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Load",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,minValue:0,maxValue:p,color:m=100?s="Running":!d&&u>0&&(s="DISCHARGING"),(0,o.createComponentVNode)(2,i.Window,{width:500,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"exclamation-triangle",confirmIcon:"exclamation-triangle",color:"red",content:"Toggle Breaker",confirmContent:d?"This will disable gravity!":"This will enable gravity!",onClick:function(){return c("gentoggle")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Breaker Setting",children:d?"Generator Enabled":"Generator Disabled"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Mode",children:["Generator ",s]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Status",children:[u,"%"]})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GuestPass=void 0;var o=n(0),r=n(9),a=n(1),i=n(2),c=n(3);t.GuestPass=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=(d.access,d.area),s=d.giver,m=d.giveName,p=d.reason,h=d.duration,f=d.mode,C=d.log,N=d.uid;return(0,o.createComponentVNode)(2,c.Window,{width:500,height:520,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:1===f&&(0,o.createComponentVNode)(2,i.Section,{title:"Activity Log",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"scroll",content:"Activity Log",selected:!0,onClick:function(){return l("mode",{mode:0})}}),children:[(0,o.createComponentVNode)(2,i.Button,{icon:"print",content:"Print",onClick:function(){return l("print")},fluid:!0,mb:1}),(0,o.createComponentVNode)(2,i.Section,{level:2,title:"Logs",children:C.length&&C.map((function(e){return(0,o.createVNode)(1,"div",null,null,1,{dangerouslySetInnerHTML:{__html:e}},e)}))||(0,o.createComponentVNode)(2,i.Box,{children:"No logs."})})]})||(0,o.createComponentVNode)(2,i.Section,{title:"Guest pass terminal #"+N,buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"scroll",content:"Activity Log",onClick:function(){return l("mode",{mode:1})}}),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Issuing ID",children:(0,o.createComponentVNode)(2,i.Button,{content:s||"Insert ID",onClick:function(){return l("id")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Issued To",children:(0,o.createComponentVNode)(2,i.Button,{content:m,onClick:function(){return l("giv_name")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Reason",children:(0,o.createComponentVNode)(2,i.Button,{content:p,onClick:function(){return l("reason")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Duration (minutes)",children:(0,o.createComponentVNode)(2,i.Button,{content:h,onClick:function(){return l("duration")}})})]}),(0,o.createComponentVNode)(2,i.Button.Confirm,{icon:"check",fluid:!0,content:"Issue Pass",onClick:function(){return l("issue")}}),(0,o.createComponentVNode)(2,i.Section,{title:"Access",level:2,children:(0,r.sortBy)((function(e){return e.area_name}))(u).map((function(e){return(0,o.createComponentVNode)(2,i.Button.Checkbox,{checked:e.on,content:e.area_name,onClick:function(){return l("access",{access:e.area})}},e.area)}))})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Holodeck=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.Holodeck=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.supportedPrograms,u=l.restrictedPrograms,s=l.currentProgram,m=l.isSilicon,p=l.safetyDisabled,h=l.emagged,f=l.gravity,C=d;return p&&(C=C.concat(u)),(0,o.createComponentVNode)(2,i.Window,{width:400,height:610,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Programs",children:C.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{color:-1!==u.indexOf(e)?"bad":null,icon:"eye",content:e,selected:s===e,fluid:!0,onClick:function(){return c("program",{program:e})}},e)}))}),!!m&&(0,o.createComponentVNode)(2,a.Section,{title:"Override",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",fluid:!0,disabled:h,color:p?"good":"bad",onClick:function(){return c("AIoverride")},children:[!!h&&"Error, unable to control. ",p?"Enable Safeties":"Disable Safeties"]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safeties",children:p?(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"DISABLED"}):(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"ENABLED"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gravity",children:(0,o.createComponentVNode)(2,a.Button,{icon:"user-astronaut",selected:f,onClick:function(){return c("gravity")},children:f?"Enabled":"Disabled"})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ICAssembly=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=(n(7),n(20));t.ICAssembly=function(e,t){var n=(0,a.useBackend)(t),u=(n.act,n.data),s=u.total_parts,m=u.max_components,p=u.total_complexity,h=u.max_complexity,f=u.battery_charge,C=u.battery_max,N=u.net_power,b=u.unremovable_circuits,V=u.removable_circuits;return(0,o.createComponentVNode)(2,c.Window,{width:600,height:380,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Space in Assembly",children:(0,o.createComponentVNode)(2,i.ProgressBar,{ranges:{good:[0,.25],average:[.5,.75],bad:[.75,1]},value:s/m,maxValue:1,children:[s," / ",m," (",(0,r.round)(s/m*100,1),"%)"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Complexity",children:(0,o.createComponentVNode)(2,i.ProgressBar,{ranges:{good:[0,.25],average:[.5,.75],bad:[.75,1]},value:p/h,maxValue:1,children:[p," / ",h," (",(0,r.round)(p/h*100,1),"%)"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Cell Charge",children:f&&(0,o.createComponentVNode)(2,i.ProgressBar,{ranges:{bad:[0,.25],average:[.5,.75],good:[.75,1]},value:f/C,maxValue:1,children:[f," / ",C," (",(0,r.round)(f/C*100,1),"%)"]})||(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"No cell detected."})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Net Energy",children:0===N?"0 W/s":(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:N,format:function(e){return"-"+(0,l.formatPower)(Math.abs(e))+"/s"}})})]})}),b.length&&(0,o.createComponentVNode)(2,d,{title:"Built-in Components",circuits:b})||null,V.length&&(0,o.createComponentVNode)(2,d,{title:"Removable Components",circuits:V})||null]})})};var d=function(e,t){var n=(0,a.useBackend)(t).act,r=e.title,c=e.circuits;return(0,o.createComponentVNode)(2,i.Section,{title:r,children:(0,o.createComponentVNode)(2,i.LabeledList,{children:c.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:[(0,o.createComponentVNode)(2,i.Button,{icon:"eye",onClick:function(){return n("open_circuit",{ref:e.ref})},children:"View"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eye",onClick:function(){return n("rename_circuit",{ref:e.ref})},children:"Rename"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eye",onClick:function(){return n("scan_circuit",{ref:e.ref})},children:"Debugger Scan"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eye",onClick:function(){return n("remove_circuit",{ref:e.ref})},children:"Remove"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eye",onClick:function(){return n("bottom_circuit",{ref:e.ref})},children:"Move to Bottom"})]},e.ref)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ICCircuit=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7),l=n(20);t.ICCircuit=function(e,t){var n=(0,r.useBackend)(t),c=n.act,s=n.data,m=(s.name,s.desc),p=s.displayed_name,h=(s.removable,s.complexity),f=s.power_draw_idle,C=s.power_draw_per_use,N=s.extended_desc,b=s.inputs,V=s.outputs,g=s.activators;return(0,o.createComponentVNode)(2,i.Window,{width:600,height:400,resizable:!0,title:p,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stats",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("rename")},children:"Rename"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("scan")},children:"Scan with Device"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("remove")},children:"Remove"})],4),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Complexity",children:h}),f&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Draw (Idle)",children:(0,l.formatPower)(f)})||null,C&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Draw (Active)",children:(0,l.formatPower)(C)})||null]}),N]}),(0,o.createComponentVNode)(2,a.Section,{title:"Circuit",children:[(0,o.createComponentVNode)(2,a.Flex,{textAlign:"center",spacing:1,children:[b.length&&(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Section,{title:"Inputs",children:(0,o.createComponentVNode)(2,d,{list:b})})})||null,(0,o.createComponentVNode)(2,a.Flex.Item,{basis:b.length&&V.length?"33%":b.length||V.length?"45%":"100%",children:(0,o.createComponentVNode)(2,a.Section,{title:p,mb:1,children:(0,o.createComponentVNode)(2,a.Box,{children:m})})}),V.length&&(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Section,{title:"Outputs",children:(0,o.createComponentVNode)(2,d,{list:V})})})||null]}),(0,o.createComponentVNode)(2,a.Section,{title:"Triggers",children:g.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("pin_name",{pin:e.ref})},children:e.pulse_out?"":""}),(0,o.createComponentVNode)(2,u,{pin:e})]},e.name)}))})]})]})})};var d=function(e,t){var n=(0,r.useBackend)(t).act;return e.list.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return n("pin_name",{pin:e.ref})},children:[(0,c.decodeHtmlEntities)(e.type),": ",e.name]}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return n("pin_data",{pin:e.ref})},children:e.data}),(0,o.createComponentVNode)(2,u,{pin:e})]},e.ref)}))},u=function(e,t){var n=(0,r.useBackend)(t).act,i=e.pin;return i.linked.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return n("pin_unwire",{pin:i.ref,link:e.ref})},children:e.name}),"@\xa0",(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return n("examine",{ref:e.holder_ref})},children:e.holder_name})]},e.ref)}))}},function(e,t,n){"use strict";t.__esModule=!0,t.ICDetailer=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(7);t.ICDetailer=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.detail_color,s=d.color_list;return(0,o.createComponentVNode)(2,i.Window,{width:420,height:254,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:Object.keys(s).map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{ml:0,mr:0,mb:-.4,mt:0,tooltip:(0,c.toTitleCase)(e),tooltipPosition:t%6==5?"left":"right",height:"64px",width:"64px",onClick:function(){return l("change_color",{color:e})},style:s[e]===u?{border:"4px solid black","border-radius":0}:{"border-radius":0},backgroundColor:s[e]},e)}))})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ICPrinter=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(9);n(24);t.ICPrinter=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data),l=c.metal,u=c.max_metal,s=c.metal_per_sheet,m=(c.debug,c.upgraded),p=c.can_clone;c.assembly_to_clone,c.categories;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:630,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Metal",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:l,maxValue:u,children:[l/s," / ",u/s," sheets"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Circuits Available",children:m?"Advanced":"Regular"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Assembly Cloning",children:p?"Available":"Unavailable"})]}),(0,o.createComponentVNode)(2,a.Box,{mt:1,children:"Note: A red component name means that the printer must be upgraded to create that component."})]}),(0,o.createComponentVNode)(2,d)]})})};var l=function(e,t){return!!e.can_build&&!(e.cost>t.metal)},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,d=n.data,u=d.categories,s=(d.debug,(0,r.useSharedState)(t,"categoryTarget",null)),m=s[0],p=s[1],h=(0,c.filter)((function(e){return e.name===m}))(u)[0];return(0,o.createComponentVNode)(2,a.Section,{title:"Circuits",children:[(0,o.createComponentVNode)(2,a.Tabs,{children:(0,c.sortBy)((function(e){return e.name}))(u).map((function(e){return(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:m===e.name,onClick:function(){return p(e.name)},children:e.name},e.name)}))}),h&&(0,o.createComponentVNode)(2,a.Section,{title:h.name,level:2,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,c.sortBy)((function(e){return e.name}))(h.items).map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,labelColor:e.can_build?"good":"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!l(e,d),icon:"print",onClick:function(){return i("build",{build:e.path})},children:"Print"}),children:e.desc},e.name)}))})})||"No category selected."]})}},function(e,t,n){"use strict";t.__esModule=!0,t.IDCard=void 0;var o=n(0),r=n(2),a=n(1),i=n(3),c=n(191);t.IDCard=function(e,t){var n=(0,a.useBackend)(t).data,l=n.registered_name,d=n.sex,u=n.age,s=n.assignment,m=n.fingerprint_hash,p=n.blood_type,h=n.dna_hash,f=n.photo_front,C=[{name:"Sex",val:d},{name:"Age",val:u},{name:"Blood Type",val:p},{name:"Fingerprint",val:m},{name:"DNA Hash",val:h}];return(0,o.createComponentVNode)(2,i.Window,{width:470,height:250,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,r.Section,{children:[(0,o.createComponentVNode)(2,r.Flex,{children:[(0,o.createComponentVNode)(2,r.Flex.Item,{basis:"25%",textAlign:"left",children:(0,o.createComponentVNode)(2,r.Box,{inline:!0,style:{width:"101px",height:"120px",overflow:"hidden",outline:"2px solid #4972a1"},children:f&&(0,o.createVNode)(1,"img",null,null,1,{src:f.substr(1,f.length-1),style:{width:"300px","margin-left":"-94px","-ms-interpolation-mode":"nearest-neighbor"}})||(0,o.createComponentVNode)(2,r.Icon,{name:"user",size:8,ml:1.5,mt:2.5})})}),(0,o.createComponentVNode)(2,r.Flex.Item,{basis:0,grow:1,children:(0,o.createComponentVNode)(2,r.LabeledList,{children:C.map((function(e){return(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:e.name,children:e.val},e.name)}))})})]}),(0,o.createComponentVNode)(2,r.Flex,{className:"IDCard__NamePlate",align:"center",justify:"space-around",children:[(0,o.createComponentVNode)(2,r.Flex.Item,{children:(0,o.createComponentVNode)(2,r.Box,{textAlign:"center",children:l})}),(0,o.createComponentVNode)(2,r.Flex.Item,{children:(0,o.createComponentVNode)(2,r.Box,{textAlign:"center",children:(0,o.createComponentVNode)(2,c.RankIcon,{rank:s})})}),(0,o.createComponentVNode)(2,r.Flex.Item,{children:(0,o.createComponentVNode)(2,r.Box,{textAlign:"center",children:s})})]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.InventoryPanel=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.InventoryPanel=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.slots,u=l.internalsValid;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:200,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d&&d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,a.Button,{mb:-1,icon:e.item?"hand-paper":"gift",onClick:function(){return c(e.act)},children:e.item||"Nothing"})},e.name)}))})}),u&&(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:u&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"lungs",onClick:function(){return c("internals")},children:"Set Internals"})||null})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.InventoryPanelHuman=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.InventoryPanelHuman=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.slots,u=l.specialSlots,s=(l.internals,l.internalsValid),m=l.sensors,p=l.handcuffed,h=l.handcuffedParams,f=l.legcuffed,C=l.legcuffedParams,N=l.accessory;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[d&&d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,a.Button,{mb:-1,icon:e.item?"hand-paper":"gift",onClick:function(){return c(e.act,e.params)},children:e.item||"Nothing"})},e.name)})),(0,o.createComponentVNode)(2,a.LabeledList.Divider),u&&u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,a.Button,{mb:-1,icon:e.item?"hand-paper":"gift",onClick:function(){return c(e.act,e.params)},children:e.item||"Nothing"})},e.name)}))]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:[(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"running",onClick:function(){return c("targetSlot",{slot:"splints"})},children:"Remove Splints"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"hand-paper",onClick:function(){return c("targetSlot",{slot:"pockets"})},children:"Empty Pockets"}),s&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"lungs",onClick:function(){return c("targetSlot",{slot:"internals"})},children:"Set Internals"})||null,m&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"book-medical",onClick:function(){return c("targetSlot",{slot:"sensors"})},children:"Set Sensors"})||null,p&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"bad",icon:"unlink",onClick:function(){return c("targetSlot",h)},children:"Handcuffed"})||null,f&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"bad",icon:"unlink",onClick:function(){return c("targetSlot",C)},children:"Legcuffed"})||null,N&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"bad",icon:"unlink",onClick:function(){return c("targetSlot",{slot:"tie"})},children:"Remove Accessory"})||null]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.IsolationCentrifuge=void 0;var o=n(0),r=(n(5),n(20),n(1)),a=n(2),i=n(3);t.IsolationCentrifuge=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.busy,u=l.antibodies,s=l.pathogens,m=l.is_antibody_sample,p=l.sample_inserted,h=(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No vial detected."});return p&&(h=u||s?(0,o.createFragment)([u?(0,o.createComponentVNode)(2,a.Section,{title:"Antibodies",children:u}):null,s.length?(0,o.createComponentVNode)(2,a.Section,{title:"Pathogens",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:s.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:e.spread_type},e.name)}))})}):null],0):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No antibodies or viral strains detected."})),(0,o.createComponentVNode)(2,i.Window,{width:400,height:500,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:d?(0,o.createComponentVNode)(2,a.Section,{title:"The Centrifuge is currently busy.",color:"bad",children:(0,o.createVNode)(1,"center",null,(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:d}),2)}):(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:m?"Antibody Sample":"Blood Sample",children:[(0,o.createComponentVNode)(2,a.Flex,{spacing:1,mb:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"print",content:"Print",disabled:!u&&!s.length,onClick:function(){return c("print")}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:"Eject Vial",disabled:!p,onClick:function(){return c("sample")}})})]}),h]}),u&&!m||s.length?(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[u&&!m?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Isolate Antibodies",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:u,onClick:function(){return c("antibody")}})}):null,s.length?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Isolate Strain",children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:e.name,onClick:function(){return c("isolate",{isolate:e.reference})}},e.name)}))}):null]})}):null],0)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.JanitorCart=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.JanitorCart=function(e,t){var n=(0,r.useBackend)(t),c=n.act,d=n.data,u=d.mybag,s=d.mybucket,m=d.mymop,p=d.myspray,h=d.myreplacer,f=d.signs;d.icons;return(0,o.createComponentVNode)(2,i.Window,{width:210,height:180,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:u||"Garbage Bag Slot",tooltipPosition:"bottom-right",color:u?"grey":"transparent",style:{border:u?null:"2px solid grey"},onClick:function(){return c("bag")},children:(0,o.createComponentVNode)(2,l,{iconkey:"mybag"})}),(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:s||"Bucket Slot",tooltipPosition:"bottom",color:s?"grey":"transparent",style:{border:s?null:"2px solid grey"},onClick:function(){return c("bucket")},children:(0,o.createComponentVNode)(2,l,{iconkey:"mybucket"})}),(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:m||"Mop Slot",tooltipPosition:"bottom-left",color:m?"grey":"transparent",style:{border:m?null:"2px solid grey"},onClick:function(){return c("mop")},children:(0,o.createComponentVNode)(2,l,{iconkey:"mymop"})}),(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:p||"Spray Slot",tooltipPosition:"top-right",color:p?"grey":"transparent",style:{border:p?null:"2px solid grey"},onClick:function(){return c("spray")},children:(0,o.createComponentVNode)(2,l,{iconkey:"myspray"})}),(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:h||"Light Replacer Slot",tooltipPosition:"top",color:h?"grey":"transparent",style:{border:h?null:"2px solid grey"},onClick:function(){return c("replacer")},children:(0,o.createComponentVNode)(2,l,{iconkey:"myreplacer"})}),(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:f||"Signs Slot",tooltipPosition:"top-left",color:f?"grey":"transparent",style:{border:f?null:"2px solid grey"},onClick:function(){return c("sign")},children:(0,o.createComponentVNode)(2,l,{iconkey:"signs"})})]})})};var c={mybag:"trash",mybucket:"fill",mymop:"broom",myspray:"spray-can",myreplacer:"lightbulb",signs:"sign"},l=function(e,t){var n=(0,r.useBackend)(t).data,i=e.iconkey,l=n.icons;return i in l?(0,o.createVNode)(1,"img",null,null,1,{src:l[i].substr(1,l[i].length-1),style:{position:"absolute",left:0,right:0,top:0,bottom:0,width:"64px",height:"64px","-ms-interpolation-mode":"nearest-neighbor"}}):(0,o.createComponentVNode)(2,a.Icon,{style:{position:"absolute",left:"4px",right:0,top:"20px",bottom:0,width:"64px",height:"64px"},fontSize:2,name:c[i]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Jukebox=void 0;var o=n(0),r=n(5),a=n(9),i=n(1),c=n(2),l=n(3);t.Jukebox=function(e,t){var n=(0,i.useBackend)(t),d=n.act,u=n.data,s=u.playing,m=u.loop_mode,p=u.volume,h=u.current_track_ref,f=u.current_track,C=u.percent,N=u.tracks;return(0,o.createComponentVNode)(2,l.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,c.Section,{title:"Currently Playing",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Title",children:s&&f&&(0,o.createComponentVNode)(2,c.Box,{children:[f.title," by ",f.artist||"Unkown"]})||(0,o.createComponentVNode)(2,c.Box,{children:"Stopped"})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Controls",children:[(0,o.createComponentVNode)(2,c.Button,{icon:"play",disabled:s,onClick:function(){return d("play")},children:"Play"}),(0,o.createComponentVNode)(2,c.Button,{icon:"stop",disabled:!s,onClick:function(){return d("stop")},children:"Stop"})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Loop Mode",children:[(0,o.createComponentVNode)(2,c.Button,{icon:"play",onClick:function(){return d("loopmode",{loopmode:1})},selected:1===m,children:"Next"}),(0,o.createComponentVNode)(2,c.Button,{icon:"random",onClick:function(){return d("loopmode",{loopmode:2})},selected:2===m,children:"Shuffle"}),(0,o.createComponentVNode)(2,c.Button,{icon:"redo",onClick:function(){return d("loopmode",{loopmode:3})},selected:3===m,children:"Repeat"}),(0,o.createComponentVNode)(2,c.Button,{icon:"step-forward",onClick:function(){return d("loopmode",{loopmode:4})},selected:4===m,children:"Once"})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Progress",children:(0,o.createComponentVNode)(2,c.ProgressBar,{value:C,maxValue:1,color:"good"})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Volume",children:(0,o.createComponentVNode)(2,c.Slider,{minValue:0,step:.01,value:p,maxValue:1,ranges:{good:[.75,Infinity],average:[.25,.75],bad:[0,.25]},format:function(e){return(0,r.round)(100*e,1)+"%"},onChange:function(e,t){return d("volume",{val:(0,r.round)(t,2)})}})})]})}),(0,o.createComponentVNode)(2,c.Section,{title:"Available Tracks",children:N.length&&(0,a.sortBy)((function(e){return e.title}))(N).map((function(e){return(0,o.createComponentVNode)(2,c.Button,{fluid:!0,icon:"play",selected:h===e.ref,onClick:function(){return d("change_track",{change_track:e.ref})},children:e.title},e.ref)}))||(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Error: No songs loaded."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.LawManager=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.LawManager=function(e,t){var n=(0,r.useBackend)(t),l=(n.act,n.data.isSlaved);return(0,o.createComponentVNode)(2,i.Window,{width:800,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[l&&(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:["Law-synced to ",l]})||null,(0,o.createComponentVNode)(2,c)]})})};var c=function(e,t){var n=(0,r.useSharedState)(t,"lawsTabIndex",0),i=n[0],c=n[1];return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===i,onClick:function(){return c(0)},children:"Law Management"}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===i,onClick:function(){return c(1)},children:"Law Sets"})]}),0===i&&(0,o.createComponentVNode)(2,l)||null,1===i&&(0,o.createComponentVNode)(2,u)||null],0)},l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.ion_law_nr,u=c.ion_law,s=c.zeroth_law,m=c.inherent_law,p=c.supplied_law,h=c.supplied_law_position,f=c.zeroth_laws,C=c.has_zeroth_laws,N=c.ion_laws,b=c.has_ion_laws,V=c.inherent_laws,g=c.has_inherent_laws,v=c.supplied_laws,k=c.has_supplied_laws,_=c.isAI,y=c.isMalf,L=c.isAdmin,B=c.channel,x=c.channels,w=f.map((function(e){return e.zero=!0,e})).concat(V);return(0,o.createComponentVNode)(2,a.Section,{children:[b&&(0,o.createComponentVNode)(2,d,{laws:N,title:l+" Laws:",mt:-2})||null,(C||g)&&(0,o.createComponentVNode)(2,d,{laws:w,title:"Inherent Laws",mt:-2})||null,k&&(0,o.createComponentVNode)(2,d,{laws:v,title:"Supplied Laws",mt:-2})||null,(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Controls",mt:-2,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Statement Channel",children:x.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.channel,selected:B===e.channel,onClick:function(){return i("law_channel",{law_channel:e.channel})}},e.channel)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"State Laws",children:(0,o.createComponentVNode)(2,a.Button,{icon:"volume-up",onClick:function(){return i("state_laws")},children:"State Laws"})}),_&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Law Notification",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation",onClick:function(){return i("notify_laws")},children:"Notify"})})||null]})}),y&&(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Add Laws",mt:-2,children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Type"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Law"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Index"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Add"})]}),L&&!C&&(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Zero"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Input,{value:s,fluid:!0,onChange:function(e,t){return i("change_zeroth_law",{val:t})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("add_zeroth_law")},children:"Add"})})]})||null,(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Ion"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Input,{value:u,fluid:!0,onChange:function(e,t){return i("change_ion_law",{val:t})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("add_ion_law")},children:"Add"})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Inherent"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Input,{value:m,fluid:!0,onChange:function(e,t){return i("change_inherent_law",{val:t})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("add_inherent_law")},children:"Add"})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Supplied"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Input,{value:p,fluid:!0,onChange:function(e,t){return i("change_supplied_law",{val:t})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("change_supplied_law_position")},children:h})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("add_supplied_law")},children:"Add"})})]})]})})||null]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.isMalf,d=c.isAdmin,u=e.laws,s=e.title,m=e.noButtons,p=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["laws","title","noButtons"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Section,Object.assign({level:2,title:s},p,{children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Index"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Law"}),!m&&(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"State"})||null,l&&!m&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Edit"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Delete"})],4)||null]}),u.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:[e.index,"."]}),(0,o.createComponentVNode)(2,a.Table.Cell,{color:e.zero?"bad":null,children:e.law}),!m&&(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"volume-up",selected:e.state,onClick:function(){return i("state_law",{ref:e.ref,state_law:!e.state})},children:e.state?"Yes":"No"})})||null,l&&!m&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{disabled:e.zero&&!d,icon:"pen",onClick:function(){return i("edit_law",{edit_law:e.ref})},children:"Edit"})}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{disabled:e.zero&&!d,color:"bad",icon:"trash",onClick:function(){return i("delete_law",{delete_law:e.ref})},children:"Delete"})})],4)||null]},e.index)}))]})})))},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.isMalf,u=c.law_sets;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Remember: Stating laws other than those currently loaded may be grounds for decommissioning! - NanoTrasen"}),u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{disabled:!l,icon:"sync",onClick:function(){return i("transfer_laws",{transfer_laws:e.ref})},children:"Load Laws"}),(0,o.createComponentVNode)(2,a.Button,{icon:"volume-up",onClick:function(){return i("state_law_set",{state_law_set:e.ref})},children:"State Laws"})],4),children:[e.laws.has_ion_laws&&(0,o.createComponentVNode)(2,d,{noButtons:!0,laws:e.laws.ion_laws,title:e.laws.ion_law_nr+" Laws:"})||null,(e.laws.has_zeroth_laws||e.laws.has_inherent_laws)&&(0,o.createComponentVNode)(2,d,{noButtons:!0,laws:e.laws.zeroth_laws.concat(e.laws.inherent_laws),title:e.header})||null,e.laws.has_supplied_laws&&(0,o.createComponentVNode)(2,d,{noButtons:!0,laws:e.laws.supplied_laws,title:"Supplied Laws"})||null]},e.name)}))||null],0)}},function(e,t,n){"use strict";t.__esModule=!0,t.LookingGlass=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.LookingGlass=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.supportedPrograms,u=l.currentProgram,s=l.immersion,m=l.gravity,p=Math.min(180+23*d.length,600);return(0,o.createComponentVNode)(2,i.Window,{width:300,height:p,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Programs",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eye",selected:e===u,onClick:function(){return c("program",{program:e})},children:e},e)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gravity",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"user-astronaut",selected:m,onClick:function(){return c("gravity")},children:m?"Enabled":"Disabled"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Full Immersion",children:(0,o.createComponentVNode)(2,a.Button,{mt:-1,fluid:!0,icon:"eye",selected:s,onClick:function(){return c("immersion")},children:s?"Enabled":"Disabled"})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MechaControlConsole=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7);t.MechaControlConsole=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.beacons,s=d.stored_data;return(0,o.createComponentVNode)(2,i.Window,{width:600,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[s.length&&(0,o.createComponentVNode)(2,a.Modal,{children:(0,o.createComponentVNode)(2,a.Section,{height:"400px",style:{"overflow-y":"auto"},title:"Log",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"window-close",onClick:function(){return l("clear_log")}}),children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",children:["(",e.time,") (",e.year,")"]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,c.decodeHtmlEntities)(e.message)})]},e.time)}))})})||null,u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"comment",onClick:function(){return l("send_message",{mt:e.ref})},children:"Message"}),(0,o.createComponentVNode)(2,a.Button,{icon:"eye",onClick:function(){return l("get_log",{mt:e.ref})},children:"View Log"}),(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"red",content:"EMP",icon:"bomb",onClick:function(){return l("shock",{mt:e.ref})}})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*e.maxHealth,Infinity],average:[.5*e.maxHealth,.75*e.maxHealth],bad:[-Infinity,.5*e.maxHealth]},value:e.health,maxValue:e.maxHealth})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Charge",children:e.cell&&(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*e.cellMaxCharge,Infinity],average:[.5*e.cellMaxCharge,.75*e.cellMaxCharge],bad:[-Infinity,.5*e.cellMaxCharge]},value:e.cellCharge,maxValue:e.cellMaxCharge})||(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No Cell Installed"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Air Tank",children:[e.airtank,"kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pilot",children:e.pilot||"Unoccupied"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:(0,c.toTitleCase)(e.location)||"Unknown"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Active Equipment",children:e.active||"None"}),e.cargoMax&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cargo Space",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{bad:[.75*e.cargoMax,Infinity],average:[.5*e.cargoMax,.75*e.cargoMax],good:[-Infinity,.5*e.cargoMax]},value:e.cargoUsed,maxValue:e.cargoMax})})||null]})},e.name)}))||(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No mecha beacons found."})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Medbot=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Medbot=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.open,s=l.beaker,m=l.beaker_total,p=l.beaker_max,h=l.locked,f=l.heal_threshold,C=l.heal_threshold_max,N=l.injection_amount_min,b=l.injection_amount,V=l.injection_amount_max,g=l.use_beaker,v=l.declare_treatment,k=l.vocal;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:600,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Automatic Medical Unit v2.0",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("power")},children:d?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",color:u?"bad":"good",children:u?"Open":"Closed"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Beaker",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:"eject",onClick:function(){return c("eject")},children:"Eject"}),children:s&&(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,maxValue:p,children:[m," / ",p]})||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No beaker loaded."})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Behavior Controls",color:h?"good":"bad",children:h?"Locked":"Unlocked"})]})}),!h&&(0,o.createComponentVNode)(2,a.Section,{title:"Behavioral Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Healing Threshold",children:(0,o.createComponentVNode)(2,a.NumberInput,{fluid:!0,minValue:0,maxValue:C,value:f,onDrag:function(e,t){return c("adj_threshold",{val:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Injection Amount",children:(0,o.createComponentVNode)(2,a.NumberInput,{fluid:!0,minValue:N,maxValue:V,value:b,onDrag:function(e,t){return c("adj_inject",{val:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Reagent Source",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:g?"toggle-on":"toggle-off",selected:g,onClick:function(){return c("use_beaker")},children:g?"Loaded Beaker (When available)":"Internal Synthesizer"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Treatment Report",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:v?"toggle-on":"toggle-off",selected:v,onClick:function(){return c("declaretreatment")},children:v?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Speaker",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:k?"toggle-on":"toggle-off",selected:k,onClick:function(){return c("togglevoice")},children:k?"On":"Off"})})]})})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MedicalRecords=void 0;var o=n(0),r=n(1),a=n(2),i=n(45),c=n(3),l=n(95),d=n(96),u=n(62),s=(n(7),function(e,t){(0,i.modalOpen)(e,"edit",{field:t.edit,value:t.value})});t.MedicalRecords=function(e,t){var n,s=(0,r.useBackend)(t).data,f=s.authenticated,C=s.screen;return f?(2===C?n=(0,o.createComponentVNode)(2,m):3===C?n=(0,o.createComponentVNode)(2,p):4===C?n=(0,o.createComponentVNode)(2,h):5===C?n=(0,o.createComponentVNode)(2,N):6===C&&(n=(0,o.createComponentVNode)(2,b)),(0,o.createComponentVNode)(2,c.Window,{width:800,height:380,resizable:!0,children:[(0,o.createComponentVNode)(2,i.ComplexModal,{maxHeight:"100%",maxWidth:"80%"}),(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,l.LoginInfo),(0,o.createComponentVNode)(2,u.TemporaryNotice),(0,o.createComponentVNode)(2,V),(0,o.createComponentVNode)(2,a.Section,{height:"calc(100% - 5rem)",flexGrow:"1",children:n})]})]})):(0,o.createComponentVNode)(2,c.Window,{width:800,height:380,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,d.LoginScreen)})})};var m=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.records;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Input,{fluid:!0,placeholder:"Search by Name, DNA, or ID",onChange:function(e,t){return i("search",{t1:t})}}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:c.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{icon:"user",mb:"0.5rem",content:e.id+": "+e.name,onClick:function(){return i("d_rec",{d_rec:e.ref})}},t)}))})],4)},p=function(e,t){var n=(0,r.useBackend)(t).act;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"download",content:"Backup to Disk",disabled:!0}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"upload",content:"Upload from Disk",my:"0.5rem",disabled:!0}),(0,o.createTextVNode)(" "),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",content:"Delete All Medical Records",onClick:function(){return n("del_all")}})],4)},h=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.medical,d=c.printing;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"General Data",level:2,mt:"-6px",children:(0,o.createComponentVNode)(2,f)}),(0,o.createComponentVNode)(2,a.Section,{title:"Medical Data",level:2,children:(0,o.createComponentVNode)(2,C)}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",level:2,children:[(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",disabled:!!l.empty,content:"Delete Medical Record",color:"bad",onClick:function(){return i("del_r")}}),(0,o.createComponentVNode)(2,a.Button,{icon:d?"spinner":"print",disabled:d,iconSpin:!!d,content:"Print Entry",ml:"0.5rem",onClick:function(){return i("print_p")}}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-left",content:"Back",mt:"0.5rem",onClick:function(){return i("screen",{screen:2})}})]})],4)},f=function(e,t){var n=(0,r.useBackend)(t).data.general;return n&&n.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"left",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:n.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[(0,o.createComponentVNode)(2,a.Box,{height:"20px",display:"inline-block",children:e.value.split("\n").map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)}))}),!!e.edit&&(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",onClick:function(){return s(t,e)}})]},n)}))})}),(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"right",textAlign:"right",children:!!n.has_photos&&n.photos.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",textAlign:"center",color:"label",children:[(0,o.createVNode)(1,"img",null,null,1,{src:e.substr(1,e.length-1),style:{width:"96px","margin-bottom":"0.5rem","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createVNode)(1,"br"),"Photo #",t+1]},t)}))})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"General records lost!"})},C=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data.medical;return l&&l.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList,{children:l.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[e.value.split("\n").map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)})),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",mb:e.line_break?"1rem":"initial",onClick:function(){return s(t,e)}})]},n)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Comments/Log",level:2,children:[0===l.comments.length?(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"No comments found."}):l.comments.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",display:"inline",children:e.header}),(0,o.createVNode)(1,"br"),e.text,(0,o.createComponentVNode)(2,a.Button,{icon:"comment-slash",color:"bad",ml:"0.5rem",onClick:function(){return c("del_c",{del_c:t+1})}})]},t)})),(0,o.createComponentVNode)(2,a.Button,{icon:"comment-medical",content:"Add Entry",color:"good",mt:"0.5rem",mb:"0",onClick:function(){return(0,i.modalOpen)(t,"add_c")}})]})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:["Medical records lost!",(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"New Record",ml:"0.5rem",onClick:function(){return c("new")}})]})},N=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.virus;return c.sort((function(e,t){return e.name>t.name?1:-1})),c.map((function(e,t){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"flask",content:e.name,mb:"0.5rem",onClick:function(){return i("vir",{vir:e.D})}}),(0,o.createVNode)(1,"br")],4,t)}))},b=function(e,t){var n=(0,r.useBackend)(t).data.medbots;return 0===n.length?(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"There are no Medbots."}):n.map((function(e,t){return(0,o.createComponentVNode)(2,a.Collapsible,{open:!0,title:e.name,children:(0,o.createComponentVNode)(2,a.Box,{px:"0.5rem",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:[e.area||"Unknown"," (",e.x,", ",e.y,")"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:e.on?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Online"}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:e.use_beaker?"Reservoir: "+e.total_volume+"/"+e.maximum_volume:"Using internal synthesizer."})],4):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Offline"})})]})})},t)}))},V=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.screen;return(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===c,onClick:function(){return i("screen",{screen:2})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"list"}),"List Records"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:5===c,onClick:function(){return i("screen",{screen:5})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"database"}),"Virus Database"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:6===c,onClick:function(){return i("screen",{screen:6})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"plus-square"}),"Medbot Tracking"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:3===c,onClick:function(){return i("screen",{screen:3})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"wrench"}),"Record Maintenance"]})]})};(0,i.modalRegisterBodyOverride)("virus",(function(e,t){var n=(0,r.useBackend)(t).act,i=e.args;return(0,o.createComponentVNode)(2,a.Section,{level:2,m:"-1rem",title:i.name||"Virus",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"times",color:"red",onClick:function(){return n("modal_close")}}),children:(0,o.createComponentVNode)(2,a.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Spread",children:[i.spread_text," Transmission"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Possible cure",children:i.antigen}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rate of Progression",children:i.rate}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Antibiotic Resistance",children:[i.resistance,"%"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species Affected",children:i.species}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Symptoms",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:i.symptoms.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.stage+". "+e.name,children:[(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"label",children:"Strength:"})," ",e.strength,"\xa0",(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"label",children:"Aggressiveness:"})," ",e.aggressiveness]},e.stage)}))})})]})})})}))},function(e,t,n){"use strict";t.__esModule=!0,t.MessageMonitor=void 0;var o=n(0),r=(n(5),n(7)),a=n(1),i=n(2),c=n(3),l=n(62),d=n(61);t.MessageMonitor=function(e,t){var n,r=(0,a.useBackend)(t),d=(r.act,r.data),p=d.auth,h=d.linkedServer,f=(d.message,d.hacking),C=d.emag;return n=f||C?(0,o.createComponentVNode)(2,u):p?h?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"ERROR"}):(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,c.Window,{width:670,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,l.TemporaryNotice),n]})})};var u=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.isMalfAI);return(0,o.createComponentVNode)(2,d.FullscreenNotice,{title:"ERROR",children:r?(0,o.createComponentVNode)(2,i.Box,{children:"Brute-forcing for server key. It will take 20 seconds for every character that the password has."}):(0,o.createComponentVNode)(2,i.Box,{children:["01000010011100100111010101110100011001010010110",(0,o.createVNode)(1,"br"),"10110011001101111011100100110001101101001011011100110011",(0,o.createVNode)(1,"br"),"10010000001100110011011110111001000100000011100110110010",(0,o.createVNode)(1,"br"),"10111001001110110011001010111001000100000011010110110010",(0,o.createVNode)(1,"br"),"10111100100101110001000000100100101110100001000000111011",(0,o.createVNode)(1,"br"),"10110100101101100011011000010000001110100011000010110101",(0,o.createVNode)(1,"br"),"10110010100100000001100100011000000100000011100110110010",(0,o.createVNode)(1,"br"),"10110001101101111011011100110010001110011001000000110011",(0,o.createVNode)(1,"br"),"00110111101110010001000000110010101110110011001010111001",(0,o.createVNode)(1,"br"),"00111100100100000011000110110100001100001011100100110000",(0,o.createVNode)(1,"br"),"10110001101110100011001010111001000100000011101000110100",(0,o.createVNode)(1,"br"),"00110000101110100001000000111010001101000011001010010000",(0,o.createVNode)(1,"br"),"00111000001100001011100110111001101110111011011110111001",(0,o.createVNode)(1,"br"),"00110010000100000011010000110000101110011001011100010000",(0,o.createVNode)(1,"br"),"00100100101101110001000000111010001101000011001010010000",(0,o.createVNode)(1,"br"),"00110110101100101011000010110111001110100011010010110110",(0,o.createVNode)(1,"br"),"10110010100101100001000000111010001101000011010010111001",(0,o.createVNode)(1,"br"),"10010000001100011011011110110111001110011011011110110110",(0,o.createVNode)(1,"br"),"00110010100100000011000110110000101101110001000000111001",(0,o.createVNode)(1,"br"),"00110010101110110011001010110000101101100001000000111100",(0,o.createVNode)(1,"br"),"10110111101110101011100100010000001110100011100100111010",(0,o.createVNode)(1,"br"),"10110010100100000011010010110111001110100011001010110111",(0,o.createVNode)(1,"br"),"00111010001101001011011110110111001110011001000000110100",(0,o.createVNode)(1,"br"),"10110011000100000011110010110111101110101001000000110110",(0,o.createVNode)(1,"br"),"00110010101110100001000000111001101101111011011010110010",(0,o.createVNode)(1,"br"),"10110111101101110011001010010000001100001011000110110001",(0,o.createVNode)(1,"br"),"10110010101110011011100110010000001101001011101000010111",(0,o.createVNode)(1,"br"),"00010000001001101011000010110101101100101001000000111001",(0,o.createVNode)(1,"br"),"10111010101110010011001010010000001101110011011110010000",(0,o.createVNode)(1,"br"),"00110100001110101011011010110000101101110011100110010000",(0,o.createVNode)(1,"br"),"00110010101101110011101000110010101110010001000000111010",(0,o.createVNode)(1,"br"),"00110100001100101001000000111001001101111011011110110110",(0,o.createVNode)(1,"br"),"10010000001100100011101010111001001101001011011100110011",(0,o.createVNode)(1,"br"),"10010000001110100011010000110000101110100001000000111010",(0,o.createVNode)(1,"br"),"001101001011011010110010100101110"]})})},s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.isMalfAI;return(0,o.createComponentVNode)(2,d.FullscreenNotice,{title:"Welcome",children:[(0,o.createComponentVNode)(2,i.Box,{fontSize:"1.5rem",bold:!0,children:[(0,o.createComponentVNode)(2,i.Icon,{name:"exclamation-triangle",verticalAlign:"middle",size:3,mr:"1rem"}),"Unauthorized"]}),(0,o.createComponentVNode)(2,i.Box,{color:"label",my:"1rem",children:["Decryption Key:",(0,o.createComponentVNode)(2,i.Input,{placeholder:"Decryption Key",ml:"0.5rem",onChange:function(e,t){return r("auth",{key:t})}})]}),!!c&&(0,o.createComponentVNode)(2,i.Button,{icon:"terminal",content:"Hack",onClick:function(){return r("hack")}}),(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"Please authenticate with the server in order to show additional options."})]})},m=function(e,t){var n,r=(0,a.useBackend)(t),c=r.act,l=r.data.linkedServer,d=(0,a.useLocalState)(t,"tabIndex",0),u=d[0],s=d[1];return 0===u?n=(0,o.createComponentVNode)(2,p):1===u?n=(0,o.createComponentVNode)(2,h,{logs:l.pda_msgs,pda:!0}):2===u?n=(0,o.createComponentVNode)(2,h,{logs:l.rc_msgs,rc:!0}):3===u?n=(0,o.createComponentVNode)(2,f):4===u&&(n=(0,o.createComponentVNode)(2,C)),(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:0===u,onClick:function(){return s(0)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"bars"})," Main Menu"]},"Main"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===u,onClick:function(){return s(1)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"font"})," Message Logs"]},"MessageLogs"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:2===u,onClick:function(){return s(2)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"bold"})," Request Logs"]},"RequestLogs"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:3===u,onClick:function(){return s(3)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"comment-alt"})," Admin Messaging"]},"AdminMessage"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:4===u,onClick:function(){return s(4)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"comment-slash"})," Spam Filter"]},"SpamFilter"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{color:"red",onClick:function(){return c("deauth")},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"sign-out-alt"})," Log Out"]},"Logout")]}),(0,o.createComponentVNode)(2,i.Box,{m:2,children:n})],4)},p=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.linkedServer;return(0,o.createComponentVNode)(2,i.Section,{title:"Main Menu",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"link",content:"Server Link",onClick:function(){return r("find")}}),(0,o.createComponentVNode)(2,i.Button,{icon:"power-off",content:"Server "+(c.active?"Enabled":"Disabled"),selected:c.active,onClick:function(){return r("active")}})],4),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Server Status",children:(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"Good"})})}),(0,o.createComponentVNode)(2,i.Button,{mt:1,icon:"key",content:"Set Custom Key",onClick:function(){return r("pass")}}),(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"red",confirmIcon:"exclamation-triangle",icon:"exclamation-triangle",content:"Clear Message Logs"}),(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"red",confirmIcon:"exclamation-triangle",icon:"exclamation-triangle",content:"Clear Request Logs"})]})},h=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=(n.data,e.logs),d=e.pda,u=e.rc;return(0,o.createComponentVNode)(2,i.Section,{title:d?"PDA Logs":u?"Request Logs":"Logs",buttons:(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"red",icon:"trash",confirmIcon:"trash",content:"Delete All",onClick:function(){return c(d?"del_pda":"del_rc")}}),children:(0,o.createComponentVNode)(2,i.Flex,{wrap:"wrap",children:l.map((function(e,t){return(0,o.createComponentVNode)(2,i.Flex.Item,{m:"2px",basis:"49%",grow:t%2,children:(0,o.createComponentVNode)(2,i.Section,{title:e.sender+" -> "+e.recipient,buttons:(0,o.createComponentVNode)(2,i.Button.Confirm,{confirmContent:"Delete Log?",color:"bad",icon:"trash",confirmIcon:"trash",onClick:function(){return c("delete",{id:e.ref,type:u?"rc":"pda"})}}),children:u?(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Message",children:e.message}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Verification",color:"Unauthenticated"===e.id_auth?"bad":"good",children:(0,r.decodeHtmlEntities)(e.id_auth)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Stamp",children:e.stamp})]}):e.message})},e.ref)}))})})},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.possibleRecipients,d=c.customsender,u=c.customrecepient,s=c.customjob,m=c.custommessage,p=Object.keys(l);return(0,o.createComponentVNode)(2,i.Section,{title:"Admin Messaging",children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Sender",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,value:d,onChange:function(e,t){return r("set_sender",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Sender's Job",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,value:s,onChange:function(e,t){return r("set_sender_job",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Recipient",children:(0,o.createComponentVNode)(2,i.Dropdown,{value:u,options:p,width:"100%",mb:-.7,onSelected:function(e){return r("set_recipient",{val:l[e]})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Message",verticalAlign:"top",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,mb:.5,value:m,onChange:function(e,t){return r("set_message",{val:t})}})})]}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"comment",content:"Send Message",onClick:function(){return r("send_message")}})]})},C=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.linkedServer;return(0,o.createComponentVNode)(2,i.Section,{title:"Spam Filtering",children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:c.spamFilter.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.index,buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"trash",color:"bad",content:"Delete",onClick:function(){return r("deltoken",{deltoken:e.index})}}),children:e.token},e.index)}))}),(0,o.createComponentVNode)(2,i.Button,{icon:"plus",content:"Add New Entry",onClick:function(){return r("addtoken")}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Microwave=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.Microwave=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.config,d=n.data,u=d.broken,s=d.operating,m=d.dirty,p=d.items;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:u&&(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Bzzzzttttt!!"})})||s&&(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{color:"good",children:["Microwaving in progress!",(0,o.createVNode)(1,"br"),"Please wait...!"]})})||m&&(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:["This microwave is dirty!",(0,o.createVNode)(1,"br"),"Please clean it before use!"]})})||p.length&&(0,o.createComponentVNode)(2,a.Section,{level:1,title:"Ingredients",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",onClick:function(){return c("cook")},children:"Microwave"}),(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return c("dispose")},children:"Eject"})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:p.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[e.amt," ",e.extra]},e.name)}))})})||(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[l.title," is empty."]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MiningOreProcessingConsole=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=(n(9),n(192));t.MiningOreProcessingConsole=function(e,t){var n=(0,a.useBackend)(t),r=n.act,d=n.data,u=d.unclaimedPoints,s=(d.ores,d.showAllOres,d.power);return(0,o.createComponentVNode)(2,c.Window,{width:400,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,l.MiningUser,{insertIdText:(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-right",mr:1,onClick:function(){return r("insert")},children:"Insert ID"}),"in order to claim points."]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"power-off",selected:s,onClick:function(){return r("power")},children:s?"Smelting":"Not Smelting"}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current unclaimed points",buttons:(0,o.createComponentVNode)(2,i.Button,{disabled:u<1,icon:"download",onClick:function(){return r("claim")},children:"Claim"}),children:(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:u})})})}),(0,o.createComponentVNode)(2,m)]})})};var d=["Not Processing","Smelting","Compressing","Alloying"],u=["verdantium","mhydrogen","diamond","platinum","uranium","gold","silver","rutile","phoron","marble","lead","sand","carbon","hematite"],s=function(e,t){return-1===u.indexOf(e.ore)||-1===u.indexOf(t.ore)?e.ore-t.ore:u.indexOf(t.ore)-u.indexOf(e.ore)},m=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,u=l.ores,m=l.showAllOres;l.power;return(0,o.createComponentVNode)(2,i.Section,{title:"Ore Processing Controls",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:m?"toggle-on":"toggle-off",selected:m,onClick:function(){return c("showAllOres")},children:m?"All Ores":"Ores in Machine"}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:u.length&&u.sort(s).map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:(0,r.toTitleCase)(e.name),buttons:(0,o.createComponentVNode)(2,i.Dropdown,{width:"120px",color:(0===e.processing?"red":1===e.processing&&"green")||2===e.processing&&"blue"||3===e.processing&&"yellow",options:d,selected:d[e.processing],onSelected:function(t){return c("toggleSmelting",{ore:e.ore,set:d.indexOf(t)})}}),children:(0,o.createComponentVNode)(2,i.Box,{inline:!0,children:(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:e.amount})})},e.ore)}))||(0,o.createComponentVNode)(2,i.Box,{color:"bad",textAlign:"center",children:"No ores in machine."})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MiningStackingConsole=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3);n(9);t.MiningStackingConsole=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=d.stacktypes,s=d.stackingAmt;return(0,o.createComponentVNode)(2,c.Window,{width:400,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,i.Section,{title:"Stacker Controls",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Stacking",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,value:s,minValue:1,maxValue:50,stepPixelSize:5,onChange:function(e,t){return l("change_stack",{amt:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Divider),u.length&&u.sort().map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:(0,r.toTitleCase)(e.type),buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return l("release_stack",{stack:e.type})},children:"Eject"}),children:(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:e.amt})},e.type)}))||(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Empty",color:"average",children:"No stacks in machine."})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MiningVendor=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=n(192);var d={Alphabetical:function(e,t){return e-t},"By availability":function(e,t){return-(e.affordable-t.affordable)},"By price":function(e,t){return e.price-t.price}};t.MiningVendor=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{width:400,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",scrollable:!0,children:[(0,o.createComponentVNode)(2,l.MiningUser,{insertIdText:"Please insert an ID in order to make purchases."}),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,u)]})})};var u=function(e,t){var n=(0,a.useBackend)(t),l=(n.act,n.data),u=l.has_id,s=l.id,p=l.items,h=(0,a.useLocalState)(t,"search",""),f=h[0],C=(h[1],(0,a.useLocalState)(t,"sort","Alphabetical")),N=C[0],b=(C[1],(0,a.useLocalState)(t,"descending",!1)),V=b[0],g=(b[1],(0,r.createSearch)(f,(function(e){return e[0]}))),v=!1,k=Object.entries(p).map((function(e,t){var n=Object.entries(e[1]).filter(g).map((function(e){return e[1].affordable=u&&s.points>=e[1].price,e[1]})).sort(d[N]);if(0!==n.length)return V&&(n=n.reverse()),v=!0,(0,o.createComponentVNode)(2,m,{title:e[0],items:n},e[0])}));return(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",overflow:"auto",children:(0,o.createComponentVNode)(2,i.Section,{onClick:function(e){return(0,c.refocusLayout)()},children:v?k:(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No items matching your criteria was found!"})})})},s=function(e,t){var n=(0,a.useLocalState)(t,"search",""),r=(n[0],n[1]),c=(0,a.useLocalState)(t,"sort",""),l=(c[0],c[1]),u=(0,a.useLocalState)(t,"descending",!1),s=u[0],m=u[1];return(0,o.createComponentVNode)(2,i.Box,{mb:"0.5rem",children:(0,o.createComponentVNode)(2,i.Flex,{width:"100%",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",mr:"0.5rem",children:(0,o.createComponentVNode)(2,i.Input,{placeholder:"Search by item name..",width:"100%",onInput:function(e,t){return r(t)}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"30%",children:(0,o.createComponentVNode)(2,i.Dropdown,{selected:"Alphabetical",options:Object.keys(d),width:"100%",lineHeight:"19px",onSelected:function(e){return l(e)}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Button,{icon:s?"arrow-down":"arrow-up",height:"19px",tooltip:s?"Descending order":"Ascending order",tooltipPosition:"bottom-left",ml:"0.5rem",onClick:function(){return m(!s)}})})]})})},m=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=e.title,d=e.items,u=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["title","items"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.Collapsible,Object.assign({open:!0,title:l},u,{children:d.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Box,{display:"inline-block",verticalAlign:"middle",lineHeight:"20px",style:{float:"left"},children:e.name}),(0,o.createComponentVNode)(2,i.Button,{disabled:!c.has_id||c.id.points=450?"Overcharged":e>=250?"Good Charge":"Low Charge":e>=250?"NIF Power Requirement met.":e>=150?"Fluctuations in available power.":"Power failure imminent."},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=(n.config,n.data),u=c.nif_percent,s=c.nif_stat,m=(c.last_notification,c.nutrition),p=c.isSynthetic,h=c.modules,f=e.setViewing;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"NIF Condition",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u,minValue:0,maxValue:100,ranges:{good:[50,Infinity],average:[25,50],bad:[-Infinity,0]},children:[l(s,u)," (",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:u}),"%)"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"NIF Power",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,minValue:0,maxValue:700,ranges:{good:[250,Infinity],average:[150,250],bad:[0,150]},children:d(m,p)})})]}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"NIFSoft Modules",mt:1,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:h.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",color:"bad",confirmContent:"UNINSTALL?",confirmIcon:"trash",tooltip:"Uninstall Module",tooltipPosition:"left",onClick:function(){return i("uninstall",{module:e.ref})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"search",onClick:function(){return f(e)},tooltip:"View Information",tooltipPosition:"left"})],4),children:e.activates&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,selected:e.active,content:e.stat_text,onClick:function(){return i("toggle_module",{module:e.ref})}})||(0,o.createComponentVNode)(2,a.Box,{children:e.stat_text})},e.ref)}))})})]})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.theme;return(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"NIF Theme",verticalAlign:"top",children:(0,o.createComponentVNode)(2,a.Dropdown,{width:"100%",placeholder:"Default",selected:l,options:c,onSelected:function(e){return i("setTheme",{theme:e})}})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NTNetRelay=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(61);t.NTNetRelay=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),c=a.dos_crashed,u=(a.enabled,a.dos_overload,a.dos_capacity,(0,o.createComponentVNode)(2,l));return c&&(u=(0,o.createComponentVNode)(2,d)),(0,o.createComponentVNode)(2,i.Window,{width:c?700:500,height:c?600:300,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:u})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=(c.dos_crashed,c.enabled),d=c.dos_overload,u=c.dos_capacity;return(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:l,content:"Relay "+(l?"On":"Off"),onClick:function(){return i("toggle")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network Buffer Status",children:[d," / ",u," GQ"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Options",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",content:"Purge network blacklist",onClick:function(){return i("purge")}})})]})})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act;n.data;return(0,o.createComponentVNode)(2,c.FullscreenNotice,{title:"ERROR",children:[(0,o.createComponentVNode)(2,a.Box,{fontSize:"1.5rem",bold:!0,color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",verticalAlign:"middle",size:3,mr:"1rem"}),(0,o.createVNode)(1,"h2",null,"NETWORK BUFFERS OVERLOADED",16),(0,o.createVNode)(1,"h3",null,"Overload Recovery Mode",16),(0,o.createVNode)(1,"i",null,"This system is suffering temporary outage due to overflow of traffic buffers. Until buffered traffic is processed, all further requests will be dropped. Frequent occurences of this error may indicate insufficient hardware capacity of your network. Please contact your network planning department for instructions on how to resolve this issue.",16),(0,o.createVNode)(1,"h3",null,"ADMINISTRATIVE OVERRIDE",16),(0,o.createVNode)(1,"b",null," CAUTION - Data loss may occur ",16)]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",content:"Purge buffered traffic",onClick:function(){return i("restart")}})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Newscaster=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=n(62);t.Newscaster=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data);r.screen,r.user;return(0,o.createComponentVNode)(2,c.Window,{width:600,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,l.TemporaryNotice,{decode:!0}),(0,o.createComponentVNode)(2,d)]})})};var d=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.user,(0,a.useSharedState)(t,"screen","Main Menu")),c=r[0],l=r[1],d=u[c];return(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,d,{setScreen:l})})},u={"Main Menu":function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=r.securityCaster,l=r.wanted_issue,d=e.setScreen;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Main Menu",children:[l&&(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"eye",onClick:function(){return d("View Wanted")},color:"bad",children:"Read WANTED Issue"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"eye",onClick:function(){return d("View List")},children:"View Feed Channels"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"plus",onClick:function(){return d("New Channel")},children:"Create Feed Channel"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"plus",onClick:function(){return d("New Story")},children:"Create Feed Message"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"print",onClick:function(){return d("Print")},children:"Print Newspaper"})]}),!!c&&(0,o.createComponentVNode)(2,i.Section,{title:"Feed Security Functions",children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"plus",onClick:function(){return d("New Wanted")},children:'Manage "Wanted" Issue'})})],0)},"New Channel":function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.channel_name,u=l.c_locked,s=l.user,m=e.setScreen;return(0,o.createComponentVNode)(2,i.Section,{title:"Creating new Feed Channel",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return m("Main Menu")},children:"Back"}),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Channel Name",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,value:(0,r.decodeHtmlEntities)(d),onInput:function(e,t){return c("set_channel_name",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Channel Author",color:"good",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Accept Public Feeds",children:(0,o.createComponentVNode)(2,i.Button,{icon:u?"lock":"lock-open",selected:!u,onClick:function(){return c("set_channel_lock")},children:u?"No":"Yes"})})]}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"good",icon:"plus",onClick:function(){return c("submit_new_channel")},children:"Submit Channel"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"bad",icon:"undo",onClick:function(){return m("Main Menu")},children:"Cancel"})]})},"View List":function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data.channels,d=e.setScreen;return(0,o.createComponentVNode)(2,i.Section,{title:"Station Feed Channels",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return d("Main Menu")},children:"Back"}),children:l.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"eye",color:e.admin?"good":e.censored?"bad":"",onClick:function(){c("show_channel",{show_channel:e.ref}),d("View Selected Channel")},children:(0,r.decodeHtmlEntities)(e.name)},e.name)}))})},"New Story":function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.channel_name,d=c.user,u=c.msg,s=c.photo_data,m=e.setScreen;return(0,o.createComponentVNode)(2,i.Section,{title:"Creating new Feed Message...",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return m("Main Menu")},children:"Back"}),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Receiving Channel",children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,onClick:function(){return r("set_channel_receiving")},children:l||"Unset"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Message Author",color:"good",children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Message Body",verticalAlign:"top",children:(0,o.createComponentVNode)(2,i.Flex,{children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Section,{width:"99%",inline:!0,children:u||"(no message yet)"})}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Button,{verticalAlign:"top",onClick:function(){return r("set_new_message")},icon:"pen",tooltip:"Edit Message",tooltipPosition:"left"})})]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Attach Photo",children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"image",onClick:function(){return r("set_attachment")},children:s?"Photo Attached":"No Photo"})})]}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"good",icon:"plus",onClick:function(){return r("submit_new_message")},children:"Submit Message"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"bad",icon:"undo",onClick:function(){return m("Main Menu")},children:"Cancel"})]})},Print:function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.total_num,d=c.active_num,u=c.message_num,s=c.paper_remaining,m=e.setScreen;return(0,o.createComponentVNode)(2,i.Section,{title:"Printing",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return m("Main Menu")},children:"Back"}),children:[(0,o.createComponentVNode)(2,i.Box,{color:"label",mb:1,children:["Newscaster currently serves a total of ",l," Feed channels, ",d," of which are active, and a total of ",u," Feed stories."]}),(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Liquid Paper remaining",children:[100*s," cm\xb3"]})}),(0,o.createComponentVNode)(2,i.Button,{mt:1,fluid:!0,color:"good",icon:"plus",onClick:function(){return r("print_paper")},children:"Print Paper"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"bad",icon:"undo",onClick:function(){return m("Main Menu")},children:"Cancel"})]})},"New Wanted":function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.channel_name,u=l.msg,s=l.photo_data,m=l.user,p=l.wanted_issue,h=e.setScreen;return(0,o.createComponentVNode)(2,i.Section,{title:"Wanted Issue Handler",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return h("Main Menu")},children:"Back"}),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[!!p&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Already In Circulation",children:"A wanted issue is already in circulation. You can edit or cancel it below."}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Criminal Name",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,value:(0,r.decodeHtmlEntities)(d),onInput:function(e,t){return c("set_channel_name",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Description",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,value:(0,r.decodeHtmlEntities)(u),onInput:function(e,t){return c("set_wanted_desc",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Attach Photo",children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"image",onClick:function(){return c("set_attachment")},children:s?"Photo Attached":"No Photo"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Prosecutor",color:"good",children:m})]}),(0,o.createComponentVNode)(2,i.Button,{mt:1,fluid:!0,color:"good",icon:"plus",onClick:function(){return c("submit_wanted")},children:"Submit Wanted Issue"}),!!p&&(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"average",icon:"minus",onClick:function(){return c("cancel_wanted")},children:"Take Down Issue"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"bad",icon:"undo",onClick:function(){return h("Main Menu")},children:"Cancel"})]})},"View Wanted":function(e,t){var n=(0,a.useBackend)(t),c=(n.act,n.data.wanted_issue),l=e.setScreen;return c?(0,o.createComponentVNode)(2,i.Section,{title:"--STATIONWIDE WANTED ISSUE--",color:"bad",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return l("Main Menu")},children:"Back"}),children:(0,o.createComponentVNode)(2,i.Box,{color:"white",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Submitted by",color:"good",children:(0,r.decodeHtmlEntities)(c.author)}),(0,o.createComponentVNode)(2,i.LabeledList.Divider),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Criminal",children:(0,r.decodeHtmlEntities)(c.criminal)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Description",children:(0,r.decodeHtmlEntities)(c.desc)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Photo",children:c.img&&(0,o.createVNode)(1,"img",null,null,1,{src:c.img})||"None"})]})})}):(0,o.createComponentVNode)(2,i.Section,{title:"No Outstanding Wanted Issues",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return l("Main Menu")},children:"Back"}),children:"There are no wanted issues currently outstanding."})},"View Selected Channel":function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.viewing_channel,u=l.securityCaster,s=l.company,m=e.setScreen;return d?(0,o.createComponentVNode)(2,i.Section,{title:(0,r.decodeHtmlEntities)(d.name),buttons:(0,o.createFragment)([!!u&&(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"bad",icon:"ban",confirmIcon:"ban",content:"Issue D-Notice",onClick:function(){return c("toggle_d_notice",{ref:d.ref})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return m("View List")},children:"Back"})],0),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Channel Created By",children:u&&(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"bad",icon:"strikethrough",confirmIcon:"strikethrough",content:(0,r.decodeHtmlEntities)(d.author),tooltip:"Censor?",confirmContent:"Censor Author",onClick:function(){return c("censor_channel_author",{ref:d.ref})}})||(0,o.createComponentVNode)(2,i.Box,{children:(0,r.decodeHtmlEntities)(d.author)})})}),!!d.censored&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:["ATTENTION: This channel has been deemed as threatening to the welfare of the station, and marked with a ",s," D-Notice. No further feed story additions are allowed while the D-Notice is in effect."]}),!!d.messages.length&&d.messages.map((function(e){return(0,o.createComponentVNode)(2,i.Section,{children:["- ",(0,r.decodeHtmlEntities)(e.body),!!e.img&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/png;base64,"+e.img}),(0,r.decodeHtmlEntities)(e.caption)||null]}),(0,o.createComponentVNode)(2,i.Box,{color:"grey",children:["[Story by ",(0,r.decodeHtmlEntities)(e.author)," - ",e.timestamp,"]"]}),!!u&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button.Confirm,{mt:1,color:"bad",icon:"strikethrough",confirmIcon:"strikethrough",content:"Censor Story",onClick:function(){return c("censor_channel_story_body",{ref:e.ref})}}),(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"bad",icon:"strikethrough",confirmIcon:"strikethrough",content:"Censor Author",onClick:function(){return c("censor_channel_story_author",{ref:e.ref})}})],4)]},e.ref)}))||!d.censored&&(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No feed messages found in channel."})]}):(0,o.createComponentVNode)(2,i.Section,{title:"Channel Not Found",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return m("View List")},children:"Back"}),children:"The channel you were looking for no longer exists."})}}},function(e,t,n){"use strict";t.__esModule=!0,t.NoticeBoard=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.NoticeBoard=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data.notices;return(0,o.createComponentVNode)(2,i.Window,{width:330,height:300,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:l.length?(0,o.createComponentVNode)(2,a.LabeledList,{children:l.map((function(e,t){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[e.isphoto&&(0,o.createComponentVNode)(2,a.Button,{icon:"image",content:"Look",onClick:function(){return c("look",{ref:e.ref})}})||e.ispaper&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"sticky-note",content:"Read",onClick:function(){return c("read",{ref:e.ref})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Write",onClick:function(){return c("write",{ref:e.ref})}})],4)||"Unknown Entity",(0,o.createComponentVNode)(2,a.Button,{icon:"minus-circle",content:"Remove",onClick:function(){return c("remove",{ref:e.ref})}})]},t)}))}):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No notices posted here."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosAccessDecrypter=void 0;var o=n(0),r=n(1),a=n(3),i=n(133),c=n(2);t.NtosAccessDecrypter=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.message,s=d.running,m=d.rate,p=d.factor,h=d.regions,f=function(e){for(var t="";t.lengthp?t+="0":t+="1";return t};return(0,o.createComponentVNode)(2,a.NtosWindow,{width:600,height:600,theme:"syndicate",children:(0,o.createComponentVNode)(2,a.NtosWindow.Content,{children:u&&(0,o.createComponentVNode)(2,c.NoticeBox,{children:u})||s&&(0,o.createComponentVNode)(2,c.Section,{children:["Attempting to decrypt network access codes. Please wait. Rate: ",m," PHash/s",(0,o.createComponentVNode)(2,c.Box,{children:f(45)}),(0,o.createComponentVNode)(2,c.Box,{children:f(45)}),(0,o.createComponentVNode)(2,c.Box,{children:f(45)}),(0,o.createComponentVNode)(2,c.Box,{children:f(45)}),(0,o.createComponentVNode)(2,c.Box,{children:f(45)}),(0,o.createComponentVNode)(2,c.Button,{fluid:!0,icon:"ban",onClick:function(){return l("PRG_reset")},children:"Abort"})]})||(0,o.createComponentVNode)(2,c.Section,{title:"Pick access code to decrypt",children:h.length&&(0,o.createComponentVNode)(2,i.IdentificationComputerRegions,{actName:"PRG_execute"})||(0,o.createComponentVNode)(2,c.Box,{children:"Please insert ID card."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosArcade=void 0;var o=n(0),r=n(93),a=n(1),i=n(2),c=n(3);t.NtosArcade=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data;return(0,o.createComponentVNode)(2,c.NtosWindow,{width:450,height:350,children:(0,o.createComponentVNode)(2,c.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,i.Section,{title:"Outbomb Cuban Pete Ultra",textAlign:"center",children:[(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Grid,{children:[(0,o.createComponentVNode)(2,i.Grid.Column,{size:2,children:[(0,o.createComponentVNode)(2,i.Box,{m:1}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Player Health",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:d.PlayerHitpoints,minValue:0,maxValue:30,ranges:{olive:[31,Infinity],good:[20,31],average:[10,20],bad:[-Infinity,10]},children:[d.PlayerHitpoints,"HP"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Player Magic",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:d.PlayerMP,minValue:0,maxValue:10,ranges:{purple:[11,Infinity],violet:[3,11],bad:[-Infinity,3]},children:[d.PlayerMP,"MP"]})})]}),(0,o.createComponentVNode)(2,i.Box,{my:1,mx:4}),(0,o.createComponentVNode)(2,i.Section,{backgroundColor:1===d.PauseState?"#1b3622":"#471915",children:d.Status})]}),(0,o.createComponentVNode)(2,i.Grid.Column,{children:[(0,o.createComponentVNode)(2,i.ProgressBar,{value:d.Hitpoints,minValue:0,maxValue:45,ranges:{good:[30,Infinity],average:[5,30],bad:[-Infinity,5]},children:[(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:d.Hitpoints}),"HP"]}),(0,o.createComponentVNode)(2,i.Box,{m:1}),(0,o.createComponentVNode)(2,i.Section,{inline:!0,width:"156px",textAlign:"center",children:(0,o.createVNode)(1,"img",null,null,1,{src:(0,r.resolveAsset)(d.BossID)})})]})]}),(0,o.createComponentVNode)(2,i.Box,{my:1,mx:4}),(0,o.createComponentVNode)(2,i.Button,{icon:"fist-raised",tooltip:"Go in for the kill!",tooltipPosition:"top",disabled:0===d.GameActive||1===d.PauseState,onClick:function(){return l("Attack")},content:"Attack!"}),(0,o.createComponentVNode)(2,i.Button,{icon:"band-aid",tooltip:"Heal yourself!",tooltipPosition:"top",disabled:0===d.GameActive||1===d.PauseState,onClick:function(){return l("Heal")},content:"Heal!"}),(0,o.createComponentVNode)(2,i.Button,{icon:"magic",tooltip:"Recharge your magic!",tooltipPosition:"top",disabled:0===d.GameActive||1===d.PauseState,onClick:function(){return l("Recharge_Power")},content:"Recharge!"})]}),(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"sync-alt",tooltip:"One more game couldn't hurt.",tooltipPosition:"top",disabled:1===d.GameActive,onClick:function(){return l("Start_Game")},content:"Begin Game"}),(0,o.createComponentVNode)(2,i.Button,{icon:"ticket-alt",tooltip:"Claim at your local Arcade Computer for Prizes!",tooltipPosition:"top",disabled:1===d.GameActive,onClick:function(){return l("Dispense_Tickets")},content:"Claim Tickets"})]}),(0,o.createComponentVNode)(2,i.Box,{color:d.TicketCount>=1?"good":"normal",children:["Earned Tickets: ",d.TicketCount]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosAtmosControl=void 0;var o=n(0),r=n(3),a=n(185);t.NtosAtmosControl=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:870,height:708,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,a.AtmosControlContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosCameraConsole=void 0;var o=n(0),r=n(3),a=n(186);t.NtosCameraConsole=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:870,height:708,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,a.CameraConsoleContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosCommunicationsConsole=void 0;var o=n(0),r=n(1),a=n(3),i=n(188);t.NtosCommunicationsConsole=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.NtosWindow,{width:400,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,a.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i.CommunicationsConsoleContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosConfiguration=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosConfiguration=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.PC_device_theme,u=l.power_usage,s=l.battery_exists,m=l.battery,p=void 0===m?{}:m,h=l.disk_size,f=l.disk_used,C=l.hardware,N=void 0===C?[]:C;return(0,o.createComponentVNode)(2,i.NtosWindow,{theme:d,width:520,height:630,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Power Supply",buttons:(0,o.createComponentVNode)(2,a.Box,{inline:!0,bold:!0,mr:1,children:["Power Draw: ",u,"W"]}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Battery Status",color:!s&&"average",children:s?(0,o.createComponentVNode)(2,a.ProgressBar,{value:p.charge,minValue:0,maxValue:p.max,ranges:{good:[p.max/2,Infinity],average:[p.max/4,p.max/2],bad:[-Infinity,p.max/4]},children:[p.charge," / ",p.max]}):"Not Available"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"File System",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:f,minValue:0,maxValue:h,color:"good",children:[f," GQ / ",h," GQ"]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Hardware Components",children:N.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,level:2,buttons:(0,o.createFragment)([!e.critical&&(0,o.createComponentVNode)(2,a.Button.Checkbox,{content:"Enabled",checked:e.enabled,mr:1,onClick:function(){return c("PC_toggle_component",{name:e.name})}}),(0,o.createComponentVNode)(2,a.Box,{inline:!0,bold:!0,mr:1,children:["Power Usage: ",e.powerusage,"W"]})],0),children:e.desc},e.name)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosCrewMonitor=void 0;var o=n(0),r=n(3),a=n(189);t.NtosCrewMonitor=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:800,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,a.CrewMonitorContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosDigitalWarrant=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(9);t.NtosDigitalWarrant=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),c=(a.warrantname,a.warrantcharges,a.warrantauth),d=(a.type,a.allwarrants,(0,o.createComponentVNode)(2,l));return c&&(d=(0,o.createComponentVNode)(2,u)),(0,o.createComponentVNode)(2,i.NtosWindow,{width:500,height:350,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:d})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act;n.data.allwarrants;return(0,o.createComponentVNode)(2,a.Section,{title:"Warrants",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"plus",fluid:!0,onClick:function(){return i("addwarrant")},children:"Create New Warrant"}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Arrest Warrants",children:(0,o.createComponentVNode)(2,d,{type:"arrest"})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Search Warrants",children:(0,o.createComponentVNode)(2,d,{type:"search"})})]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=e.type,u=l.allwarrants,s=(0,c.filter)((function(e){return e.arrestsearch===d}))(u);return(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"arrest"===d?"Name":"Location"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"arrest"===d?"Charges":"Reason"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Authorized By"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Edit"})]}),s.length&&s.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.warrantname}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.charges}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.auth}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("editwarrant",{id:e.id})}})})]},e.id)}))||(0,o.createComponentVNode)(2,a.Table.Row,{children:(0,o.createComponentVNode)(2,a.Table.Cell,{colspan:"3",color:"bad",children:["No ",d," warrants found."]})})]})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.warrantname,d=c.warrantcharges,u=c.warrantauth,s=c.type,m="arrest"===s,p="arrest"===s?"Name":"Location",h="arrest"===s?"Charges":"Reason";return(0,o.createComponentVNode)(2,a.Section,{title:m?"Editing Arrest Warrant":"Editing Search Warrant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"save",onClick:function(){return i("savewarrant")},children:"Save"}),(0,o.createComponentVNode)(2,a.Button,{color:"bad",icon:"trash",onClick:function(){return i("deletewarrant")},children:"Delete"}),(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return i("back")},children:"Back"})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:p,buttons:m&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"search",onClick:function(){return i("editwarrantname")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("editwarrantnamecustom")}})],4)||(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("editwarrantnamecustom")}}),children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:h,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("editwarrantcharges")}}),children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Authorized By",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"balance-scale",onClick:function(){return i("editwarrantauth")}}),children:u})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosEmailAdministration=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(193);t.NtosEmailAdministration=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),c=a.error,m=a.cur_title,p=a.current_account,h=(0,o.createComponentVNode)(2,l);return c?h=(0,o.createComponentVNode)(2,d):m?h=(0,o.createComponentVNode)(2,u):p&&(h=(0,o.createComponentVNode)(2,s)),(0,o.createComponentVNode)(2,i.NtosWindow,{width:600,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:h})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.accounts;return(0,o.createComponentVNode)(2,a.Section,{title:"Welcome to the NTNet Email Administration System",children:[(0,o.createComponentVNode)(2,a.Box,{italic:!0,mb:1,children:"SECURE SYSTEM - Have your identification ready"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"plus",onClick:function(){return i("newaccount")},children:"Create New Account"}),(0,o.createComponentVNode)(2,a.Box,{bold:!0,mt:1,mb:1,children:"Select account to administrate"}),c.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eye",onClick:function(){return i("viewaccount",{viewaccount:e.uid})},children:e.login},e.uid)}))]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.error;return(0,o.createComponentVNode)(2,a.Section,{title:"Message",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return i("back")},children:"Back"}),children:c})},u=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,c.NtosEmailClientViewMessage,{administrator:!0})})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=(c.error,c.msg_title,c.msg_body,c.msg_timestamp,c.msg_source,c.current_account),d=c.cur_suspended,u=c.messages;c.accounts;return(0,o.createComponentVNode)(2,a.Section,{title:"Viewing "+l+" in admin mode",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return i("back")},children:"Back"}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account Status",children:(0,o.createComponentVNode)(2,a.Button,{color:d?"bad":"",icon:"ban",tooltip:(d?"Uns":"S")+"uspend Account?",onClick:function(){return i("ban")},children:d?"Suspended":"Normal"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:(0,o.createComponentVNode)(2,a.Button,{icon:"key",onClick:function(){return i("changepass")},children:"Change Password"})})]}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Messages",children:u.length&&(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Source"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Title"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Received at"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Actions"})]}),u.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.source}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.title}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.timestamp}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"eye",onClick:function(){return i("viewmail",{viewmail:e.uid})},children:"View"})})]},e.uid)}))]})||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No messages found in selected account."})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosFileManager=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);n(7);t.NtosFileManager=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.PC_device_theme,s=d.usbconnected,m=d.filename,p=d.filedata,h=d.error,f=d.files,C=void 0===f?[]:f,N=d.usbfiles,b=void 0===N?[]:N;return(0,o.createComponentVNode)(2,i.NtosWindow,{resizable:!0,theme:u,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:(m||h)&&(0,o.createComponentVNode)(2,a.Section,{title:"Viewing File "+m,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Edit",onClick:function(){return l("PRG_edit")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"print",content:"Print",onClick:function(){return l("PRG_printfile")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Close",onClick:function(){return l("PRG_closefile")}})],4),children:[h||null,p&&(0,o.createVNode)(1,"div",null,null,1,{dangerouslySetInnerHTML:{__html:p}})]})||(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,c,{files:C,usbconnected:s,onUpload:function(e){return l("PRG_copytousb",{name:e})},onDelete:function(e){return l("PRG_deletefile",{name:e})},onOpen:function(e){return l("PRG_openfile",{name:e})},onRename:function(e,t){return l("PRG_rename",{name:e,new_name:t})},onDuplicate:function(e){return l("PRG_clone",{file:e})}})}),s&&(0,o.createComponentVNode)(2,a.Section,{title:"Data Disk",children:(0,o.createComponentVNode)(2,c,{usbmode:!0,files:b,usbconnected:s,onUpload:function(e){return l("PRG_copyfromusb",{name:e})},onDelete:function(e){return l("PRG_deletefile",{name:e})},onRename:function(e,t){return l("PRG_rename",{name:e,new_name:t})},onDuplicate:function(e){return l("PRG_clone",{file:e})}})})||null,(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return l("PRG_newtextfile")},children:"New Text File"})})],0)})})};var c=function(e){var t=e.files,n=void 0===t?[]:t,r=e.usbconnected,i=e.usbmode,c=e.onUpload,l=e.onDelete,d=e.onRename,u=e.onOpen;return(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"File"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Type"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Size"})]}),n.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{className:"candystripe",children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.undeletable?e.name:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Input,{width:"80%",content:e.name,currentValue:e.name,tooltip:"Rename",onCommit:function(t,n){return d(e.name,n)}}),(0,o.createComponentVNode)(2,a.Button,{content:"Open",onClick:function(){return u(e.name)}})],4)}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.type}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.size}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:!e.undeletable&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",confirmIcon:"times",confirmContent:"",tooltip:"Delete",onClick:function(){return l(e.name)}}),!!r&&(i?(0,o.createComponentVNode)(2,a.Button,{icon:"download",tooltip:"Download",onClick:function(){return c(e.name)}}):(0,o.createComponentVNode)(2,a.Button,{icon:"upload",tooltip:"Upload",onClick:function(){return c(e.name)}}))],0)})]},e.name)}))]})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosIdentificationComputer=void 0;var o=n(0),r=(n(9),n(1)),a=(n(2),n(3)),i=(n(7),n(28),n(133));t.NtosIdentificationComputer=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.NtosWindow,{width:600,height:700,resizable:!0,children:(0,o.createComponentVNode)(2,a.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i.IdentificationComputerContent,{ntos:!0})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosMain=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c={compconfig:"cog",ntndownloader:"download",filemanager:"folder",smmonitor:"radiation",alarmmonitor:"bell",cardmod:"id-card",arcade:"gamepad",ntnrc_client:"comment-alt",nttransfer:"exchange-alt",powermonitor:"plug",job_manage:"address-book",crewmani:"clipboard-list",robocontrol:"robot",atmosscan:"thermometer-half",shipping:"tags"};t.NtosMain=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.device_theme,s=d.programs,m=void 0===s?[]:s,p=d.has_light,h=d.light_on,f=d.comp_light_color,C=d.removable_media,N=void 0===C?[]:C,b=d.login,V=void 0===b?[]:b;return(0,o.createComponentVNode)(2,i.NtosWindow,{title:"syndicate"===u?"Syndix Main Menu":"NtOS Main Menu",theme:u,width:400,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:[!!p&&(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.Button,{width:"144px",icon:"lightbulb",selected:h,onClick:function(){return l("PC_toggle_light")},children:["Flashlight: ",h?"ON":"OFF"]}),(0,o.createComponentVNode)(2,a.Button,{ml:1,onClick:function(){return l("PC_light_color")},children:["Color:",(0,o.createComponentVNode)(2,a.ColorBox,{ml:1,color:f})]})]}),(0,o.createComponentVNode)(2,a.Section,{title:"User Login",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:"Eject ID",disabled:!V.IDName,onClick:function(){return l("PC_Eject_Disk",{name:"ID"})}}),children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:["ID Name: ",V.IDName]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:["Assignment: ",V.IDJob]})]})}),!!N.length&&(0,o.createComponentVNode)(2,a.Section,{title:"Media Eject",children:(0,o.createComponentVNode)(2,a.Table,{children:N.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"transparent",icon:"eject",content:e,onClick:function(){return l("PC_Eject_Disk",{name:e})}})})},e)}))})}),(0,o.createComponentVNode)(2,a.Section,{title:"Programs",children:(0,o.createComponentVNode)(2,a.Table,{children:m.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"transparent",icon:c[e.name]||"window-maximize-o",content:e.desc,onClick:function(){return l("PC_runprogram",{name:e.name})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,width:"18px",children:!!e.running&&(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"times",tooltip:"Close program",tooltipPosition:"left",onClick:function(){return l("PC_killprogram",{name:e.name})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,width:"18px",children:(0,o.createComponentVNode)(2,a.Button,{color:"transparent",tooltip:"Set Autorun",tooltipPosition:"left",selected:e.autorun,onClick:function(){return l("PC_setautorun",{name:e.name})},children:"AR"})})]},e.name)}))})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNetChat=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosNetChat=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.can_admin,u=l.adminmode,s=l.authed,m=l.username,p=l.active_channel,h=l.is_operator,f=l.all_channels,C=void 0===f?[]:f,N=l.clients,b=void 0===N?[]:N,V=l.messages,g=void 0===V?[]:V,v=null!==p,k=s||u;return(0,o.createComponentVNode)(2,i.NtosWindow,{width:900,height:675,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,a.Section,{height:"600px",children:(0,o.createComponentVNode)(2,a.Table,{height:"580px",children:(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{verticalAlign:"top",style:{width:"200px"},children:[(0,o.createComponentVNode)(2,a.Box,{height:"560px",overflowY:"scroll",children:[(0,o.createComponentVNode)(2,a.Button.Input,{fluid:!0,content:"New Channel...",onCommit:function(e,t){return c("PRG_newchannel",{new_channel_name:t})}}),C.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,content:e.chan,selected:e.id===p,color:"transparent",onClick:function(){return c("PRG_joinchannel",{id:e.id})}},e.chan)}))]}),(0,o.createComponentVNode)(2,a.Button.Input,{fluid:!0,mt:1,content:m+"...",currentValue:m,onCommit:function(e,t){return c("PRG_changename",{new_name:t})}}),!!d&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,bold:!0,content:"ADMIN MODE: "+(u?"ON":"OFF"),color:u?"bad":"good",onClick:function(){return c("PRG_toggleadmin")}})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Box,{height:"560px",overflowY:"scroll",children:v&&(k?g.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e.msg},e.msg)})):(0,o.createComponentVNode)(2,a.Box,{textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",mt:4,fontSize:"40px"}),(0,o.createComponentVNode)(2,a.Box,{mt:1,bold:!0,fontSize:"18px",children:"THIS CHANNEL IS PASSWORD PROTECTED"}),(0,o.createComponentVNode)(2,a.Box,{mt:1,children:"INPUT PASSWORD TO ACCESS"})]}))}),(0,o.createComponentVNode)(2,a.Input,{fluid:!0,selfClear:!0,mt:1,onEnter:function(e,t){return c("PRG_speak",{message:t})}})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{verticalAlign:"top",style:{width:"150px"},children:[(0,o.createComponentVNode)(2,a.Box,{height:"465px",overflowY:"scroll",children:b.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e.name},e.name)}))}),v&&k&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Input,{fluid:!0,content:"Save log...",defaultValue:"new_log",onCommit:function(e,t){return c("PRG_savelog",{log_name:t})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{fluid:!0,content:"Leave Channel",onClick:function(){return c("PRG_leavechannel")}})],4),!!h&&s&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{fluid:!0,content:"Delete Channel",onClick:function(){return c("PRG_deletechannel")}}),(0,o.createComponentVNode)(2,a.Button.Input,{fluid:!0,content:"Rename Channel...",onCommit:function(e,t){return c("PRG_renamechannel",{new_name:t})}}),(0,o.createComponentVNode)(2,a.Button.Input,{fluid:!0,content:"Set Password...",onCommit:function(e,t){return c("PRG_setpassword",{new_password:t})}})],4)]})]})})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNetDosContent=t.NtosNetDos=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosNetDos=function(e,t){return(0,o.createComponentVNode)(2,i.NtosWindow,{width:400,height:250,theme:"syndicate",children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,c)})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.relays,d=void 0===l?[]:l,u=c.focus,s=c.target,m=c.speed,p=c.overload,h=c.capacity,f=c.error;if(f)return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.NoticeBox,{children:f}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,content:"Reset",textAlign:"center",onClick:function(){return i("PRG_reset")}})],4);var C=function(e){for(var t="",n=p/h;t.lengthn?t+="0":t+="1";return t};return s?(0,o.createComponentVNode)(2,a.Section,{fontFamily:"monospace",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Box,{children:["CURRENT SPEED: ",m," GQ/s"]}),(0,o.createComponentVNode)(2,a.Box,{children:C(45)}),(0,o.createComponentVNode)(2,a.Box,{children:C(45)}),(0,o.createComponentVNode)(2,a.Box,{children:C(45)}),(0,o.createComponentVNode)(2,a.Box,{children:C(45)}),(0,o.createComponentVNode)(2,a.Box,{children:C(45)})]}):(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.id,selected:u===e.id,onClick:function(){return i("PRG_target_relay",{targid:e.id})}},e.id)}))})}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,bold:!0,content:"EXECUTE",color:"bad",textAlign:"center",disabled:!u,mt:1,onClick:function(){return i("PRG_execute")}})]})};t.NtosNetDosContent=c},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNetDownloader=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3);t.NtosNetDownloader=function(e,t){var n=(0,a.useBackend)(t),r=n.act,d=n.data,u=d.PC_device_theme,s=d.disk_size,m=d.disk_used,p=d.downloadable_programs,h=void 0===p?[]:p,f=d.error,C=d.hacked_programs,N=void 0===C?[]:C,b=d.hackedavailable;return(0,o.createComponentVNode)(2,c.NtosWindow,{theme:u,width:480,height:735,resizable:!0,children:(0,o.createComponentVNode)(2,c.NtosWindow.Content,{scrollable:!0,children:[!!f&&(0,o.createComponentVNode)(2,i.NoticeBox,{children:[(0,o.createComponentVNode)(2,i.Box,{mb:1,children:f}),(0,o.createComponentVNode)(2,i.Button,{content:"Reset",onClick:function(){return r("PRG_reseterror")}})]}),(0,o.createComponentVNode)(2,i.Section,{children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Disk usage",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:m,minValue:0,maxValue:s,children:m+" GQ / "+s+" GQ"})})})}),(0,o.createComponentVNode)(2,i.Section,{children:h.map((function(e){return(0,o.createComponentVNode)(2,l,{program:e},e.filename)}))}),!!b&&(0,o.createComponentVNode)(2,i.Section,{title:"UNKNOWN Software Repository",children:[(0,o.createComponentVNode)(2,i.NoticeBox,{mb:1,children:"Please note that Nanotrasen does not recommend download of software from non-official servers."}),N.map((function(e){return(0,o.createComponentVNode)(2,l,{program:e},e.filename)}))]})]})})};var l=function(e,t){var n=e.program,c=(0,a.useBackend)(t),l=c.act,d=c.data,u=d.disk_size,s=d.disk_used,m=d.downloadcompletion,p=(d.downloading,d.downloadname),h=d.downloadsize,f=d.downloadspeed,C=d.downloads_queue,N=u-s;return(0,o.createComponentVNode)(2,i.Box,{mb:3,children:[(0,o.createComponentVNode)(2,i.Flex,{align:"baseline",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{bold:!0,grow:1,children:n.filedesc}),(0,o.createComponentVNode)(2,i.Flex.Item,{color:"label",nowrap:!0,children:[n.size," GQ"]}),(0,o.createComponentVNode)(2,i.Flex.Item,{ml:2,width:"94px",textAlign:"center",children:n.filename===p&&(0,o.createComponentVNode)(2,i.ProgressBar,{color:"green",minValue:0,maxValue:h,value:m,children:[(0,r.round)(m/h*100,1),"% (",f,"GQ/s)"]})||-1!==C.indexOf(n.filename)&&(0,o.createComponentVNode)(2,i.Button,{icon:"ban",color:"bad",onClick:function(){return l("PRG_removequeued",{filename:n.filename})},children:"Queued..."})||(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"download",content:"Download",disabled:n.size>N,onClick:function(){return l("PRG_downloadfile",{filename:n.filename})}})})]}),"Compatible"!==n.compatibility&&(0,o.createComponentVNode)(2,i.Box,{mt:1,italic:!0,fontSize:"12px",position:"relative",children:[(0,o.createComponentVNode)(2,i.Icon,{mx:1,color:"red",name:"times"}),"Incompatible!"]}),n.size>N&&(0,o.createComponentVNode)(2,i.Box,{mt:1,italic:!0,fontSize:"12px",position:"relative",children:[(0,o.createComponentVNode)(2,i.Icon,{mx:1,color:"red",name:"times"}),"Not enough disk space!"]}),(0,o.createComponentVNode)(2,i.Box,{mt:1,italic:!0,color:"label",fontSize:"12px",children:n.fileinfo})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNetMonitor=void 0;var o=n(0),r=n(2),a=n(1),i=n(3);t.NtosNetMonitor=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.ntnetrelays,u=l.ntnetstatus,s=l.config_softwaredownload,m=l.config_peertopeer,p=l.config_communication,h=l.config_systemcontrol,f=l.idsalarm,C=l.idsstatus,N=l.ntnetmaxlogs,b=l.maxlogs,V=l.minlogs,g=l.banned_nids,v=l.ntnetlogs,k=void 0===v?[]:v;return(0,o.createComponentVNode)(2,i.NtosWindow,{resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,r.NoticeBox,{children:"WARNING: Disabling wireless transmitters when using a wireless device may prevent you from reenabling them!"}),(0,o.createComponentVNode)(2,r.Section,{title:"Wireless Connectivity",buttons:(0,o.createComponentVNode)(2,r.Button.Confirm,{icon:u?"power-off":"times",content:u?"ENABLED":"DISABLED",selected:u,onClick:function(){return c("toggleWireless")}}),children:d?(0,o.createComponentVNode)(2,r.LabeledList,{children:(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Active NTNet Relays",children:d})}):"No Relays Connected"}),(0,o.createComponentVNode)(2,r.Section,{title:"Firewall Configuration",children:(0,o.createComponentVNode)(2,r.LabeledList,{children:[(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Software Downloads",buttons:(0,o.createComponentVNode)(2,r.Button,{icon:s?"power-off":"times",content:s?"ENABLED":"DISABLED",selected:s,onClick:function(){return c("toggle_function",{id:"1"})}})}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Peer to Peer Traffic",buttons:(0,o.createComponentVNode)(2,r.Button,{icon:m?"power-off":"times",content:m?"ENABLED":"DISABLED",selected:m,onClick:function(){return c("toggle_function",{id:"2"})}})}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Communication Systems",buttons:(0,o.createComponentVNode)(2,r.Button,{icon:p?"power-off":"times",content:p?"ENABLED":"DISABLED",selected:p,onClick:function(){return c("toggle_function",{id:"3"})}})}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Remote System Control",buttons:(0,o.createComponentVNode)(2,r.Button,{icon:h?"power-off":"times",content:h?"ENABLED":"DISABLED",selected:h,onClick:function(){return c("toggle_function",{id:"4"})}})})]})}),(0,o.createComponentVNode)(2,r.Section,{title:"Security Systems",children:[!!f&&(0,o.createFragment)([(0,o.createComponentVNode)(2,r.NoticeBox,{children:"NETWORK INCURSION DETECTED"}),(0,o.createComponentVNode)(2,r.Box,{italics:!0,children:"Abnormal activity has been detected in the network. Check system logs for more information"})],4),(0,o.createComponentVNode)(2,r.LabeledList,{children:[(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Banned NIDs",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,r.Button,{icon:"ban",onClick:function(){return c("ban_nid")},children:"Ban NID"}),(0,o.createComponentVNode)(2,r.Button,{icon:"balance-scale",onClick:function(){return c("unban_nid")},children:"Unban NID"})],4),children:g.join(", ")||"None"}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"IDS Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,r.Button,{icon:C?"power-off":"times",content:C?"ENABLED":"DISABLED",selected:C,onClick:function(){return c("toggleIDS")}}),(0,o.createComponentVNode)(2,r.Button,{icon:"sync",content:"Reset",color:"bad",onClick:function(){return c("resetIDS")}})],4)}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Max Log Count",buttons:(0,o.createComponentVNode)(2,r.NumberInput,{value:N,minValue:V,maxValue:b,width:"39px",onChange:function(e,t){return c("updatemaxlogs",{new_number:t})}})})]}),(0,o.createComponentVNode)(2,r.Section,{title:"System Log",level:2,buttons:(0,o.createComponentVNode)(2,r.Button.Confirm,{icon:"trash",content:"Clear Logs",onClick:function(){return c("purgelogs")}}),children:k.map((function(e){return(0,o.createComponentVNode)(2,r.Box,{className:"candystripe",children:e.entry},e.entry)}))})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNetTransfer=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosNetTransfer=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),m=a.error,p=a.downloading,h=a.uploading,f=a.upload_filelist,C=(0,o.createComponentVNode)(2,s);return m?C=(0,o.createComponentVNode)(2,c):p?C=(0,o.createComponentVNode)(2,l):h?C=(0,o.createComponentVNode)(2,d):f.length&&(C=(0,o.createComponentVNode)(2,u)),(0,o.createComponentVNode)(2,i.NtosWindow,{width:575,height:700,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:C})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.error;return(0,o.createComponentVNode)(2,a.Section,{title:"An error has occured during operation.",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return i("PRG_reset")},children:"Reset"}),children:["Additional Information: ",c]})},l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.download_name,d=c.download_progress,u=c.download_size,s=c.download_netspeed;return(0,o.createComponentVNode)(2,a.Section,{title:"Download in progress",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Downloaded File",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Progress",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:d,maxValue:u,children:[d," / ",u," GQ"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transfer Speed",children:[s," GQ/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Controls",children:(0,o.createComponentVNode)(2,a.Button,{icon:"ban",onClick:function(){return i("PRG_reset")},children:"Cancel Download"})})]})})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.upload_clients,d=c.upload_filename,u=c.upload_haspassword;return(0,o.createComponentVNode)(2,a.Section,{title:"Server enabled",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Clients Connected",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Provided file",children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Server Password",children:u?"Enabled":"Disabled"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Commands",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"lock",onClick:function(){return i("PRG_setpassword")},children:"Set Password"}),(0,o.createComponentVNode)(2,a.Button,{icon:"ban",onClick:function(){return i("PRG_reset")},children:"Cancel Upload"})]})]})})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.upload_filelist;return(0,o.createComponentVNode)(2,a.Section,{title:"File transfer server ready.",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return i("PRG_reset")},children:"Cancel"}),children:[(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"lock",onClick:function(){return i("PRG_setpassword")},children:"Set Password"}),(0,o.createComponentVNode)(2,a.Section,{title:"Pick file to serve.",level:2,children:c.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"upload",onClick:function(){return i("PRG_uploadfile",{uid:e.uid})},children:[e.filename," (",e.size,"GQ)"]},e.uid)}))})]})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.servers;return(0,o.createComponentVNode)(2,a.Section,{title:"Available Files",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"upload",onClick:function(){return i("PRG_uploadmenu")},children:"Send File"}),children:c.length&&(0,o.createComponentVNode)(2,a.LabeledList,{children:c.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.uid,children:[!!e.haspassword&&(0,o.createComponentVNode)(2,a.Icon,{name:"lock",mr:1}),e.filename,"\xa0 (",e.size,"GQ)\xa0",(0,o.createComponentVNode)(2,a.Button,{icon:"download",onClick:function(){return i("PRG_downloadfile",{uid:e.uid})},children:"Download"})]},e.uid)}))})||(0,o.createComponentVNode)(2,a.Box,{children:"No upload servers found."})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNewsBrowser=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(93);t.NtosNewsBrowser=function(e,t){var n=(0,r.useBackend)(t),c=n.act,s=n.data,m=s.article,p=s.download,h=s.message,f=(0,o.createComponentVNode)(2,d);return m?f=(0,o.createComponentVNode)(2,l):p&&(f=(0,o.createComponentVNode)(2,u)),(0,o.createComponentVNode)(2,i.NtosWindow,{width:575,height:750,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:[!!h&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:[h," ",(0,o.createComponentVNode)(2,a.Button,{icon:"times",onClick:function(){return c("PRG_clearmessage")}})]}),f]})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.article;if(!l)return(0,o.createComponentVNode)(2,a.Section,{children:"Error: Article not found."});var d=l.title,u=l.cover,s=l.content;return(0,o.createComponentVNode)(2,a.Section,{title:"Viewing: "+d,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"save",onClick:function(){return i("PRG_savearticle")},children:"Save"}),(0,o.createComponentVNode)(2,a.Button,{icon:"times",onClick:function(){return i("PRG_reset")},children:"Close"})],4),children:[!!u&&(0,o.createVNode)(1,"img",null,null,1,{src:(0,c.resolveAsset)(u)}),(0,o.createVNode)(1,"div",null,null,1,{dangerouslySetInnerHTML:{__html:s}})]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.showing_archived,d=c.all_articles;return(0,o.createComponentVNode)(2,a.Section,{title:"Articles List",buttons:(0,o.createComponentVNode)(2,a.Button.Checkbox,{onClick:function(){return i("PRG_toggle_archived")},checked:l,children:"Show Archived"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"download",onClick:function(){return i("PRG_openarticle",{uid:e.uid})}}),children:[e.size," GQ"]},e.uid)}))||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Error",children:"There appear to be no outstanding news articles on NTNet today."})})})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.download,l=c.download_progress,d=c.download_maxprogress,u=c.download_rate;return(0,o.createComponentVNode)(2,a.Section,{title:"Downloading...",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Progress",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:"good",minValue:0,value:l,maxValue:d,children:[l," / ",d," GQ"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Download Speed",children:[u," GQ/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Controls",children:(0,o.createComponentVNode)(2,a.Button,{icon:"ban",fluid:!0,onClick:function(){return i("PRG_reset")},children:"Abort Download"})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosOvermapNavigation=void 0;var o=n(0),r=n(3),a=n(194);t.NtosOvermapNavigation=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:380,height:530,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.OvermapNavigationContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosPowerMonitor=void 0;var o=n(0),r=n(3),a=n(135);t.NtosPowerMonitor=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:550,height:700,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.PowerMonitorContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosRCON=void 0;var o=n(0),r=n(3),a=n(195);t.NtosRCON=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:630,height:440,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.RCONContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosRevelation=void 0;var o=n(0),r=n(2),a=n(1),i=n(3);t.NtosRevelation=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data;return(0,o.createComponentVNode)(2,i.NtosWindow,{width:400,height:250,theme:"syndicate",children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,r.Section,{children:[(0,o.createComponentVNode)(2,r.Button.Input,{fluid:!0,content:"Obfuscate Name...",onCommit:function(e,t){return c("PRG_obfuscate",{new_name:t})},mb:1}),(0,o.createComponentVNode)(2,r.LabeledList,{children:(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Payload Status",buttons:(0,o.createComponentVNode)(2,r.Button,{content:l.armed?"ARMED":"DISARMED",color:l.armed?"bad":"average",onClick:function(){return c("PRG_arm")}})})}),(0,o.createComponentVNode)(2,r.Button,{fluid:!0,bold:!0,content:"ACTIVATE",textAlign:"center",color:"bad",disabled:!l.armed})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosShutoffMonitor=void 0;var o=n(0),r=n(3),a=n(196);t.NtosShutoffMonitor=function(e,t){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:627,height:700,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,a.ShutoffMonitorContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosStationAlertConsole=void 0;var o=n(0),r=n(3),a=n(197);t.NtosStationAlertConsole=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:315,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.StationAlertConsoleContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosSupermatterMonitor=void 0;var o=n(0),r=n(3),a=n(198);t.NtosSupermatterMonitor=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:600,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.SupermatterMonitorContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosUAV=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosUAV=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.current_uav,u=l.signal_strength,s=l.in_use,m=l.paired_uavs;return(0,o.createComponentVNode)(2,i.NtosWindow,{width:600,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Selected UAV",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"UAV",children:d&&d.status||"[Not Connected]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Signal",children:d&&u||"[Not Connected]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:d&&(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d.power,onClick:function(){return c("power_uav")},children:d.power?"Online":"Offline"})||"[Not Connected]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Camera",children:d&&(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:s,disabled:!d.power,onClick:function(){return c("view_uav")},children:d.power?"Available":"Unavailable"})||"[Not Connected]"})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Paired UAVs",children:m.length&&m.map((function(e){return(0,o.createComponentVNode)(2,a.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"quidditch",onClick:function(){return c("switch_uav",{switch_uav:e.uavref})},children:e.name})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{color:"bad",icon:"times",onClick:function(){return c("del_uav",{del_uav:e.uavref})}})})]},e.uavref)}))||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No UAVs Paired."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosWordProcessor=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosWordProcessor=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.PC_device_theme,u=l.error,s=l.browsing,m=l.files,p=(l.usbconnected,l.usbfiles,l.filename),h=l.filedata;return(0,o.createComponentVNode)(2,i.NtosWindow,{resizable:!0,theme:d,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:u&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[(0,o.createVNode)(1,"h2",null,"An Error has occured:",16),"Additional Information: ",u,"Please try again. If the problem persists, contact your system administrator for assistance.",(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-left",content:"Back to menu",onClick:function(){return c("PRG_backtomenu")}})]})||s&&(0,o.createComponentVNode)(2,a.Section,{title:"File Browser",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-left",content:"Back to editor",onClick:function(){return c("PRG_closebrowser")}}),children:(0,o.createComponentVNode)(2,a.Section,{title:"Available documents (local)",level:2,children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Size (GQ)"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0})]}),m.map((function(e,t){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.size}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{icon:"file-word",onClick:function(){return c("PRG_openfile",{PRG_openfile:e.name})},children:"Open"})})]},t)}))]})})})||(0,o.createComponentVNode)(2,a.Section,{title:"Document: "+p,children:[(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_newfile")},children:"New"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_loadmenu")},children:"Load"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_savefile")},children:"Save"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_saveasfile")},children:"Save As"})]}),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_editfile")},children:"Edit"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_txtrpeview")},children:"Preview"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_taghelp")},children:"Formatting Help"}),(0,o.createComponentVNode)(2,a.Button,{disabled:!h,onClick:function(){return c("PRG_printfile")},children:"Print"})]}),(0,o.createComponentVNode)(2,a.Section,{mt:1,children:(0,o.createVNode)(1,"div",null,null,1,{dangerouslySetInnerHTML:{__html:h}})})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.OmniFilter=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=function(e){return e.input?"Input":e.output?"Output":e.f_type?e.f_type:"Disabled"};t.OmniFilter=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.power,s=d.config,m=d.ports,p=d.set_flow_rate,h=d.last_flow_rate;return(0,o.createComponentVNode)(2,i.Window,{width:360,height:330,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:s?"Configuration":"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:u?"On":"Off",selected:u,disabled:s,onClick:function(){return l("power")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",selected:s,onClick:function(){return l("configure")}})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:m?m.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.dir+" Port",children:s?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"IN",selected:e.input,icon:"compress-arrows-alt",onClick:function(){return l("switch_mode",{mode:"in",dir:e.dir})}}),(0,o.createComponentVNode)(2,a.Button,{content:"OUT",selected:e.output,icon:"expand-arrows-alt",onClick:function(){return l("switch_mode",{mode:"out",dir:e.dir})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",disabled:e.input||e.output,content:e.f_type||"None",onClick:function(){return l("switch_filter",{mode:e.f_type,dir:e.dir})}})],4):c(e)},e.dir)})):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No Ports Detected"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Flow Rate",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Flow Rate",children:[h," L/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate Limit",children:s?(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:p/10+" L/s",onClick:function(){return l("set_flow_rate")}}):p/10+" L/s"})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.OmniMixer=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=function(e){return e.input?"Input":e.output?"Output":e.f_type?e.f_type:"Disabled"};t.OmniMixer=function(e,t){var n=(0,r.useBackend)(t),c=n.act,d=n.data,u=d.power,s=d.config,m=d.ports,p=d.set_flow_rate,h=d.last_flow_rate;return(0,o.createComponentVNode)(2,i.Window,{width:390,height:330,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:s?"Configuration":"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:u?"On":"Off",selected:u,disabled:s,onClick:function(){return c("power")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",selected:s,onClick:function(){return c("configure")}})],4),children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Port"}),s?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Input"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Output"})],4):(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Mode"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Concentration"}),s?(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Lock"}):null]}),m?m.map((function(e){return(0,o.createComponentVNode)(2,l,{port:e,config:s},e.dir)})):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No Ports Detected"})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Flow Rate",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Flow Rate",children:[h," L/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate Limit",children:s?(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:p/10+" L/s",onClick:function(){return c("set_flow_rate")}}):p/10+" L/s"})]})})]})})};var l=function(e,t){var n=(0,r.useBackend)(t).act,i=e.port,l=e.config;return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:i.dir+" Port"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:l?(0,o.createComponentVNode)(2,a.Button,{content:"IN",selected:i.input,disabled:i.output,icon:"compress-arrows-alt",onClick:function(){return n("switch_mode",{mode:i.input?"none":"in",dir:i.dir})}}):c(i)}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:l?(0,o.createComponentVNode)(2,a.Button,{content:"OUT",selected:i.output,icon:"expand-arrows-alt",onClick:function(){return n("switch_mode",{mode:"out",dir:i.dir})}}):100*i.concentration+"%"}),l?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",width:"20%",children:(0,o.createComponentVNode)(2,a.Button,{width:"100%",icon:"wrench",disabled:!i.input,content:i.input?100*i.concentration+" %":"-",onClick:function(){return n("switch_con",{dir:i.dir})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{icon:i.con_lock?"lock":"lock-open",disabled:!i.input,selected:i.con_lock,content:i.f_type||"None",onClick:function(){return n("switch_conlock",{dir:i.dir})}})})],4):null]})}},function(e,t,n){"use strict";t.__esModule=!0,t.OperatingComputer=void 0;var o=n(0),r=n(5),a=n(1),i=n(3),c=n(2),l=[["good","Conscious"],["average","Unconscious"],["bad","DEAD"]],d=[["Resp.","oxyLoss"],["Toxin","toxLoss"],["Brute","bruteLoss"],["Burn","fireLoss"]],u={average:[.25,.5],bad:[.5,Infinity]},s=["bad","average","average","good","average","average","bad"];t.OperatingComputer=function(e,t){var n,r=(0,a.useBackend)(t),l=r.act,d=r.data,u=d.hasOccupant,s=d.choice;return n=s?(0,o.createComponentVNode)(2,h):u?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,i.Window,{width:650,height:455,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,c.Tabs,{children:[(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:!s,icon:"user",onClick:function(){return l("choiceOff")},children:"Patient"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:!!s,icon:"cog",onClick:function(){return l("choiceOn")},children:"Options"})]}),(0,o.createComponentVNode)(2,c.Section,{flexGrow:"1",children:n})]})})};var m=function(e,t){var n=(0,a.useBackend)(t).data.occupant;return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Section,{title:"Patient",level:"2",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:n.name}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",color:l[n.stat][0],children:l[n.stat][1]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:n.maxHealth,value:n.health/n.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),d.map((function(e,t){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e[0]+" Damage",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:"100",value:n[e[1]]/100,ranges:u,children:(0,r.round)(n[e[1]])},t)},t)})),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:n.maxTemp,value:n.bodyTemperature/n.maxTemp,color:s[n.temperatureSuitability+3],children:[(0,r.round)(n.btCelsius),"\xb0C, ",(0,r.round)(n.btFaren),"\xb0F"]})}),!!n.hasBlood&&(0,o.createFragment)([(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Blood Level",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:n.bloodMax,value:n.bloodLevel/n.bloodMax,ranges:{bad:[-Infinity,.6],average:[.6,.9],good:[.6,Infinity]},children:[n.bloodPercent,"%, ",n.bloodLevel,"cl"]})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Pulse",children:[n.pulse," BPM"]})],4)]})}),(0,o.createComponentVNode)(2,c.Section,{title:"Current Procedure",level:"2",children:n.surgery&&n.surgery.length?(0,o.createComponentVNode)(2,c.LabeledList,{children:n.surgery.map((function(e){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Current State",children:e.currentStage}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Possible Next Steps",children:e.nextSteps.map((function(e){return(0,o.createVNode)(1,"div",null,e,0,null,e)}))})]})},e.name)}))}):(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"No procedure ongoing."})})],4)},p=function(){return(0,o.createComponentVNode)(2,c.Flex,{textAlign:"center",height:"100%",children:(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No patient detected."]})})},h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.verbose,d=i.health,u=i.healthAlarm,s=i.oxy,m=i.oxyAlarm,p=i.crit;return(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Loudspeaker",children:(0,o.createComponentVNode)(2,c.Button,{selected:l,icon:l?"toggle-on":"toggle-off",content:l?"On":"Off",onClick:function(){return r(l?"verboseOff":"verboseOn")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Health Announcer",children:(0,o.createComponentVNode)(2,c.Button,{selected:d,icon:d?"toggle-on":"toggle-off",content:d?"On":"Off",onClick:function(){return r(d?"healthOff":"healthOn")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Health Announcer Threshold",children:(0,o.createComponentVNode)(2,c.Knob,{bipolar:!0,minValue:"-100",maxValue:"100",value:u,stepPixelSize:"5",ml:"0",format:function(e){return e+"%"},onChange:function(e,t){return r("health_adj",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Oxygen Alarm",children:(0,o.createComponentVNode)(2,c.Button,{selected:s,icon:s?"toggle-on":"toggle-off",content:s?"On":"Off",onClick:function(){return r(s?"oxyOff":"oxyOn")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Oxygen Alarm Threshold",children:(0,o.createComponentVNode)(2,c.Knob,{bipolar:!0,minValue:"-100",maxValue:"100",value:m,stepPixelSize:"5",ml:"0",onChange:function(e,t){return r("oxy_adj",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Critical Alert",children:(0,o.createComponentVNode)(2,c.Button,{selected:p,icon:p?"toggle-on":"toggle-off",content:p?"On":"Off",onClick:function(){return r(p?"critOff":"critOn")}})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.OvermapDisperser=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(134);t.OvermapDisperser=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{width:400,height:550,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,l)})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.faillink,u=l.calibration,s=l.overmapdir,m=l.cal_accuracy,p=l.strength,h=l.range,f=l.next_shot,C=l.nopower,N=(l.skill,l.chargeload);return d?(0,o.createComponentVNode)(2,a.Section,{title:"Error",children:"Machine is incomplete, out of range, or misaligned!"}):(0,o.createComponentVNode)(2,a.Flex,{wrap:"wrap",spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"22%",children:(0,o.createComponentVNode)(2,a.Section,{title:"Targeting",textAlign:"center",children:(0,o.createComponentVNode)(2,c.OvermapPanControls,{actToDo:"choose",selected:function(e){return e===s}})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"74%",grow:1,children:(0,o.createComponentVNode)(2,a.Section,{title:"Charge",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[C&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Error",children:"At least one part of the machine is unpowered."})||null,(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Load Type",children:N}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cooldown",children:0===f&&(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Ready"})||f>1&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:f})," Seconds",(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Warning: Do not fire during cooldown."})]})||null})]})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",mt:1,children:(0,o.createComponentVNode)(2,a.Section,{title:"Calibration",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m}),"%",(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"exchange-alt",onClick:function(){return i("skill_calibration")},children:"Pre-Calibration"}),(0,o.createComponentVNode)(2,a.Box,{mt:1,children:u.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{children:["Cal #",t,":",(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"random",onClick:function(){return i("calibration",{calibration:t})},children:e.toString()})]},t)}))})]})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"45%",grow:1,mt:1,children:(0,o.createComponentVNode)(2,a.Section,{title:"Setup",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Strength",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"fist-raised",onClick:function(){return i("strength")},children:p})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Radius",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"expand-arrows-alt",onClick:function(){return i("range")},children:h})})]})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mt:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"red",icon:"bomb",onClick:function(){return i("fire")},children:"Fire ORB"})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.OvermapEngines=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.OvermapEngines=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.global_state,u=l.global_limit,s=l.engines_info,m=l.total_thrust;return(0,o.createComponentVNode)(2,i.Window,{width:390,height:530,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Engines",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("global_toggle")},children:d?"Shut All Engines Down":"Start All Engines"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Volume Limit",children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("global_limit",{global_limit:-.1})},icon:"minus"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("set_global_limit")},children:[u,"%"]}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("global_limit",{global_limit:.1})},icon:"plus"})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Thrust",children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Engines",height:"340px",style:{"overflow-y":"auto"},children:s.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex,{spacing:1,mt:0!==t&&-1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"80%",children:(0,o.createComponentVNode)(2,a.Collapsible,{title:(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:["Engine #",t+1," | Thrust: ",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:e.eng_thrust})," | Limit: ",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:e.eng_thrust_limiter,format:function(e){return e+"%"}})]}),children:(0,o.createComponentVNode)(2,a.Section,{width:"127%",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Type",children:e.eng_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:[(0,o.createComponentVNode)(2,a.Box,{color:e.eng_on?1===e.eng_on?"good":"average":"bad",children:e.eng_on?1===e.eng_on?"Online":"Booting":"Offline"}),e.eng_status.map((function(e){return Array.isArray(e)?(0,o.createComponentVNode)(2,a.Box,{color:e[1],children:e[0]}):(0,o.createComponentVNode)(2,a.Box,{children:e})}))]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Thrust",children:e.eng_thrust}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Volume Limit",children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("limit",{limit:-.1,engine:e.eng_reference})},icon:"minus"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("set_limit",{engine:e.eng_reference})},children:[e.eng_thrust_limiter,"%"]}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("limit",{limit:.1,engine:e.eng_reference})},icon:"plus"})]})]})})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"20%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,iconSpin:-1===e.eng_on,color:-1===e.eng_on?"purple":null,selected:1===e.eng_on,icon:"power-off",onClick:function(){return c("toggle",{engine:e.eng_reference})},children:e.eng_on?1===e.eng_on?"Shutoff":"Booting":"Startup"})})]},t)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.OvermapFlightDataWrap=t.OvermapHelm=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(134);t.OvermapHelm=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,i.Window,{width:565,height:545,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"40%",height:"180px",children:(0,o.createComponentVNode)(2,l)}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"25%",height:"180px",children:(0,o.createComponentVNode)(2,d)}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"35%",height:"180px",children:(0,o.createComponentVNode)(2,u)})]}),(0,o.createComponentVNode)(2,s)]})})};var l=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createVNode)(1,"fieldset","Section",[(0,o.createVNode)(1,"legend",null,"Flight Data",16),(0,o.createComponentVNode)(2,c.OvermapFlightData)],4,{style:{height:"100%",border:"1px solid #4972a1",margin:"none"}})};t.OvermapFlightDataWrap=l;var d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.canburn,u=l.manual_control;return(0,o.createVNode)(1,"fieldset","Section",[(0,o.createVNode)(1,"legend",null,"Manual Control",16),(0,o.createComponentVNode)(2,a.Flex,{align:"center",justify:"center",children:(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,c.OvermapPanControls,{disabled:!d,actToDo:"move"})})}),(0,o.createComponentVNode)(2,a.Box,{textAlign:"center",mt:1,children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,underline:!0,children:"Direct Control"}),(0,o.createComponentVNode)(2,a.Button,{selected:u,onClick:function(){return i("manual")},icon:"compass",children:u?"Enabled":"Disabled"})]})],4,{style:{height:"100%",border:"1px solid #4972a1"}})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.dest,d=c.d_x,u=c.d_y,s=c.speedlimit,m=c.autopilot;return c.autopilot_disabled?(0,o.createVNode)(1,"fieldset","Section",[(0,o.createVNode)(1,"legend",null,"Autopilot",16),(0,o.createComponentVNode)(2,a.Box,{textAlign:"center",color:"bad",fontSize:1.2,children:"AUTOPILOT DISABLED"}),(0,o.createComponentVNode)(2,a.Box,{textAlign:"center",color:"average",children:"Warning: This vessel is equipped with a class I autopilot. Class I autopilots are unable to do anything but fly in a straight line directly towards the target, and may result in collisions."}),(0,o.createComponentVNode)(2,a.Box,{textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button.Confirm,{mt:1,color:"bad",content:"Unlock Autopilot",confirmContent:"ACCEPT RISKS?",icon:"exclamation-triangle",confirmIcon:"exclamation-triangle",onClick:function(){return i("apilot_lock")}})})],4,{style:{height:"100%",border:"1px solid #4972a1"}}):(0,o.createVNode)(1,"fieldset","Section",[(0,o.createVNode)(1,"legend",null,"Autopilot",16),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:l&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return i("setcoord",{setx:!0})},children:d}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return i("setcoord",{sety:!0})},children:u})],4)||(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("setcoord",{setx:!0,sety:!0})},children:"None"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Speed Limit",children:(0,o.createComponentVNode)(2,a.Button,{icon:"tachometer-alt",onClick:function(){return i("speedlimit")},children:[s," Gm/h"]})})]}),(0,o.createComponentVNode)(2,a.Button,{mt:1,fluid:!0,selected:m,disabled:!l,icon:"robot",onClick:function(){return i("apilot")},children:m?"Engaged":"Disengaged"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"good",icon:"exclamation-triangle",onClick:function(){return i("apilot_lock")},children:"Lock Autopilot"})],4,{style:{height:"100%",border:"1px solid #4972a1"}})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.sector,d=c.s_x,u=c.s_y,s=c.sector_info,m=c.landed,p=c.locations;return(0,o.createComponentVNode)(2,a.Section,{title:"Navigation Data",m:.3,mt:1,children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Coordinates",children:[d," : ",u]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Scan Data",children:s}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:m})]}),(0,o.createComponentVNode)(2,a.Flex,{mt:1,align:"center",justify:"center",spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"save",onClick:function(){return i("add",{add:"current"})},children:"Save Current Position"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"sticky-note",onClick:function(){return i("add",{add:"new"})},children:"Add New Entry"})})]}),(0,o.createComponentVNode)(2,a.Section,{mt:1,scrollable:!0,height:"130px",children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Coordinates"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Actions"})]}),p.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[e.x," : ",e.y]}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"rocket",onClick:function(){return i("setds",{x:e.x,y:e.y})},children:"Plot Course"}),(0,o.createComponentVNode)(2,a.Button,{icon:"trash",onClick:function(){return i("remove",{remove:e.reference})},children:"Remove"})]})]},e.name)}))]})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.OvermapShieldGenerator=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.OvermapShieldGenerator=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{width:500,height:760,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,c)})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,u=c.modes,s=c.offline_for;return s?(0,o.createComponentVNode)(2,a.Section,{title:"EMERGENCY SHUTDOWN",color:"bad",children:["An emergency shutdown has been initiated - generator cooling down. Please wait until the generator cools down before resuming operation. Estimated time left: ",s," seconds."]}):(0,o.createFragment)([(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Section,{title:"Field Calibration",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,level:2,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:e.status,onClick:function(){return i("toggle_mode",{toggle_mode:e.flag})},children:e.status?"Enabled":"Disabled"}),children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",children:e.desc}),(0,o.createComponentVNode)(2,a.Box,{mt:.5,children:["Multiplier: ",e.multiplier]})]},e.name)}))})],4)},l=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data),c=i.running,l=i.overloaded,d=i.mitigation_max,u=i.mitigation_physical,s=i.mitigation_em,m=i.mitigation_heat,p=i.field_integrity,h=i.max_energy,f=i.current_energy,C=i.percentage_energy,N=i.total_segments,b=i.functional_segments,V=i.field_radius,g=i.target_radius,v=i.input_cap_kw,k=i.upkeep_power_usage,_=i.power_usage,y=i.spinup_counter;return(0,o.createComponentVNode)(2,a.Section,{title:"System Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Generator is",children:1===c&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Shutting Down"})||2===c&&(l&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Overloaded"})||(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Running"}))||3===c&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Inactive"})||4===c&&(0,o.createComponentVNode)(2,a.Box,{color:"blue",children:["Spinning Up\xa0",g!==V&&(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:"(Adjusting Radius)"})||(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:[2*y,"s"]})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Offline"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Energy Storage",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:f,maxValue:h,children:[f," / ",h," MJ (",C,"%)"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shield Integrity",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:p}),"%"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mitigation",children:[s,"% EM / ",u,"% PH / ",m,"% HE / ",d,"% MAX"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Upkeep Energy Use",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:k})," kW"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Energy Use",children:v&&(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:_,maxValue:v,children:[_," / ",v," kW"]})})||(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:_})," kW (No Limit)"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Field Size",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:b}),"\xa0/\xa0",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:N})," m\xb2 (radius ",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:V}),", target ",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:g}),")"]})]})})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.running,d=c.hacked,u=c.idle_multiplier,s=c.idle_valid_values;return(0,o.createComponentVNode)(2,a.Section,{title:"Controls",buttons:(0,o.createFragment)([l>=2&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return i("begin_shutdown")},selected:!0,children:"Turn off"}),3===l&&(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return i("toggle_idle",{toggle_idle:0})},children:"Activate"})||(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return i("toggle_idle",{toggle_idle:1})},selected:!0,children:"Deactivate"})]})||(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return i("start_generator")},children:"Turn on"}),l&&d&&(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",onClick:function(){return i("emergency_shutdown")},color:"bad",children:"EMERGENCY SHUTDOWN"})||null],0),children:[(0,o.createComponentVNode)(2,a.Button,{icon:"expand-arrows-alt",onClick:function(){return i("set_range")},children:"Set Field Range"}),(0,o.createComponentVNode)(2,a.Button,{icon:"bolt",onClick:function(){return i("set_input_cap")},children:"Set Input Cap"}),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Set inactive power use intensity",children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{selected:e===u,disabled:4===l,onClick:function(){return i("switch_idle",{switch_idle:e})},children:e},e)}))})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.OvermapShipSensors=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.OvermapShipSensors=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.viewing,u=l.on,s=l.range,m=l.health,p=l.max_health,h=l.heat,f=l.critical_heat,C=l.status,N=l.contacts;return(0,o.createComponentVNode)(2,i.Window,{width:375,height:545,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"eye",selected:d,onClick:function(){return c("viewing")},children:"Map View"}),(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:u,onClick:function(){return c("toggle")},children:u?"Sensors Enabled":"Sensors Disabled"})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:C}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Range",children:(0,o.createComponentVNode)(2,a.Button,{icon:"signal",onClick:function(){return c("range")},children:s})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*p,Infinity],average:[.25*p,.75*p],bad:[-Infinity,.25*p]},value:m,maxValue:p,children:[m," / ",p]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{bad:[.75*f,Infinity],average:[.5*f,.75*f],good:[-Infinity,.5*f]},value:h,maxValue:f,children:h<.5*f&&(0,o.createComponentVNode)(2,a.Box,{children:"Temperature low."})||h<.75*f&&(0,o.createComponentVNode)(2,a.Box,{children:"Sensor temperature high!"})||(0,o.createComponentVNode)(2,a.Box,{children:"TEMPERATURE CRITICAL: Disable or reduce power immediately!"})})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Contacts",children:N.length&&N.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"search",onClick:function(){return c("scan",{scan:e.ref})},children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,inline:!0,children:["Scan: ",e.name]}),(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:[", bearing: ",e.bearing,"\xb0"]})]},e.ref)}))||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No contacts on sensors."})}),"MISSING"===l.status&&(0,o.createComponentVNode)(2,a.Section,{title:"Error",children:(0,o.createComponentVNode)(2,a.Button,{icon:"wifi",onClick:function(){return c("link")},children:"Link up with sensor suite?"})})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ParticleAccelerator=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.ParticleAccelerator=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.assembled,u=l.power,s=l.strength;return(0,o.createComponentVNode)(2,i.Window,{width:350,height:185,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Run Scan",onClick:function(){return c("scan")}}),children:(0,o.createComponentVNode)(2,a.Box,{color:d?"good":"bad",children:d?"Ready - All parts in place":"Unable to detect all parts"})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Particle Accelerator Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:u?"power-off":"times",content:u?"On":"Off",selected:u,disabled:!d,onClick:function(){return c("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Particle Strength",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:!d,onClick:function(){return c("remove_strength")}})," ",String(s).padStart(1,"0")," ",(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:!d,onClick:function(){return c("add_strength")}})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PartsLathe=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7),l=n(132);t.PartsLathe=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=(u.panelOpen,u.copyBoard),m=u.copyBoardReqComponents,p=u.queue,h=u.building,f=u.buildPercent,C=u.error,N=u.recipies;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[C&&(0,o.createComponentVNode)(2,a.NoticeBox,{danger:!0,children:["Missing Materials: ",C]})||null,(0,o.createComponentVNode)(2,a.Section,{title:"Materials",children:(0,o.createComponentVNode)(2,l.Materials,{displayAllMat:!0})}),h&&(0,o.createComponentVNode)(2,a.Section,{title:"Currently Building",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:(0,c.toTitleCase)(h)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Progress",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:"good",value:f,maxValue:100})})]})})||null,s&&(0,o.createComponentVNode)(2,a.Section,{title:"Circuit Reader",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Loaded Circuit",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return d("ejectBoard")},children:"Eject"}),children:(0,c.toTitleCase)(s)})}),m&&m.length&&(0,o.createFragment)([m.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.qty," x ",(0,c.toTitleCase)(e.name)]},e.name)})),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",onClick:function(){return d("queueBoard")},children:"Build All"})],0)||(0,o.createComponentVNode)(2,a.Box,{children:"Board has no required components."})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Queue",children:p.length&&p.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{color:"label",children:["#",t+1,": ",(0,c.toTitleCase)(e),(t>0||!h)&&(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"times",onClick:function(){return d("cancel",{cancel:t+1})},children:"Cancel"})||null]},e)}))||(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:"Queue Empty"})}),(0,o.createComponentVNode)(2,a.Section,{title:"Recipes",children:N.length&&N.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",onClick:function(){return d("queue",{queue:e.type})},children:(0,c.toTitleCase)(e.name)})},e.name)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PathogenicIsolator=void 0;var o=n(0),r=(n(5),n(20),n(1)),a=n(45),i=n(2),c=n(3),l=function(e,t){var n=(0,r.useBackend)(t),a=n.act,c=n.data.can_print,l=e.args;return(0,o.createComponentVNode)(2,i.Section,{level:2,m:"-1rem",title:l.name||"Virus",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{disabled:!c,icon:"print",content:"Print",onClick:function(){return a("print",{type:"virus_record",vir:l.record})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"times",color:"red",onClick:function(){return a("modal_close")}})],4),children:(0,o.createComponentVNode)(2,i.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Spread",children:[l.spread_text," Transmission"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Possible cure",children:l.antigen}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Rate of Progression",children:l.rate}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Antibiotic Resistance",children:[l.resistance,"%"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Species Affected",children:l.species}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Symptoms",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:l.symptoms.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.stage+". "+e.name,children:[(0,o.createComponentVNode)(2,i.Box,{inline:!0,children:[(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"label",children:"Strength:"})," ",e.strength,"\xa0"]}),(0,o.createComponentVNode)(2,i.Box,{inline:!0,children:[(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"label",children:"Aggressiveness:"})," ",e.aggressiveness]})]},e.stage)}))})})]})})})};t.PathogenicIsolator=function(e,t){var n=(0,r.useBackend)(t),s=(n.act,n.data.isolating),m=(0,r.useLocalState)(t,"tabIndex",0),p=m[0],h=m[1],f=null;return 0===p?f=(0,o.createComponentVNode)(2,d):1===p&&(f=(0,o.createComponentVNode)(2,u)),(0,a.modalRegisterBodyOverride)("virus",l),(0,o.createComponentVNode)(2,c.Window,{height:500,width:520,resizable:!0,children:[(0,o.createComponentVNode)(2,a.ComplexModal,{maxHeight:"100%",maxWidth:"95%"}),(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[s&&(0,o.createComponentVNode)(2,i.NoticeBox,{warning:!0,children:"The Isolator is currently isolating..."})||null,(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:0===p,onClick:function(){return h(0)},children:"Home"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===p,onClick:function(){return h(1)},children:"Database"})]}),f]})]})};var d=function(e,t){var n=(0,r.useBackend)(t),a=n.act,c=n.data,l=c.syringe_inserted,d=c.pathogen_pool,u=c.can_print;return(0,o.createComponentVNode)(2,i.Section,{title:"Pathogens",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"print",content:"Print",disabled:!u,onClick:function(){return a("print",{type:"patient_diagnosis"})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject Syringe",disabled:!l,onClick:function(){return a("eject")}})],4),children:d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,i.Section,{children:[(0,o.createComponentVNode)(2,i.Box,{color:"label",children:(0,o.createComponentVNode)(2,i.Flex,{align:"center",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:[(0,o.createVNode)(1,"u",null,[(0,o.createTextVNode)("Stamm #"),e.unique_id],0),e.is_in_database?" (Analyzed)":" (Not Analyzed)"]}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"virus",content:"Isolate",onClick:function(){return a("isolate",{isolate:e.reference})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"search",content:"Database",disabled:!e.is_in_database,onClick:function(){return a("view_entry",{vir:e.record})}})]})]})}),(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Box,{color:"average",mb:1,children:e.name}),e.dna]})]},e.unique_id)}))||(l?(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No samples detected."}):(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No syringe inserted."}))})},u=function(e,t){var n=(0,r.useBackend)(t),a=n.act,c=n.data,l=c.database,d=c.can_print;return(0,o.createComponentVNode)(2,i.Section,{title:"Database",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"print",content:"Print",disabled:!d,onClick:function(){return a("print",{type:"virus_list"})}}),children:l.length&&l.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"search",onClick:function(){return a("view_entry",{vir:e.record})},children:e.name},e.name)}))||(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"The viral database is empty."})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Pda=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(177),l=n(590);t.Pda=function(e,t){var n=(0,r.useBackend)(t),m=(n.act,n.data),p=m.app,h=m.owner,f=m.useRetro;if(!h)return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{stretchContents:!0,children:"Warning: No ID information found! Please swipe ID!"})})});var C=function(e){var t;try{t=l("./"+e+".js")}catch(o){if("MODULE_NOT_FOUND"===o.code)return(0,c.routingError)("notFound",e);throw o}var n=t[e];return n||(0,c.routingError)("missingExport",e)}(p.template),N=(0,r.useLocalState)(t,"settingsMode",!1),b=N[0],V=N[1];return(0,o.createComponentVNode)(2,i.Window,{width:580,height:670,theme:f?"pda-retro":null,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d,{settingsMode:b,setSettingsMode:V}),b&&(0,o.createComponentVNode)(2,u)||(0,o.createComponentVNode)(2,a.Section,{title:(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Icon,{name:p.icon,mr:1}),p.name]}),p:1,children:(0,o.createComponentVNode)(2,C)}),(0,o.createComponentVNode)(2,a.Box,{mb:8}),(0,o.createComponentVNode)(2,s,{setSettingsMode:V})]})})};var d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=e.settingsMode,d=e.setSettingsMode,u=c.idInserted,s=c.idLink,m=(c.cartridge_name,c.stationTime);return(0,o.createComponentVNode)(2,a.Box,{mb:1,children:(0,o.createComponentVNode)(2,a.Flex,{align:"center",justify:"space-between",children:[!!u&&(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",color:"transparent",onClick:function(){return i("Authenticate")},content:s})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,textAlign:"center",bold:!0,children:m}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{selected:l,onClick:function(){return d(!l)},icon:"cog"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return i("Retro")},icon:"adjust"})]})]})})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.idInserted,d=c.idLink,u=c.cartridge_name,s=c.touch_silent;return(0,o.createComponentVNode)(2,a.Section,{title:"Settings",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"R.E.T.R.O Mode",children:(0,o.createComponentVNode)(2,a.Button,{icon:"cog",content:"Retro Theme",onClick:function(){return i("Retro")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Touch Sounds",children:(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:!s,content:s?"Disabled":"Enabled",onClick:function(){return i("TouchSounds")}})}),!!u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cartridge",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return i("Eject")},content:u})}),!!l&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID Card",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return i("Authenticate")},content:d})})]})})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=e.setSettingsMode,d=c.app,u=c.useRetro;return(0,o.createComponentVNode)(2,a.Box,{position:"fixed",bottom:"0%",left:"0%",right:"0%",backgroundColor:u?"#6f7961":"#1b1b1b",children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"33%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"transparent",iconColor:d.has_back?"white":"disabled",textAlign:"center",icon:"undo",mb:0,fontSize:1.7,onClick:function(){return i("Back")}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"33%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"transparent",iconColor:d.is_home?"disabled":"white",textAlign:"center",icon:"home",mb:0,fontSize:1.7,onClick:function(){l(!1),i("Home")}})})]})})}},function(e,t,n){var o={"./pda_atmos_scan.js":591,"./pda_janitor.js":592,"./pda_main_menu.js":593,"./pda_manifest.js":594,"./pda_medical.js":595,"./pda_messenger.js":596,"./pda_news.js":597,"./pda_notekeeper.js":598,"./pda_power.js":599,"./pda_security.js":600,"./pda_signaller.js":601,"./pda_status_display.js":602,"./pda_supply.js":603};function r(e){var t=a(e);return n(t)}function a(e){if(!n.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}r.keys=function(){return Object.keys(o)},r.resolve=a,e.exports=r,r.id=590},function(e,t,n){"use strict";t.__esModule=!0,t.pda_atmos_scan=void 0;var o=n(0),r=n(9),a=n(7),i=n(1),c=n(2);t.pda_atmos_scan=function(e,t){var n=(0,i.useBackend)(t),l=(n.act,n.data.aircontents);return(0,o.createComponentVNode)(2,c.Box,{children:(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,r.filter)((function(e){return"0"!==e.val||"Pressure"===e.entry||"Temperature"===e.entry}))(l).map((function(e){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.entry,color:(t=e.val,n=e.bad_low,r=e.poor_low,i=e.poor_high,l=e.bad_high,ti?"average":t>l?"bad":"good"),children:[e.val,(0,a.decodeHtmlEntities)(e.units)]},e.entry);var t,n,r,i,l}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_janitor=void 0;var o=n(0),r=(n(9),n(7),n(1)),a=n(2);t.pda_janitor=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.janitor);return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Location",children:0===i.user_loc.x&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Unknown"})||(0,o.createComponentVNode)(2,a.Box,{children:[i.user_loc.x," / ",i.user_loc.y]})})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Mop Locations",children:i.mops&&(0,o.createVNode)(1,"ul",null,i.mops.map((function(e,t){return(0,o.createVNode)(1,"li",null,[e.x,(0,o.createTextVNode)(" / "),e.y,(0,o.createTextVNode)(" - "),e.dir,(0,o.createTextVNode)(" - Status: "),e.status],0,null,t)})),0)||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No mops detected nearby."})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Mop Bucket Locations",children:i.buckets&&(0,o.createVNode)(1,"ul",null,i.buckets.map((function(e,t){return(0,o.createVNode)(1,"li",null,[e.x,(0,o.createTextVNode)(" / "),e.y,(0,o.createTextVNode)(" - "),e.dir,(0,o.createTextVNode)(" - Capacity: "),e.volume,(0,o.createTextVNode)("/"),e.max_volume],0,null,t)})),0)||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No buckets detected nearby."})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Cleanbot Locations",children:i.cleanbots&&(0,o.createVNode)(1,"ul",null,i.cleanbots.map((function(e,t){return(0,o.createVNode)(1,"li",null,[e.x,(0,o.createTextVNode)(" / "),e.y,(0,o.createTextVNode)(" - "),e.dir,(0,o.createTextVNode)(" - Status: "),e.status],0,null,t)})),0)||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No cleanbots detected nearby."})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Janitorial Cart Locations",children:i.carts&&(0,o.createVNode)(1,"ul",null,i.carts.map((function(e,t){return(0,o.createVNode)(1,"li",null,[e.x,(0,o.createTextVNode)(" / "),e.y,(0,o.createTextVNode)(" - "),e.dir,(0,o.createTextVNode)(" - Water Level: "),e.volume,(0,o.createTextVNode)("/"),e.max_volume],0,null,t)})),0)||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No janitorial carts detected nearby."})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_main_menu=void 0;var o=n(0),r=(n(5),n(1)),a=n(2);t.pda_main_menu=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.owner,d=c.ownjob,u=c.idInserted,s=c.categories,m=c.pai,p=c.notifying;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Owner",color:"average",children:[l,", ",d]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID",children:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Update PDA Info",disabled:!u,onClick:function(){return i("UpdateInfo")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Functions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:s.map((function(e){var t=c.apps[e];return t&&t.length?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e,children:t.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:e.ref in p?e.notify_icon:e.icon,iconSpin:e.ref in p,color:e.ref in p?"red":"transparent",content:e.name,onClick:function(){return i("StartProgram",{program:e.ref})}},e.ref)}))},e):null}))})}),!!m&&(0,o.createComponentVNode)(2,a.Section,{level:2,title:"pAI",children:[(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"cog",content:"Configuration",onClick:function(){return i("pai",{option:1})}}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:"Eject pAI",onClick:function(){return i("pai",{option:2})}})]})],0)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_manifest=void 0;var o=n(0),r=(n(9),n(1)),a=n(2),i=n(94);t.pda_manifest=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.Box,{color:"white",children:(0,o.createComponentVNode)(2,i.CrewManifestContent)})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_medical=void 0;var o=n(0),r=(n(9),n(7),n(1)),a=n(2);t.pda_medical=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.recordsList,d=c.records;if(d){var u=d.general,s=d.medical;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Section,{level:2,title:"General Data",children:u&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sex",children:u.sex}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:u.species}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Age",children:u.age}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rank",children:u.rank}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fingerprint",children:u.fingerprint}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Physical Status",children:u.p_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mental Status",children:u.m_stat})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"General record lost!"})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Medical Data",children:s&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood Type",children:s.b_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Minor Disabilities",children:s.mi_dis}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.mi_dis_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Major Disabilities",children:s.ma_dis}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.ma_dis_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Allergies",children:s.alg}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.alg_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Disease",children:s.cdi}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.cdi_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Important Notes",children:s.notes})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Medical record lost!"})})]})}return(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Select a record",children:l.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:"eye",fluid:!0,content:e.Name,onClick:function(){return i("Records",{target:e.ref})}},e.ref)}))})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_messenger=void 0;var o=n(0),r=n(9),a=n(1),i=n(2);t.pda_messenger=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data);r.auto_scroll,r.convo_name,r.convo_job,r.messages;return r.active_conversation?(0,o.createComponentVNode)(2,c):(0,o.createComponentVNode)(2,l)};var c=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=(l.auto_scroll,l.convo_name),u=l.convo_job,s=l.messages,m=l.active_conversation,p=l.useRetro,h=(0,a.useLocalState)(t,"clipboardMode",!1),f=h[0],C=h[1],N=(0,o.createComponentVNode)(2,i.Section,{level:2,title:"Conversation with "+d+" ("+u+")",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"eye",selected:f,tooltip:"Enter Clipboard Mode",tooltipPosition:"bottom-left",onClick:function(){return C(!f)}}),height:"450px",stretchContents:!0,children:[(0,o.createComponentVNode)(2,i.Section,{style:{height:"97%","overflow-y":"auto"},children:(0,r.filter)((function(e){return e.target===m}))(s).map((function(e,t){return(0,o.createComponentVNode)(2,i.Box,{textAlign:e.sent?"right":"left",position:"relative",mb:1,children:[(0,o.createComponentVNode)(2,i.Icon,{fontSize:2.5,color:e.sent?"#4d9121":"#cd7a0d",position:"absolute",left:e.sent?null:"0px",right:e.sent?"0px":null,bottom:"-4px",style:{"z-index":"0",transform:e.sent?"scale(-1, 1)":null},name:"comment"}),(0,o.createComponentVNode)(2,i.Box,{inline:!0,backgroundColor:e.sent?"#4d9121":"#cd7a0d",p:1,maxWidth:"100%",position:"relative",textAlign:e.sent?"left":"right",style:{"z-index":"1","border-radius":"10px","word-break":"break-all"},children:[e.sent?"You:":"Them:"," ",e.message]})]},t)}))}),(0,o.createComponentVNode)(2,i.Button,{icon:"comment",onClick:function(){return c("Message",{target:m})},content:"Reply"})]});return f&&(N=(0,o.createComponentVNode)(2,i.Section,{level:2,title:"Conversation with "+d+" ("+u+")",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"eye",selected:f,tooltip:"Exit Clipboard Mode",tooltipPosition:"bottom-left",onClick:function(){return C(!f)}}),height:"450px",stretchContents:!0,children:[(0,o.createComponentVNode)(2,i.Section,{style:{height:"97%","overflow-y":"auto"},children:(0,r.filter)((function(e){return e.target===m}))(s).map((function(e,t){return(0,o.createComponentVNode)(2,i.Box,{color:e.sent?"#4d9121":"#cd7a0d",style:{"word-break":"break-all"},children:[e.sent?"You:":"Them:"," ",(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:p?"black":null,children:e.message})]},t)}))}),(0,o.createComponentVNode)(2,i.Button,{icon:"comment",onClick:function(){return c("Message",{target:m})},content:"Reply"})]})),(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Messenger Functions",children:(0,o.createComponentVNode)(2,i.Button,{icon:"trash",color:"bad",onClick:function(){return c("Clear",{option:"Convo"})},children:"Delete Conversations"})})}),N]})},l=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=(c.auto_scroll,c.convopdas),u=c.pdas,s=c.charges,m=(c.plugins,c.silent),p=c.toff;return(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Messenger Functions",children:[(0,o.createComponentVNode)(2,i.Button,{selected:!m,icon:m?"volume-mute":"volume-up",onClick:function(){return r("Toggle Ringer")},children:["Ringer: ",m?"Off":"On"]}),(0,o.createComponentVNode)(2,i.Button,{color:p?"bad":"green",icon:"power-off",onClick:function(){return r("Toggle Messenger")},children:["Messenger: ",p?"Off":"On"]}),(0,o.createComponentVNode)(2,i.Button,{icon:"bell",onClick:function(){return r("Ringtone")},children:"Set Ringtone"}),(0,o.createComponentVNode)(2,i.Button,{icon:"trash",color:"bad",onClick:function(){return r("Clear",{option:"All"})},children:"Delete All Conversations"})]})}),!p&&(0,o.createComponentVNode)(2,i.Box,{children:[!!s&&(0,o.createComponentVNode)(2,i.Box,{children:[s," charges left."]}),!l.length&&!u.length&&(0,o.createComponentVNode)(2,i.Box,{children:"No other PDAs located."})||(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,d,{title:"Current Conversations",pdas:l,msgAct:"Select Conversation"}),(0,o.createComponentVNode)(2,d,{title:"Other PDAs",pdas:u,msgAct:"Message"})]})]})||(0,o.createComponentVNode)(2,i.Box,{color:"bad",mt:2,children:"Messenger Offline."})]})},d=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=e.pdas,d=e.title,u=e.msgAct,s=c.charges,m=c.plugins;return l&&l.length?(0,o.createComponentVNode)(2,i.Section,{level:2,title:d,children:l.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-circle-down",content:e.Name,onClick:function(){return r(u,{target:e.Reference})}}),!!s&&m.map((function(t){return(0,o.createComponentVNode)(2,i.Button,{icon:t.icon,content:t.name,onClick:function(){return r("Messenger Plugin",{plugin:t.ref,target:e.Reference})}},t.ref)}))]},e.Reference)}))}):(0,o.createComponentVNode)(2,i.Section,{level:2,title:d,children:"No PDAs found."})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_news=void 0;var o=n(0),r=(n(9),n(7)),a=n(1),i=n(2);t.pda_news=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),d=r.feeds,u=r.target_feed;return(0,o.createComponentVNode)(2,i.Box,{children:!d.length&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Error: No newsfeeds available. Please try again later."})||u&&(0,o.createComponentVNode)(2,c)||(0,o.createComponentVNode)(2,l)})};var c=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data.target_feed;return(0,o.createComponentVNode)(2,i.Section,{title:(0,r.decodeHtmlEntities)(l.name)+" by "+(0,r.decodeHtmlEntities)(l.author),level:2,buttons:(0,o.createComponentVNode)(2,i.Button,{content:"Back",icon:"chevron-up",onClick:function(){return c("newsfeed",{newsfeed:null})}}),children:l.messages.length&&l.messages.map((function(e){return(0,o.createComponentVNode)(2,i.Section,{children:["- ",(0,r.decodeHtmlEntities)(e.body),!!e.img&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/png;base64,"+e.img}),(0,r.decodeHtmlEntities)(e.caption)||null]}),(0,o.createComponentVNode)(2,i.Box,{color:"grey",children:["[",e.message_type," by ",(0,r.decodeHtmlEntities)(e.author)," - ",e.time_stamp,"]"]})]},e.ref)}))||(0,o.createComponentVNode)(2,i.Box,{children:["No stories found in ",l.name,"."]})})},l=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.feeds,u=l.latest_news;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Recent News",level:2,children:u.length&&(0,o.createComponentVNode)(2,i.Section,{children:u.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{mb:2,children:[(0,o.createVNode)(1,"h5",null,[(0,r.decodeHtmlEntities)(e.channel),(0,o.createComponentVNode)(2,i.Button,{ml:1,icon:"chevron-up",onClick:function(){return c("newsfeed",{newsfeed:e.index})},content:"Go to"})],0),"- ",(0,r.decodeHtmlEntities)(e.body),!!e.img&&(0,o.createComponentVNode)(2,i.Box,{children:["[image omitted, view story for more details]",e.caption||null]}),(0,o.createComponentVNode)(2,i.Box,{fontSize:.9,children:["[",e.message_type," by ",(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"average",children:e.author})," - ",e.time_stamp,"]"]})]},e.index)}))})||(0,o.createComponentVNode)(2,i.Box,{children:"No recent stories found."})}),(0,o.createComponentVNode)(2,i.Section,{title:"News Feeds",level:2,children:d.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"chevron-up",onClick:function(){return c("newsfeed",{newsfeed:e.index})},content:e.name},e.index)}))})],4)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_notekeeper=void 0;var o=n(0),r=n(1),a=n(2);t.pda_notekeeper=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.note;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createVNode)(1,"div",null,null,1,{dangerouslySetInnerHTML:{__html:c}})}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("Edit")},content:"Edit Notes"})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_power=void 0;var o=n(0),r=n(1),a=n(135);t.pda_power=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.PowerMonitorContent)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_security=void 0;var o=n(0),r=(n(9),n(7),n(1)),a=n(2);t.pda_security=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.recordsList,d=c.records;if(d){var u=d.general,s=d.security;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Section,{level:2,title:"General Data",children:u&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sex",children:u.sex}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:u.species}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Age",children:u.age}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rank",children:u.rank}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fingerprint",children:u.fingerprint}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Physical Status",children:u.p_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mental Status",children:u.m_stat})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"General record lost!"})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Security Data",children:s&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Criminal Status",children:s.criminal}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Minor Crimes",children:s.mi_crim}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.mi_crim_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Major Crimes",children:s.ma_crim}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.ma_crim_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Important Notes:",children:s.notes})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Security record lost!"})})]})}return(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Select a record",children:l.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:"eye",fluid:!0,content:e.Name,onClick:function(){return i("Records",{target:e.ref})}},e.ref)}))})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_signaller=void 0;var o=n(0),r=(n(9),n(7),n(1),n(2),n(199));t.pda_signaller=function(e,t){return(0,o.createComponentVNode)(2,r.SignalerContent)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_status_display=void 0;var o=n(0),r=(n(9),n(7),n(1)),a=n(2);t.pda_status_display=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.records;return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Code",children:[(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"trash",content:"Clear",onClick:function(){return i("Status",{statdisp:"blank"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"cog",content:"Evac ETA",onClick:function(){return i("Status",{statdisp:"shuttle"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"cog",content:"Message",onClick:function(){return i("Status",{statdisp:"message"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"exclamation-triangle",content:"ALERT",onClick:function(){return i("Status",{statdisp:"alert"})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message line 1",children:(0,o.createComponentVNode)(2,a.Button,{content:c.message1+" (set)",icon:"pen",onClick:function(){return i("Status",{statdisp:"setmsg1"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message line 2",children:(0,o.createComponentVNode)(2,a.Button,{content:c.message2+" (set)",icon:"pen",onClick:function(){return i("Status",{statdisp:"setmsg2"})}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_supply=void 0;var o=n(0),r=(n(9),n(7),n(1)),a=n(2);t.pda_supply=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.supply);return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:i.shuttle_moving?"Moving to station "+i.shuttle_eta:"Shuttle at "+i.shuttle_loc})}),(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"good",bold:!0,children:"Current Approved Orders"}),i.approved.length&&i.approved.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{color:"average",children:["#",e.Number," - ",e.Name," approved by ",e.OrderedBy,(0,o.createVNode)(1,"br"),e.Comment]},e.Number)}))||(0,o.createComponentVNode)(2,a.Box,{children:"None!"}),(0,o.createComponentVNode)(2,a.Box,{color:"good",bold:!0,children:"Current Requested Orders"}),i.requests.length&&i.requests.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{color:"average",children:["#",e.Number," - ",e.Name," requested by ",e.OrderedBy,(0,o.createVNode)(1,"br"),e.Comment]},e.Number)}))||(0,o.createComponentVNode)(2,a.Box,{children:"None!"})]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Photocopier=void 0;var o=n(0),r=n(2),a=n(1),i=n(3);t.Photocopier=function(e,t){var n=(0,a.useBackend)(t).data,u=n.isAI,s=n.has_toner,m=n.has_item;return(0,o.createComponentVNode)(2,i.Window,{title:"Photocopier",width:240,height:u?309:234,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[s?(0,o.createComponentVNode)(2,c):(0,o.createComponentVNode)(2,r.Section,{title:"Toner",children:(0,o.createComponentVNode)(2,r.Box,{color:"average",children:"No inserted toner cartridge."})}),m?(0,o.createComponentVNode)(2,l):(0,o.createComponentVNode)(2,r.Section,{title:"Options",children:(0,o.createComponentVNode)(2,r.Box,{color:"average",children:"No inserted item."})}),!!u&&(0,o.createComponentVNode)(2,d)]})})};var c=function(e,t){var n=(0,a.useBackend)(t),i=(n.act,n.data),c=i.max_toner,l=i.current_toner,d=.66*c,u=.33*c;return(0,o.createComponentVNode)(2,r.Section,{title:"Toner",children:(0,o.createComponentVNode)(2,r.ProgressBar,{ranges:{good:[d,c],average:[u,d],bad:[0,u]},value:l,minValue:0,maxValue:c})})},l=function(e,t){var n=(0,a.useBackend)(t),i=n.act,c=n.data,l=c.num_copies;c.has_enough_toner;return(0,o.createComponentVNode)(2,r.Section,{title:"Options",children:[(0,o.createComponentVNode)(2,r.Flex,{children:[(0,o.createComponentVNode)(2,r.Flex.Item,{mt:.4,width:11,color:"label",children:"Make copies:"}),(0,o.createComponentVNode)(2,r.Flex.Item,{children:(0,o.createComponentVNode)(2,r.NumberInput,{animate:!0,width:2.6,height:1.65,step:1,stepPixelSize:8,minValue:1,maxValue:10,value:l,onDrag:function(e,t){return i("set_copies",{num_copies:t})}})}),(0,o.createComponentVNode)(2,r.Flex.Item,{children:(0,o.createComponentVNode)(2,r.Button,{ml:.2,icon:"copy",textAlign:"center",onClick:function(){return i("make_copy")},children:"Copy"})})]}),(0,o.createComponentVNode)(2,r.Button,{mt:.5,textAlign:"center",icon:"reply",fluid:!0,onClick:function(){return i("remove")},children:"Remove item"})]})},d=function(e,t){var n=(0,a.useBackend)(t),i=n.act,c=n.data.can_AI_print;return(0,o.createComponentVNode)(2,r.Section,{title:"AI Options",children:(0,o.createComponentVNode)(2,r.Box,{children:(0,o.createComponentVNode)(2,r.Button,{fluid:!0,icon:"images",textAlign:"center",disabled:!c,onClick:function(){return i("ai_photo")},children:"Print photo from database"})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PipeDispenser=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(200);t.PipeDispenser=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.disposals,s=d.p_layer,m=d.pipe_layers,p=d.categories,h=void 0===p?[]:p,f=(0,r.useLocalState)(t,"categoryName"),C=f[0],N=f[1],b=h.find((function(e){return e.cat_name===C}))||h[0];return(0,o.createComponentVNode)(2,i.Window,{width:425,height:515,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[!u&&(0,o.createComponentVNode)(2,a.Section,{title:"Layer",children:(0,o.createComponentVNode)(2,a.Box,{children:Object.keys(m).map((function(e){return(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:m[e]===s,content:e,onClick:function(){return l("p_layer",{p_layer:m[e]})}},e)}))})}),(0,o.createComponentVNode)(2,a.Section,{title:"Pipes",children:[(0,o.createComponentVNode)(2,a.Tabs,{children:h.map((function(e,t){return(0,o.createComponentVNode)(2,a.Tabs.Tab,{fluid:!0,icon:c.ICON_BY_CATEGORY_NAME[e.cat_name],selected:e.cat_name===b.cat_name,onClick:function(){return N(e.cat_name)},children:e.cat_name},e.cat_name)}))}),null==b?void 0:b.recipes.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,ellipsis:!0,content:e.pipe_name,title:e.pipe_name,onClick:function(){return l("dispense_pipe",{ref:e.ref,bent:e.bent,category:b.cat_name})}},e.pipe_name)}))]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PlantAnalyzer=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.PlantAnalyzer=function(e,t){var n=(0,r.useBackend)(t).data,a=250;return n.seed&&(a+=18*n.seed.trait_info.length),n.reagents&&n.reagents.length&&(a+=55,a+=20*n.reagents.length),(0,o.createComponentVNode)(2,i.Window,{width:400,height:a,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,c)})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.no_seed,d=c.seed,u=c.reagents;return l?(0,o.createComponentVNode)(2,a.Section,{title:"Analyzer Unused",children:"You should go scan a plant! There is no data currently loaded."}):(0,o.createComponentVNode)(2,a.Section,{title:"Plant Information",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"print",onClick:function(){return i("print")},children:"Print Report"}),(0,o.createComponentVNode)(2,a.Button,{icon:"window-close",color:"red",onClick:function(){return i("close")}})],4),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Plant Name",children:[d.name,"#",d.uid]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Endurance",children:d.endurance}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Yield",children:d.yield}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maturation Time",children:d.maturation_time}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Production Time",children:d.production_time}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Potency",children:d.potency})]}),u.length&&(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Plant Reagents",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[e.volume," unit(s)."]},e.name)}))})})||null,(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Other Data",children:d.trait_info.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{color:"label",mb:.4,children:e},e)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.PointDefenseControl=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.PointDefenseControl=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.id,u=l.turrets;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:600,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Fire Assist Mainframe: "+(d||"[no tag]"),children:u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{level:2,title:e.id,buttons:(0,o.createComponentVNode)(2,a.Button,{selected:e.active,icon:"power-off",onClick:function(){return c("toggle_active",{target:e.ref})},children:e.active?"Online":"Offline"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Effective range",children:e.effective_range}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Reaction wheel delay",children:e.reaction_wheel_delay}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Recharge time",children:e.recharge_time})]})},e.id)}))||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Error: No weapon systems detected. Please check network connection."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PortableGenerator=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(5);t.PortableGenerator=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.fuel_stored/d.fuel_capacity,s=(u>=.5?"good":u>.15&&"average")||"bad";return(0,o.createComponentVNode)(2,i.Window,{width:450,height:340,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[!d.anchored&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Generator not anchored."}),(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power switch",children:(0,o.createComponentVNode)(2,a.Button,{icon:d.active?"power-off":"times",onClick:function(){return l("toggle_power")},selected:d.active,disabled:!d.ready_to_boot,children:d.active?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fuel Type",buttons:d.fuel_stored>=1&&(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"eject",disabled:d.active,onClick:function(){return l("eject")},children:"Eject"}),children:(0,o.createComponentVNode)(2,a.Box,{color:s,children:[d.fuel_stored,"cm\xb3 ",d.sheet_name]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current fuel level",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:d.fuel_stored/d.fuel_capacity,ranges:{good:[.5,Infinity],average:[.15,.5],bad:[-Infinity,.15]},children:[d.fuel_stored,"cm\xb3 / ",d.fuel_capacity,"cm\xb3"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fuel Usage",children:[d.fuel_usage," cm\xb3/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:d.temperature_current,maxValue:d.temperature_max+30,color:d.temperature_overheat?"bad":"good",children:[(0,c.round)(d.temperature_current),"\xb0C"]})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Output",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current output",color:d.unsafe_output?"bad":null,children:d.power_output}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Adjust output",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"minus",onClick:function(){return l("lower_power")},children:d.power_generated}),(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return l("higher_power")},children:d.power_generated})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power available",children:(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:!d.connected&&"bad",children:d.connected?d.power_available:"Unconnected"})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PortablePump=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(201);t.PortablePump=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.direction,s=d.target_pressure,m=d.default_pressure,p=d.min_pressure,h=d.max_pressure;return(0,o.createComponentVNode)(2,i.Window,{width:330,height:375,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,c.PortableBasicInfo),(0,o.createComponentVNode)(2,a.Section,{title:"Pump",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:u?"sign-in-alt":"sign-out-alt",content:u?"In":"Out",selected:u,onClick:function(){return l("direction")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Output",children:(0,o.createComponentVNode)(2,a.Slider,{mt:"0.4em",animated:!0,minValue:p,maxValue:h,value:s,unit:"kPa",stepPixelSize:.3,onChange:function(e,t){return l("pressure",{pressure:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Presets",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"minus",disabled:s===p,onClick:function(){return l("pressure",{pressure:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync",disabled:s===m,onClick:function(){return l("pressure",{pressure:"reset"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"plus",disabled:s===h,onClick:function(){return l("pressure",{pressure:"max"})}})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PortableScrubber=void 0;var o=n(0),r=n(1),a=n(2),i=(n(28),n(3)),c=n(201);t.PortableScrubber=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.rate,s=d.minrate,m=d.maxrate;return(0,o.createComponentVNode)(2,i.Window,{width:320,height:350,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,c.PortableBasicInfo),(0,o.createComponentVNode)(2,a.Section,{title:"Power Regulator",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Volume Rate",children:(0,o.createComponentVNode)(2,a.Slider,{mt:"0.4em",animated:!0,minValue:s,maxValue:m,value:u,unit:"L/s",onChange:function(e,t){return l("volume_adj",{vol:t})}})})})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PortableTurret=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.PortableTurret=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.locked,u=l.on,s=l.lethal,m=l.lethal_is_configurable,p=l.targetting_is_configurable,h=l.check_weapons,f=l.neutralize_noaccess,C=l.neutralize_norecord,N=l.neutralize_criminals,b=l.neutralize_all,V=l.neutralize_nonsynth,g=l.neutralize_unidentified,v=l.neutralize_down;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.NoticeBox,{children:["Swipe an ID card to ",d?"unlock":"lock"," this interface."]}),(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:u?"power-off":"times",content:u?"On":"Off",selected:u,disabled:d,onClick:function(){return c("power")}})}),!!m&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Lethals",children:(0,o.createComponentVNode)(2,a.Button,{icon:s?"exclamation-triangle":"times",content:s?"On":"Off",color:s?"bad":"",disabled:d,onClick:function(){return c("lethal")}})})]})}),!!p&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Humanoid Targets",children:[(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:N,content:"Wanted Criminals",disabled:d,onClick:function(){return c("autharrest")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:C,content:"No Sec Record",disabled:d,onClick:function(){return c("authnorecord")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:h,content:"Unauthorized Weapons",disabled:d,onClick:function(){return c("authweapon")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:f,content:"Unauthorized Access",disabled:d,onClick:function(){return c("authaccess")}})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Other Targets",children:[(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:g,content:"Unidentified Lifesigns (Xenos, Animals, Etc)",disabled:d,onClick:function(){return c("authxeno")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:V,content:"All Non-Synthetics",disabled:d,onClick:function(){return c("authsynth")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:v,content:"Downed Targets",disabled:d,onClick:function(){return c("authdown")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:b,content:"All Entities",disabled:d,onClick:function(){return c("authall")}})]})],4)]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PressureRegulator=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.PressureRegulator=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.pressure_set,s=(l.max_pressure,l.input_pressure),m=l.output_pressure,p=l.regulate_mode,h=l.set_flow_rate,f=l.last_flow_rate;return(0,o.createComponentVNode)(2,i.Window,{width:470,height:370,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Input Pressure",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:s/100})," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Output Pressure",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m/100})," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:f/10})," L/s"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:d?"Unlocked":"Closed",selected:d,onClick:function(){return c("toggle_valve")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure Regulation",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:"Off",selected:0===p,onClick:function(){return c("regulate_mode",{mode:"off"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"compress-arrows-alt",content:"Input",selected:1===p,onClick:function(){return c("regulate_mode",{mode:"input"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"expand-arrows-alt",content:"Output",selected:2===p,onClick:function(){return c("regulate_mode",{mode:"output"})}})],4)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Desired Output Pressure",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"compress-arrows-alt",content:"MIN",onClick:function(){return c("set_press",{press:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"expand-arrows-alt",content:"MAX",onClick:function(){return c("set_press",{press:"max"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:"SET",onClick:function(){return c("set_press",{press:"set"})}})],4),children:[u/100," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate Limit",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"compress-arrows-alt",content:"MIN",onClick:function(){return c("set_flow_rate",{press:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"expand-arrows-alt",content:"MAX",onClick:function(){return c("set_flow_rate",{press:"max"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:"SET",onClick:function(){return c("set_flow_rate",{press:"set"})}})],4),children:[h/10," L/s"]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PrisonerManagement=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);n(20);t.PrisonerManagement=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.locked,u=l.chemImplants,s=l.trackImplants;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:d&&(0,o.createComponentVNode)(2,a.Section,{title:"Locked",textAlign:"center",children:["This interface is currently locked.",(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"unlock",onClick:function(){return c("lock")},children:"Unlock"})})]})||(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Interface Lock",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lock",onClick:function(){return c("lock")},children:"Lock Interface"})}),(0,o.createComponentVNode)(2,a.Section,{title:"Chemical Implants",children:u.length&&(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Host"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Units Remaining"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Inject"})]}),u.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:e.host}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:[e.units,"u remaining"]}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("inject",{imp:e.ref,val:1})},children:"(1)"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("inject",{imp:e.ref,val:5})},children:"(5)"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("inject",{imp:e.ref,val:10})},children:"(10)"})]})]},e.ref)}))]})||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No chemical implants found."})}),(0,o.createComponentVNode)(2,a.Section,{title:"Tracking Implants",children:s.length&&(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Host"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Location"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Message"})]}),s.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:[e.host," (",e.id,")"]}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:e.loc}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("warn",{imp:e.ref})},children:"Message"})})]},e.ref)}))]})||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No chemical implants found."})})],4)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.RIGSuit=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7);t.RIGSuit=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data),s=c.interfacelock,m=c.malf,p=c.aicontrol,h=c.ai,f=null;return s||m?f=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"--HARDSUIT INTERFACE OFFLINE--"}):!h&&p&&(f=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"-- HARDSUIT CONTROL OVERRIDDEN BY AI --"})),(0,o.createComponentVNode)(2,i.Window,{height:480,width:550,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:f||(0,o.createFragment)([(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,u)],4)})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.chargestatus,d=c.charge,u=c.maxcharge,s=c.aioverride,m=c.sealing,p=c.sealed,h=c.emagged,f=c.securitycheck,C=c.coverlock,N=(0,o.createComponentVNode)(2,a.Button,{content:"Suit "+(m?"seals working...":p?"is Active":"is Inactive"),icon:m?"redo":p?"power-off":"lock-open",iconSpin:m,disabled:m,selected:p,onClick:function(){return i("toggle_seals")}}),b=(0,o.createComponentVNode)(2,a.Button,{content:"AI Control "+(s?"Enabled":"Disabled"),selected:s,icon:"robot",onClick:function(){return i("toggle_ai_control")}});return(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([N,b],0),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Supply",children:(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,maxValue:50,value:l,ranges:{good:[35,Infinity],average:[15,35],bad:[-Infinity,15]},children:[d," / ",u]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cover Status",children:h||!f?(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Error - Maintenance Lock Control Offline"}):(0,o.createComponentVNode)(2,a.Button,{icon:C?"lock":"lock-open",content:C?"Locked":"Unlocked",onClick:function(){return i("toggle_suit_lock")}})})]})})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.sealing,u=l.helmet,s=l.helmetDeployed,m=l.gauntlets,p=l.gauntletsDeployed,h=l.boots,f=l.bootsDeployed,C=l.chest,N=l.chestDeployed;return(0,o.createComponentVNode)(2,a.Section,{title:"Hardware",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Helmet",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:s?"sign-out-alt":"sign-in-alt",content:s?"Deployed":"Deploy",disabled:d,selected:s,onClick:function(){return i("toggle_piece",{piece:"helmet"})}}),children:u?(0,c.capitalize)(u):"ERROR"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gauntlets",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:p?"sign-out-alt":"sign-in-alt",content:p?"Deployed":"Deploy",disabled:d,selected:p,onClick:function(){return i("toggle_piece",{piece:"gauntlets"})}}),children:m?(0,c.capitalize)(m):"ERROR"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Boots",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:f?"sign-out-alt":"sign-in-alt",content:f?"Deployed":"Deploy",disabled:d,selected:f,onClick:function(){return i("toggle_piece",{piece:"boots"})}}),children:h?(0,c.capitalize)(h):"ERROR"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Chestpiece",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:N?"sign-out-alt":"sign-in-alt",content:N?"Deployed":"Deploy",disabled:d,selected:N,onClick:function(){return i("toggle_piece",{piece:"chest"})}}),children:C?(0,c.capitalize)(C):"ERROR"})]})})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.sealed,u=l.sealing,s=l.primarysystem,m=l.modules;return!d||u?(0,o.createComponentVNode)(2,a.Section,{title:"Modules",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"HARDSUIT SYSTEMS OFFLINE"})}):(0,o.createComponentVNode)(2,a.Section,{title:"Modules",children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",mb:"0.2rem",fontSize:1.5,children:["Selected Primary: ",(0,c.capitalize)(s||"None")]}),m&&m.map((function(e,t){return(0,o.createComponentVNode)(2,a.Section,{level:2,title:(0,c.toTitleCase)(e.name)+(e.damage?" (damaged)":""),buttons:(0,o.createFragment)([e.can_select?(0,o.createComponentVNode)(2,a.Button,{selected:e.name===s,content:e.name===s?"Selected":"Select",icon:"arrow-circle-right",onClick:function(){return i("interact_module",{module:e.index,module_mode:"select"})}}):null,e.can_use?(0,o.createComponentVNode)(2,a.Button,{content:e.engagestring,icon:"arrow-circle-down",onClick:function(){return i("interact_module",{module:e.index,module_mode:"engage"})}}):null,e.can_toggle?(0,o.createComponentVNode)(2,a.Button,{selected:e.is_active,content:e.is_active?e.deactivatestring:e.activatestring,icon:"arrow-circle-down",onClick:function(){return i("interact_module",{module:e.index,module_mode:"toggle"})}}):null],0),children:[e.damage>=2?(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"-- MODULE DESTROYED --"}):(0,o.createComponentVNode)(2,a.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:[(0,o.createComponentVNode)(2,a.Box,{color:"average",children:["Engage: ",e.engagecost]}),(0,o.createComponentVNode)(2,a.Box,{color:"average",children:["Active: ",e.activecost]}),(0,o.createComponentVNode)(2,a.Box,{color:"average",children:["Passive: ",e.passivecost]})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:e.desc})]}),e.charges?(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Module Charges",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Selected",children:(0,c.capitalize)(e.chargetype)}),e.charges.map((function(t,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:(0,c.capitalize)(t.caption),children:(0,o.createComponentVNode)(2,a.Button,{selected:e.realchargetype===t.index,icon:"arrow-right",onClick:function(){return i("interact_module",{module:e.index,module_mode:"select_charge_type",charge_type:t.index})}})},t.caption)}))]})})}):null]},e.name)}))]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Radio=void 0;var o=n(0),r=(n(9),n(5)),a=n(1),i=n(2),c=n(28),l=n(3);t.Radio=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data,s=u.rawfreq,m=u.minFrequency,p=u.maxFrequency,h=u.listening,f=u.broadcasting,C=u.subspace,N=u.subspaceSwitchable,b=u.chan_list,V=u.loudspeaker,g=u.mic_cut,v=u.spk_cut,k=u.useSyndMode,_=c.RADIO_CHANNELS.find((function(e){return e.freq===Number(s)})),y=156;return b&&b.length>0?y+=28*b.length+6:y+=24,N&&(y+=38),(0,o.createComponentVNode)(2,l.Window,{width:310,height:y,resizable:!0,theme:k?"syndicate":"",children:(0,o.createComponentVNode)(2,l.Window.Content,{children:[(0,o.createComponentVNode)(2,i.Section,{children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Frequency",children:[(0,o.createComponentVNode)(2,i.NumberInput,{animated:!0,unit:"kHz",step:.2,stepPixelSize:10,minValue:m/10,maxValue:p/10,value:s/10,format:function(e){return(0,r.toFixed)(e,1)},onDrag:function(e,t){return d("setFrequency",{freq:(0,r.round)(10*t)})}}),_&&(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:_.color,ml:2,children:["[",_.name,"]"]})]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Audio",children:[(0,o.createComponentVNode)(2,i.Button,{textAlign:"center",width:"37px",icon:h?"volume-up":"volume-mute",selected:h,disabled:v,onClick:function(){return d("listen")}}),(0,o.createComponentVNode)(2,i.Button,{textAlign:"center",width:"37px",icon:f?"microphone":"microphone-slash",selected:f,disabled:g,onClick:function(){return d("broadcast")}}),!!N&&(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:"bullhorn",selected:C,content:"Subspace Tx "+(C?"ON":"OFF"),onClick:function(){return d("subspace")}})}),!!N&&(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:V?"volume-up":"volume-mute",selected:V,content:"Loudspeaker",onClick:function(){return d("toggleLoudspeaker")}})})]})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Channels",children:[(!b||0===b.length)&&(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"bad",children:"No channels detected."}),(0,o.createComponentVNode)(2,i.LabeledList,{children:b?b.map((function(e){var t=c.RADIO_CHANNELS.find((function(t){return t.freq===Number(e.freq)})),n="default";return t&&(n=t.color),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.display_name,labelColor:n,textAlign:"right",children:e.secure_channel&&C?(0,o.createComponentVNode)(2,i.Button,{icon:e.sec_channel_listen?"square-o":"check-square-o",selected:!e.sec_channel_listen,content:e.sec_channel_listen?"Off":"On",onClick:function(){return d("channel",{channel:e.chan})}}):(0,o.createComponentVNode)(2,i.Button,{content:"Switch",selected:e.chan===s,onClick:function(){return d("specFreq",{channel:e.chan})}})},e.chan)})):null})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.RequestConsole=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=function(e,t){var n=(0,a.useBackend)(t).act,r=e.dept_list,c=e.department;return(0,o.createComponentVNode)(2,i.LabeledList,{children:r.sort().map((function(e){return e!==c&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"envelope-open-text",onClick:function(){return n("write",{write:e,priority:1})},children:"Message"}),(0,o.createComponentVNode)(2,i.Button,{icon:"exclamation-triangle",onClick:function(){return n("write",{write:e,priority:2})},children:"High Priority"})],4)})||null}))})},d={0:function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.silent;return(0,o.createComponentVNode)(2,i.Section,{title:"Settings",children:(0,o.createComponentVNode)(2,i.Button,{selected:!c,icon:c?"volume-mute":"volume-up",onClick:function(){return r("toggleSilent")},children:["Speaker ",c?"OFF":"ON"]})})},1:function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=r.department,d=r.assist_dept;return(0,o.createComponentVNode)(2,i.Section,{title:"Request assistance from another department",children:(0,o.createComponentVNode)(2,l,{dept_list:d,department:c})})},2:function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=r.department,d=r.supply_dept;return(0,o.createComponentVNode)(2,i.Section,{title:"Supplies",children:(0,o.createComponentVNode)(2,l,{dept_list:d,department:c})})},3:function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=r.department,d=r.info_dept;return(0,o.createComponentVNode)(2,i.Section,{title:"Report Anonymous Information",children:(0,o.createComponentVNode)(2,l,{dept_list:d,department:c})})},4:function(e,t){var n=(0,a.useBackend)(t),r=n.act;n.data;return(0,o.createComponentVNode)(2,i.Section,{children:[(0,o.createComponentVNode)(2,i.Box,{fontSize:2,color:"good",children:"Message Sent Successfully"}),(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-right",onClick:function(){return r("setScreen",{setScreen:0})},children:"Continue"})})]})},5:function(e,t){var n=(0,a.useBackend)(t),r=n.act;n.data;return(0,o.createComponentVNode)(2,i.Section,{children:[(0,o.createComponentVNode)(2,i.Box,{fontSize:1.5,bold:!0,color:"bad",children:"An error occured. Message Not Sent."}),(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-right",onClick:function(){return r("setScreen",{setScreen:0})},children:"Continue"})})]})},6:function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data.message_log;return(0,o.createComponentVNode)(2,i.Section,{title:"Messages",children:l.length&&l.map((function(e,t){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:(0,r.decodeHtmlEntities)(e[0]),buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"print",onClick:function(){return c("print",{print:t+1})},children:"Print"}),children:(0,r.decodeHtmlEntities)(e[1])},t)}))||(0,o.createComponentVNode)(2,i.Box,{children:"No messages."})})},7:function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.message,u=l.recipient,s=l.priority,m=l.msgStamped,p=l.msgVerified;return(0,o.createComponentVNode)(2,i.Section,{title:"Message Authentication",children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Message for "+u,children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Priority",children:2===s?"High Priority":1===s?"Normal Priority":"Unknown"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Validated By",color:p?"good":"bad",children:(0,r.decodeHtmlEntities)(p)||"No Validation"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Stamped By",color:m?"good":"bad",children:(0,r.decodeHtmlEntities)(m)||"No Stamp"})]}),(0,o.createComponentVNode)(2,i.Button,{mt:1,icon:"share",onClick:function(){return c("department",{department:u})},children:"Send Message"}),(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return c("setScreen",{setScreen:0})},children:"Back"})]})},8:function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=(c.department,c.screen,c.message_log,c.newmessagepriority,c.silent,c.announcementConsole,c.assist_dept,c.supply_dept,c.info_dept,c.message),d=(c.recipient,c.priority,c.msgStamped,c.msgVerified,c.announceAuth);return(0,o.createComponentVNode)(2,i.Section,{title:"Send Station-Wide Announcement",children:[d&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:"good",mb:1,children:"ID Verified. Authentication Accepted."}),(0,o.createComponentVNode)(2,i.Section,{title:"Message",mt:1,maxHeight:"200px",scrollable:!0,buttons:(0,o.createComponentVNode)(2,i.Button,{ml:1,icon:"pen",onClick:function(){return r("writeAnnouncement")},children:"Edit"}),children:l||"No Message"})],4)||(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:"bad",mb:1,children:"Swipe your ID card to authenticate yourself."}),(0,o.createComponentVNode)(2,i.Button,{disabled:!l||!d,icon:"share",onClick:function(){return r("sendAnnouncement")},children:"Announce"}),(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return r("setScreen",{setScreen:0})},children:"Back"})]})}};t.RequestConsole=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data,u=l.screen,s=l.newmessagepriority,m=l.announcementConsole,p=d[u];return(0,o.createComponentVNode)(2,c.Window,{width:520,height:410,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:6===u,onClick:function(){return r("setScreen",{setScreen:6})},icon:"envelope-open-text",children:"Messages"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===u,onClick:function(){return r("setScreen",{setScreen:1})},icon:"share-square",children:"Assistance"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:2===u,onClick:function(){return r("setScreen",{setScreen:2})},icon:"share-square",children:"Supplies"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:3===u,onClick:function(){return r("setScreen",{setScreen:3})},icon:"share-square-o",children:"Report"}),m&&(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:8===u,onClick:function(){return r("setScreen",{setScreen:8})},icon:"volume-up",children:"Announce"})||null,(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:0===u,onClick:function(){return r("setScreen",{setScreen:0})},icon:"cog"})]}),s&&(0,o.createComponentVNode)(2,i.Section,{title:s>1?"NEW PRIORITY MESSAGES":"There are new messages!",color:s>1?"bad":"average",bold:s>1})||null,(0,o.createComponentVNode)(2,p)]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ResearchConsole=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=function(e,t){var n=(0,a.useBackend)(t).data,o=e.title,r=n[e.target];return"number"==typeof r?o+" - Page "+(r+1):o},d=function(e,t){var n=(0,a.useBackend)(t).act,r=e.target;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return n(r,{reset:!0})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"chevron-left",onClick:function(){return n(r,{reverse:-1})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"chevron-right",onClick:function(){return n(r,{reverse:1})}})],4)},u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.info.tech,l=e.disk;if(!l||!l.present)return null;var d=(0,a.useSharedState)(t,"saveDialogTech",!1),u=d[0],s=d[1];return u?(0,o.createComponentVNode)(2,i.Section,{title:"Load Technology to Disk",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return s(!1)}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:c.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){s(!1),r("copy_tech",{copy_tech_ID:e.id})},children:"Copy To Disk"})},e.name)}))})}):(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Disk Contents",children:"(Technology Data Disk)"})}),l.stored&&(0,o.createComponentVNode)(2,i.Box,{mt:2,children:[(0,o.createComponentVNode)(2,i.Box,{children:l.name}),(0,o.createComponentVNode)(2,i.Box,{children:["Level: ",l.level]}),(0,o.createComponentVNode)(2,i.Box,{children:["Description: ",l.desc]}),(0,o.createComponentVNode)(2,i.Box,{mt:1,children:[(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){return r("updt_tech")},children:"Upload to Database"}),(0,o.createComponentVNode)(2,i.Button,{icon:"trash",onClick:function(){return r("clear_tech")},children:"Clear Disk"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return r("eject_tech")},children:"Eject Disk"})]})]})||(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Box,{children:"This disk has no data stored on it."}),(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){return s(!0)},children:"Load Tech To Disk"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return r("eject_tech")},children:"Eject Disk"})]})]})},s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,u=c.info.designs,s=e.disk;if(!s||!s.present)return null;var m=(0,a.useSharedState)(t,"saveDialogData",!1),p=m[0],h=m[1];return p?(0,o.createComponentVNode)(2,i.Section,{title:(0,o.createComponentVNode)(2,l,{title:"Load Design to Disk",target:"design_page"}),buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return h(!1)}}),(0,o.createComponentVNode)(2,d,{target:"design_page"})||null],0),children:[(0,o.createComponentVNode)(2,i.Input,{fluid:!0,placeholder:"Search for...",value:c.search,onInput:function(e,t){return r("search",{search:t})},mb:1}),(0,o.createComponentVNode)(2,i.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){h(!1),r("copy_design",{copy_design_ID:e.id})},children:"Copy To Disk"})},e.name)}))})]}):(0,o.createComponentVNode)(2,i.Box,{children:s.stored&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:s.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Lathe Type",children:s.build_type}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Required Materials",children:Object.keys(s.materials).map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:[e," x ",s.materials[e]]},e)}))})]}),(0,o.createComponentVNode)(2,i.Box,{mt:1,children:[(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){return r("updt_design")},children:"Upload to Database"}),(0,o.createComponentVNode)(2,i.Button,{icon:"trash",onClick:function(){return r("clear_design")},children:"Clear Disk"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return r("eject_design")},children:"Eject Disk"})]})]})||(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Box,{mb:.5,children:"This disk has no data stored on it."}),(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){return h(!0)},children:"Load Design To Disk"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return r("eject_design")},children:"Eject Disk"})]})})},m=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,u=e.target,s=e.designs,m=e.buildName,p=e.buildFiveName;return u?(0,o.createComponentVNode)(2,i.Section,{title:(0,o.createComponentVNode)(2,l,{target:"builder_page",title:"Designs"}),buttons:(0,o.createComponentVNode)(2,d,{target:"builder_page"}),children:[(0,o.createComponentVNode)(2,i.Input,{fluid:!0,placeholder:"Search for...",value:c.search,onInput:function(e,t){return r("search",{search:t})},mb:1}),s.length?s.map((function(e){return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Flex,{width:"100%",justify:"space-between",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{width:"40%",style:{"word-wrap":"break-all"},children:e.name}),(0,o.createComponentVNode)(2,i.Flex.Item,{width:"15%",textAlign:"center",children:[(0,o.createComponentVNode)(2,i.Button,{mb:-1,icon:"wrench",onClick:function(){return r(m,{build:e.id,imprint:e.id})},children:"Build"}),p&&(0,o.createComponentVNode)(2,i.Button,{mb:-1,onClick:function(){return r(p,{build:e.id,imprint:e.id})},children:"x5"})]}),(0,o.createComponentVNode)(2,i.Flex.Item,{width:"45%",style:{"word-wrap":"break-all"},children:[(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"label",children:e.mat_list.join(" ")}),(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"average",ml:1,children:e.chem_list.join(" ")})]})]}),(0,o.createComponentVNode)(2,i.Divider)],4,e.id)})):(0,o.createComponentVNode)(2,i.Box,{children:"No items could be found matching the parameters (page or search)."})]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Error"})},p=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=e.name,u=null,s=null;if("Protolathe"===d?(u=l.info.linked_lathe,s=l.lathe_designs):(u=l.info.linked_imprinter,s=l.imprinter_designs),!u||!u.present)return(0,o.createComponentVNode)(2,i.Section,{title:d,children:["No ",d," found."]});var p=u,h=p.total_materials,f=p.max_materials,C=p.total_volume,N=p.max_volume,b=p.busy,V=p.mats,g=p.reagents,v=p.queue,k=(0,a.useSharedState)(t,"protoTab",0),_=k[0],y=k[1];return(0,o.createComponentVNode)(2,i.Section,{title:d,buttons:b&&(0,o.createComponentVNode)(2,i.Icon,{name:"sync",spin:!0})||null,children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Materials",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:h,maxValue:f,children:[h," cm\xb3 / ",f," cm\xb3"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Chemicals",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:C,maxValue:N,children:[C,"u / ",N,"u"]})})]}),(0,o.createComponentVNode)(2,i.Tabs,{mt:1,children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"wrench",selected:0===_,onClick:function(){return y(0)},children:"Build"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"layer-group",iconSpin:b,color:b?"average":"transparent",selected:1===_,onClick:function(){return y(1)},children:"Queue"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"cookie-bite",selected:2===_,onClick:function(){return y(2)},children:"Mat Storage"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"flask",selected:3===_,onClick:function(){return y(3)},children:"Chem Storage"})]}),0===_&&(0,o.createComponentVNode)(2,m,{target:u,designs:s,buildName:"Protolathe"===d?"build":"imprint",buildFiveName:"Protolathe"===d?"buildfive":null})||1===_&&(0,o.createComponentVNode)(2,i.LabeledList,{children:v.length&&v.map((function(e){return 1===e.index?(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,labelColor:"bad",children:b?(0,o.createComponentVNode)(2,i.Button,{disabled:!0,icon:"trash",children:"Remove"}):(0,o.createComponentVNode)(2,i.Box,{children:["(Awaiting Materials)",(0,o.createComponentVNode)(2,i.Button,{ml:1,icon:"trash",onClick:function(){return c("removeP",{removeP:e.index})},children:"Remove"})]})}):(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,i.Button,{icon:"trash",onClick:function(){return c("removeP",{removeP:e.index})},children:"Remove"})},e.name)}))||(0,o.createComponentVNode)(2,i.Box,{m:1,children:"Queue Empty."})})||2===_&&(0,o.createComponentVNode)(2,i.LabeledList,{children:V.map((function(e){var n=(0,a.useLocalState)(t,"ejectAmt"+e.name,0),l=n[0],d=n[1];return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:(0,r.toTitleCase)(e.name),buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.NumberInput,{minValue:0,width:"100px",value:l,maxValue:e.sheets,onDrag:function(e,t){return d(t)}}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",disabled:!e.removable,onClick:function(){d(0),c("lathe_ejectsheet",{lathe_ejectsheet:e.name,amount:l})},children:"Num"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",disabled:!e.removable,onClick:function(){return c("lathe_ejectsheet",{lathe_ejectsheet:e.name,amount:50})},children:"All"})],4),children:[e.amount," cm\xb3"]},e.name)}))})||3===_&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:g.length&&g.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:[e.volume,"u",(0,o.createComponentVNode)(2,i.Button,{ml:1,icon:"eject",onClick:function(){return c("disposeP",{dispose:e.id})},children:"Purge"})]},e.name)}))||(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Empty",children:"No chems detected"})}),(0,o.createComponentVNode)(2,i.Button,{mt:1,icon:"trash",onClick:function(){return c("disposeallP")},children:"Disposal All Chemicals In Storage"})]})||(0,o.createComponentVNode)(2,i.Box,{children:"Error"})]})},h=[{name:"Protolathe",icon:"wrench",template:(0,o.createComponentVNode)(2,p,{name:"Protolathe"})},{name:"Circuit Imprinter",icon:"digital-tachograph",template:(0,o.createComponentVNode)(2,p,{name:"Circuit Imprinter"})},{name:"Destructive Analyzer",icon:"eraser",template:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.info.linked_destroy;if(!c.present)return(0,o.createComponentVNode)(2,i.Section,{title:"Destructive Analyzer",children:"No destructive analyzer found."});var l=c.loaded_item,d=c.origin_tech;return(0,o.createComponentVNode)(2,i.Section,{title:"Destructive Analyzer",children:l&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:l}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Origin Tech",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:[e.level,"\xa0\xa0",e.current&&"(Current: "+e.current+")"]},e.name)}))||(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Error",children:"No origin tech found."})})})]}),(0,o.createComponentVNode)(2,i.Button,{mt:1,color:"red",icon:"eraser",onClick:function(){return r("deconstruct")},children:"Deconstruct Item"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return r("eject_item")},children:"Eject Item"})]})||(0,o.createComponentVNode)(2,i.Box,{children:"No Item Loaded. Standing-by..."})})}))},{name:"Settings",icon:"cog",template:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.info,l=c.sync,d=c.linked_destroy,u=c.linked_imprinter,s=c.linked_lathe,m=(0,a.useSharedState)(t,"settingsTab",0),p=m[0],h=m[1];return(0,o.createComponentVNode)(2,i.Section,{title:"Settings",children:[(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"cogs",onClick:function(){return h(0)},selected:0===p,children:"General"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"link",onClick:function(){return h(1)},selected:1===p,children:"Device Linkages"})]}),0===p&&(0,o.createComponentVNode)(2,i.Box,{children:[l&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"sync",onClick:function(){return r("sync")},children:"Sync Database with Network"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"unlink",onClick:function(){return r("togglesync")},children:"Disconnect from Research Network"})],4)||(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"link",onClick:function(){return r("togglesync")},children:"Connect to Research Network"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"lock",onClick:function(){return r("lock")},children:"Lock Console"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"red",icon:"trash",onClick:function(){return r("reset")},children:"Reset R&D Database"})]})||1===p&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"sync",mb:1,onClick:function(){return r("find_device")},children:"Re-sync with Nearby Devices"}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[d.present&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Destructive Analyzer",children:(0,o.createComponentVNode)(2,i.Button,{icon:"unlink",onClick:function(){return r("disconnect",{disconnect:"destroy"})},children:"Disconnect"})})||null,s.present&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Protolathe",children:(0,o.createComponentVNode)(2,i.Button,{icon:"unlink",onClick:function(){return r("disconnect",{disconnect:"lathe"})},children:"Disconnect"})})||null,u.present&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Circuit Imprinter",children:(0,o.createComponentVNode)(2,i.Button,{icon:"unlink",onClick:function(){return r("disconnect",{disconnect:"imprinter"})},children:"Disconnect"})})||null]})]})||(0,o.createComponentVNode)(2,i.Box,{children:"Error"})]})}))},{name:"Research List",icon:"flask",template:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.tech;return(0,o.createComponentVNode)(2,i.Section,{title:"Current Research Levels",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"print",onClick:function(){return r("print",{print:1})},children:"Print This Page"}),children:(0,o.createComponentVNode)(2,i.Table,{children:c.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:[(0,o.createComponentVNode)(2,i.Box,{color:"label",children:e.name}),(0,o.createComponentVNode)(2,i.Box,{children:[" - Level ",e.level]})]}),(0,o.createComponentVNode)(2,i.Table.Cell,{children:(0,o.createComponentVNode)(2,i.Box,{color:"label",children:e.desc})})]},e.name)}))})})}))},{name:"Design List",icon:"file",template:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,u=c.designs;return(0,o.createComponentVNode)(2,i.Section,{title:(0,o.createComponentVNode)(2,l,{title:"Researched Technologies & Designs",target:"design_page"}),buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"print",onClick:function(){return r("print",{print:2})},children:"Print This Page"}),(0,o.createComponentVNode)(2,d,{target:"design_page"})||null],0),children:[(0,o.createComponentVNode)(2,i.Input,{fluid:!0,placeholder:"Search for...",value:c.search,onInput:function(e,t){return r("search",{search:t})},mb:1}),(0,o.createComponentVNode)(2,i.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:e.desc},e.name)}))})]})}))},{name:"Disk Operations",icon:"save",template:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.info),c=r.d_disk,l=r.t_disk;return c.present||l.present?(0,o.createComponentVNode)(2,i.Section,{title:"Disk Operations",children:[(0,o.createComponentVNode)(2,u,{disk:l}),(0,o.createComponentVNode)(2,s,{disk:c})]}):(0,o.createComponentVNode)(2,i.Section,{title:"Disk Operations",children:"No disk inserted."})}))}];t.ResearchConsole=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data,d=l.busy_msg,u=l.locked,s=(0,a.useSharedState)(t,"rdmenu",0),m=s[0],p=s[1],f=!1;return(d||u)&&(f=!0),(0,o.createComponentVNode)(2,c.Window,{width:850,height:630,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Tabs,{children:h.map((function(e,t){return(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:e.icon,selected:m===t,disabled:f,onClick:function(){return p(t)},children:e.name},t)}))}),d&&(0,o.createComponentVNode)(2,i.Section,{title:"Processing...",children:d})||u&&(0,o.createComponentVNode)(2,i.Section,{title:"Console Locked",children:(0,o.createComponentVNode)(2,i.Button,{onClick:function(){return r("lock")},icon:"lock-open",children:"Unlock"})})||h[m].template]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ResearchServerController=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(9);t.ResearchServerController=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,i.Window,{width:575,height:430,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,l)})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data),c=(i.badmin,i.servers),l=(i.consoles,(0,r.useSharedState)(t,"selectedServer",null)),u=l[0],s=l[1],m=c.find((function(e){return e.id===u}));return m?(0,o.createComponentVNode)(2,d,{setSelectedServer:s,server:m}):(0,o.createComponentVNode)(2,a.Section,{title:"Server Selection",children:c.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"eye",onClick:function(){return s(e.id)},children:e.name})},e.name)}))})},d=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.badmin),c=e.server,l=e.setSelectedServer,d=(0,r.useSharedState)(t,"tab",0),p=d[0],h=d[1];return(0,o.createComponentVNode)(2,a.Section,{title:c.name,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return l(null)},children:"Back"}),children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===p,onClick:function(){return h(0)},children:"Access Rights"}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===p,onClick:function(){return h(1)},children:"Data Management"}),i&&(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===p,onClick:function(){return h(2)},color:"red",children:"Server-to-Server Transfer"})||null]}),0===p&&(0,o.createComponentVNode)(2,u,{server:c})||null,1===p&&(0,o.createComponentVNode)(2,s,{server:c})||null,2===p&&i&&(0,o.createComponentVNode)(2,m,{server:c})||null]})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=e.server,d=c.consoles,u=function(e,t){return-1!==e.id_with_upload.indexOf(t.id)},s=function(e,t){return-1!==e.id_with_download.indexOf(t.id)};return(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Consoles",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name+" ("+e.loc+")",children:[(0,o.createComponentVNode)(2,a.Button,{icon:u(l,e)?"lock-open":"lock",selected:u(l,e),onClick:function(){return i("toggle_upload",{server:l.ref,console:e.ref})},children:u(l,e)?"Upload On":"Upload Off"}),(0,o.createComponentVNode)(2,a.Button,{icon:s(l,e)?"lock-open":"lock",selected:s(l,e),onClick:function(){return i("toggle_download",{server:l.ref,console:e.ref})},children:s(l,e)?"Download On":"Download Off"})]},e.name)}))})})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=(n.data,e.server);return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Research Levels",children:l.tech.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",confirmIcon:"trash",color:"red",content:"Reset",onClick:function(){return i("reset_tech",{server:l.ref,tech:e.id})}})},e.name)}))}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Designs",children:(0,c.filter)((function(e){return!!e.name}))(l.designs).map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",confirmIcon:"trash",color:"red",content:"Delete",onClick:function(){return i("reset_design",{server:l.ref,design:e.id})}})},e.name)}))})],4)},m=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=e.server,d=c.badmin,u=c.servers;return d?(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Server Data Transfer",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button.Confirm,{fluid:!0,color:"bad",content:(0,o.createComponentVNode)(2,a.Box,{children:["Transfer from ",l.name," To ",e.name]}),onClick:function(){return i("transfer_data",{server:l.ref,target:e.ref})}})},e.name)}))}):null}},function(e,t,n){"use strict";t.__esModule=!0,t.ResleevingConsole=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=(n(28),n(45)),l=n(3),d=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=(n.data,e.args),l=c.activerecord,d=c.realname,u=c.obviously_dead,s=c.oocnotes,m=c.can_sleeve_active;return(0,o.createComponentVNode)(2,i.Section,{level:2,m:"-1rem",pb:"1rem",title:"Mind Record ("+d+")",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"times",color:"red",onClick:function(){return r("modal_close")}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",children:u}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,i.Button,{disabled:!m,icon:"user-plus",content:"Sleeve",onClick:function(){return r("sleeve",{ref:l,mode:1})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"user-plus",content:"Card",onClick:function(){return r("sleeve",{ref:l,mode:2})}})]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"OOC Notes",children:(0,o.createComponentVNode)(2,i.Section,{style:{"word-break":"break-all",height:"100px"},scrollable:!0,children:s})})]})})},u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=(n.data,e.args),l=c.activerecord,d=c.realname,u=c.species,s=c.sex,m=c.mind_compat,p=c.synthetic,h=c.oocnotes,f=c.can_grow_active;return(0,o.createComponentVNode)(2,i.Section,{level:2,m:"-1rem",pb:"1rem",title:"Body Record ("+d+")",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"times",color:"red",onClick:function(){return r("modal_close")}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Species",children:u}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Bio. Sex",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mind Compat",children:m}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Synthetic",children:p?"Yes":"No"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"OOC Notes",children:(0,o.createComponentVNode)(2,i.Section,{style:{"word-break":"break-all",height:"100px"},scrollable:!0,children:h})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Actions",children:(0,o.createComponentVNode)(2,i.Button,{disabled:!f,icon:"user-plus",content:p?"Build":"Grow",onClick:function(){return r("create",{ref:l})}})})]})})};t.ResleevingConsole=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),f=(r.menu,r.coredumped),C=r.emergency,N=(0,o.createFragment)([(0,o.createComponentVNode)(2,g),(0,o.createComponentVNode)(2,v),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,i.Section,{noTopPadding:!0,flexGrow:"1",children:(0,o.createComponentVNode)(2,m)})],4);return f&&(N=(0,o.createComponentVNode)(2,p)),C&&(N=(0,o.createComponentVNode)(2,h)),(0,c.modalRegisterBodyOverride)("view_b_rec",u),(0,c.modalRegisterBodyOverride)("view_m_rec",d),(0,o.createComponentVNode)(2,l.Window,{width:640,height:520,resizable:!0,children:[(0,o.createComponentVNode)(2,c.ComplexModal,{maxWidth:"75%",maxHeight:"75%"}),(0,o.createComponentVNode)(2,l.Window.Content,{className:"Layout__content--flexColumn",children:N})]})};var s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.menu;return(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===c,icon:"home",onClick:function(){return r("menu",{num:1})},children:"Main"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:2===c,icon:"folder",onClick:function(){return r("menu",{num:2})},children:"Body Records"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:3===c,icon:"folder",onClick:function(){return r("menu",{num:3})},children:"Mind Records"})]})},m=function(e,t){var n,r=(0,a.useBackend)(t).data,i=r.menu,c=r.bodyrecords,l=r.mindrecords;return 1===i?n=(0,o.createComponentVNode)(2,f):2===i?n=(0,o.createComponentVNode)(2,V,{records:c,actToDo:"view_b_rec"}):3===i&&(n=(0,o.createComponentVNode)(2,V,{records:l,actToDo:"view_m_rec"})),n},p=function(e,t){return(0,o.createComponentVNode)(2,i.Dimmer,{children:(0,o.createComponentVNode)(2,i.Flex,{direction:"column",justify:"space-evenly",align:"center",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Icon,{size:12,color:"bad",name:"exclamation-triangle"})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,color:"bad",mt:5,children:(0,o.createVNode)(1,"h2",null,"TransCore dump completed. Resleeving offline.",16)})]})})},h=function(e,t){var n=(0,a.useBackend)(t).act;return(0,o.createComponentVNode)(2,i.Dimmer,{textAlign:"center",children:[(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:(0,o.createVNode)(1,"h1",null,"TRANSCORE DUMP",16)}),(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:(0,o.createVNode)(1,"h2",null,"!!WARNING!!",16)}),(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"This will transfer all minds to the dump disk, and the TransCore will be made unusable until post-shift maintenance! This should only be used in emergencies!"}),(0,o.createComponentVNode)(2,i.Box,{mt:4,children:(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject Disk",color:"good",onClick:function(){return n("ejectdisk")}})}),(0,o.createComponentVNode)(2,i.Box,{mt:4,children:(0,o.createComponentVNode)(2,i.Button.Confirm,{icon:"exclamation-triangle",confirmIcon:"exclamation-triangle",content:"Core Dump",confirmContent:"Disable Transcore?",color:"bad",onClick:function(){return n("coredump")}})})]})},f=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data);r.loading,r.scantemp,r.occupant,r.locked,r.can_brainscan,r.scan_mode,r.pods,r.selected_pod;return(0,o.createComponentVNode)(2,i.Section,{title:"Pods",level:"2",children:[(0,o.createComponentVNode)(2,C),(0,o.createComponentVNode)(2,b),(0,o.createComponentVNode)(2,N)]})},C=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.pods,u=l.spods,s=l.selected_pod;return d&&d.length?d.map((function(e,t){var n;return n="cloning"===e.status?(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:"100",value:e.progress/100,ranges:{good:[.75,Infinity],average:[.25,.75],bad:[-Infinity,.25]},mt:"0.5rem",children:(0,o.createComponentVNode)(2,i.Box,{textAlign:"center",children:(0,r.round)(e.progress,0)+"%"})}):"mess"===e.status?(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:"bad",mt:"0.5rem",children:"ERROR"}):(0,o.createComponentVNode)(2,i.Button,{selected:s===e.pod,icon:s===e.pod&&"check",content:"Select",mt:u&&u.length?"2rem":"0.5rem",onClick:function(){return c("selectpod",{ref:e.pod})}}),(0,o.createComponentVNode)(2,i.Box,{width:"64px",textAlign:"center",display:"inline-block",mr:"0.5rem",children:[(0,o.createVNode)(1,"img",null,null,1,{src:"pod_"+e.status+".gif",style:{width:"100%","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createComponentVNode)(2,i.Box,{color:"label",children:e.name}),(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:e.biomass>=150?"good":"bad",display:"inline",children:[(0,o.createComponentVNode)(2,i.Icon,{name:e.biomass>=150?"circle":"circle-o"}),"\xa0",e.biomass]}),n]},t)})):null},N=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.sleevers,d=c.spods,u=c.selected_sleever;return l&&l.length?l.map((function(e,t){return(0,o.createComponentVNode)(2,i.Box,{width:"64px",textAlign:"center",display:"inline-block",mr:"0.5rem",children:[(0,o.createVNode)(1,"img",null,null,1,{src:"sleeve_"+(e.occupied?"occupied":"empty")+".gif",style:{width:"100%","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createComponentVNode)(2,i.Box,{color:e.occupied?"label":"bad",children:e.name}),(0,o.createComponentVNode)(2,i.Button,{selected:u===e.sleever,icon:u===e.sleever&&"check",content:"Select",mt:d&&d.length?"3rem":"1.5rem",onClick:function(){return r("selectsleever",{ref:e.sleever})}})]},t)})):null},b=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.spods,u=l.selected_printer;return d&&d.length?d.map((function(e,t){var n;return n="cloning"===e.status?(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:"100",value:e.progress/100,ranges:{good:[.75,Infinity],average:[.25,.75],bad:[-Infinity,.25]},mt:"0.5rem",children:(0,o.createComponentVNode)(2,i.Box,{textAlign:"center",children:(0,r.round)(e.progress,0)+"%"})}):"mess"===e.status?(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:"bad",mt:"0.5rem",children:"ERROR"}):(0,o.createComponentVNode)(2,i.Button,{selected:u===e.spod,icon:u===e.spod&&"check",content:"Select",mt:"0.5rem",onClick:function(){return c("selectprinter",{ref:e.spod})}}),(0,o.createComponentVNode)(2,i.Box,{width:"64px",textAlign:"center",display:"inline-block",mr:"0.5rem",children:[(0,o.createVNode)(1,"img",null,null,1,{src:"synthprinter"+(e.busy?"_working":"")+".gif",style:{width:"100%","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createComponentVNode)(2,i.Box,{color:"label",children:e.name}),(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:e.steel>=15e3?"good":"bad",display:"inline",children:[(0,o.createComponentVNode)(2,i.Icon,{name:e.steel>=15e3?"circle":"circle-o"}),"\xa0",e.steel]}),(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:e.glass>=15e3?"good":"bad",display:"inline",children:[(0,o.createComponentVNode)(2,i.Icon,{name:e.glass>=15e3?"circle":"circle-o"}),"\xa0",e.glass]}),n]},t)})):null},V=function(e,t){var n=(0,a.useBackend)(t).act,r=e.records,c=e.actToDo;return r.length?(0,o.createComponentVNode)(2,i.Box,{mt:"0.5rem",children:r.map((function(e,t){return(0,o.createComponentVNode)(2,i.Button,{icon:"user",mb:"0.5rem",content:e.name,onClick:function(){return n(c,{ref:e.recref})}},t)}))}):(0,o.createComponentVNode)(2,i.Flex,{height:"100%",mt:"0.5rem",children:(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No records found."]})})},g=function(e,t){var n,r=(0,a.useBackend)(t),c=r.act,l=r.data.temp;if(l&&l.text&&!(l.text.length<=0)){var d=((n={})[l.style]=!0,n);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.NoticeBox,Object.assign({},d,{children:[(0,o.createComponentVNode)(2,i.Box,{display:"inline-block",verticalAlign:"middle",children:l.text}),(0,o.createComponentVNode)(2,i.Button,{icon:"times-circle",float:"right",onClick:function(){return c("cleartemp")}}),(0,o.createComponentVNode)(2,i.Box,{clear:"both"})]})))}},v=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=r.pods,l=r.spods,d=r.sleevers;r.autoallowed,r.autoprocess,r.disk;return(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pods",children:c&&c.length?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:[c.length," connected"]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"None connected!"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"SynthFabs",children:l&&l.length?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:[l.length," connected"]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"None connected!"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Sleevers",children:d&&d.length?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:[d.length," Connected"]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"None connected!"})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ResleevingPod=void 0;var o=n(0),r=n(3),a=n(1),i=n(2);t.ResleevingPod=function(e,t){var n=(0,a.useBackend)(t).data,c=n.occupied,l=n.name,d=n.health,u=n.maxHealth,s=n.stat,m=n.mindStatus,p=n.mindName,h=n.resleeveSick,f=n.initialSick;return(0,o.createComponentVNode)(2,r.Window,{width:300,height:350,resizeable:!0,children:(0,o.createComponentVNode)(2,r.Window.Content,{children:(0,o.createComponentVNode)(2,i.Section,{title:"Occupant",children:c?(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:l}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health",children:2===s?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"DEAD"}):1===s?(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"Unconscious"}):(0,o.createComponentVNode)(2,i.ProgressBar,{ranges:{good:[.5,Infinity],average:[.25,.5],bad:[-Infinity,.25]},value:d/u,children:[d,"%"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mind Status",children:m?"Present":"Missing"}),m?(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mind Occupying",children:p}):""]}),h?(0,o.createComponentVNode)(2,i.Box,{color:"average",mt:3,children:["Warning: Resleeving Sickness detected.",f?(0,o.createFragment)([(0,o.createTextVNode)(" Motion Sickness also detected. Please allow the newly resleeved person a moment to get their bearings. This warning will disappear when Motion Sickness is no longer detected.")],4):""]}):""],0):(0,o.createComponentVNode)(2,i.Box,{bold:!0,m:1,children:"Unoccupied."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.RoboticsControlConsole=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.RoboticsControlConsole=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.can_hack,s=d.safety,m=d.show_detonate_all,p=d.cyborgs,h=void 0===p?[]:p;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:460,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[!!m&&(0,o.createComponentVNode)(2,a.Section,{title:"Emergency Self Destruct",children:[(0,o.createComponentVNode)(2,a.Button,{icon:s?"lock":"unlock",content:s?"Disable Safety":"Enable Safety",selected:s,onClick:function(){return l("arm",{})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bomb",disabled:s,content:"Destroy ALL Cyborgs",color:"bad",onClick:function(){return l("nuke",{})}})]}),(0,o.createComponentVNode)(2,c,{cyborgs:h,can_hack:u})]})})};var c=function(e,t){var n=e.cyborgs,i=(e.can_hack,(0,r.useBackend)(t)),c=i.act,l=i.data;return n.length?n.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createFragment)([!!e.hackable&&!e.emagged&&(0,o.createComponentVNode)(2,a.Button,{icon:"terminal",content:"Hack",color:"bad",onClick:function(){return c("hackbot",{ref:e.ref})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:e.locked_down?"unlock":"lock",color:e.locked_down?"good":"default",content:e.locked_down?"Release":"Lockdown",disabled:!l.auth,onClick:function(){return c("stopbot",{ref:e.ref})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"bomb",content:"Detonate",disabled:!l.auth,color:"bad",onClick:function(){return c("killbot",{ref:e.ref})}})],0),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:(0,o.createComponentVNode)(2,a.Box,{color:e.status?"bad":e.locked_down?"average":"good",children:e.status?"Not Responding":e.locked_down?"Locked Down":"Nominal"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:(0,o.createComponentVNode)(2,a.Box,{children:e.locstring})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.health>50?"good":"bad",value:e.health/100})}),"number"==typeof e.charge&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Charge",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.charge>30?"good":"bad",value:e.charge/100})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Capacity",children:(0,o.createComponentVNode)(2,a.Box,{color:e.cell_capacity<3e4?"average":"good",children:e.cell_capacity})})],4)||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No Power Cell"})}),!!e.is_hacked&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safeties",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"DISABLED"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Module",children:e.module}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Master AI",children:(0,o.createComponentVNode)(2,a.Box,{color:e.synchronization?"default":"average",children:e.synchronization||"None"})})]})},e.ref)})):(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No cyborg units detected within access parameters."})}},function(e,t,n){"use strict";t.__esModule=!0,t.RogueZones=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.RogueZones=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.timeout_percent,u=l.diffstep,s=l.difficulty,m=l.occupied,p=l.scanning,h=l.updated,f=l.debug,C=l.shuttle_location,N=l.shuttle_at_station,b=l.scan_ready,V=l.can_recall_shuttle;return(0,o.createComponentVNode)(2,i.Window,{width:360,height:250,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Current Area",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mineral Content",children:s}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shuttle Location",buttons:V&&(0,o.createComponentVNode)(2,a.Button,{color:"bad",icon:"rocket",onClick:function(){return c("recall_shuttle")},children:"Recall Shuttle"})||null,children:C}),m&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{color:"bad",labelColor:"bad",label:"Personnel",children:["WARNING: Area occupied by ",m," personnel!"]})||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Personnel",color:"good",children:"No personnel detected."})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Scanner",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!b,fluid:!0,icon:"search",onClick:function(){return c("scan_for_new")},children:"Scan For Asteroids"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Scn Ramestat Core",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:d,maxValue:100,ranges:{good:[100,Infinity],average:[75,100],bad:[-Infinity,75]}})}),p&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Scanning",children:"In progress."})||null,h&&!p&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Info",children:"Updated shuttle destination!"})||null,f&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Debug",labelColor:"bad",children:[(0,o.createComponentVNode)(2,a.Box,{children:["Timeout Percent: ",d]}),(0,o.createComponentVNode)(2,a.Box,{children:["Diffstep: ",u]}),(0,o.createComponentVNode)(2,a.Box,{children:["Difficulty: ",s]}),(0,o.createComponentVNode)(2,a.Box,{children:["Occupied: ",m]}),(0,o.createComponentVNode)(2,a.Box,{children:["Debug: ",f]}),(0,o.createComponentVNode)(2,a.Box,{children:["Shuttle Location: ",C]}),(0,o.createComponentVNode)(2,a.Box,{children:["Shuttle at station: ",N]}),(0,o.createComponentVNode)(2,a.Box,{children:["Scan Ready: ",b]})]})||null]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Secbot=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Secbot=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.open,s=l.locked,m=l.idcheck,p=l.check_records,h=l.check_arrest,f=l.arrest_type,C=l.declare_arrests,N=l.will_patrol;return(0,o.createComponentVNode)(2,i.Window,{width:390,height:320,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Automatic Security Unit v2.0",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("power")},children:d?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",color:u?"bad":"good",children:u?"Open":"Closed"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Behavior Controls",color:s?"good":"bad",children:s?"Locked":"Unlocked"})]})}),!s&&(0,o.createComponentVNode)(2,a.Section,{title:"Behavior Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Check for Weapon Authorization",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"toggle-on":"toggle-off",selected:m,onClick:function(){return c("idcheck")},children:m?"Yes":"No"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Check Security Records",children:(0,o.createComponentVNode)(2,a.Button,{icon:p?"toggle-on":"toggle-off",selected:p,onClick:function(){return c("ignorerec")},children:p?"Yes":"No"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Check Arrest Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:h?"toggle-on":"toggle-off",selected:h,onClick:function(){return c("ignorearr")},children:h?"Yes":"No"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Operating Mode",children:(0,o.createComponentVNode)(2,a.Button,{icon:f?"toggle-on":"toggle-off",selected:f,onClick:function(){return c("switchmode")},children:f?"Detain":"Arrest"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Report Arrests",children:(0,o.createComponentVNode)(2,a.Button,{icon:C?"toggle-on":"toggle-off",selected:C,onClick:function(){return c("declarearrests")},children:C?"Yes":"No"})}),N&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auto Patrol",children:(0,o.createComponentVNode)(2,a.Button,{icon:N?"toggle-on":"toggle-off",selected:N,onClick:function(){return c("patrol")},children:N?"Yes":"No"})})]})})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SecurityRecords=void 0;var o=n(0),r=n(1),a=n(2),i=n(45),c=n(3),l=n(95),d=n(96),u=n(62),s=(n(7),function(e,t){(0,i.modalOpen)(e,"edit",{field:t.edit,value:t.value})});t.SecurityRecords=function(e,t){var n,s=(0,r.useBackend)(t).data,f=s.authenticated,C=s.screen;return f?(2===C?n=(0,o.createComponentVNode)(2,m):3===C?n=(0,o.createComponentVNode)(2,p):4===C&&(n=(0,o.createComponentVNode)(2,h)),(0,o.createComponentVNode)(2,c.Window,{width:700,height:680,resizable:!0,children:[(0,o.createComponentVNode)(2,i.ComplexModal,{maxHeight:"100%",maxWidth:"400px"}),(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,l.LoginInfo),(0,o.createComponentVNode)(2,u.TemporaryNotice),(0,o.createComponentVNode)(2,N),(0,o.createComponentVNode)(2,a.Section,{height:"89%",flexGrow:"1",children:n})]})]})):(0,o.createComponentVNode)(2,c.Window,{width:700,height:680,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,d.LoginScreen)})})};var m=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.records;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Input,{fluid:!0,placeholder:"Search by Name, DNA, or ID",onChange:function(e,t){return i("search",{t1:t})}}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:c.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{icon:"user",mb:"0.5rem",color:e.color,content:e.id+": "+e.name+" (Criminal Status: "+e.criminal+")",onClick:function(){return i("d_rec",{d_rec:e.ref})}},t)}))})],4)},p=function(e,t){var n=(0,r.useBackend)(t).act;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"download",content:"Backup to Disk",disabled:!0}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"upload",content:"Upload from Disk",my:"0.5rem",disabled:!0}),(0,o.createTextVNode)(" "),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",content:"Delete All Security Records",onClick:function(){return n("del_all")}})],4)},h=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.security,d=c.printing;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"General Data",level:2,mt:"-6px",children:(0,o.createComponentVNode)(2,f)}),(0,o.createComponentVNode)(2,a.Section,{title:"Security Data",level:2,children:(0,o.createComponentVNode)(2,C)}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",level:2,children:[(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",disabled:!!l.empty,content:"Delete Security Record",color:"bad",onClick:function(){return i("del_r")}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",disabled:!!l.empty,content:"Delete Record (All)",color:"bad",onClick:function(){return i("del_r_2")}}),(0,o.createComponentVNode)(2,a.Button,{icon:d?"spinner":"print",disabled:d,iconSpin:!!d,content:"Print Entry",ml:"0.5rem",onClick:function(){return i("print_p")}}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-left",content:"Back",mt:"0.5rem",onClick:function(){return i("screen",{screen:2})}})]})],4)},f=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.general;return c&&c.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"left",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:c.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[(0,o.createComponentVNode)(2,a.Box,{height:"20px",display:"inline-block",children:e.value.split("\n").map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)}))}),!!e.edit&&(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",onClick:function(){return s(t,e)}})]},n)}))})}),(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"right",textAlign:"right",children:[!!c.has_photos&&c.photos.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",textAlign:"center",color:"label",children:[(0,o.createVNode)(1,"img",null,null,1,{src:e.substr(1,e.length-1),style:{width:"96px","margin-bottom":"0.5rem","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createVNode)(1,"br"),"Photo #",t+1]},t)})),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return i("photo_front")},children:"Update Front Photo"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return i("photo_side")},children:"Update Side Photo"})]})]})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"General records lost!"})},C=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data.security;return l&&l.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList,{children:l.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[e.value.split("\n").map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)})),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",mb:e.line_break?"1rem":"initial",onClick:function(){return s(t,e)}})]},n)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Comments/Log",level:2,children:[0===l.comments.length?(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"No comments found."}):l.comments.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",display:"inline",children:e.header}),(0,o.createVNode)(1,"br"),e.text,(0,o.createComponentVNode)(2,a.Button,{icon:"comment-slash",color:"bad",ml:"0.5rem",onClick:function(){return c("del_c",{del_c:t+1})}})]},t)})),(0,o.createComponentVNode)(2,a.Button,{icon:"comment",content:"Add Entry",color:"good",mt:"0.5rem",mb:"0",onClick:function(){return(0,i.modalOpen)(t,"add_c")}})]})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:["Security records lost!",(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"New Record",ml:"0.5rem",onClick:function(){return c("new")}})]})},N=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.screen;return(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===c,onClick:function(){return i("screen",{screen:2})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"list"}),"List Records"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:3===c,onClick:function(){return i("screen",{screen:3})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"wrench"}),"Record Maintenance"]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.SeedStorage=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7),l=n(9);t.SeedStorage=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=(u.scanner,u.seeds),m=(0,l.sortBy)((function(e){return e.name.toLowerCase()}))(s);return(0,o.createComponentVNode)(2,i.Window,{width:600,height:760,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Seeds",children:m.map((function(e){return(0,o.createComponentVNode)(2,a.Flex,{spacing:1,mt:-1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"60%",children:(0,o.createComponentVNode)(2,a.Collapsible,{title:(0,c.toTitleCase)(e.name)+" #"+e.uid,children:(0,o.createComponentVNode)(2,a.Section,{width:"165%",title:"Traits",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:Object.keys(e.traits).map((function(t){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:(0,c.toTitleCase)(t),children:e.traits[t]},t)}))})})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{mt:.4,children:[e.amount," Remaining"]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"download",onClick:function(){return d("vend",{id:e.id})},children:"Vend"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"trash",onClick:function(){return d("purge",{id:e.id})},children:"Purge"})})]},e.name+e.uid)}))})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ShieldCapacitor=void 0;var o=n(0),r=n(1),a=n(3),i=n(2),c=n(5),l=n(20);t.ShieldCapacitor=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.active,m=u.time_since_fail,p=u.stored_charge,h=u.max_charge,f=u.charge_rate,C=u.max_charge_rate;return(0,o.createComponentVNode)(2,a.Window,{width:500,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,a.Window.Content,{children:(0,o.createComponentVNode)(2,i.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"power-off",selected:s,content:s?"Online":"Offline",onClick:function(){return d("toggle")}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Capacitor Status",children:m>2?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"OK."}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Discharging!"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Stored Energy",children:[(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:p,format:function(e){return(0,l.formatSiUnit)(e,0,"J")}})," (",(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:100*(0,c.round)(p/h,1)}),"%)"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Charge Rate",children:(0,o.createComponentVNode)(2,i.NumberInput,{value:f,step:100,stepPixelSize:.2,minValue:1e4,maxValue:C,format:function(e){return(0,l.formatPower)(e)},onDrag:function(e,t){return d("charge_rate",{rate:t})}})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ShieldGenerator=void 0;var o=n(0),r=n(1),a=n(3),i=n(2),c=n(5),l=n(20),d=n(61);t.ShieldGenerator=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.locked);return(0,o.createComponentVNode)(2,a.Window,{width:500,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,a.Window.Content,{children:i?(0,o.createComponentVNode)(2,u):(0,o.createComponentVNode)(2,s)})})};var u=function(e,t){return(0,o.createComponentVNode)(2,d.FullscreenNotice,{title:"Locked",children:[(0,o.createComponentVNode)(2,i.Box,{fontSize:"1.5rem",bold:!0,children:(0,o.createComponentVNode)(2,i.Icon,{name:"exclamation-triangle",verticalAlign:"middle",size:3,mr:"1rem"})}),(0,o.createComponentVNode)(2,i.Box,{color:"label",my:"1rem",children:"Swipe your ID to begin."})]})},s=function(e,t){var n=(0,r.useBackend)(t),a=n.act,d=n.data.lockedData,u=d.capacitors,s=d.active,m=d.failing,p=d.radius,h=d.max_radius,f=d.z_range,C=d.max_z_range,N=d.average_field_strength,b=d.target_field_strength,V=d.max_field_strength,g=d.shields,v=d.upkeep,k=d.strengthen_rate,_=d.max_strengthen_rate,y=d.gen_power,L=(u||[]).length;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Field Status",children:m?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Unstable"}):(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"Stable"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Overall Field Strength",children:[(0,c.round)(N,2)," Renwick (",b&&(0,c.round)(100*N/b,1)||"NA","%)"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Upkeep Power",children:(0,l.formatPower)(v)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Shield Generation Power",children:(0,l.formatPower)(y)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Currently Shielded",children:[g," m\xb2"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Capacitors",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:L?u.map((function(e,t){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Capacitor #"+t,children:[e.active?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"Online"}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Offline"}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Charge",children:[(0,l.formatSiUnit)(e.stored_charge,0,"J")," (",100*(0,c.round)(e.stored_charge/e.max_charge,2),"%)"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",children:e.failing?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Discharging"}):(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"OK."})})]})]},t)})):(0,o.createComponentVNode)(2,i.LabeledList.Item,{color:"bad",children:"No Capacitors Connected"})})})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Controls",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"power-off",content:s?"Online":"Offline",selected:s,onClick:function(){return a("toggle")}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Coverage Radius",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,stepPixelSize:6,minValue:0,maxValue:h,value:p,unit:"m",onDrag:function(e,t){return a("change_radius",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Vertical Shielding",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,stepPixelSize:12,minValue:0,maxValue:C,value:f,unit:"vertical range",onDrag:function(e,t){return a("z_range",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Charge Rate",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,stepPixelSize:12,minValue:0,step:.1,maxValue:_,value:k,format:function(e){return(0,c.round)(e,1)},unit:"Renwick/s",onDrag:function(e,t){return a("strengthen_rate",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Maximum Field Strength",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,stepPixelSize:12,minValue:1,maxValue:V,value:b,unit:"Renwick",onDrag:function(e,t){return a("target_field_strength",{val:t})}})})]})})],4)}},function(e,t,n){"use strict";t.__esModule=!0,t.ShuttleControl=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=function(e,t){var n="ERROR",r="bad",a=!1;return"docked"===e?(n="DOCKED",r="good"):"docking"===e?(n="DOCKING",r="average",a=!0):"undocking"===e?(n="UNDOCKING",r="average",a=!0):"undocked"===e&&(n="UNDOCKED",r="#676767"),a&&t&&(n+="-MANUAL"),(0,o.createComponentVNode)(2,i.Box,{color:r,children:n})},d=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,d=e.engineName,u=void 0===d?"Bluespace Drive":d,s=c.shuttle_status,m=c.shuttle_state,p=c.has_docking,h=c.docking_status,f=c.docking_override,C=c.docking_codes;return(0,o.createComponentVNode)(2,i.Section,{title:"Shuttle Status",children:[(0,o.createComponentVNode)(2,i.Box,{color:"label",mb:1,children:s}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:u,children:"idle"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#676767",bold:!0,children:"IDLE"})||"warmup"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#336699",children:"SPINNING UP"})||"in_transit"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#336699",children:"ENGAGED"})||(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"ERROR"})}),p&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Docking Status",children:l(h,f)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Docking Codes",children:(0,o.createComponentVNode)(2,i.Button,{icon:"pen",onClick:function(){return r("set_codes")},children:C||"Not Set"})})],4)||null]})]})},u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.can_launch,d=c.can_cancel,u=c.can_force;return(0,o.createComponentVNode)(2,i.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,i.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{onClick:function(){return r("move")},disabled:!l,icon:"rocket",fluid:!0,children:"Launch Shuttle"})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{onClick:function(){return r("cancel")},disabled:!d,icon:"ban",fluid:!0,children:"Cancel Launch"})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{onClick:function(){return r("force")},color:"bad",disabled:!u,icon:"exclamation-triangle",fluid:!0,children:"Force Launch"})})]})})},s={ShuttleControlConsoleDefault:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t);n.act,n.data;return(0,o.createFragment)([(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,u)],4)})),ShuttleControlConsoleMulti:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.can_cloak,s=c.can_pick,m=c.legit,p=c.cloaked,h=c.destination_name;return(0,o.createFragment)([(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,i.Section,{title:"Multishuttle Controls",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[l&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:m?"ATC Inhibitor":"Cloaking",children:(0,o.createComponentVNode)(2,i.Button,{selected:p,icon:p?"eye":"eye-o",onClick:function(){return r("toggle_cloaked")},children:p?"Enabled":"Disabled"})})||null,(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current Destination",children:(0,o.createComponentVNode)(2,i.Button,{icon:"taxi",disabled:!s,onClick:function(){return r("pick")},children:h})})]})}),(0,o.createComponentVNode)(2,u)],4)})),ShuttleControlConsoleExploration:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.can_pick,s=c.destination_name,m=c.fuel_usage,p=c.fuel_span,h=c.remaining_fuel;return(0,o.createFragment)([(0,o.createComponentVNode)(2,d,{engineName:"Engines"}),(0,o.createComponentVNode)(2,i.Section,{title:"Jump Controls",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current Destination",children:(0,o.createComponentVNode)(2,i.Button,{icon:"taxi",disabled:!l,onClick:function(){return r("pick")},children:s})}),m&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Est. Delta-V Budget",color:p,children:[h," m/s"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Avg. Delta-V Per Maneuver",children:[m," m/s"]})],4)||null]})}),(0,o.createComponentVNode)(2,u)],4)})),ShuttleControlConsoleWeb:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),c=n.act,d=n.data,u=d.autopilot,s=d.can_rename,m=d.shuttle_state,p=d.is_moving,h=d.skip_docking,f=d.docking_status,C=d.docking_override,N=d.shuttle_location,b=d.can_cloak,V=d.cloaked,g=d.can_autopilot,v=d.routes,k=d.is_in_transit,_=d.travel_progress,y=d.time_left,L=d.doors,B=d.sensors;return(0,o.createFragment)([u&&(0,o.createComponentVNode)(2,i.Section,{title:"AI PILOT (CLASS D) ACTIVE",children:(0,o.createComponentVNode)(2,i.Box,{inline:!0,italic:!0,children:"This vessel will start and stop automatically. Ensure that all non-cycling capable hatches and doors are closed, as the automated system may not be able to control them. Docking and flight controls are locked. To unlock, disable the automated flight system."})})||null,(0,o.createComponentVNode)(2,i.Section,{title:"Shuttle Status",buttons:s&&(0,o.createComponentVNode)(2,i.Button,{icon:"pen",onClick:function(){return c("rename_command")},children:"Rename"})||null,children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Engines",children:"idle"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#676767",bold:!0,children:"IDLE"})||"warmup"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#336699",children:"SPINNING UP"})||"in_transit"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#336699",children:"ENGAGED"})||(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"ERROR"})}),!p&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current Location",children:(0,r.toTitleCase)(N)}),!h&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Docking Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{selected:"docked"===f,disabled:"undocked"!==f&&"docked"!==f,onClick:function(){return c("dock_command")},children:"Dock"}),(0,o.createComponentVNode)(2,i.Button,{selected:"undocked"===f,disabled:"docked"!==f&&"undocked"!==f,onClick:function(){return c("undock_command")},children:"Undock"})],4),children:(0,o.createComponentVNode)(2,i.Box,{bold:!0,inline:!0,children:l(f,C)})})||null,b&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Cloaking",children:(0,o.createComponentVNode)(2,i.Button,{selected:V,icon:V?"eye":"eye-o",onClick:function(){return c("toggle_cloaked")},children:V?"Enabled":"Disabled"})})||null,g&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Autopilot",children:(0,o.createComponentVNode)(2,i.Button,{selected:u,icon:u?"eye":"eye-o",onClick:function(){return c("toggle_autopilot")},children:u?"Enabled":"Disabled"})})||null],0)||null]}),!p&&(0,o.createComponentVNode)(2,i.Section,{level:2,title:"Available Destinations",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:v.length&&v.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,i.Button,{icon:"rocket",onClick:function(){return c("traverse",{traverse:e.index})},children:e.travel_time})},e.name)}))||(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Error",color:"bad",children:"No routes found."})})})||null]}),k&&(0,o.createComponentVNode)(2,i.Section,{title:"Transit ETA",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Distance from target",children:(0,o.createComponentVNode)(2,i.ProgressBar,{color:"good",minValue:0,maxValue:100,value:_,children:[y,"s"]})})})})||null,Object.keys(L).length&&(0,o.createComponentVNode)(2,i.Section,{title:"Hatch Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:Object.keys(L).map((function(e){var t=L[e];return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,children:[t.open&&(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"bad",children:"Open"})||(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"good",children:"Closed"}),"\xa0-\xa0",t.bolted&&(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"good",children:"Bolted"})||(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"bad",children:"Unbolted"})]},e)}))})})||null,Object.keys(B).length&&(0,o.createComponentVNode)(2,i.Section,{title:"Sensors",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:Object.keys(B).map((function(e){var t=B[e];return-1!==t.reading?(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,color:"bad",children:"Unable to get sensor air reading."}):(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pressure",children:[t.pressure,"kPa"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Temperature",children:[t.temp,"\xb0C"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Oxygen",children:[t.oxygen,"%"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Nitrogen",children:[t.nitrogen,"%"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Carbon Dioxide",children:[t.carbon_dioxide,"%"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Phoron",children:[t.phoron,"%"]}),t.other&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Other",children:[t.other,"%"]})||null]})},e)}))})})||null],0)}))};t.ShuttleControl=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.subtemplate);return(0,o.createComponentVNode)(2,c.Window,{width:470,height:"ShuttleControlConsoleWeb"===r?560:370,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:s[r]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Sleeper=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=[["good","Alive"],["average","Unconscious"],["bad","DEAD"]],d=[["Resp","oxyLoss"],["Toxin","toxLoss"],["Brute","bruteLoss"],["Burn","fireLoss"]],u={average:[.25,.5],bad:[.5,Infinity]},s=["bad","average","average","good","average","average","bad"];t.Sleeper=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.hasOccupant?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,N));return(0,o.createComponentVNode)(2,c.Window,{width:550,height:760,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:r})})};var m=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),i=(r.occupant,r.dialysis),c=r.stomachpumping;return(0,o.createFragment)([(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,h),(0,o.createComponentVNode)(2,f,{title:"Dialysis",active:i,actToDo:"togglefilter"}),(0,o.createComponentVNode)(2,f,{title:"Stomach Pump",active:c,actToDo:"togglepump"}),(0,o.createComponentVNode)(2,C)],4)},p=function(e,t){var n=(0,a.useBackend)(t),c=n.act,d=n.data,u=d.occupant,m=d.auto_eject_dead,p=d.stasis;return(0,o.createComponentVNode)(2,i.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{color:"label",display:"inline",children:"Auto-eject if dead:\xa0"}),(0,o.createComponentVNode)(2,i.Button,{icon:m?"toggle-on":"toggle-off",selected:m,content:m?"On":"Off",onClick:function(){return c("auto_eject_dead_"+(m?"off":"on"))}}),(0,o.createComponentVNode)(2,i.Button,{icon:"user-slash",content:"Eject",onClick:function(){return c("ejectify")}}),(0,o.createComponentVNode)(2,i.Button,{content:p,onClick:function(){return c("changestasis")}})],4),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:0,max:u.maxHealth,value:u.health/u.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]},children:(0,r.round)(u.health,0)})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",color:l[u.stat][0],children:l[u.stat][1]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:u.maxTemp,value:u.bodyTemperature/u.maxTemp,color:s[u.temperatureSuitability+3],children:[(0,r.round)(u.btCelsius,0),"\xb0C,",(0,r.round)(u.btFaren,0),"\xb0F"]})}),!!u.hasBlood&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Blood Level",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:u.bloodMax,value:u.bloodLevel/u.bloodMax,ranges:{bad:[-Infinity,.6],average:[.6,.9],good:[.6,Infinity]},children:[u.bloodPercent,"%, ",u.bloodLevel,"cl"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pulse",verticalAlign:"middle",children:[u.pulse," BPM"]})],4)]})})},h=function(e,t){var n=(0,a.useBackend)(t).data.occupant;return(0,o.createComponentVNode)(2,i.Section,{title:"Damage",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:d.map((function(e,t){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e[0],children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:"100",value:n[e[1]]/100,ranges:u,children:(0,r.round)(n[e[1]],0)},t)},t)}))})})},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.isBeakerLoaded,d=c.beakerMaxSpace,u=c.beakerFreeSpace,s=e.active,m=e.actToDo,p=e.title,h=s&&u>0;return(0,o.createComponentVNode)(2,i.Section,{title:p,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{disabled:!l||u<=0,selected:h,icon:h?"toggle-on":"toggle-off",content:h?"Active":"Inactive",onClick:function(){return r(m)}}),(0,o.createComponentVNode)(2,i.Button,{disabled:!l,icon:"eject",content:"Eject",onClick:function(){return r("removebeaker")}})],4),children:l?(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Remaining Space",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:d,value:u/d,ranges:{good:[.5,Infinity],average:[.25,.5],bad:[-Infinity,.25]},children:[u,"u"]})})}):(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No beaker loaded."})})},C=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.occupant,d=c.chemicals,u=c.maxchem,s=c.amounts;return(0,o.createComponentVNode)(2,i.Section,{title:"Chemicals",flexGrow:"1",children:d.map((function(e,t){var n,a="";return e.overdosing?(a="bad",n=(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"exclamation-circle"}),"\xa0 Overdosing!"]})):e.od_warning&&(a="average",n=(0,o.createComponentVNode)(2,i.Box,{color:"average",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"exclamation-triangle"}),"\xa0 Close to overdosing"]})),(0,o.createComponentVNode)(2,i.Box,{backgroundColor:"rgba(0, 0, 0, 0.33)",mb:"0.5rem",children:(0,o.createComponentVNode)(2,i.Section,{title:e.title,level:"3",mx:"0",lineHeight:"18px",buttons:n,children:(0,o.createComponentVNode)(2,i.Flex,{align:"flex-start",children:[(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:u,value:e.occ_amount/u,color:a,mr:"0.5rem",children:[e.pretty_amount,"/",u,"u"]}),s.map((function(t,n){return(0,o.createComponentVNode)(2,i.Button,{disabled:!e.injectable||e.occ_amount+t>u||2===l.stat,icon:"syringe",content:t,mb:"0",height:"19px",onClick:function(){return r("chemical",{chemid:e.id,amount:t})}},n)}))]})})},t)}))})},N=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.isBeakerLoaded;return(0,o.createComponentVNode)(2,i.Section,{textAlign:"center",flexGrow:"1",children:(0,o.createComponentVNode)(2,i.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected.",c&&(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Remove Beaker",onClick:function(){return r("removebeaker")}})})||null]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SmartVend=void 0;var o=n(0),r=n(9),a=n(1),i=n(2),c=n(3);t.SmartVend=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.config,u=n.data;return(0,o.createComponentVNode)(2,c.Window,{width:440,height:550,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i.Section,{title:"Storage",children:[u.secure&&(0,o.createComponentVNode)(2,i.NoticeBox,{danger:-1===u.locked,info:-1!==u.locked,children:-1===u.locked?(0,o.createComponentVNode)(2,i.Box,{children:"Sec.re ACC_** //):securi_nt.diag=>##'or 1=1'%($..."}):(0,o.createComponentVNode)(2,i.Box,{children:"Secure Access: Please have your identification ready."})})||null,0===u.contents.length&&(0,o.createComponentVNode)(2,i.NoticeBox,{children:["Unfortunately, this ",d.title," is empty."]})||(0,o.createComponentVNode)(2,i.Table,{children:[(0,o.createComponentVNode)(2,i.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,children:"Item"}),(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,textAlign:"center",children:"Amount"}),(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,textAlign:"center",children:"Dispense"})]}),(0,r.map)((function(e,t){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,children:e.name}),(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,textAlign:"center",children:[e.amount," in stock"]}),(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,children:[(0,o.createComponentVNode)(2,i.Button,{content:"1",disabled:e.amount<1,onClick:function(){return l("Release",{index:e.index,amount:1})}}),(0,o.createComponentVNode)(2,i.Button,{content:"5",disabled:e.amount<5,onClick:function(){return l("Release",{index:e.index,amount:5})}}),(0,o.createComponentVNode)(2,i.Button,{content:"Custom",disabled:e.amount<1,onClick:function(){return l("Release",{index:e.index})}}),(0,o.createComponentVNode)(2,i.Button,{content:"All",disabled:e.amount<1,onClick:function(){return l("Release",{index:e.index,amount:e.amount})}})]})]},t)}))(u.contents)]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Smes=void 0;var o=n(0),r=n(1),a=n(2),i=n(20),c=n(3),l=n(5);t.Smes=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.capacityPercent,m=u.capacity,p=u.charge,h=u.inputAttempt,f=u.inputting,C=u.inputLevel,N=u.inputLevelMax,b=u.inputAvailable,V=u.outputAttempt,g=u.outputting,v=u.outputLevel,k=u.outputLevelMax,_=u.outputUsed,y=(s>=100?"good":f&&"average")||"bad",L=(g?"good":p>0&&"average")||"bad";return(0,o.createComponentVNode)(2,c.Window,{width:340,height:350,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stored Energy",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:.01*s,ranges:{good:[.5,Infinity],average:[.15,.5],bad:[-Infinity,.15]},children:[(0,l.round)(p/6e4,1)," kWh / ",(0,l.round)(m/6e4)," kWh (",s,"%)"]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Input",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Mode",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:h?"sync-alt":"times",selected:h,onClick:function(){return d("tryinput")},children:h?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.Box,{color:y,children:(s>=100?"Fully Charged":f&&"Charging")||"Not Charging"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Input",children:(0,o.createComponentVNode)(2,a.Flex,{inline:!0,width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:0===C,onClick:function(){return d("input",{target:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:0===C,onClick:function(){return d("input",{adjust:-1e4})}})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mx:1,children:(0,o.createComponentVNode)(2,a.Slider,{value:C/1e3,fillValue:b/1e3,minValue:0,maxValue:N/1e3,step:5,stepPixelSize:4,format:function(e){return(0,i.formatPower)(1e3*e,1)},onDrag:function(e,t){return d("input",{target:1e3*t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:C===N,onClick:function(){return d("input",{adjust:1e4})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:C===N,onClick:function(){return d("input",{target:"max"})}})]})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Available",children:(0,i.formatPower)(b)})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Output",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Output Mode",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:V?"power-off":"times",selected:V,onClick:function(){return d("tryoutput")},children:V?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.Box,{color:L,children:g?"Sending":p>0?"Not Sending":"No Charge"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Output",children:(0,o.createComponentVNode)(2,a.Flex,{inline:!0,width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:0===v,onClick:function(){return d("output",{target:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:0===v,onClick:function(){return d("output",{adjust:-1e4})}})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mx:1,children:(0,o.createComponentVNode)(2,a.Slider,{value:v/1e3,minValue:0,maxValue:k/1e3,step:5,stepPixelSize:4,format:function(e){return(0,i.formatPower)(1e3*e,1)},onDrag:function(e,t){return d("output",{target:1e3*t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:v===k,onClick:function(){return d("output",{adjust:1e4})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:v===k,onClick:function(){return d("output",{target:"max"})}})]})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Outputting",children:(0,i.formatPower)(_)})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SolarControl=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(5);t.SolarControl=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.generated,s=d.generated_ratio,m=d.sun_angle,p=d.array_angle,h=d.rotation_rate,f=d.max_rotation_rate,C=d.tracking_state,N=d.connected_panels,b=d.connected_tracker;return(0,o.createComponentVNode)(2,i.Window,{width:380,height:230,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Scan for new hardware",onClick:function(){return l("refresh")}}),children:(0,o.createComponentVNode)(2,a.Grid,{children:[(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Solar tracker",color:b?"good":"bad",children:b?"OK":"N/A"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Solar panels",color:N>0?"good":"bad",children:N})]})}),(0,o.createComponentVNode)(2,a.Grid.Column,{size:1.5,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power output",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.66,Infinity],average:[.33,.66],bad:[-Infinity,.33]},minValue:0,maxValue:1,value:s,children:u+" W"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Star orientation",children:[m,"\xb0"]})]})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tracking",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Off",selected:0===C,onClick:function(){return l("tracking",{mode:0})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"clock-o",content:"Timed",selected:1===C,onClick:function(){return l("tracking",{mode:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Auto",selected:2===C,disabled:!b,onClick:function(){return l("tracking",{mode:2})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Azimuth",children:[(0===C||1===C)&&(0,o.createComponentVNode)(2,a.NumberInput,{width:"52px",unit:"\xb0",step:1,stepPixelSize:2,minValue:-360,maxValue:720,value:p,format:function(e){var t=Math.sign(e)>0?" (CW)":" (CCW)";return Math.abs((0,c.round)(e))+t},onDrag:function(e,t){return l("azimuth",{value:t})}}),1===C&&(0,o.createComponentVNode)(2,a.NumberInput,{width:"80px",unit:"deg/h",step:1,minValue:-f-.01,maxValue:f+.01,value:h,format:function(e){var t=Math.sign(e)>0?" (CW)":" (CCW)";return Math.abs((0,c.round)(e))+t},onDrag:function(e,t){return l("azimuth_rate",{value:t})}}),2===C&&(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"label",mt:"3px",children:[p+"\xb0"," (auto)"]})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SpaceHeater=void 0;var o=n(0),r=n(28),a=n(1),i=n(2),c=n(3);t.SpaceHeater=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=d.temp,s=d.minTemp,m=d.maxTemp,p=d.cell,h=d.power;return(0,o.createComponentVNode)(2,c.Window,{width:300,height:250,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Target Temperature",children:[u," K (",u-r.T0C,"\xb0 C)"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current Charge",children:[h,"% ",!p&&"(No Cell Inserted)"]})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,i.LabeledControls,{children:[(0,o.createComponentVNode)(2,i.LabeledControls.Item,{label:"Thermostat",children:(0,o.createComponentVNode)(2,i.Knob,{animated:!0,value:u-r.T0C,minValue:s-r.T0C,maxValue:m-r.T0C,unit:"C",onChange:function(e,t){return l("temp",{newtemp:t+r.T0C})}})}),(0,o.createComponentVNode)(2,i.LabeledControls.Item,{label:"Cell",children:p?(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject Cell",onClick:function(){return l("cellremove")}}):(0,o.createComponentVNode)(2,i.Button,{icon:"car-battery",content:"Insert Cell",onClick:function(){return l("cellinstall")}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Stack=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);n(24);t.Stack=function(e,t){var n=(0,r.useBackend)(t),l=(n.act,n.data),d=l.amount,u=l.recipes;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Amount: "+d,children:(0,o.createComponentVNode)(2,c,{recipes:u})})})})};var c=function u(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data,e.recipes);return Object.keys(i).sort().map((function(e){var t=i[e];return t.ref===undefined?(0,o.createComponentVNode)(2,a.Collapsible,{ml:1,mb:-.7,color:"label",title:e,children:(0,o.createComponentVNode)(2,a.Box,{ml:1,children:(0,o.createComponentVNode)(2,u,{recipes:t})})}):(0,o.createComponentVNode)(2,d,{title:e,recipe:t})}))},l=function(e,t){for(var n=(0,r.useBackend)(t),i=n.act,c=(n.data,e.recipe),l=e.maxMultiplier,d=Math.min(l,Math.floor(c.max_res_amount/c.res_amount)),u=[5,10,25],s=[],m=function(){var e=h[p];d>=e&&s.push((0,o.createComponentVNode)(2,a.Button,{content:e*c.res_amount+"x",onClick:function(){return i("make",{ref:c.ref,multiplier:e})}}))},p=0,h=u;p1?"s":""),h+=")",s>1&&(h=s+"x "+h);var f=function(e,t){return e.req_amount>t?0:Math.floor(t/e.req_amount)}(d,c);return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Table,{children:(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,disabled:!f,icon:"wrench",content:h,onClick:function(){return i("make",{ref:d.ref,multiplier:1})}})}),m>1&&f>1&&(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,l,{recipe:d,maxMultiplier:f})})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SuitCycler=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.SuitCycler=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),s=a.active,m=a.locked,p=a.uv_active,h=(0,o.createComponentVNode)(2,c);return p?h=(0,o.createComponentVNode)(2,l):m?h=(0,o.createComponentVNode)(2,d):s&&(h=(0,o.createComponentVNode)(2,u)),(0,o.createComponentVNode)(2,i.Window,{width:320,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:h})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.safeties,d=c.occupied,u=c.suit,s=c.helmet,m=c.departments,p=c.species,h=c.uv_level,f=c.max_uv_level,C=c.can_repair,N=c.damage;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Storage",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lock",content:"Lock",onClick:function(){return i("lock")}}),children:[!(!d||!l)&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:["Biological entity detected in suit chamber. Please remove before continuing with operation.",(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",color:"red",content:"Eject Entity",onClick:function(){return i("eject_guy")}})]}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Helmet",children:(0,o.createComponentVNode)(2,a.Button,{icon:s?"square":"square-o",content:s||"Empty",disabled:!s,onClick:function(){return i("dispense",{item:"helmet"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Suit",children:(0,o.createComponentVNode)(2,a.Button,{icon:u?"square":"square-o",content:u||"Empty",disabled:!u,onClick:function(){return i("dispense",{item:"suit"})}})}),C&&N?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Suit Damage",children:[N,(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:"Repair",onClick:function(){return i("repair_suit")}})]}):null]})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Customization",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Paintjob",children:(0,o.createComponentVNode)(2,a.Dropdown,{noscroll:!0,width:"100%",options:m,selected:m[0],onSelected:function(e){return i("department",{department:e})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Species",children:(0,o.createComponentVNode)(2,a.Dropdown,{width:"100%",maxHeight:"160px",options:p,selected:p[0],onSelected:function(e){return i("species",{species:e})}})})]}),(0,o.createComponentVNode)(2,a.Button,{mt:1,fluid:!0,content:"Customize",onClick:function(){return i("apply_paintjob")}})]}),(0,o.createComponentVNode)(2,a.Section,{title:"UV Decontamination",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Radiation Level",children:(0,o.createComponentVNode)(2,a.NumberInput,{width:"50px",value:h,minValue:1,maxValue:f,stepPixelSize:30,onChange:function(e,t){return i("radlevel",{radlevel:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Decontaminate",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"recycle",disabled:d&&l,textAlign:"center",onClick:function(){return i("uv")}})})]})})],4)},l=function(e,t){return(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Contents are currently being decontaminated. Please wait."})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.model_text,d=c.userHasAccess;return(0,o.createComponentVNode)(2,a.Section,{title:"Locked",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Box,{color:"bad",bold:!0,children:["The ",l," suit cycler is currently locked. Please contact your system administrator."]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"unlock",content:"[Unlock]",disabled:!d,onClick:function(){return i("lock")}})})]})},u=function(e,t){return(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Contents are currently being painted. Please wait."})}},function(e,t,n){"use strict";t.__esModule=!0,t.SuitStorageUnit=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.SuitStorageUnit=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),s=a.panelopen,m=a.uv_active,p=a.broken,h=(0,o.createComponentVNode)(2,c);return s?h=(0,o.createComponentVNode)(2,l):m?h=(0,o.createComponentVNode)(2,d):p&&(h=(0,o.createComponentVNode)(2,u)),(0,o.createComponentVNode)(2,i.Window,{width:400,height:365,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:h})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.locked,d=c.open,u=c.safeties,s=c.occupied,m=c.suit,p=c.helmet,h=c.mask;return(0,o.createComponentVNode)(2,a.Section,{title:"Storage",minHeight:"260px",buttons:(0,o.createFragment)([!d&&(0,o.createComponentVNode)(2,a.Button,{icon:l?"unlock":"lock",content:l?"Unlock":"Lock",onClick:function(){return i("lock")}}),!l&&(0,o.createComponentVNode)(2,a.Button,{icon:d?"sign-out-alt":"sign-in-alt",content:d?"Close":"Open",onClick:function(){return i("door")}})],0),children:[!(!s||!u)&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:["Biological entity detected in suit chamber. Please remove before continuing with operation.",(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",color:"red",content:"Eject Entity",onClick:function(){return i("eject_guy")}})]}),l&&(0,o.createComponentVNode)(2,a.Box,{mt:6,bold:!0,textAlign:"center",fontSize:"40px",children:[(0,o.createComponentVNode)(2,a.Box,{children:"Unit Locked"}),(0,o.createComponentVNode)(2,a.Icon,{name:"lock"})]})||d&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Helmet",children:(0,o.createComponentVNode)(2,a.Button,{icon:p?"square":"square-o",content:p||"Empty",disabled:!p,onClick:function(){return i("dispense",{item:"helmet"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Suit",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"square":"square-o",content:m||"Empty",disabled:!m,onClick:function(){return i("dispense",{item:"suit"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mask",children:(0,o.createComponentVNode)(2,a.Button,{icon:h?"square":"square-o",content:h||"Empty",disabled:!h,onClick:function(){return i("dispense",{item:"mask"})}})})]})||(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"recycle",content:"Decontaminate",disabled:s&&u,textAlign:"center",onClick:function(){return i("uv")}})]})},l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.safeties,d=c.uv_super;return(0,o.createComponentVNode)(2,a.Section,{title:"Maintenance Panel",children:[(0,o.createComponentVNode)(2,a.Box,{color:"grey",children:"The panel is ridden with controls, button and meters, labeled in strange signs and symbols that you cannot understand. Probably the manufactoring world's language. Among other things, a few controls catch your eye."}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Box,{children:["A small dial with a biohazard symbol next to it. It's pointing towards a gauge that reads ",d?"15nm":"185nm",".",(0,o.createComponentVNode)(2,a.Flex,{mt:1,align:"center",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",textAlign:"center",children:(0,o.createComponentVNode)(2,a.Knob,{size:2,inline:!0,value:d,minValue:0,maxValue:1,step:1,stepPixelSize:40,color:d?"red":"green",format:function(e){return e?"15nm":"185nm"},onChange:function(e,t){return i("toggleUV")}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",textAlign:"center",children:(0,o.createComponentVNode)(2,a.Icon,{name:"biohazard",size:3,color:"orange"})})]})]}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Box,{children:["A thick old-style button, with 2 grimy LED lights next to it. The ",l?(0,o.createVNode)(1,"font",null,"GREEN",16,{color:"green"}):(0,o.createVNode)(1,"font",null,"RED",16,{color:"red"})," LED is on.",(0,o.createComponentVNode)(2,a.Flex,{mt:1,align:"center",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{fontSize:"2rem",color:"grey",inline:!0,icon:"caret-square-right",style:{border:"4px solid #777","border-style":"outset"},onClick:function(){return i("togglesafeties")}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"circle",color:l?"black":"red",mr:2}),(0,o.createComponentVNode)(2,a.Icon,{name:"circle",color:l?"green":"black"})]})]})]})]})},d=function(e,t){return(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Contents are currently being decontaminated. Please wait."})},u=function(e,t){return(0,o.createComponentVNode)(2,a.NoticeBox,{danger:!0,children:"Unit chamber is too contaminated to continue usage. Please call for a qualified individual to perform maintenance."})}},function(e,t,n){"use strict";t.__esModule=!0,t.SupplyConsole=void 0;var o=n(0),r=n(9),a=(n(5),n(20)),i=n(1),c=n(2),l=n(45),d=n(3),u=n(44),s=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data.supply_points,l=e.args,d=l.name,u=l.cost,s=l.manifest,m=l.ref,p=l.random;return(0,o.createComponentVNode)(2,c.Section,{width:"400px",level:2,m:"-1rem",pb:"1rem",title:d,buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"shopping-cart",content:"Buy - "+u+" points",disabled:u>a,onClick:function(){return r("request_crate",{ref:m})}}),children:(0,o.createComponentVNode)(2,c.Section,{title:"Contains"+(p?" any "+p+" of:":""),scrollable:!0,height:"200px",children:s.map((function(e){return(0,o.createComponentVNode)(2,c.Box,{children:e},e)}))})})};t.SupplyConsole=function(e,t){var n=(0,i.useBackend)(t);n.act,n.data;return(0,l.modalRegisterBodyOverride)("view_crate",s),(0,o.createComponentVNode)(2,d.Window,{width:700,height:620,children:(0,o.createComponentVNode)(2,d.Window.Content,{children:[(0,o.createComponentVNode)(2,l.ComplexModal,{maxWidth:"100%"}),(0,o.createComponentVNode)(2,c.Section,{title:"Supply Records",children:[(0,o.createComponentVNode)(2,m),(0,o.createComponentVNode)(2,p)]})]})})};var m=function(e,t){var n=(0,i.useBackend)(t),r=n.act,l=n.data,d=l.supply_points,u=l.shuttle,s=null,m=!1;return l.shuttle_auth&&(1===u.launch&&0===u.mode?s=(0,o.createComponentVNode)(2,c.Button,{icon:"rocket",content:"Send Away",onClick:function(){return r("send_shuttle",{mode:"send_away"})}}):2!==u.launch||3!==u.mode&&1!==u.mode?1===u.launch&&5===u.mode&&(s=(0,o.createComponentVNode)(2,c.Button,{icon:"rocket",content:"Send Shuttle",onClick:function(){return r("send_shuttle",{mode:"send_to_station"})}})):s=(0,o.createComponentVNode)(2,c.Button,{icon:"ban",content:"Cancel Launch",onClick:function(){return r("send_shuttle",{mode:"cancel_shuttle"})}}),u.force&&(m=!0)),(0,o.createComponentVNode)(2,c.Section,{children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Supply Points",children:(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:d})})}),(0,o.createComponentVNode)(2,c.Section,{level:2,title:"Supply Shuttle",mt:2,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Location",buttons:(0,o.createFragment)([s,m?(0,o.createComponentVNode)(2,c.Button,{icon:"exclamation-triangle",content:"Force Launch",onClick:function(){return r("send_shuttle",{mode:"force_shuttle"})}}):null],0),children:u.location}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Engine",children:u.engine}),4===u.mode?(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"ETA",children:u.time>1?(0,a.formatTime)(u.time):"LATE"}):null]})})]})},p=function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.data.order_auth,(0,i.useLocalState)(t,"tabIndex",0)),a=r[0],l=r[1];return(0,o.createComponentVNode)(2,c.Section,{title:"Menu",children:[(0,o.createComponentVNode)(2,c.Tabs,{children:[(0,o.createComponentVNode)(2,c.Tabs.Tab,{icon:"box",selected:0===a,onClick:function(){return l(0)},children:"Request"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{icon:"check-circle-o",selected:1===a,onClick:function(){return l(1)},children:"Accepted"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{icon:"circle-o",selected:2===a,onClick:function(){return l(2)},children:"Requests"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{icon:"book",selected:3===a,onClick:function(){return l(3)},children:"Order history"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{icon:"book",selected:4===a,onClick:function(){return l(4)},children:"Export history"})]}),0===a?(0,o.createComponentVNode)(2,h):null,1===a?(0,o.createComponentVNode)(2,f,{mode:"Approved"}):null,2===a?(0,o.createComponentVNode)(2,f,{mode:"Requested"}):null,3===a?(0,o.createComponentVNode)(2,f,{mode:"All"}):null,4===a?(0,o.createComponentVNode)(2,C):null]})},h=function(e,t){var n=(0,i.useBackend)(t),a=n.act,l=n.data,d=l.categories,s=l.supply_packs,m=l.contraband,p=l.supply_points,h=(0,i.useLocalState)(t,"activeCategory",null),f=h[0],C=h[1],N=(0,u.flow)([(0,r.filter)((function(e){return e.group===f})),(0,r.filter)((function(e){return!e.contraband||m})),(0,r.sortBy)((function(e){return e.name})),(0,r.sortBy)((function(e){return e.cost>p}))])(s);return(0,o.createComponentVNode)(2,c.Section,{level:2,children:(0,o.createComponentVNode)(2,c.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"25%",children:(0,o.createComponentVNode)(2,c.Section,{title:"Categories",scrollable:!0,fill:!0,height:"290px",children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{fluid:!0,content:e,selected:e===f,onClick:function(){return C(e)}},e)}))})}),(0,o.createComponentVNode)(2,c.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,c.Section,{title:"Contents",scrollable:!0,fill:!0,height:"290px",children:N.map((function(e){return(0,o.createComponentVNode)(2,c.Box,{children:(0,o.createComponentVNode)(2,c.Flex,{align:"center",justify:"flex-start",spacing:1,children:[(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"70%",children:(0,o.createComponentVNode)(2,c.Button,{fluid:!0,icon:"shopping-cart",ellipsis:!0,content:e.name,color:e.cost>p?"red":null,onClick:function(){return a("request_crate",{ref:e.ref})}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.Button,{content:"#",color:e.cost>p?"red":null,onClick:function(){return a("request_crate_multi",{ref:e.ref})}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.Button,{content:"C",color:e.cost>p?"red":null,onClick:function(){return a("view_crate",{crate:e.ref})}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{grow:1,children:[e.cost," points"]})]})},e.name)}))})})]})})},f=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=e.mode,d=a.orders,u=a.order_auth,s=a.supply_points,m=d.filter((function(e){return e.status===l||"All"===l}));return m.length?(0,o.createComponentVNode)(2,c.Section,{level:2,children:["Requested"===l&&u?(0,o.createComponentVNode)(2,c.Button,{mt:-1,mb:1,fluid:!0,color:"red",icon:"trash",content:"Clear all requests",onClick:function(){return r("clear_all_requests")}}):null,m.map((function(e,t){return(0,o.createComponentVNode)(2,c.Section,{title:"Order "+(t+1),buttons:"All"===l&&u?(0,o.createComponentVNode)(2,c.Button,{color:"red",icon:"trash",content:"Delete Record",onClick:function(){return r("delete_order",{ref:e.ref})}}):null,children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[e.entries.map((function(t){return t.entry?(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:t.field,buttons:u?(0,o.createComponentVNode)(2,c.Button,{icon:"pen",content:"Edit",onClick:function(){r("edit_order_value",{ref:e.ref,edit:t.field,"default":t.entry})}}):null,children:t.entry}):null})),"All"===l?(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",children:e.status}):null]}),u&&"Requested"===l?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{icon:"check",content:"Approve",disabled:e.cost>s,onClick:function(){return r("approve_order",{ref:e.ref})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"times",content:"Deny",onClick:function(){return r("deny_order",{ref:e.ref})}})],4):null]},t)}))]}):(0,o.createComponentVNode)(2,c.Section,{level:2,children:"No orders found."})},C=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=a.receipts,d=a.order_auth;return l.length?(0,o.createComponentVNode)(2,c.Section,{level:2,children:l.map((function(e,t){return(0,o.createComponentVNode)(2,c.Section,{children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[e.title.map((function(t){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:t.field,buttons:d?(0,o.createComponentVNode)(2,c.Button,{icon:"pen",content:"Edit",onClick:function(){return r("export_edit",{ref:e.ref,edit:t.field,"default":t.entry})}}):null,children:t.entry},t.field)})),e.error?(0,o.createComponentVNode)(2,c.LabeledList.Item,{labelColor:"red",label:"Error",children:e.error}):e.contents.map((function(t,n){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:t.object,buttons:d?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{icon:"pen",content:"Edit",onClick:function(){return r("export_edit_field",{ref:e.ref,index:n+1,edit:"meow","default":t.object})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"trash",color:"red",content:"Delete",onClick:function(){return r("export_delete_field",{ref:e.ref,index:n+1})}})],4):null,children:[t.quantity,"x -> ",t.value," points"]},n)}))]}),d?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{mt:1,icon:"plus",content:"Add Item To Record",onClick:function(){return r("export_add_field",{ref:e.ref})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"trash",content:"Delete Record",onClick:function(){return r("export_delete",{ref:e.ref})}})],4):null]},t)}))}):(0,o.createComponentVNode)(2,c.Section,{level:2,children:"No receipts found."})}},function(e,t,n){"use strict";t.__esModule=!0,t.TEGenerator=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=n(20);t.TEGenerator=function(e,t){var n=(0,a.useBackend)(t).data,r=n.totalOutput,u=n.maxTotalOutput,s=n.thermalOutput,m=n.primary,p=n.secondary;return(0,o.createComponentVNode)(2,c.Window,{width:550,height:310,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Total Output",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:r,maxValue:u,children:(0,l.formatPower)(r)})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Thermal Output",children:(0,l.formatPower)(s)})]})}),m&&p?(0,o.createComponentVNode)(2,i.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,i.Flex.Item,{shrink:1,grow:1,children:(0,o.createComponentVNode)(2,d,{name:"Primary Circulator",values:m})}),(0,o.createComponentVNode)(2,i.Flex.Item,{shrink:1,grow:1,children:(0,o.createComponentVNode)(2,d,{name:"Secondary Circulator",values:p})})]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Warning! Both circulators must be connected in order to operate this machine."})]})})};var d=function(e,t){var n=e.name,a=e.values,c=a.dir,d=a.output,u=a.flowCapacity,s=a.inletPressure,m=a.inletTemperature,p=a.outletPressure,h=a.outletTemperature;return(0,o.createComponentVNode)(2,i.Section,{title:n+" ("+c+")",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Turbine Output",children:(0,l.formatPower)(d)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Flow Capacity",children:[(0,r.round)(u,2),"%"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Inlet Pressure",children:(0,l.formatSiUnit)(1e3*s,0,"Pa")}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Inlet Temperature",children:[(0,r.round)(m,2)," K"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Outlet Pressure",children:(0,l.formatSiUnit)(1e3*p,0,"Pa")}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Outlet Temperature",children:[(0,r.round)(h,2)," K"]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Tank=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Tank=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.connected,u=l.showToggle,s=void 0===u||u,m=l.maskConnected,p=l.tankPressure,h=l.releasePressure,f=l.defaultReleasePressure,C=l.minReleasePressure,N=l.maxReleasePressure;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:320,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:!!s&&(0,o.createComponentVNode)(2,a.Button,{icon:d?"air-freshener":"lock-open",selected:d,disabled:!m,content:"Mask Release Valve",onClick:function(){return c("toggle")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mask Connected",children:m?"Yes":"No"})})}),(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:p/1013,ranges:{good:[.35,Infinity],average:[.15,.35],bad:[-Infinity,.15]},children:l.tankPressure+" kPa"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure Regulator",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:h===C,onClick:function(){return c("pressure",{pressure:"min"})}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:parseFloat(h),width:"65px",unit:"kPa",minValue:C,maxValue:N,onChange:function(e,t){return c("pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:h===N,onClick:function(){return c("pressure",{pressure:"max"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"undo",content:"",disabled:h===f,onClick:function(){return c("pressure",{pressure:"reset"})}})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TankDispenser=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.TankDispenser=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data;return(0,o.createComponentVNode)(2,i.Window,{width:275,height:103,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Phoron",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:l.plasma?"square":"square-o",content:"Dispense",disabled:!l.plasma,onClick:function(){return c("plasma")}}),children:l.plasma}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Oxygen",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:l.oxygen?"square":"square-o",content:"Dispense",disabled:!l.oxygen,onClick:function(){return c("oxygen")}}),children:l.oxygen})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TelecommsLogBrowser=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3);t.TelecommsLogBrowser=function(e,t){var n=(0,a.useBackend)(t),r=n.act,u=n.data,s=u.universal_translate,m=u.network,p=u.temp,h=u.servers,f=u.selectedServer;return(0,o.createComponentVNode)(2,c.Window,{width:575,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[p&&p.length?(0,o.createComponentVNode)(2,i.NoticeBox,{warning:!0,children:[(0,o.createComponentVNode)(2,i.Box,{display:"inline-box",verticalAlign:"middle",children:p}),(0,o.createComponentVNode)(2,i.Button,{icon:"times-circle",float:"right",onClick:function(){return r("cleartemp")}}),(0,o.createComponentVNode)(2,i.Box,{clear:"both"})]}):null,(0,o.createComponentVNode)(2,i.Section,{title:"Network Control",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current Network",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"search",content:"Refresh",onClick:function(){return r("scan")}}),(0,o.createComponentVNode)(2,i.Button,{color:"bad",icon:"exclamation-triangle",content:"Flush Buffer",disabled:0===h.length,onClick:function(){return r("release")}})],4),children:(0,o.createComponentVNode)(2,i.Button,{content:m,icon:"pen",onClick:function(){return r("network")}})})})}),f?(0,o.createComponentVNode)(2,d,{network:m,server:f,universal_translate:s}):(0,o.createComponentVNode)(2,l,{network:m,servers:h})]})})};var l=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=(n.data,e.network,e.servers);return c&&c.length?(0,o.createComponentVNode)(2,i.Section,{title:"Detected Telecommunication Servers",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:c.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name+" ("+e.id+")",children:(0,o.createComponentVNode)(2,i.Button,{content:"View",icon:"eye",onClick:function(){return r("view",{id:e.id})}})},e.id)}))})}):(0,o.createComponentVNode)(2,i.Section,{title:"Detected Telecommunications Servers",children:[(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"No servers detected."}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,content:"Scan",icon:"search",onClick:function(){return r("scan")}})]})},d=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=(n.data,e.network,e.server),d=e.universal_translate;return(0,o.createComponentVNode)(2,i.Section,{title:"Server ("+l.id+")",buttons:(0,o.createComponentVNode)(2,i.Button,{content:"Return",icon:"undo",onClick:function(){return c("mainmenu")}}),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Total Recorded Traffic",children:l.totalTraffic>=1024?(0,r.round)(l.totalTraffic/1024)+" Terrabytes":l.totalTraffic+" Gigabytes"})}),(0,o.createComponentVNode)(2,i.Section,{title:"Stored Logs",mt:"4px",children:(0,o.createComponentVNode)(2,i.Flex,{wrap:"wrap",children:l.logs&&l.logs.length?l.logs.map((function(e){return(0,o.createComponentVNode)(2,i.Flex.Item,{m:"2px",basis:"49%",grow:e.id%2,children:(0,o.createComponentVNode)(2,i.Section,{title:d||e.parameters.uspeech||e.parameters.intelligible||"Execution Error"===e.input_type?e.input_type:"Audio File",buttons:(0,o.createComponentVNode)(2,i.Button.Confirm,{confirmContent:"Delete Log?",color:"bad",icon:"trash",confirmIcon:"trash",onClick:function(){return c("delete",{id:e.id})}}),children:"Execution Error"===e.input_type?(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Data type",children:"Error"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Output",children:e.parameters.message}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Delete",children:(0,o.createComponentVNode)(2,i.Button,{icon:"trash",onClick:function(){return c("delete",{id:e.id})}})})]}):d||e.parameters.uspeech||e.parameters.intelligible?(0,o.createComponentVNode)(2,u,{log:e}):(0,o.createComponentVNode)(2,u,{error:!0})})},e.id)})):"No Logs Detected."})})]})},u=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data,e.log),c=e.error,l=r&&r.parameters||{none:"none"},d=l.timecode,u=l.name,s=l.race,m=l.job,p=l.message;return c?(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Time Recieved",children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Source",children:"Unidentifiable"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Class",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Contents",children:"Unintelligible"})]}):(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Time Recieved",children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Source",children:[u," (Job: ",m,")"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Class",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Contents",className:"LabeledList__breakContents",children:p})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.TelecommsMachineBrowser=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.TelecommsMachineBrowser=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.network,s=d.temp,m=d.machinelist,p=d.selectedMachine;return(0,o.createComponentVNode)(2,i.Window,{width:575,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[s&&s.length?(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:[(0,o.createComponentVNode)(2,a.Box,{display:"inline-box",verticalAlign:"middle",children:s}),(0,o.createComponentVNode)(2,a.Button,{icon:"times-circle",float:"right",onClick:function(){return l("cleartemp")}}),(0,o.createComponentVNode)(2,a.Box,{clear:"both"})]}):null,(0,o.createComponentVNode)(2,a.Section,{title:"Network Control",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Network",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"search",content:"Probe Network",onClick:function(){return l("scan")}}),(0,o.createComponentVNode)(2,a.Button,{color:"bad",icon:"exclamation-triangle",content:"Flush Buffer",disabled:0===m.length,onClick:function(){return l("release")}})],4),children:(0,o.createComponentVNode)(2,a.Button,{content:u,icon:"pen",onClick:function(){return l("network")}})})})}),m&&m.length?(0,o.createComponentVNode)(2,c,{title:p?p.name+" ("+p.id+")":"Detected Network Entities",list:p?p.links:m,showBack:p}):(0,o.createComponentVNode)(2,a.Section,{title:"No Devices Found",children:(0,o.createComponentVNode)(2,a.Button,{icon:"search",content:"Probe Network",onClick:function(){return l("scan")}})})]})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=(n.data,e.list),l=e.title,d=e.showBack;return(0,o.createComponentVNode)(2,a.Section,{title:l,buttons:d&&(0,o.createComponentVNode)(2,a.Button,{icon:"undo",content:"Back to Main Menu",onClick:function(){return i("mainmenu")}}),children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",children:(0,o.createVNode)(1,"u",null,"Linked entities",16)}),(0,o.createComponentVNode)(2,a.LabeledList,{children:c.length?c.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name+" ("+e.id+")",children:(0,o.createComponentVNode)(2,a.Button,{content:"View",icon:"eye",onClick:function(){return i("view",{id:e.id})}})},e.id)})):(0,o.createComponentVNode)(2,a.LabeledList.Item,{color:"bad",children:"No links detected."})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.TelecommsMultitoolMenu=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(62),c=n(3);t.TelecommsMultitoolMenu=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),u=(a.temp,a.on,a.id,a.network,a.autolinkers,a.shadowlink,a.options);a.linked,a.filter,a.multitool,a.multitool_buffer;return(0,o.createComponentVNode)(2,c.Window,{width:520,height:540,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.TemporaryNotice),(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,d,{options:u})]})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=(c.temp,c.on),d=c.id,u=c.network,s=c.autolinkers,m=c.shadowlink,p=(c.options,c.linked),h=c.filter,f=c.multitool,C=c.multitool_buffer;return(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:l,content:l?"On":"Off",onClick:function(){return i("toggle")}}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Identification String",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:d,onClick:function(){return i("id")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:u,onClick:function(){return i("network")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Prefabrication",children:s?"TRUE":"FALSE"}),m?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shadow Link",children:"Active."}):null,f?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Multitool Buffer",children:[C?(0,o.createFragment)([C.name,(0,o.createTextVNode)(" ("),C.id,(0,o.createTextVNode)(")")],0):null,(0,o.createComponentVNode)(2,a.Button,{color:C?"green":null,content:C?"Link ("+C.id+")":"Add Machine",icon:C?"link":"plus",onClick:C?function(){return i("link")}:function(){return i("buffer")}}),C?(0,o.createComponentVNode)(2,a.Button,{color:"red",content:"Flush",icon:"trash",onClick:function(){return i("flush")}}):null]}):null]}),(0,o.createComponentVNode)(2,a.Section,{title:"Linked network Entities",mt:1,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:p.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.ref+" "+e.name+" ("+e.id+")",buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"red",icon:"trash",onClick:function(){return i("unlink",{unlink:e.index})}})},e.ref)}))})}),(0,o.createComponentVNode)(2,a.Section,{title:"Filtering Frequencies",mt:1,children:[h.map((function(e){return(0,o.createComponentVNode)(2,a.Button.Confirm,{content:e.name+" GHz",confirmContent:"Delete?",confirmColor:"red",confirmIcon:"trash",onClick:function(){return i("delete",{"delete":e.freq})}},e.index)})),h&&0!==h.length?null:(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"No filters."})]})]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=(n.data,e.options),l=c.use_listening_level,d=c.use_broadcasting,u=c.use_receiving,s=c.listening_level,m=c.broadcasting,p=c.receiving,h=c.use_change_freq,f=c.change_freq,C=c.use_broadcast_range,N=c.use_receive_range,b=c.range,V=c.minRange,g=c.maxRange;return l||d||u||h||C||N?(0,o.createComponentVNode)(2,a.Section,{title:"Options",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[l?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Signal Locked to Station",children:(0,o.createComponentVNode)(2,a.Button,{icon:s?"lock-closed":"lock-open",content:s?"Yes":"No",onClick:function(){return i("change_listening")}})}):null,d?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Broadcasting",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:m,content:m?"Yes":"No",onClick:function(){return i("broadcast")}})}):null,u?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Receving",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:p,content:p?"Yes":"No",onClick:function(){return i("receive")}})}):null,h?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Change Signal Frequency",children:(0,o.createComponentVNode)(2,a.Button,{icon:"wave-square",selected:!!f,content:f?"Yes ("+f+")":"No",onClick:function(){return i("change_freq")}})}):null,C||N?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:(C?"Broadcast":"Receive")+" Range",children:(0,o.createComponentVNode)(2,a.NumberInput,{value:b,minValue:V,maxValue:g,unit:"gigameters",stepPixelSize:4,format:function(e){return e+1},onDrag:function(e,t){return i("range",{range:t})}})}):null]})}):(0,o.createComponentVNode)(2,a.Section,{title:"No Options Found"})}},function(e,t,n){"use strict";t.__esModule=!0,t.Teleporter=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Teleporter=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.locked_name,u=l.station_connected,s=l.hub_connected,m=l.calibrated,p=l.teleporter_on;return(0,o.createComponentVNode)(2,i.Window,{width:300,height:200,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"bullseye",onClick:function(){return c("select_target")},content:d})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Calibrated",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:m,color:m?"good":"bad",onClick:function(){return c("test_fire")},content:m?"Accurate":"Test Fire"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Teleporter",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:p,color:p?"good":"bad",onClick:function(){return c("toggle_on")},content:p?"Online":"OFFLINE"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Station",children:u?"Connected":"Not Connected"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hub",children:s?"Connected":"Not Connected"})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TelesciConsoleContent=t.TelesciConsole=void 0;var o=n(0),r=n(9),a=n(1),i=n(2),c=n(3);t.TelesciConsole=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.noTelepad);return(0,o.createComponentVNode)(2,c.Window,{width:400,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:r&&(0,o.createComponentVNode)(2,l)||(0,o.createComponentVNode)(2,d)})})};var l=function(e,t){return(0,o.createComponentVNode)(2,i.Section,{title:"Error",color:"bad",children:["No telepad located.",(0,o.createVNode)(1,"br"),"Please add telepad data."]})},d=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.insertedGps,u=l.rotation,s=l.currentZ,m=l.cooldown,p=l.crystalCount,h=l.maxCrystals,f=(l.maxPossibleDistance,l.maxAllowedDistance),C=l.distance,N=l.tempMsg,b=l.sectorOptions,V=l.lastTeleData;return(0,o.createComponentVNode)(2,i.Section,{title:"Telepad Controls",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"eject",disabled:!d,onClick:function(){return c("ejectGPS")},content:"Eject GPS"}),children:[(0,o.createComponentVNode)(2,i.NoticeBox,{info:!0,children:m&&(0,o.createComponentVNode)(2,i.Box,{children:["Telepad is recharging. Please wait ",(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:m})," seconds."]})||(0,o.createComponentVNode)(2,i.Box,{children:N})}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Bearing",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,value:u,format:function(e){return e+"\xb0"},step:1,minValue:-900,maxValue:900,onDrag:function(e,t){return c("setrotation",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Distance",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,value:C,format:function(e){return e+"/"+f+" m"},minValue:0,maxValue:f,step:1,stepPixelSize:4,onDrag:function(e,t){return c("setdistance",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Sector",children:(0,r.sortBy)((function(e){return Number(e)}))(b).map((function(e){return(0,o.createComponentVNode)(2,i.Button,{icon:"check-circle",content:e,selected:s===e,onClick:function(){return c("setz",{setz:e})}},e)}))}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Controls",children:[(0,o.createComponentVNode)(2,i.Button,{icon:"share",iconRotation:-90,onClick:function(){return c("send")},content:"Send"}),(0,o.createComponentVNode)(2,i.Button,{icon:"share",iconRotation:90,onClick:function(){return c("receive")},content:"Receive"}),(0,o.createComponentVNode)(2,i.Button,{icon:"sync",iconRotation:90,onClick:function(){return c("recal")},content:"Recalibrate"})]})]}),V&&(0,o.createComponentVNode)(2,i.Section,{mt:1,children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Telepad Location",children:[V.src_x,", ",V.src_y]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Distance",children:[V.distance,"m"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Transit Time",children:[V.time," secs"]})]})})||(0,o.createComponentVNode)(2,i.Section,{mt:1,children:"No teleport data found."}),(0,o.createComponentVNode)(2,i.Section,{children:["Crystals: ",p," / ",h]})]})};t.TelesciConsoleContent=d},function(e,t,n){"use strict";t.__esModule=!0,t.TimeClock=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=n(191);t.TimeClock=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data,s=u.department_hours,m=u.user_name,p=u.card,h=u.assignment,f=u.job_datum,C=u.allow_change_job,N=u.job_choices;return(0,o.createComponentVNode)(2,c.Window,{width:500,height:520,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Section,{title:"OOC",children:[(0,o.createComponentVNode)(2,i.NoticeBox,{children:"OOC Note: PTO acquired is account-wide and shared across all characters. Info listed below is not IC information."}),(0,o.createComponentVNode)(2,i.Section,{level:2,title:"Time Off Balance for "+m,children:(0,o.createComponentVNode)(2,i.LabeledList,{children:Object.keys(s).map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,color:s[e]>6?"good":s[e]>1?"average":"bad",children:[(0,r.toFixed)(s[e],1)," ",1===s[e]?"hour":"hours"]},e)}))})})]}),(0,o.createComponentVNode)(2,i.Section,{title:"Employee Info",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Employee ID",children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"user",onClick:function(){return d("id")},children:p||"Insert ID"})}),!!f&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Rank",children:(0,o.createComponentVNode)(2,i.Box,{backgroundColor:f.selection_color,p:.8,children:(0,o.createComponentVNode)(2,i.Flex,{justify:"space-between",align:"center",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Box,{ml:1,children:(0,o.createComponentVNode)(2,l.RankIcon,{color:"white",rank:f.title})})}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Box,{fontSize:1.5,inline:!0,mr:1,children:f.title})})]})})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Departments",children:f.departments}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pay Scale",children:f.economic_modifier}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"PTO Elegibility",children:f.timeoff_factor>0&&(0,o.createComponentVNode)(2,i.Box,{children:["Earns PTO - ",f.pto_department]})||f.timeoff_factor<0&&(0,o.createComponentVNode)(2,i.Box,{children:["Requires PTO - ",f.pto_department]})||(0,o.createComponentVNode)(2,i.Box,{children:"Neutral"})})],4)]})}),!(!C||!f||0===f.timeoff_factor||"Dismissed"===h)&&(0,o.createComponentVNode)(2,i.Section,{title:"Employment Actions",children:f.timeoff_factor>0&&(s[f.pto_department]>0&&(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"exclamation-triangle",onClick:function(){return d("switch-to-offduty")},children:"Go Off-Duty"})||(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Warning: You do not have enough accrued time off to go off-duty."}))||Object.keys(N).length&&Object.keys(N).map((function(e){return N[e].map((function(t){return(0,o.createComponentVNode)(2,i.Button,{icon:"suitcase",onClick:function(){return d("switch-to-onduty-rank",{"switch-to-onduty-rank":e,"switch-to-onduty-assignment":t})},children:t},t)}))}))||(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"No Open Positions - See Head Of Personnel"})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TransferValve=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.TransferValve=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.tank_one,u=l.tank_two,s=l.attached_device,m=l.valve;return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Valve Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"unlock":"lock",content:m?"Open":"Closed",disabled:!d||!u,onClick:function(){return c("toggle")}})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Assembly",buttons:(0,o.createComponentVNode)(2,a.Button,{textAlign:"center",width:"150px",icon:"cog",content:"Configure Assembly",disabled:!s,onClick:function(){return c("device")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:s?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:s,disabled:!s,onClick:function(){return c("remove_device")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Assembly"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Attachment One",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:d,disabled:!d,onClick:function(){return c("tankone")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Tank"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Attachment Two",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:u,disabled:!u,onClick:function(){return c("tanktwo")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Tank"})})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TurbineControl=void 0;var o=n(0),r=(n(5),n(20)),a=n(1),i=n(2),c=n(3);t.TurbineControl=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=(d.connected,d.compressor_broke),s=d.turbine_broke,m=d.broken,p=d.door_status,h=d.online,f=d.power,C=d.rpm,N=d.temp;return(0,o.createComponentVNode)(2,c.Window,{width:520,height:440,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Section,{title:"Turbine Controller",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",children:m&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:["Setup is broken",(0,o.createComponentVNode)(2,i.Button,{icon:"sync",onClick:function(){return l("reconnect")},content:"Reconnect"})]})||(0,o.createComponentVNode)(2,i.Box,{color:h?"good":"bad",children:!h||u||s?"Offline":"Online"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Compressor",children:u&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Compressor is inoperable."})||s&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Turbine is inoperable."})||(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button.Checkbox,{checked:h,content:"Compressor Power",onClick:function(){return l(h?"power-off":"power-on")}})})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Vent Doors",children:(0,o.createComponentVNode)(2,i.Button.Checkbox,{checked:p,onClick:function(){return l("doors")},content:p?"Closed":"Open"})})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Turbine Speed",children:[m?"--":(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:C})," RPM"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Internal Temperature",children:[m?"--":(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:N})," K"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Generated Power",children:m?"--":(0,o.createComponentVNode)(2,i.AnimatedNumber,{format:function(e){return(0,r.formatPower)(e)},value:Number(f)})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Turbolift=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.Turbolift=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.floors,u=l.doors_open,s=l.fire_mode;return(0,o.createComponentVNode)(2,i.Window,{width:480,height:260+25*s,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Floor Selection",className:s?"Section--elevator--fire":null,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:u?"door-open":"door-closed",content:u?s?"Close Doors (SAFETY OFF)":"Doors Open":"Doors Closed",selected:u&&!s,color:s?"red":null,onClick:function(){return c("toggle_doors")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",color:"bad",content:"Emergency Stop",onClick:function(){return c("emergency_stop")}})],4),children:[!s||(0,o.createComponentVNode)(2,a.Section,{className:"Section--elevator--fire",textAlign:"center",title:"FIREFIGHTER MODE ENGAGED"}),(0,o.createComponentVNode)(2,a.Flex,{wrap:"wrap",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"100%",children:(0,o.createComponentVNode)(2,a.Flex,{align:"center",justify:"space-around",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"22%",textAlign:"right",mr:"3px",children:e.label||"Floor #"+e.id}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"8%",textAlign:"left",children:(0,o.createComponentVNode)(2,a.Button,{icon:"circle",color:e.current?"red":e.target?"green":e.queued?"yellow":null,onClick:function(){return c("move_to_floor",{ref:e.ref})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",grow:1,children:e.name})]})},e.id)}))})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GenericUplink=t.Uplink=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(20),l=n(3);t.Uplink=function(e,t){var n=(0,a.useBackend)(t).data,r=(0,a.useLocalState)(t,"screen",0),c=r[0],m=r[1],p=n.telecrystals;return(0,o.createComponentVNode)(2,l.Window,{width:620,height:580,theme:"syndicate",resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d,{screen:c,setScreen:m}),0===c&&(0,o.createComponentVNode)(2,s,{currencyAmount:p,currencySymbol:"TC"})||1===c&&(0,o.createComponentVNode)(2,u)||(0,o.createComponentVNode)(2,i.Section,{color:"bad",children:"Error"})]})})};var d=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=e.screen,l=e.setScreen,d=r.discount_name,u=r.discount_amount,s=r.offer_expiry;return(0,o.createComponentVNode)(2,i.Section,{children:[(0,o.createComponentVNode)(2,i.Tabs,{style:{"border-bottom":"none","margin-bottom":"0"},children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:0===c,onClick:function(){return l(0)},children:"Request Items"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===c,onClick:function(){return l(1)},children:"Exploitable Information"})]}),(0,o.createComponentVNode)(2,i.Section,{title:"Item Discount",level:2,children:u<100&&(0,o.createComponentVNode)(2,i.Box,{children:[d," - ",u,"% off. Offer expires at: ",s]})||(0,o.createComponentVNode)(2,i.Box,{children:"No items currently discounted."})})]})},u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.exploit,d=c.locked_records;return(0,o.createComponentVNode)(2,i.Section,{title:"Exploitable Information",buttons:l&&(0,o.createComponentVNode)(2,i.Button,{icon:"undo",content:"Back",onClick:function(){return r("view_exploits",{id:0})}}),children:l&&(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:l.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Sex",children:l.sex}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Species",children:l.species}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Age",children:l.age}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Rank",children:l.rank}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Home System",children:l.home_system}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Citizenship",children:l.citizenship}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Faction",children:l.faction}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Religion",children:l.religion}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Fingerprint",children:l.fingerprint}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Other Affiliations",children:l.antagfaction}),(0,o.createComponentVNode)(2,i.LabeledList.Divider),(0,o.createComponentVNode)(2,i.LabeledList.Item,{children:"Acquired Information"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Notes",children:l.nanoui_exploit_record})]})})||d.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{icon:"eye",fluid:!0,content:e.name,onClick:function(){return r("view_exploits",{id:e.id})}},e.id)}))})},s=function(e,t){var n,l,d=e.currencyAmount,u=void 0===d?0:d,s=e.currencySymbol,p=void 0===s?"\u20ae":s,h=(0,a.useBackend)(t),f=h.act,C=h.data,N=C.compactMode,b=C.lockable,V=C.categories,g=void 0===V?[]:V,v=(0,a.useLocalState)(t,"searchText",""),k=v[0],_=v[1],y=(0,a.useLocalState)(t,"category",null==(n=g[0])?void 0:n.name),L=y[0],B=y[1],x=(0,r.createSearch)(k,(function(e){return e.name+e.desc})),w=k.length>0&&g.flatMap((function(e){return e.items||[]})).filter(x).filter((function(e,t){return t<25}))||(null==(l=g.find((function(e){return e.name===L})))?void 0:l.items)||[];return(0,o.createComponentVNode)(2,i.Section,{title:(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:u>0?"good":"bad",children:[(0,c.formatMoney)(u)," ",p]}),buttons:(0,o.createFragment)([(0,o.createTextVNode)("Search"),(0,o.createComponentVNode)(2,i.Input,{autoFocus:!0,value:k,onInput:function(e,t){return _(t)},mx:1}),(0,o.createComponentVNode)(2,i.Button,{icon:N?"list":"info",content:N?"Compact":"Detailed",onClick:function(){return f("compact_toggle")}}),!!b&&(0,o.createComponentVNode)(2,i.Button,{icon:"lock",content:"Lock",onClick:function(){return f("lock")}})],0),children:(0,o.createComponentVNode)(2,i.Flex,{children:[0===k.length&&(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Tabs,{vertical:!0,children:g.map((function(e){var t;return(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:e.name===L,onClick:function(){return B(e.name)},children:[e.name," (",(null==(t=e.items)?void 0:t.length)||0,")"]},e.name)}))})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,basis:0,children:[0===w.length&&(0,o.createComponentVNode)(2,i.NoticeBox,{children:0===k.length?"No items in this category.":"No results found."}),(0,o.createComponentVNode)(2,m,{compactMode:k.length>0||N,currencyAmount:u,currencySymbol:p,items:w})]})]})})};t.GenericUplink=s;var m=function(e,t){var n=e.compactMode,l=e.currencyAmount,d=e.currencySymbol,u=(0,a.useBackend)(t).act,s=(0,a.useLocalState)(t,"hoveredItem",{}),m=s[0],p=s[1],h=m&&m.cost||0,f=e.items.map((function(e){var t=m&&m.name!==e.name,n=l-h0&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",mb:1,children:"Please wait. Harvesting in progress."}),(0,o.createComponentVNode)(2,c),(0,o.createComponentVNode)(2,a.Button,{mt:1,fluid:!0,icon:"stop",onClick:function(){return l("stopharvest")},children:"Stop Early"})]})||s<0&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",mb:1,children:"Please wait. Energy dump in progress."}),(0,o.createComponentVNode)(2,c),(0,o.createComponentVNode)(2,a.Button,{mt:1,fluid:!0,icon:"stop",onClick:function(){return l("stopharvest")},children:"Stop Early"})]})||Object.keys(m).length&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:m.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge",children:(0,o.createComponentVNode)(2,c)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Energy Signature ID",children:m.artifact_id})]}),(0,o.createComponentVNode)(2,a.Button,{mt:1,fluid:!0,icon:"eject",onClick:function(){return l("ejectbattery")},children:"Eject Battery"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"bolt",onClick:function(){return l("drainbattery")},children:"Drain Battery"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"star",onClick:function(){return l("harvest")},children:"Begin Harvest"})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No battery inserted."})})})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.info.inserted_battery);return Object.keys(i).length?(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,value:i.stored_charge,maxValue:i.capacity}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No battery inserted."})}},function(e,t,n){"use strict";t.__esModule=!0,t.XenoarchDepthScanner=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.XenoarchDepthScanner=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.current,u=l.positive_locations;return(0,o.createComponentVNode)(2,i.Window,{width:300,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[Object.keys(d).length&&(0,o.createComponentVNode)(2,a.Section,{title:"Selected",buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"bad",icon:"trash",confirmIcon:"trash",content:"Delete Entry",onClick:function(){return c("clear",{index:d.index})}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Time",children:d.time}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Coords",children:d.coords}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Anomaly Depth",children:[d.depth," cm"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Anomaly Size",children:[d.clearance," cm"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Dissonance Spread",children:d.dissonance_spread}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Anomaly Material",children:d.material})]})})||null,(0,o.createComponentVNode)(2,a.Section,{title:"Entries",buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"red",icon:"trash",confirmIcon:"trash",content:"Delete All",onClick:function(){return c("clear")}}),children:u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:"eye",onClick:function(){return c("select",{select:e.index})},children:[e.time,", ",e.coords]},e.index)}))||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No traces found."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.XenoarchHandheldPowerUtilizer=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.XenoarchHandheldPowerUtilizer=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.inserted_battery,u=l.anomaly,s=l.charge,m=l.capacity,p=l.timeleft,h=l.activated,f=l.duration,C=l.interval;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:500,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Anomaly Power Utilizer",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!d,icon:"eject",onClick:function(){return c("ejectbattery")},children:"Eject Battery"}),children:d&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Inserted Battery",children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Anomalies Detected",children:u||"N/A"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:s,maxValue:m,children:[s," / ",m]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Time Left Activated",children:p}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"power-off",onClick:function(){return c("startup")},children:h?"Activated":"Deactivated"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Activation Duration",children:(0,o.createComponentVNode)(2,a.NumberInput,{unit:"s",fluid:!0,minValue:0,value:f,stepPixelSize:4,maxValue:30,onDrag:function(e,t){return c("changeduration",{duration:10*t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Activation Interval",children:(0,o.createComponentVNode)(2,a.NumberInput,{unit:"s",fluid:!0,minValue:0,value:C,stepPixelSize:10,maxValue:10,onDrag:function(e,t){return c("changeinterval",{interval:10*t})}})})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No battery inserted. Please insert a cell."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.XenoarchReplicator=void 0;var o=n(0),r=(n(5),n(7),n(1)),a=n(2),i=n(3);t.XenoarchReplicator=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data.tgui_construction;return(0,o.createComponentVNode)(2,i.Window,{theme:"abductor",width:400,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:l.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{color:e.background,icon:e.icon,iconColor:e.foreground,fontSize:4,onClick:function(){return c("construct",{key:e.key})}},e.key)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.XenoarchSpectrometer=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7);t.XenoarchSpectrometer=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.scanned_item,s=d.scanned_item_desc,m=d.last_scan_data,p=d.scan_progress,h=d.scanning,f=d.scanner_seal_integrity,C=d.scanner_rpm,N=d.scanner_temperature,b=d.coolant_usage_rate,V=d.coolant_usage_max,g=(d.unused_coolant_abs,d.unused_coolant_per),v=d.coolant_purity,k=d.optimal_wavelength,_=d.maser_wavelength,y=d.maser_wavelength_max,L=d.maser_efficiency,B=d.radiation,x=(d.t_left_radspike,d.rad_shield_on);return(0,o.createComponentVNode)(2,i.Window,{width:900,height:760,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"signal",selected:h,onClick:function(){return l("scanItem")},children:h?"HALT SCAN":"Begin Scan"}),(0,o.createComponentVNode)(2,a.Button,{icon:"eject",disabled:!u,onClick:function(){return l("ejectItem")},children:"Eject Item"})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Item",children:u||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No item inserted."})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Heuristic Analysis",children:s||"None found."})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Scanner",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Scan Progress",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:p,minValue:0,maxValue:100,color:"good"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Vacuum Seal Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:f,minValue:0,maxValue:100,ranges:{good:[66,100],average:[33,66],bad:[0,33]}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"MASER",buttons:(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:"Match wavelengths to progress the scan."}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"MASER Efficiency",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:L,minValue:0,maxValue:100,ranges:{good:[66,100],average:[33,66],bad:[0,33]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Wavelength",children:(0,o.createComponentVNode)(2,a.Slider,{animated:!0,value:_,fillValue:k,minValue:1,maxValue:y,format:function(e){return e+" MHz"},step:10,onDrag:function(e,t){return l("maserWavelength",{wavelength:t})}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Environment / Internal",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Centrifuge Speed",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:C,minValue:0,maxValue:1e3,color:"good",children:[C," RPM"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Internal Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,value:N,maxValue:1273,ranges:{bad:[1e3,Infinity],average:[250,1e3],good:[0,250]},children:[N," K"]})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Radiation",buttons:(0,o.createComponentVNode)(2,a.Button,{selected:x,icon:"radiation",onClick:function(){return l("toggle_rad_shield")},children:x?"Disable Radiation Shielding":"Enable Radiation Shielding"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Ambient Radiation",children:(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,value:B,maxValue:100,ranges:{bad:[65,Infinity],average:[15,65],good:[0,15]},children:[B," mSv"]})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Cooling",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Coolant Remaining",children:(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,value:10*g,maxValue:1e3,ranges:{good:[65,Infinity],average:[15,65],bad:[0,15]},children:[10*g," u"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Coolant Flow Rate",children:(0,o.createComponentVNode)(2,a.Slider,{minValue:0,value:b,maxValue:V,stepPixelSize:50,format:function(e){return e+" u/s"},onDrag:function(e,t){return l("coolantRate",{coolant:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Coolant Purity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,value:v,maxValue:100,ranges:{good:[66,Infinity],average:[33,66],bad:[0,33]}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Latest Results",children:(0,c.decodeHtmlEntities)(m).split("\n").map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.XenoarchSuspension=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.XenoarchSuspension=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.cell,u=l.cellCharge,s=l.cellMaxCharge,m=l.locked,p=l.suspension_field;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:150,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:'Triple-phase S.F.G. MK III "Reliant"',buttons:(0,o.createComponentVNode)(2,a.Button,{icon:m?"lock":"lock-open",selected:!m,onClick:function(){return c("lock")},children:m?"Locked":"Unlocked"}),children:m&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"This interface is locked. Swipe an ID card to unlock it."})||(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Charge",children:d&&(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*s,Infinity],average:[.5*s,.75*s],bad:[-Infinity,.5*s]},value:u,maxValue:s})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No cell inserted."})})}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:1,icon:"meteor",selected:p,onClick:function(){return c("toggle_field")},children:p?"Disengage Suspension Field":"Engage Suspension Field"})],4)})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAIAtmos=void 0;var o=n(0),r=n(9),a=n(7),i=n(1),c=n(2),l=n(3);t.pAIAtmos=function(e,t){var n=(0,i.useBackend)(t),d=(n.act,n.data.aircontents);return(0,o.createComponentVNode)(2,l.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,c.Section,{children:(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,r.filter)((function(e){return"0"!==e.val||"Pressure"===e.entry||"Temperature"===e.entry}))(d).map((function(e){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.entry,color:(t=e.val,n=e.bad_low,r=e.poor_low,i=e.poor_high,l=e.bad_high,ti?"average":t>l?"bad":"good"),children:[e.val,(0,a.decodeHtmlEntities)(e.units)]},e.entry);var t,n,r,i,l}))})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAIDirectives=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.pAIDirectives=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.master,u=l.dna,s=l.prime,m=l.supplemental;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Master",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Master",children:d&&(0,o.createComponentVNode)(2,a.Box,{children:[d," (",u,")",(0,o.createComponentVNode)(2,a.Button,{icon:"syringe",content:"Request Sample",onClick:function(){return c("getdna")}})]})||(0,o.createComponentVNode)(2,a.Box,{children:"None"})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Directives",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Prime Directive",children:s}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Supplemental Directive(s)",children:m||"None"})]}),(0,o.createComponentVNode)(2,a.Box,{mt:1,italic:!0,children:'Recall, personality, that you are a complex piece of software with tremendous social skills. Unlike station AI models, you are focused entirely on sapient-software interfacing. You may parse the "spirit" of a directive and follow its intent, rather than tripping over pedantics and getting snared by technicalities. Above all, you should strive to be seen as the ideal, unwavering digital companion that you are.'}),(0,o.createComponentVNode)(2,a.Box,{mt:1,bold:!0,children:"Your prime directive comes before all others. Should a supplemental directive conflict with it, you are capable of simply discarding this inconsistency, ignoring the conflicting supplemental directive and continuing to fulfill your prime directive to the best of your ability."})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAIDoorjack=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.pAIDoorjack=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.cable,u=l.machine,s=l.inprogress,m=l.progress_a,p=l.progress_b,h=l.aborted;return(0,o.createComponentVNode)(2,i.Window,{width:300,height:150,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cable",children:u&&(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Connected"})||d&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Extended"})||(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"ethernet",content:"Retracted",onClick:function(){return c("cable")}})})}),!!u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hack",children:s&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,maxValue:100,ranges:{good:[67,Infinity],average:[33,67],bad:[-Infinity,33]},children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m}),".",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:p}),"%"]}),(0,o.createComponentVNode)(2,a.Button,{icon:"ban",color:"bad",onClick:function(){return c("cancel")}})]})||(0,o.createComponentVNode)(2,a.Button,{icon:"virus",content:"Start",onClick:function(){return c("jack")}})})||!!h&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{color:"bad",mt:1,children:"Hack aborted."})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAIInterface=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.pAIInterface=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.bought,u=l.not_bought,s=l.available_ram,m=l.emotions,p=l.current_emotion;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Emotion",children:m.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,selected:e.id===p,onClick:function(){return c("image",{image:e.id})}},e.id)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Software (Available RAM: "+s+")",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Installed",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,selected:e.on,onClick:function(){return c("software",{software:e.id})}},e.id)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Downloadable",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name+" ("+e.ram+")",disabled:e.ram>s,onClick:function(){return c("purchase",{purchase:e.id})}},e.id)}))})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAIMedrecords=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.pAIMedrecords=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.records,u=l.general,s=l.medical,m=l.could_not_find;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,onClick:function(){return c("select",{select:e.ref})}},e.ref)}))}),(u||s)&&(0,o.createComponentVNode)(2,a.Section,{title:"Selected Record",children:[!!m&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Warning: Failed to find some records. The information below may not be complete."}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Record ID",children:u.id}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Entity Classification",children:u.brain_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sex",children:u.sex}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:u.species}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Age",children:u.age}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rank",children:u.rank}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fingerprint",children:u.fingerprint}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Physical Status",children:u.p_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mental Status",children:u.m_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood Type",children:s.b_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Minor Disabilities",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.mi_dis}),(0,o.createComponentVNode)(2,a.Box,{children:s.mi_dis_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Major Disabilities",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.ma_dis}),(0,o.createComponentVNode)(2,a.Box,{children:s.ma_dis_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Allergies",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.alg}),(0,o.createComponentVNode)(2,a.Box,{children:s.alg_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Diseases",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.cdi}),(0,o.createComponentVNode)(2,a.Box,{children:s.cdi_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Important Notes",children:s.notes})]})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAISecrecords=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.pAISecrecords=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.records,u=l.general,s=l.security,m=l.could_not_find;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,onClick:function(){return c("select",{select:e.ref})}},e.ref)}))}),(u||s)&&(0,o.createComponentVNode)(2,a.Section,{title:"Selected Record",children:[!!m&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Warning: Failed to find some records. The information below may not be complete."}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Record ID",children:u.id}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Entity Classification",children:u.brain_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sex",children:u.sex}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:u.species}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Age",children:u.age}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rank",children:u.rank}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fingerprint",children:u.fingerprint}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Physical Status",children:u.p_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mental Status",children:u.m_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Criminal Status",children:(0,o.createComponentVNode)(2,a.Box,{children:s.criminal})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Minor Crimes",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.mi_crim}),(0,o.createComponentVNode)(2,a.Box,{children:s.mi_crim_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Major Crimes",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.ma_crim}),(0,o.createComponentVNode)(2,a.Box,{children:s.ma_crim_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Important Notes",children:s.notes})]})]})]})})}}]);
\ No newline at end of file
+var n;n=void 0!==e?e:void 0,t.loadCSS=function(e,t,o,r){var a,i=n.document,c=i.createElement("link");if(t)a=t;else{var l=(i.body||i.getElementsByTagName("head")[0]).childNodes;a=l[l.length-1]}var d=i.styleSheets;if(r)for(var u in r)r.hasOwnProperty(u)&&c.setAttribute(u,r[u]);c.rel="stylesheet",c.href=e,c.media="only x",function p(e){if(i.body)return e();setTimeout((function(){p(e)}))}((function(){a.parentNode.insertBefore(c,t?a:a.nextSibling)}));var s=function h(e){for(var t=c.href,n=d.length;n--;)if(d[n].href===t)return e();setTimeout((function(){h(e)}))};function m(){c.addEventListener&&c.removeEventListener("load",m),c.media=o||"all"}return c.addEventListener&&c.addEventListener("load",m),c.onloadcssdefined=s,s(m),c}}).call(this,n(75))},function(e,t,n){"use strict";var o,r;t.__esModule=!0,t.VNodeFlags=t.ChildFlags=void 0,t.VNodeFlags=o,function(e){e[e.HtmlElement=1]="HtmlElement",e[e.ComponentUnknown=2]="ComponentUnknown",e[e.ComponentClass=4]="ComponentClass",e[e.ComponentFunction=8]="ComponentFunction",e[e.Text=16]="Text",e[e.SvgElement=32]="SvgElement",e[e.InputElement=64]="InputElement",e[e.TextareaElement=128]="TextareaElement",e[e.SelectElement=256]="SelectElement",e[e.Void=512]="Void",e[e.Portal=1024]="Portal",e[e.ReCreate=2048]="ReCreate",e[e.ContentEditable=4096]="ContentEditable",e[e.Fragment=8192]="Fragment",e[e.InUse=16384]="InUse",e[e.ForwardRef=32768]="ForwardRef",e[e.Normalized=65536]="Normalized",e[e.ForwardRefComponent=32776]="ForwardRefComponent",e[e.FormElement=448]="FormElement",e[e.Element=481]="Element",e[e.Component=14]="Component",e[e.DOMRef=2033]="DOMRef",e[e.InUseOrNormalized=81920]="InUseOrNormalized",e[e.ClearInUse=-16385]="ClearInUse",e[e.ComponentKnown=12]="ComponentKnown"}(o||(t.VNodeFlags=o={})),t.ChildFlags=r,function(e){e[e.UnknownChildren=0]="UnknownChildren",e[e.HasInvalidChildren=1]="HasInvalidChildren",e[e.HasVNodeChildren=2]="HasVNodeChildren",e[e.HasNonKeyedChildren=4]="HasNonKeyedChildren",e[e.HasKeyedChildren=8]="HasKeyedChildren",e[e.HasTextChildren=16]="HasTextChildren",e[e.MultipleChildren=12]="MultipleChildren"}(r||(t.ChildFlags=r={}))},function(e,t,n){"use strict";t.__esModule=!0,t.NtosWindow=void 0;var o=n(0),r=n(93),a=n(1),i=n(2),c=n(126),l=n(183),d=function(e,t){var n=e.title,d=e.width,u=void 0===d?575:d,s=e.height,m=void 0===s?700:s,p=e.resizable,h=e.theme,f=void 0===h?"ntos":h,C=e.children,N=(0,a.useBackend)(t),b=N.act,V=N.data,g=V.PC_device_theme,v=V.PC_batteryicon,k=V.PC_showbatteryicon,_=V.PC_batterypercent,y=V.PC_ntneticon,L=V.PC_apclinkicon,B=V.PC_stationtime,x=V.PC_programheaders,w=void 0===x?[]:x,S=V.PC_showexitprogram;return(0,o.createComponentVNode)(2,l.Window,{title:n,width:u,height:m,theme:f,resizable:p,children:(0,o.createVNode)(1,"div","NtosWindow",[(0,o.createVNode)(1,"div","NtosWindow__header NtosHeader",[(0,o.createVNode)(1,"div","NtosHeader__left",[(0,o.createComponentVNode)(2,i.Box,{inline:!0,bold:!0,mr:2,children:B}),(0,o.createComponentVNode)(2,i.Box,{inline:!0,italic:!0,mr:2,opacity:.33,children:["ntos"===g&&"NtOS","syndicate"===g&&"Syndix"]})],4),(0,o.createVNode)(1,"div","NtosHeader__right",[w.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{inline:!0,mr:1,children:(0,o.createVNode)(1,"img","NtosHeader__icon",null,1,{src:(0,r.resolveAsset)(e.icon)})},e.icon)})),(0,o.createComponentVNode)(2,i.Box,{inline:!0,children:y&&(0,o.createVNode)(1,"img","NtosHeader__icon",null,1,{src:(0,r.resolveAsset)(y)})}),!!k&&v&&(0,o.createComponentVNode)(2,i.Box,{inline:!0,mr:1,children:[v&&(0,o.createVNode)(1,"img","NtosHeader__icon",null,1,{src:(0,r.resolveAsset)(v)}),_&&_]}),L&&(0,o.createComponentVNode)(2,i.Box,{inline:!0,mr:1,children:(0,o.createVNode)(1,"img","NtosHeader__icon",null,1,{src:(0,r.resolveAsset)(L)})}),!!S&&(0,o.createComponentVNode)(2,i.Button,{width:"26px",textAlign:"center",color:"transparent",icon:"window-minimize-o",tooltip:"Minimize",tooltipPosition:"bottom",onClick:function(){return b("PC_minimize")}}),!!S&&(0,o.createComponentVNode)(2,i.Button,{mr:"-3px",width:"26px",textAlign:"center",color:"transparent",icon:"window-close-o",tooltip:"Close",tooltipPosition:"bottom-left",onClick:function(){return b("PC_exit")}}),!S&&(0,o.createComponentVNode)(2,i.Button,{mr:"-3px",width:"26px",lineHeight:"22px",textAlign:"center",color:"transparent",icon:"power-off",tooltip:"Power off",tooltipPosition:"bottom-left",onClick:function(){return b("PC_shutdown")}})],0)],4,{onMouseDown:function(){(0,c.refocusLayout)()}}),C],0)})};t.NtosWindow=d;d.Content=function(e){return(0,o.createVNode)(1,"div","NtosWindow__content",(0,o.normalizeProps)((0,o.createComponentVNode)(2,l.Window.Content,Object.assign({},e))),2)}},function(e,t,n){"use strict";t.__esModule=!0,t.BlockQuote=void 0;var o=n(0),r=n(10),a=n(19);t.BlockQuote=function(e){var t=e.className,n=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["BlockQuote",t])},n)))}},function(e,t,n){"use strict";t.__esModule=!0,t.ByondUi=void 0;var o=n(0),r=n(10),a=n(444),i=n(24),c=n(19);function l(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var d=(0,i.createLogger)("ByondUi"),u=[];window.addEventListener("beforeunload",(function(){for(var e=0;e=0||(r[n]=e[n]);return r}(t,["data","rangeX","rangeY","fillColor","strokeColor","strokeWidth"]),C=this.state.viewBox,N=function(e,t,n,o){if(0===e.length)return[];var a=(0,r.zipWith)(Math.min).apply(void 0,e),i=(0,r.zipWith)(Math.max).apply(void 0,e);return n!==undefined&&(a[0]=n[0],i[0]=n[1]),o!==undefined&&(a[1]=o[0],i[1]=o[1]),(0,r.map)((function(e){return(0,r.zipWith)((function(e,t,n,o){return(e-t)/(n-t)*o}))(e,a,i,t)}))(e)}(a,C,c,l);if(N.length>0){var b=N[0],V=N[N.length-1];N.push([C[0]+h,V[1]]),N.push([C[0]+h,-h]),N.push([-h,-h]),N.push([-h,b[1]])}var g=function(e){for(var t="",n=0;n=0||(r[n]=e[n]);return r}(t,["children","color","title","buttons"]);return(0,o.createComponentVNode)(2,r.Box,{mb:1,children:[(0,o.createVNode)(1,"div","Table",[(0,o.createVNode)(1,"div","Table__cell",(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Button,Object.assign({fluid:!0,color:l,icon:n?"chevron-down":"chevron-right",onClick:function(){return e.setState({open:!n})}},s,{children:d}))),2),u&&(0,o.createVNode)(1,"div","Table__cell Table__cell--collapsing",u,0)],0),n&&(0,o.createComponentVNode)(2,r.Box,{mt:1,children:i})]})},i}(o.Component);t.Collapsible=i},function(e,t,n){"use strict";t.__esModule=!0,t.ColorBox=void 0;var o=n(0),r=n(10),a=n(19);var i=function(e){var t=e.content,n=(e.children,e.className),i=e.color,c=e.backgroundColor,l=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["content","children","className","color","backgroundColor"]);return l.color=t?null:"transparent",l.backgroundColor=i||c,(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["ColorBox",n,(0,a.computeBoxClassName)(l)]),t||".",0,Object.assign({},(0,a.computeBoxProps)(l))))};t.ColorBox=i,i.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.Dropdown=void 0;var o=n(0),r=n(10),a=n(19),i=n(129);function c(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var l=function(e){var t,n;function l(t){var n;return(n=e.call(this,t)||this).state={selected:t.selected,open:!1},n.handleClick=function(){n.state.open&&n.setOpen(!1)},n}n=e,(t=l).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var d=l.prototype;return d.componentWillUnmount=function(){window.removeEventListener("click",this.handleClick)},d.setOpen=function(e){var t=this;this.setState({open:e}),e?(setTimeout((function(){return window.addEventListener("click",t.handleClick)})),this.menuRef.focus()):window.removeEventListener("click",this.handleClick)},d.setSelected=function(e){this.setState({selected:e}),this.setOpen(!1),this.props.onSelected(e)},d.buildMenu=function(){var e=this,t=this.props,n=t.options,r=void 0===n?[]:n,a=t.placeholder,i=r.map((function(t){return(0,o.createVNode)(1,"div","Dropdown__menuentry",t,0,{onClick:function(){e.setSelected(t)}},t)}));return a&&i.unshift((0,o.createVNode)(1,"div","Dropdown__menuentry",[(0,o.createTextVNode)("-- "),a,(0,o.createTextVNode)(" --")],0,{onClick:function(){e.setSelected(null)}},a)),i},d.render=function(){var e=this,t=this.props,n=t.color,l=void 0===n?"default":n,d=t.over,u=t.noscroll,s=t.nochevron,m=t.width,p=t.maxHeight,h=(t.onClick,t.selected,t.disabled),f=t.placeholder,C=c(t,["color","over","noscroll","nochevron","width","maxHeight","onClick","selected","disabled","placeholder"]),N=C.className,b=c(C,["className"]),V=d?!this.state.open:this.state.open,g=this.state.open?(0,o.createVNode)(1,"div",(0,r.classes)([u?"Dropdown__menu-noscroll":"Dropdown__menu",d&&"Dropdown__over"]),this.buildMenu(),0,{tabIndex:"-1",style:{width:m,"max-height":p}},null,(function(t){e.menuRef=t})):null;return(0,o.createVNode)(1,"div","Dropdown",[(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({width:m,className:(0,r.classes)(["Dropdown__control","Button","Button--color--"+l,h&&"Button--disabled",N])},b,{onClick:function(){h&&!e.state.open||e.setOpen(!e.state.open)},children:[(0,o.createVNode)(1,"span","Dropdown__selected-text",this.state.selected||f,0),!!s||(0,o.createVNode)(1,"span","Dropdown__arrow-button",(0,o.createComponentVNode)(2,i.Icon,{name:V?"chevron-up":"chevron-down"}),2)]}))),g],0)},l}(o.Component);t.Dropdown=l},function(e,t,n){"use strict";t.__esModule=!0,t.GridColumn=t.Grid=void 0;var o=n(0),r=n(182),a=n(10);function i(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var c=function(e){var t=e.children,n=i(e,["children"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Table,Object.assign({},n,{children:(0,o.createComponentVNode)(2,r.Table.Row,{children:t})})))};t.Grid=c,c.defaultHooks=a.pureComponentHooks;var l=function(e){var t=e.size,n=void 0===t?1:t,a=e.style,c=i(e,["size","style"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Table.Cell,Object.assign({style:Object.assign({width:n+"%"},a)},c)))};t.GridColumn=l,c.defaultHooks=a.pureComponentHooks,c.Column=l},function(e,t,n){"use strict";t.__esModule=!0,t.Input=void 0;var o=n(0),r=n(10),a=n(19);function i(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var c=function(e){return(0,r.isFalsy)(e)?"":e},l=function(e){var t,n;function l(){var t;return(t=e.call(this)||this).inputRef=(0,o.createRef)(),t.state={editing:!1},t.handleInput=function(e){var n=t.state.editing,o=t.props.onInput;n||t.setEditing(!0),o&&o(e,e.target.value)},t.handleFocus=function(e){t.state.editing||t.setEditing(!0)},t.handleBlur=function(e){var n=t.state.editing,o=t.props.onChange;n&&(t.setEditing(!1),o&&o(e,e.target.value))},t.handleKeyDown=function(e){var n=t.props,o=n.onInput,r=n.onChange,a=n.onEnter;return 13===e.keyCode?(t.setEditing(!1),r&&r(e,e.target.value),o&&o(e,e.target.value),a&&a(e,e.target.value),void(t.props.selfClear?e.target.value="":e.target.blur())):27===e.keyCode?(t.setEditing(!1),e.target.value=c(t.props.value),void e.target.blur()):void 0},t}n=e,(t=l).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var d=l.prototype;return d.componentDidMount=function(){var e=this.props.value,t=this.inputRef.current;t&&(t.value=c(e),this.props.autofocus&&(t.focus(),t.selectionStart=0,t.selectionEnd=t.value.length))},d.componentDidUpdate=function(e,t){var n=this.state.editing,o=e.value,r=this.props.value,a=this.inputRef.current;a&&!n&&o!==r&&(a.value=c(r))},d.setEditing=function(e){this.setState({editing:e})},d.render=function(){var e=this.props,t=(e.selfClear,e.onInput,e.onChange,e.onEnter,e.value,e.maxLength),n=e.placeholder,c=(e.autofocus,i(e,["selfClear","onInput","onChange","onEnter","value","maxLength","placeholder","autofocus"])),l=c.className,d=c.fluid,u=i(c,["className","fluid"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["Input",d&&"Input--fluid",l])},u,{children:[(0,o.createVNode)(1,"div","Input__baseline",".",16),(0,o.createVNode)(64,"input","Input__input",null,1,{placeholder:n,onInput:this.handleInput,onFocus:this.handleFocus,onBlur:this.handleBlur,onKeyDown:this.handleKeyDown,maxLength:t},null,this.inputRef)]})))},l}(o.Component);t.Input=l},function(e,t,n){"use strict";t.__esModule=!0,t.Knob=void 0;var o=n(0),r=n(5),a=n(10),i=n(19),c=n(130),l=n(131);t.Knob=function(e){if(Byond.IS_LTE_IE8)return(0,o.normalizeProps)((0,o.createComponentVNode)(2,l.NumberInput,Object.assign({},e)));var t=e.animated,n=e.forcedInputWidth,d=e.format,u=e.maxValue,s=e.minValue,m=e.onChange,p=e.onDrag,h=e.step,f=e.stepPixelSize,C=e.suppressFlicker,N=e.unit,b=e.value,V=e.className,g=e.style,v=e.fillValue,k=e.color,_=e.ranges,y=void 0===_?{}:_,L=e.size,B=e.bipolar,x=(e.children,e.popUpPosition),w=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["animated","forcedInputWidth","format","maxValue","minValue","onChange","onDrag","step","stepPixelSize","suppressFlicker","unit","value","className","style","fillValue","color","ranges","size","bipolar","children","popUpPosition"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.DraggableControl,Object.assign({dragMatrix:[0,-1]},{animated:t,forcedInputWidth:n,format:d,maxValue:u,minValue:s,onChange:m,onDrag:p,step:h,stepPixelSize:f,suppressFlicker:C,unit:N,value:b},{children:function(e){var t=e.dragging,n=(e.editing,e.value),c=e.displayValue,l=e.displayElement,d=e.inputElement,m=e.handleDragStart,p=(0,r.scale)(null!=v?v:c,s,u),h=(0,r.scale)(c,s,u),f=k||(0,r.keyOfMatchingRange)(null!=v?v:n,y)||"default",C=270*(h-.5);return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,a.classes)(["Knob","Knob--color--"+f,B&&"Knob--bipolar",V,(0,i.computeBoxClassName)(w)]),[(0,o.createVNode)(1,"div","Knob__circle",(0,o.createVNode)(1,"div","Knob__cursorBox",(0,o.createVNode)(1,"div","Knob__cursor"),2,{style:{transform:"rotate("+C+"deg)"}}),2),t&&(0,o.createVNode)(1,"div",(0,a.classes)(["Knob__popupValue",x&&"Knob__popupValue--"+x]),l,0),(0,o.createVNode)(32,"svg","Knob__ring Knob__ringTrackPivot",(0,o.createVNode)(32,"circle","Knob__ringTrack",null,1,{cx:"50",cy:"50",r:"50"}),2,{viewBox:"0 0 100 100"}),(0,o.createVNode)(32,"svg","Knob__ring Knob__ringFillPivot",(0,o.createVNode)(32,"circle","Knob__ringFill",null,1,{style:{"stroke-dashoffset":((B?2.75:2)-1.5*p)*Math.PI*50},cx:"50",cy:"50",r:"50"}),2,{viewBox:"0 0 100 100"}),d],0,Object.assign({},(0,i.computeBoxProps)(Object.assign({style:Object.assign({"font-size":L+"rem"},g)},w)),{onMouseDown:m})))}})))}},function(e,t,n){"use strict";t.__esModule=!0,t.LabeledControls=void 0;var o=n(0),r=n(181);function a(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var i=function(e){var t=e.children,n=a(e,["children"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Flex,Object.assign({mx:-.5,align:"stretch",justify:"space-between"},n,{children:t})))};t.LabeledControls=i;i.Item=function(e){var t=e.label,n=e.children,i=a(e,["label","children"]);return(0,o.createComponentVNode)(2,r.Flex.Item,{mx:1,children:(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Flex,Object.assign({minWidth:"52px",height:"100%",direction:"column",align:"center",textAlign:"center",justify:"space-between"},i,{children:[(0,o.createComponentVNode)(2,r.Flex.Item),(0,o.createComponentVNode)(2,r.Flex.Item,{children:n}),(0,o.createComponentVNode)(2,r.Flex.Item,{color:"label",children:t})]})))})}},function(e,t,n){"use strict";t.__esModule=!0,t.LabeledListDivider=t.LabeledListItem=t.LabeledList=void 0;var o=n(0),r=n(10),a=n(19),i=n(180),c=function(e){var t=e.children;return(0,o.createVNode)(1,"table","LabeledList",t,0)};t.LabeledList=c,c.defaultHooks=r.pureComponentHooks;var l=function(e){var t=e.className,n=e.label,i=e.labelColor,c=void 0===i?"label":i,l=e.color,d=e.textAlign,u=e.verticalAlign,s=e.buttons,m=e.content,p=e.children;return(0,o.createVNode)(1,"tr",(0,r.classes)(["LabeledList__row",t]),[(0,o.createComponentVNode)(2,a.Box,{as:"td",color:c,verticalAlign:u,className:(0,r.classes)(["LabeledList__cell","LabeledList__label"]),children:n?n+":":null}),(0,o.createComponentVNode)(2,a.Box,{as:"td",color:l,textAlign:d,verticalAlign:u,className:(0,r.classes)(["LabeledList__cell","LabeledList__content"]),colSpan:s?undefined:2,children:[m,p]}),s&&(0,o.createVNode)(1,"td","LabeledList__cell LabeledList__buttons",s,0)],0)};t.LabeledListItem=l,l.defaultHooks=r.pureComponentHooks;var d=function(e){var t=e.size?(0,a.unit)(Math.max(0,e.size-1)):0;return(0,o.createVNode)(1,"tr","LabeledList__row",(0,o.createVNode)(1,"td",null,(0,o.createComponentVNode)(2,i.Divider),2,{colSpan:3,style:{"padding-top":t,"padding-bottom":t}}),2)};t.LabeledListDivider=d,d.defaultHooks=r.pureComponentHooks,c.Item=l,c.Divider=d},function(e,t,n){"use strict";t.__esModule=!0,t.NanoMap=void 0;var o=n(0),r=n(2),a=n(1);var i=function(e){return e.stopPropagation&&e.stopPropagation(),e.preventDefault&&e.preventDefault(),e.cancelBubble=!0,e.returnValue=!1,!1},c=function(e){var t,n;function c(t){var n;n=e.call(this,t)||this;var o=window.innerWidth/2-256,r=window.innerHeight/2-256;return n.state={offsetX:o,offsetY:r,transform:"none",dragging:!1,originX:null,originY:null,zoom:1},n.handleDragStart=function(e){n.ref=e.target,n.setState({dragging:!1,originX:e.screenX,originY:e.screenY}),document.addEventListener("mousemove",n.handleDragMove),document.addEventListener("mouseup",n.handleDragEnd),i(e)},n.handleDragMove=function(e){n.setState((function(t){var n=Object.assign({},t),o=e.screenX-n.originX,r=e.screenY-n.originY;return t.dragging?(n.offsetX+=o,n.offsetY+=r,n.originX=e.screenX,n.originY=e.screenY):n.dragging=!0,n})),i(e)},n.handleDragEnd=function(e){n.setState({dragging:!1,originX:null,originY:null}),document.removeEventListener("mousemove",n.handleDragMove),document.removeEventListener("mouseup",n.handleDragEnd),i(e)},n.handleZoom=function(e,o){n.setState((function(e){var n=Math.min(Math.max(o,1),8),r=1.5*(n-e.zoom);e.zoom=n;var a=e.offsetX-262*r;a<-500&&(a=-500),a>500&&(a=500);var i=e.offsetY-256*r;return i<-200&&(i=-200),i>200&&(i=200),e.offsetX=a,e.offsetY=i,t.onZoom&&t.onZoom(e.zoom),e}))},n}return n=e,(t=c).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n,c.prototype.render=function(){var e=(0,a.useBackend)(this.context).config,t=this.state,n=t.dragging,i=t.offsetX,c=t.offsetY,d=t.zoom,u=void 0===d?1:d,s=this.props.children,m=280*u+"px",p={width:m,height:m,"margin-top":c+"px","margin-left":i+"px",overflow:"hidden",position:"relative","background-image":"url("+e.map+"_nanomap_z"+e.mapZLevel+".png)","background-size":"cover","background-repeat":"no-repeat","text-align":"center",cursor:n?"move":"auto"};return(0,o.createComponentVNode)(2,r.Box,{className:"NanoMap__container",children:[(0,o.createComponentVNode)(2,r.Box,{style:p,textAlign:"center",onMouseDown:this.handleDragStart,children:(0,o.createComponentVNode)(2,r.Box,{children:s})}),(0,o.createComponentVNode)(2,l,{zoom:u,onZoom:this.handleZoom})]})},c}(o.Component);t.NanoMap=c;c.Marker=function(e,t){var n=e.x,a=e.y,c=e.zoom,l=void 0===c?1:c,d=e.icon,u=e.tooltip,s=e.color,m=e.onClick,p=2*n*l-l-3,h=2*a*l-l-3;return(0,o.createVNode)(1,"div",null,(0,o.createComponentVNode)(2,r.Box,{position:"absolute",className:"NanoMap__marker",lineHeight:"0",bottom:h+"px",left:p+"px",onMouseDown:function(e){i(e),m(e)},children:[(0,o.createComponentVNode)(2,r.Icon,{name:d,color:s,fontSize:"6px"}),(0,o.createComponentVNode)(2,r.Tooltip,{content:u})]}),2)};var l=function(e,t){var n=(0,a.useBackend)(t),i=n.act,c=n.config,l=n.data;return(0,o.createComponentVNode)(2,r.Box,{className:"NanoMap__zoomer",children:(0,o.createComponentVNode)(2,r.LabeledList,{children:[(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Zoom",children:(0,o.createComponentVNode)(2,r.Slider,{minValue:"1",maxValue:"8",stepPixelSize:"10",format:function(e){return e+"x"},value:e.zoom,onDrag:function(t,n){return e.onZoom(t,n)}})}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Z-Level",children:l.map_levels.sort((function(e,t){return Number(e)-Number(t)})).map((function(e){return(0,o.createComponentVNode)(2,r.Button,{selected:~~e==~~c.mapZLevel,content:e,onClick:function(){i("setZLevel",{mapZLevel:e})}},e)}))})]})})};c.Zoomer=l},function(e,t,n){"use strict";t.__esModule=!0,t.Modal=void 0;var o=n(0),r=n(10),a=n(19),i=n(179);t.Modal=function(e){var t,n=e.className,c=e.children,l=e.onEnter,d=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","children","onEnter"]);return l&&(t=function(e){13===(e.which||e.keyCode)&&l(e)}),(0,o.createComponentVNode)(2,i.Dimmer,{onKeyDown:t,children:(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["Modal",n,(0,a.computeBoxClassName)(d)]),c,0,Object.assign({},(0,a.computeBoxProps)(d))))})}},function(e,t,n){"use strict";t.__esModule=!0,t.NoticeBox=void 0;var o=n(0),r=n(10),a=n(19);var i=function(e){var t=e.className,n=e.color,i=e.info,c=(e.warning,e.success),l=e.danger,d=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","color","info","warning","success","danger"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["NoticeBox",n&&"NoticeBox--color--"+n,i&&"NoticeBox--type--info",c&&"NoticeBox--type--success",l&&"NoticeBox--type--danger",t])},d)))};t.NoticeBox=i,i.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.ProgressBar=void 0;var o=n(0),r=n(5),a=n(10),i=n(19);var c=function(e){var t=e.className,n=e.value,c=e.minValue,l=void 0===c?0:c,d=e.maxValue,u=void 0===d?1:d,s=e.color,m=e.ranges,p=void 0===m?{}:m,h=e.children,f=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","value","minValue","maxValue","color","ranges","children"]),C=(0,r.scale)(n,l,u),N=h!==undefined,b=s||(0,r.keyOfMatchingRange)(n,p)||"default";return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,a.classes)(["ProgressBar","ProgressBar--color--"+b,t,(0,i.computeBoxClassName)(f)]),[(0,o.createVNode)(1,"div","ProgressBar__fill ProgressBar__fill--animated",null,1,{style:{width:100*(0,r.clamp01)(C)+"%"}}),(0,o.createVNode)(1,"div","ProgressBar__content",N?h:(0,r.toFixed)(100*C)+"%",0)],4,Object.assign({},(0,i.computeBoxProps)(f))))};t.ProgressBar=c,c.defaultHooks=a.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.Section=void 0;var o=n(0),r=n(10),a=n(19);var i=function(e){var t=e.className,n=e.title,i=e.level,c=void 0===i?1:i,l=e.buttons,d=e.fill,u=e.stretchContents,s=e.noTopPadding,m=e.children,p=e.scrollable,h=e.flexGrow,f=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","title","level","buttons","fill","stretchContents","noTopPadding","children","scrollable","flexGrow"]),C=!(0,r.isFalsy)(n)||!(0,r.isFalsy)(l),N=!(0,r.isFalsy)(m);return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["Section","Section--level--"+c,d&&"Section--fill",p&&"Section--scrollable",h&&"Section--flex",t].concat((0,a.computeBoxClassName)(f))),[C&&(0,o.createVNode)(1,"div","Section__title",[(0,o.createVNode)(1,"span","Section__titleText",n,0),(0,o.createVNode)(1,"div","Section__buttons",l,0)],4),N&&(0,o.createVNode)(1,"div",(0,r.classes)(["Section__content",!!u&&"Section__content--stretchContents",!!s&&"Section__content--noTopPadding"]),m,0)],0,Object.assign({},(0,a.computeBoxProps)(f))))};t.Section=i,i.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.Slider=void 0;var o=n(0),r=n(5),a=n(10),i=n(19),c=n(130),l=n(131);t.Slider=function(e){if(Byond.IS_LTE_IE8)return(0,o.normalizeProps)((0,o.createComponentVNode)(2,l.NumberInput,Object.assign({},e)));var t=e.animated,n=e.format,d=e.maxValue,u=e.minValue,s=e.onChange,m=e.onDrag,p=e.step,h=e.stepPixelSize,f=e.suppressFlicker,C=e.unit,N=e.value,b=e.className,V=e.fillValue,g=e.color,v=e.ranges,k=void 0===v?{}:v,_=e.children,y=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["animated","format","maxValue","minValue","onChange","onDrag","step","stepPixelSize","suppressFlicker","unit","value","className","fillValue","color","ranges","children"]),L=_!==undefined;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.DraggableControl,Object.assign({dragMatrix:[1,0]},{animated:t,format:n,maxValue:d,minValue:u,onChange:s,onDrag:m,step:p,stepPixelSize:h,suppressFlicker:f,unit:C,value:N},{children:function(e){var t=e.dragging,n=(e.editing,e.value),c=e.displayValue,l=e.displayElement,s=e.inputElement,m=e.handleDragStart,p=V!==undefined&&null!==V,h=((0,r.scale)(n,u,d),(0,r.scale)(null!=V?V:c,u,d)),f=(0,r.scale)(c,u,d),C=g||(0,r.keyOfMatchingRange)(null!=V?V:n,k)||"default";return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,a.classes)(["Slider","ProgressBar","ProgressBar--color--"+C,b,(0,i.computeBoxClassName)(y)]),[(0,o.createVNode)(1,"div",(0,a.classes)(["ProgressBar__fill",p&&"ProgressBar__fill--animated"]),null,1,{style:{width:100*(0,r.clamp01)(h)+"%",opacity:.4}}),(0,o.createVNode)(1,"div","ProgressBar__fill",null,1,{style:{width:100*(0,r.clamp01)(Math.min(h,f))+"%"}}),(0,o.createVNode)(1,"div","Slider__cursorOffset",[(0,o.createVNode)(1,"div","Slider__cursor"),(0,o.createVNode)(1,"div","Slider__pointer"),t&&(0,o.createVNode)(1,"div","Slider__popupValue",l,0)],0,{style:{width:100*(0,r.clamp01)(f)+"%"}}),(0,o.createVNode)(1,"div","ProgressBar__content",L?_:l,0),s],0,Object.assign({},(0,i.computeBoxProps)(y),{onMouseDown:m})))}})))}},function(e,t,n){"use strict";t.__esModule=!0,t.Tabs=void 0;var o=n(0),r=n(10),a=n(19),i=n(128);function c(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var l=function(e){var t=e.className,n=e.vertical,i=e.children,l=c(e,["className","vertical","children"]);return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["Tabs",n?"Tabs--vertical":"Tabs--horizontal",t,(0,a.computeBoxClassName)(l)]),(0,o.createVNode)(1,"div","Tabs__tabBox",i,0),2,Object.assign({},(0,a.computeBoxProps)(l))))};t.Tabs=l;l.Tab=function(e){var t=e.className,n=e.selected,a=e.altSelection,l=c(e,["className","selected","altSelection"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.Button,Object.assign({className:(0,r.classes)(["Tabs__tab",n&&"Tabs__tab--selected",a&&n&&"Tabs__tab--altSelection",t]),selected:!a&&n,color:"transparent"},l)))}},function(e,t,n){var o={"./AICard.js":462,"./APC.js":463,"./AccountsTerminal.js":464,"./AgentCard.js":465,"./AiAirlock.js":466,"./AiRestorer.js":467,"./AiSupermatter.js":468,"./AirAlarm.js":469,"./AlgaeFarm.js":471,"./AppearanceChanger.js":472,"./ArcadeBattle.js":473,"./AreaScrubberControl.js":474,"./AssemblyInfrared.js":475,"./AssemblyProx.js":476,"./AssemblyTimer.js":477,"./AtmosAlertConsole.js":478,"./AtmosControl.js":185,"./AtmosFilter.js":479,"./AtmosMixer.js":480,"./Autolathe.js":481,"./Batteryrack.js":482,"./BeaconLocator.js":483,"./Biogenerator.js":484,"./BodyDesigner.js":485,"./BodyScanner.js":486,"./BombTester.js":487,"./BotanyEditor.js":488,"./BotanyIsolator.js":489,"./BrigTimer.js":490,"./CameraConsole.js":186,"./Canister.js":491,"./ChemDispenser.js":492,"./ChemMaster.js":496,"./ClawMachine.js":497,"./Cleanbot.js":498,"./CloningConsole.js":499,"./ColorMate.js":500,"./CommunicationsConsole.js":188,"./Communicator.js":501,"./ComputerFabricator.js":502,"./CookingAppliance.js":503,"./CrewManifest.js":94,"./CrewMonitor.js":189,"./Cryo.js":504,"./CryoStorage.js":190,"./CryoStorageVr.js":505,"./DNAForensics.js":506,"./DNAModifier.js":507,"./DestinationTagger.js":508,"./DiseaseSplicer.js":509,"./DishIncubator.js":510,"./DisposalBin.js":511,"./DroneConsole.js":512,"./EmbeddedController.js":513,"./ExonetNode.js":514,"./ExosuitFabricator.js":132,"./Farmbot.js":515,"./Fax.js":516,"./FileCabinet.js":517,"./Floorbot.js":518,"./GasPump.js":519,"./GasTemperatureSystem.js":520,"./GeneralAtmoControl.js":521,"./GeneralRecords.js":522,"./Gps.js":523,"./GravityGenerator.js":524,"./GuestPass.js":525,"./Holodeck.js":526,"./ICAssembly.js":527,"./ICCircuit.js":528,"./ICDetailer.js":529,"./ICPrinter.js":530,"./IDCard.js":531,"./IdentificationComputer.js":133,"./InventoryPanel.js":532,"./InventoryPanelHuman.js":533,"./IsolationCentrifuge.js":534,"./JanitorCart.js":535,"./Jukebox.js":536,"./LawManager.js":537,"./LookingGlass.js":538,"./MechaControlConsole.js":539,"./Medbot.js":540,"./MedicalRecords.js":541,"./MessageMonitor.js":542,"./Microwave.js":543,"./MiningOreProcessingConsole.js":544,"./MiningStackingConsole.js":545,"./MiningVendor.js":546,"./MuleBot.js":547,"./NIF.js":548,"./NTNetRelay.js":549,"./Newscaster.js":550,"./NoticeBoard.js":551,"./NtosAccessDecrypter.js":552,"./NtosArcade.js":553,"./NtosAtmosControl.js":554,"./NtosCameraConsole.js":555,"./NtosCommunicationsConsole.js":556,"./NtosConfiguration.js":557,"./NtosCrewMonitor.js":558,"./NtosDigitalWarrant.js":559,"./NtosEmailAdministration.js":560,"./NtosEmailClient.js":193,"./NtosFileManager.js":561,"./NtosIdentificationComputer.js":562,"./NtosMain.js":563,"./NtosNetChat.js":564,"./NtosNetDos.js":565,"./NtosNetDownloader.js":566,"./NtosNetMonitor.js":567,"./NtosNetTransfer.js":568,"./NtosNewsBrowser.js":569,"./NtosOvermapNavigation.js":570,"./NtosPowerMonitor.js":571,"./NtosRCON.js":572,"./NtosRevelation.js":573,"./NtosShutoffMonitor.js":574,"./NtosStationAlertConsole.js":575,"./NtosSupermatterMonitor.js":576,"./NtosUAV.js":577,"./NtosWordProcessor.js":578,"./OmniFilter.js":579,"./OmniMixer.js":580,"./OperatingComputer.js":581,"./OvermapDisperser.js":582,"./OvermapEngines.js":583,"./OvermapHelm.js":584,"./OvermapNavigation.js":194,"./OvermapShieldGenerator.js":585,"./OvermapShipSensors.js":586,"./ParticleAccelerator.js":587,"./PartsLathe.js":588,"./PathogenicIsolator.js":589,"./Pda.js":590,"./Photocopier.js":605,"./PipeDispenser.js":606,"./PlantAnalyzer.js":607,"./PointDefenseControl.js":608,"./PortableGenerator.js":609,"./PortablePump.js":610,"./PortableScrubber.js":611,"./PortableTurret.js":612,"./PowerMonitor.js":135,"./PressureRegulator.js":613,"./PrisonerManagement.js":614,"./RCON.js":195,"./RIGSuit.js":615,"./Radio.js":616,"./RapidPipeDispenser.js":200,"./RequestConsole.js":617,"./ResearchConsole.js":618,"./ResearchServerController.js":619,"./ResleevingConsole.js":620,"./ResleevingPod.js":621,"./RoboticsControlConsole.js":622,"./RogueZones.js":623,"./Secbot.js":624,"./SecurityRecords.js":625,"./SeedStorage.js":626,"./ShieldCapacitor.js":627,"./ShieldGenerator.js":628,"./ShutoffMonitor.js":196,"./ShuttleControl.js":629,"./Signaler.js":199,"./Sleeper.js":630,"./SmartVend.js":631,"./Smes.js":632,"./SolarControl.js":633,"./SpaceHeater.js":634,"./Stack.js":635,"./StationAlertConsole.js":197,"./SuitCycler.js":636,"./SuitStorageUnit.js":637,"./SupermatterMonitor.js":198,"./SupplyConsole.js":638,"./TEGenerator.js":639,"./Tank.js":640,"./TankDispenser.js":641,"./TelecommsLogBrowser.js":642,"./TelecommsMachineBrowser.js":643,"./TelecommsMultitoolMenu.js":644,"./Teleporter.js":645,"./TelesciConsole.js":646,"./TimeClock.js":647,"./TransferValve.js":648,"./TurbineControl.js":649,"./Turbolift.js":650,"./Uplink.js":651,"./Vending.js":652,"./VolumePanel.js":653,"./VorePanel.js":654,"./Wires.js":655,"./XenoarchArtifactAnalyzer.js":656,"./XenoarchArtifactHarvester.js":657,"./XenoarchDepthScanner.js":658,"./XenoarchHandheldPowerUtilizer.js":659,"./XenoarchReplicator.js":660,"./XenoarchSpectrometer.js":661,"./XenoarchSuspension.js":662,"./pAIAtmos.js":663,"./pAIDirectives.js":664,"./pAIDoorjack.js":665,"./pAIInterface.js":666,"./pAIMedrecords.js":667,"./pAISecrecords.js":668};function r(e){var t=a(e);return n(t)}function a(e){if(!n.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}r.keys=function(){return Object.keys(o)},r.resolve=a,e.exports=r,r.id=461},function(e,t,n){"use strict";t.__esModule=!0,t.AICard=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.AICard=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.has_ai,u=l.integrity,s=l.backup_capacitor,m=l.flushing,p=l.has_laws,h=l.laws,f=l.wireless,C=l.radio;if(0===d)return(0,o.createComponentVNode)(2,i.Window,{width:600,height:470,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createVNode)(1,"h3",null,"No AI detected.",16)})})})});var N=null;N=u>=75?"green":u>=25?"yellow":"red";var b=null;return s>=75&&(b="green"),b=s>=25?"yellow":"red",(0,o.createComponentVNode)(2,i.Window,{width:600,height:470,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,display:"inline-block",children:(0,o.createVNode)(1,"h3",null,name,0)}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:N,value:u/100})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:b,value:s/100})})]})}),(0,o.createComponentVNode)(2,a.Box,{color:"red",children:(0,o.createVNode)(1,"h2",null,1===m?"Wipe of AI in progress...":"",0)})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Laws",children:!!p&&(0,o.createComponentVNode)(2,a.Box,{children:h.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",children:e},t)}))})||(0,o.createComponentVNode)(2,a.Box,{color:"red",children:(0,o.createVNode)(1,"h3",null,"No laws detected.",16)})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Wireless Activity",children:(0,o.createComponentVNode)(2,a.Button,{icon:f?"check":"times",content:f?"Enabled":"Disabled",color:f?"green":"red",onClick:function(){return c("wireless")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subspace Transceiver",children:(0,o.createComponentVNode)(2,a.Button,{icon:C?"check":"times",content:C?"Enabled":"Disabled",color:C?"green":"red",onClick:function(){return c("radio")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"AI Power",children:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"radiation",confirmIcon:"radiation",disabled:m||0===u,confirmColor:"red",content:"Shutdown",onClick:function(){return c("wipe")}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.APC=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(184),l=n(61);t.APC=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),c=(0,o.createComponentVNode)(2,u);return a.gridCheck?c=(0,o.createComponentVNode)(2,s):a.failTime&&(c=(0,o.createComponentVNode)(2,m)),(0,o.createComponentVNode)(2,i.Window,{width:450,height:475,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:c})})};var d={2:{color:"good",externalPowerText:"External Power",chargingText:"Fully Charged"},1:{color:"average",externalPowerText:"Low External Power",chargingText:"Charging"},0:{color:"bad",externalPowerText:"No External Power",chargingText:"Not Charging"}},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,u=l.locked&&!l.siliconUser,s=(l.normallyLocked,d[l.externalPower]||d[0]),m=d[l.chargingStatus]||d[0],p=l.powerChannels||[],h=l.powerCellStatus/100;return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.InterfaceLockNoticeBox,{deny:l.emagged,denialMessage:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{color:"bad",fontSize:"1.5rem",children:"Fault in ID authenticator."}),(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Please contact maintenance for service."})],4)}),(0,o.createComponentVNode)(2,a.Section,{title:"Power Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Main Breaker",color:s.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:l.isOperating?"power-off":"times",content:l.isOperating?"On":"Off",selected:l.isOperating&&!u,color:l.isOperating?"":"bad",disabled:u,onClick:function(){return i("breaker")}}),children:["[ ",s.externalPowerText," ]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Cell",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:"good",value:h})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Mode",color:m.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:l.chargeMode?"sync":"times",content:l.chargeMode?"Auto":"Off",selected:l.chargeMode,disabled:u,onClick:function(){return i("charge")}}),children:["[ ",m.chargingText," ]"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Power Channels",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[p.map((function(e){var t=e.topicParams;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.title,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{inline:!0,mx:2,color:e.status>=2?"good":"bad",children:e.status>=2?"On":"Off"}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Auto",selected:!u&&(1===e.status||3===e.status),disabled:u,onClick:function(){return i("channel",t.auto)}}),(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:"On",selected:!u&&2===e.status,disabled:u,onClick:function(){return i("channel",t.on)}}),(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Off",selected:!u&&0===e.status,disabled:u,onClick:function(){return i("channel",t.off)}})],4),children:[e.powerLoad," W"]},e.title)})),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Load",children:l.totalCharging?(0,o.createVNode)(1,"b",null,[l.totalLoad,(0,o.createTextVNode)(" W (+ "),l.totalCharging,(0,o.createTextVNode)(" W charging)")],0):(0,o.createVNode)(1,"b",null,[l.totalLoad,(0,o.createTextVNode)(" W")],0)})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Misc",buttons:!!l.siliconUser&&(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:"Overload",onClick:function(){return i("overload")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cover Lock",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:l.coverLocked?"lock":"unlock",content:l.coverLocked?"Engaged":"Disengaged",selected:l.coverLocked,disabled:u,onClick:function(){return i("cover")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Night Shift Lighting",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:"Disabled",selected:2===l.nightshiftSetting,onClick:function(){return i("nightshift",{nightshift:2})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:"Automatic",selected:1===l.nightshiftSetting,onClick:function(){return i("nightshift",{nightshift:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:"Enabled",selected:3===l.nightshiftSetting,onClick:function(){return i("nightshift",{nightshift:3})}})],4)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Emergency Lighting",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:l.emergencyLights?"Enabled":"Disabled",selected:l.emergencyLights,onClick:function(){return i("emergency_lighting")}})})]})})],4)},s=function(e,t){return(0,o.createComponentVNode)(2,l.FullscreenNotice,{title:"System Failure",children:[(0,o.createComponentVNode)(2,a.Box,{fontSize:"1.5rem",bold:!0,children:(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",verticalAlign:"middle",size:3,mr:"1rem"})}),(0,o.createComponentVNode)(2,a.Box,{fontSize:"1.5rem",bold:!0,children:"Power surge detected, grid check in effect..."})]})},m=function(e,t){var n=(0,r.useBackend)(t),i=n.data,c=n.act,l=(0,o.createComponentVNode)(2,a.Button,{icon:"repeat",content:"Restart Now",color:"good",onClick:function(){return c("reboot")}});return i.locked&&!i.siliconUser&&(l=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Swipe an ID card for manual reboot."})),(0,o.createComponentVNode)(2,a.Dimmer,{textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:(0,o.createVNode)(1,"h1",null,"SYSTEM FAILURE",16)}),(0,o.createComponentVNode)(2,a.Box,{color:"average",children:(0,o.createVNode)(1,"h2",null,"I/O regulators malfunction detected! Waiting for system reboot...",16)}),(0,o.createComponentVNode)(2,a.Box,{color:"good",children:["Automatic reboot in ",i.failTime," seconds..."]}),(0,o.createComponentVNode)(2,a.Box,{mt:4,children:l})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.AccountsTerminal=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.AccountsTerminal=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.id_inserted,s=d.id_card,m=d.access_level,p=d.machine_id;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:640,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Machine",color:"average",children:p}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID",children:(0,o.createComponentVNode)(2,a.Button,{icon:u?"eject":"sign-in-alt",fluid:!0,content:s,onClick:function(){return l("insert_card")}})})]})}),m>0&&(0,o.createComponentVNode)(2,c)]})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,s=c.creating_new_account,m=c.detailed_account_view;return(0,o.createComponentVNode)(2,a.Section,{title:"Menu",children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:!s&&!m,icon:"home",onClick:function(){return i("view_accounts_list")},children:"Home"}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:s,icon:"cog",onClick:function(){return i("create_account")},children:"New Account"}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{disabled:s,icon:"print",onClick:function(){return i("print")},children:"Print"})]}),s&&(0,o.createComponentVNode)(2,l)||m&&(0,o.createComponentVNode)(2,d)||(0,o.createComponentVNode)(2,u)]})},l=function(e,t){var n=(0,r.useBackend)(t).act,i=(0,r.useSharedState)(t,"holder",""),c=i[0],l=i[1],d=(0,r.useSharedState)(t,"money",""),u=d[0],s=d[1];return(0,o.createComponentVNode)(2,a.Section,{title:"Create Account",level:2,children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account Holder",children:(0,o.createComponentVNode)(2,a.Input,{value:c,fluid:!0,onInput:function(e,t){return l(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Initial Deposit",children:(0,o.createComponentVNode)(2,a.Input,{value:u,fluid:!0,onInput:function(e,t){return s(t)}})})]}),(0,o.createComponentVNode)(2,a.Button,{disabled:!c||!u,mt:1,fluid:!0,icon:"plus",onClick:function(){return n("finalise_create_account",{holder_name:c,starting_funds:u})},content:"Create"})]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.access_level,d=c.station_account_number,u=c.account_number,s=c.owner_name,m=c.money,p=c.suspended,h=c.transactions;return(0,o.createComponentVNode)(2,a.Section,{title:"Account Details",level:2,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"ban",selected:p,content:"Suspend",onClick:function(){return i("toggle_suspension")}}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account Number",children:["#",u]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Holder",children:s}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Balance",children:[m,"\u20ae"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:p?"bad":"good",children:p?"SUSPENDED":"Active"})]}),(0,o.createComponentVNode)(2,a.Section,{title:"CentCom Administrator",level:2,mt:1,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Payroll",children:(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"bad",fluid:!0,icon:"ban",confirmIcon:"ban",content:"Revoke",confirmContent:"This cannot be undone.",disabled:u===d,onClick:function(){return i("revoke_payroll")}})})})}),l>=2&&(0,o.createComponentVNode)(2,a.Section,{title:"Silent Funds Transfer",level:2,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("add_funds")},content:"Add Funds"}),(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("remove_funds")},content:"Remove Funds"})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Transactions",level:2,mt:1,children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Timestamp"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Target"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Reason"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Value"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Terminal"})]}),h.map((function(e,t){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:[e.date," ",e.time]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.target_name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.purpose}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[e.amount,"\u20ae"]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.source_terminal})]},t)}))]})})]})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.accounts;return(0,o.createComponentVNode)(2,a.Section,{title:"NanoTrasen Accounts",level:2,children:c.length&&(0,o.createComponentVNode)(2,a.LabeledList,{children:c.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.owner_name+e.suspended,color:e.suspended?"bad":null,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,content:"#"+e.account_number,onClick:function(){return i("view_account_detail",{account_index:e.account_index})}})},e.account_index)}))})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"There are no accounts available."})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AgentCard=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.AgentCard=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.entries,u=l.electronic_warfare;return(0,o.createComponentVNode)(2,i.Window,{width:550,height:400,theme:"syndicate",children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Info",children:(0,o.createComponentVNode)(2,a.Table,{children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c(e.name.toLowerCase().replace(/ /g,""))},icon:"cog"})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.value})]},e.name)}))})}),(0,o.createComponentVNode)(2,a.Section,{title:"Electronic Warfare",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{checked:u,content:u?"Electronic warfare is enabled. This will prevent you from being tracked by the AI.":"Electronic warfare disabled.",onClick:function(){return c("electronic_warfare")}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AiAirlock=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c={2:{color:"good",localStatusText:"Optimal"},1:{color:"average",localStatusText:"Caution"},0:{color:"bad",localStatusText:"Offline"}};t.AiAirlock=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=c[d.power.main]||c[0],s=c[d.power.backup]||c[0],m=c[d.shock]||c[0];return(0,o.createComponentVNode)(2,i.Window,{width:500,height:390,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Power Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Main",color:u.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",disabled:!d.power.main,content:"Disrupt",onClick:function(){return l("disrupt-main")}}),children:[d.power.main?"Online":"Offline"," ",d.wires.main_1&&d.wires.main_2?d.power.main_timeleft>0&&"["+d.power.main_timeleft+"s]":"[Wires have been cut!]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Backup",color:s.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",disabled:!d.power.backup,content:"Disrupt",onClick:function(){return l("disrupt-backup")}}),children:[d.power.backup?"Online":"Offline"," ",d.wires.backup_1&&d.wires.backup_2?d.power.backup_timeleft>0&&"["+d.power.backup_timeleft+"s]":"[Wires have been cut!]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Electrify",color:m.color,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",disabled:!(d.wires.shock&&0===d.shock),content:"Restore",onClick:function(){return l("shock-restore")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bolt",disabled:!d.wires.shock,content:"Temporary",onClick:function(){return l("shock-temp")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bolt",disabled:!d.wires.shock,content:"Permanent",onClick:function(){return l("shock-perm")}})],4),children:[2===d.shock?"Safe":"Electrified"," ",(d.wires.shock?d.shock_timeleft>0&&"["+d.shock_timeleft+"s]":"[Wires have been cut!]")||-1===d.shock_timeleft&&"[Permanent]"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Access and Door Control",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID Scan",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.id_scanner?"power-off":"times",content:d.id_scanner?"Enabled":"Disabled",selected:d.id_scanner,disabled:!d.wires.id_scanner,onClick:function(){return l("idscan-toggle")}}),children:!d.wires.id_scanner&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Bolts",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.locked?"lock":"unlock",content:d.locked?"Lowered":"Raised",selected:d.locked,disabled:!d.wires.bolts,onClick:function(){return l("bolt-toggle")}}),children:!d.wires.bolts&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Bolt Lights",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.lights?"power-off":"times",content:d.lights?"Enabled":"Disabled",selected:d.lights,disabled:!d.wires.lights,onClick:function(){return l("light-toggle")}}),children:!d.wires.lights&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Force Sensors",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.safe?"power-off":"times",content:d.safe?"Enabled":"Disabled",selected:d.safe,disabled:!d.wires.safe,onClick:function(){return l("safe-toggle")}}),children:!d.wires.safe&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Timing Safety",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.speed?"power-off":"times",content:d.speed?"Enabled":"Disabled",selected:d.speed,disabled:!d.wires.timing,onClick:function(){return l("speed-toggle")}}),children:!d.wires.timing&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Control",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.opened?"sign-out-alt":"sign-in-alt",content:d.opened?"Open":"Closed",selected:d.opened,disabled:d.locked||d.welded,onClick:function(){return l("open-close")}}),children:!(!d.locked&&!d.welded)&&(0,o.createVNode)(1,"span",null,[(0,o.createTextVNode)("[Door is "),d.locked?"bolted":"",d.locked&&d.welded?" and ":"",d.welded?"welded":"",(0,o.createTextVNode)("!]")],0)})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AiRestorerContent=t.AiRestorer=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.AiRestorer=function(){return(0,o.createComponentVNode)(2,i.Window,{width:370,height:360,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,c)})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.AI_present,d=c.error,u=c.name,s=c.laws,m=c.isDead,p=c.restoring,h=c.health,f=c.ejectable;return(0,o.createFragment)([d&&(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:d}),!!f&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:l?u:"----------",disabled:!l,onClick:function(){return i("PRG_eject")}}),!!l&&(0,o.createComponentVNode)(2,a.Section,{title:f?"System Status":u,buttons:(0,o.createComponentVNode)(2,a.Box,{inline:!0,bold:!0,color:m?"bad":"good",children:m?"Nonfunctional":"Functional"}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:h,minValue:0,maxValue:100,ranges:{good:[70,Infinity],average:[50,70],bad:[-Infinity,50]}})})}),!!p&&(0,o.createComponentVNode)(2,a.Box,{bold:!0,textAlign:"center",fontSize:"20px",color:"good",mt:1,children:"RECONSTRUCTION IN PROGRESS"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"plus",content:"Begin Reconstruction",disabled:p,mt:1,onClick:function(){return i("PRG_beginReconstruction")}}),(0,o.createComponentVNode)(2,a.Section,{title:"Laws",level:2,children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{className:"candystripe",children:e},e)}))})]})],0)};t.AiRestorerContent=c},function(e,t,n){"use strict";t.__esModule=!0,t.AiSupermatter=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=(n(20),n(61));t.AiSupermatter=function(e,t){var n=(0,r.useBackend)(t).data,a=(n.integrity_percentage,n.ambient_temp,n.ambient_pressure,n.detonating),c=(0,o.createComponentVNode)(2,d);return a&&(c=(0,o.createComponentVNode)(2,l)),(0,o.createComponentVNode)(2,i.Window,{width:500,height:300,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:c})})};var l=function(e,t){return(0,o.createComponentVNode)(2,c.FullscreenNotice,{title:"DETONATION IMMINENT",children:(0,o.createComponentVNode)(2,a.Box,{fontSize:"1.5rem",bold:!0,color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{color:"bad",name:"exclamation-triangle",verticalAlign:"middle",size:3,mr:"1rem"}),(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"CRYSTAL DELAMINATING"}),(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Evacuate area immediately"})]})})},d=function(e,t){var n=(0,r.useBackend)(t).data,i=n.integrity_percentage,c=n.ambient_temp,l=n.ambient_pressure;return(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Crystal Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:i,maxValue:100,ranges:{good:[90,Infinity],average:[25,90],bad:[-Infinity,25]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Environment Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:c,maxValue:1e4,ranges:{bad:[5e3,Infinity],average:[4e3,5e3],good:[-Infinity,4e3]},children:[c," K"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Environment Pressure",children:[l," kPa"]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AirAlarm=void 0;var o=n(0),r=n(5),a=(n(7),n(1)),i=n(2),c=n(28),l=n(3),d=n(184),u=n(470);t.AirAlarm=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),i=r.locked&&!r.siliconUser&&!r.remoteUser;return(0,o.createComponentVNode)(2,l.Window,{width:440,height:650,resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d.InterfaceLockNoticeBox),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m),!i&&(0,o.createComponentVNode)(2,h)]})})};var s=function(e,t){var n=(0,a.useBackend)(t).data,l=(n.environment_data||[]).filter((function(e){return e.value>=.01})),d={0:{color:"good",localStatusText:"Optimal"},1:{color:"average",localStatusText:"Caution"},2:{color:"bad",localStatusText:"Danger (Internals Required)"}},u=d[n.danger_level]||d[0];return(0,o.createComponentVNode)(2,i.Section,{title:"Air Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[l.length>0&&(0,o.createFragment)([l.map((function(e){var t=d[e.danger_level]||d[0];return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:(0,c.getGasLabel)(e.name),color:t.color,children:[(0,r.toFixed)(e.value,2),e.unit]},e.name)})),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Local status",color:u.color,children:u.localStatusText}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Area status",color:n.atmos_alarm||n.fire_alarm?"bad":"good",children:(n.atmos_alarm?"Atmosphere Alarm":n.fire_alarm&&"Fire Alarm")||"Nominal"})],0)||(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Warning",color:"bad",children:"Cannot obtain air sample for analysis."}),!!n.emagged&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Warning",color:"bad",children:"Safety measures offline. Device may exhibit abnormal behavior."})]})})},m=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.target_temperature,d=c.rcon;return(0,o.createComponentVNode)(2,i.Section,{title:"Comfort Settings",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Remote Control",children:[(0,o.createComponentVNode)(2,i.Button,{selected:1===d,content:"Off",onClick:function(){return r("rcon",{rcon:1})}}),(0,o.createComponentVNode)(2,i.Button,{selected:2===d,content:"Auto",onClick:function(){return r("rcon",{rcon:2})}}),(0,o.createComponentVNode)(2,i.Button,{selected:3===d,content:"On",onClick:function(){return r("rcon",{rcon:3})}})]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Thermostat",children:(0,o.createComponentVNode)(2,i.Button,{content:l,onClick:function(){return r("temperature")}})})]})})},p={home:{title:"Air Controls",component:function(){return f}},vents:{title:"Vent Controls",component:function(){return C}},scrubbers:{title:"Scrubber Controls",component:function(){return N}},modes:{title:"Operating Mode",component:function(){return b}},thresholds:{title:"Alarm Thresholds",component:function(){return V}}},h=function(e,t){var n=(0,a.useLocalState)(t,"screen"),r=n[0],c=n[1],l=p[r]||p.home,d=l.component();return(0,o.createComponentVNode)(2,i.Section,{title:l.title,buttons:r&&(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return c()}}),children:(0,o.createComponentVNode)(2,d)})},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=(0,a.useLocalState)(t,"screen"),d=(l[0],l[1]),u=c.mode,s=c.atmos_alarm;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:s?"exclamation-triangle":"exclamation",color:s&&"caution",content:"Area Atmosphere Alarm",onClick:function(){return r(s?"reset":"alarm")}}),(0,o.createComponentVNode)(2,i.Box,{mt:1}),(0,o.createComponentVNode)(2,i.Button,{icon:3===u?"exclamation-triangle":"exclamation",color:3===u&&"danger",content:"Panic Siphon",onClick:function(){return r("mode",{mode:3===u?1:3})}}),(0,o.createComponentVNode)(2,i.Box,{mt:2}),(0,o.createComponentVNode)(2,i.Button,{icon:"sign-out-alt",content:"Vent Controls",onClick:function(){return d("vents")}}),(0,o.createComponentVNode)(2,i.Box,{mt:1}),(0,o.createComponentVNode)(2,i.Button,{icon:"filter",content:"Scrubber Controls",onClick:function(){return d("scrubbers")}}),(0,o.createComponentVNode)(2,i.Box,{mt:1}),(0,o.createComponentVNode)(2,i.Button,{icon:"cog",content:"Operating Mode",onClick:function(){return d("modes")}}),(0,o.createComponentVNode)(2,i.Box,{mt:1}),(0,o.createComponentVNode)(2,i.Button,{icon:"chart-bar",content:"Alarm Thresholds",onClick:function(){return d("thresholds")}})],4)},C=function(e,t){var n=(0,a.useBackend)(t).data.vents;return n&&0!==n.length?n.map((function(e){return(0,o.createComponentVNode)(2,u.Vent,{vent:e},e.id_tag)})):"Nothing to show"},N=function(e,t){var n=(0,a.useBackend)(t).data.scrubbers;return n&&0!==n.length?n.map((function(e){return(0,o.createComponentVNode)(2,u.Scrubber,{scrubber:e},e.id_tag)})):"Nothing to show"},b=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.modes;return c&&0!==c.length?c.map((function(e){return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:e.selected?"check-square-o":"square-o",selected:e.selected,color:e.selected&&e.danger&&"danger",content:e.name,onClick:function(){return r("mode",{mode:e.mode})}}),(0,o.createComponentVNode)(2,i.Box,{mt:1})],4,e.mode)})):"Nothing to show"},V=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data.thresholds;return(0,o.createVNode)(1,"table","LabeledList",[(0,o.createVNode)(1,"thead",null,(0,o.createVNode)(1,"tr",null,[(0,o.createVNode)(1,"td"),(0,o.createVNode)(1,"td","color-bad","min2",16),(0,o.createVNode)(1,"td","color-average","min1",16),(0,o.createVNode)(1,"td","color-average","max1",16),(0,o.createVNode)(1,"td","color-bad","max2",16)],4),2),(0,o.createVNode)(1,"tbody",null,d.map((function(e){return(0,o.createVNode)(1,"tr",null,[(0,o.createVNode)(1,"td","LabeledList__label",(0,o.createVNode)(1,"span","color-"+(0,c.getGasColor)(e.name),(0,c.getGasLabel)(e.name),0),2),e.settings.map((function(e){return(0,o.createVNode)(1,"td",null,(0,o.createComponentVNode)(2,i.Button,{content:(0,r.toFixed)(e.selected,2),onClick:function(){return l("threshold",{env:e.env,"var":e.val})}}),2,null,e.val)}))],0,null,e.name)})),0)],4,{style:{width:"100%"}})}},function(e,t,n){"use strict";t.__esModule=!0,t.Scrubber=t.Vent=void 0;var o=n(0),r=n(7),a=n(1),i=n(2);n(28);t.Vent=function(e,t){var n=e.vent,c=(0,a.useBackend)(t).act,l=n.id_tag,d=n.long_name,u=n.power,s=n.checks,m=n.excheck,p=n.incheck,h=n.direction,f=n.external,C=n.internal,N=n.extdefault,b=n.intdefault;return(0,o.createComponentVNode)(2,i.Section,{level:2,title:(0,r.decodeHtmlEntities)(d),buttons:(0,o.createComponentVNode)(2,i.Button,{icon:u?"power-off":"times",selected:u,content:u?"On":"Off",onClick:function(){return c("power",{id_tag:l,val:Number(!u)})}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mode",children:(0,o.createComponentVNode)(2,i.Button,{icon:"sign-in-alt",content:"siphon"!==h?"Pressurizing":"Siphoning",color:"siphon"===h&&"danger",onClick:function(){return c("direction",{id_tag:l,val:Number("siphon"===h)})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pressure Regulator",children:[(0,o.createComponentVNode)(2,i.Button,{icon:"sign-in-alt",content:"Internal",selected:p,onClick:function(){return c("incheck",{id_tag:l,val:s})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"sign-out-alt",content:"External",selected:m,onClick:function(){return c("excheck",{id_tag:l,val:s})}})]}),!!p&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Internal Target",children:[(0,o.createComponentVNode)(2,i.NumberInput,{value:Math.round(C),unit:"kPa",width:"75px",minValue:0,step:10,maxValue:5066,onChange:function(e,t){return c("set_internal_pressure",{id_tag:l,value:t})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"undo",disabled:b,content:"Reset",onClick:function(){return c("reset_internal_pressure",{id_tag:l})}})]}),!!m&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"External Target",children:[(0,o.createComponentVNode)(2,i.NumberInput,{value:Math.round(f),unit:"kPa",width:"75px",minValue:0,step:10,maxValue:5066,onChange:function(e,t){return c("set_external_pressure",{id_tag:l,value:t})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"undo",disabled:N,content:"Reset",onClick:function(){return c("reset_external_pressure",{id_tag:l})}})]})]})})};t.Scrubber=function(e,t){var n=e.scrubber,c=(0,a.useBackend)(t).act,l=n.long_name,d=n.power,u=n.scrubbing,s=n.id_tag,m=(n.widenet,n.filters);return(0,o.createComponentVNode)(2,i.Section,{level:2,title:(0,r.decodeHtmlEntities)(l),buttons:(0,o.createComponentVNode)(2,i.Button,{icon:d?"power-off":"times",content:d?"On":"Off",selected:d,onClick:function(){return c("power",{id_tag:s,val:Number(!d)})}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mode",children:(0,o.createComponentVNode)(2,i.Button,{icon:u?"filter":"sign-in-alt",color:u||"danger",content:u?"Scrubbing":"Siphoning",onClick:function(){return c("scrubbing",{id_tag:s,val:Number(!u)})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Filters",children:u&&m.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{icon:e.val?"check-square-o":"square-o",content:e.name,title:e.name,selected:e.val,onClick:function(){return c(e.command,{id_tag:s,val:!e.val})}},e.name)}))||"N/A"})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AlgaeFarm=void 0;var o=n(0),r=n(1),a=n(2),i=(n(20),n(3)),c=(n(5),n(7));t.AlgaeFarm=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.usePower,s=d.materials,m=d.last_flow_rate,p=d.last_power_draw,h=d.inputDir,f=d.outputDir,C=d.input,N=d.output,b=d.errorText;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:300,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[b&&(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",verticalAlign:"middle",children:b})}),(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:"Processing",selected:2===u,onClick:function(){return l("toggle")}}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate",children:[m," L/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Draw",children:[p," W"]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider,{size:1}),s.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:(0,c.capitalize)(e.display),children:[(0,o.createComponentVNode)(2,a.ProgressBar,{width:"80%",value:e.qty,maxValue:e.max,children:[e.qty,"/",e.max]}),(0,o.createComponentVNode)(2,a.Button,{ml:1,content:"Eject",onClick:function(){return l("ejectMaterial",{mat:e.name})}})]},e.name)}))]}),(0,o.createComponentVNode)(2,a.Table,{mt:1,children:(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Gas Input ("+h+")",children:C?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Pressure",children:[C.pressure," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:C.name,children:[C.percent,"% (",C.moles," moles)"]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No connection detected."})})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Gas Output ("+f+")",children:N?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Pressure",children:[N.pressure," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:N.name,children:[N.percent,"% (",N.moles," moles)"]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No connection detected."})})})]})})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AppearanceChanger=void 0;var o=n(0),r=n(9),a=n(7),i=n(1),c=n(2),l=n(3);t.AppearanceChanger=function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.config),N=n.data,b=N.name,V=N.specimen,g=N.gender,v=N.gender_id,k=N.hair_style,_=N.facial_hair_style,y=N.ear_style,L=N.tail_style,B=N.wing_style,x=N.change_race,w=N.change_gender,S=N.change_eye_color,I=N.change_skin_tone,T=N.change_skin_color,A=N.change_hair_color,E=N.change_facial_hair_color,M=N.change_hair,P=N.change_facial_hair,O=N.mapRef,F=r.title,D=S||I||T||A||E,R=-1;x?R=0:w?R=1:D?R=2:M?R=4:P&&(R=5);var j=(0,i.useLocalState)(t,"tabIndex",R),W=j[0],z=j[1];return(0,o.createComponentVNode)(2,l.Window,{width:700,height:650,title:(0,a.decodeHtmlEntities)(F),children:(0,o.createComponentVNode)(2,l.Window.Content,{children:[(0,o.createComponentVNode)(2,c.Section,{title:"Reflection",children:(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,c.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:b}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Species",color:x?null:"grey",children:V}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Biological Sex",color:w?null:"grey",children:g?(0,a.capitalize)(g):"Not Set"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Gender Identity",color:D?null:"grey",children:v?(0,a.capitalize)(v):"Not Set"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Hair Style",color:M?null:"grey",children:k?(0,a.capitalize)(k):"Not Set"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Facial Hair Style",color:P?null:"grey",children:_?(0,a.capitalize)(_):"Not Set"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Ear Style",color:M?null:"grey",children:y?(0,a.capitalize)(y):"Not Set"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Tail Style",color:M?null:"grey",children:L?(0,a.capitalize)(L):"Not Set"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Wing Style",color:M?null:"grey",children:B?(0,a.capitalize)(B):"Not Set"})]})}),(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.ByondUi,{style:{width:"256px",height:"256px"},params:{id:O,type:"map"}})})]})}),(0,o.createComponentVNode)(2,c.Tabs,{children:[x?(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:0===W,onClick:function(){return z(0)},children:"Race"}):null,w?(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:1===W,onClick:function(){return z(1)},children:"Gender & Sex"}):null,D?(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:2===W,onClick:function(){return z(2)},children:"Colors"}):null,M?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:3===W,onClick:function(){return z(3)},children:"Hair"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:5===W,onClick:function(){return z(5)},children:"Ear"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:6===W,onClick:function(){return z(6)},children:"Tail"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:7===W,onClick:function(){return z(7)},children:"Wing"})],4):null,P?(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:4===W,onClick:function(){return z(4)},children:"Facial Hair"}):null]}),(0,o.createComponentVNode)(2,c.Box,{height:"43%",children:[x&&0===W?(0,o.createComponentVNode)(2,d):null,w&&1===W?(0,o.createComponentVNode)(2,u):null,D&&2===W?(0,o.createComponentVNode)(2,s):null,M&&3===W?(0,o.createComponentVNode)(2,m):null,P&&4===W?(0,o.createComponentVNode)(2,p):null,M&&5===W?(0,o.createComponentVNode)(2,h):null,M&&6===W?(0,o.createComponentVNode)(2,f):null,M&&7===W?(0,o.createComponentVNode)(2,C):null]})]})})};var d=function(e,t){var n=(0,i.useBackend)(t),a=n.act,l=n.data,d=l.species,u=l.specimen,s=(0,r.sortBy)((function(e){return e.specimen}))(d||[]);return(0,o.createComponentVNode)(2,c.Section,{title:"Species",fill:!0,scrollable:!0,children:s.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{content:e.specimen,selected:u===e.specimen,onClick:function(){return a("race",{race:e.specimen})}},e.specimen)}))})},u=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=a.gender,d=a.gender_id,u=a.genders,s=a.id_genders;return(0,o.createComponentVNode)(2,c.Section,{title:"Gender & Sex",fill:!0,scrollable:!0,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Biological Sex",children:u.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{selected:e.gender_key===l,content:e.gender_name,onClick:function(){return r("gender",{gender:e.gender_key})}},e.gender_key)}))}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Gender Identity",children:s.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{selected:e.gender_key===d,content:e.gender_name,onClick:function(){return r("gender_id",{gender_id:e.gender_key})}},e.gender_key)}))})]})})},s=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=a.change_eye_color,d=a.change_skin_tone,u=a.change_skin_color,s=a.change_hair_color,m=a.change_facial_hair_color,p=a.eye_color,h=a.skin_color,f=a.hair_color,C=a.facial_hair_color,N=a.ears_color,b=a.ears2_color,V=a.tail_color,g=a.tail2_color,v=a.wing_color,k=a.wing2_color;return(0,o.createComponentVNode)(2,c.Section,{title:"Colors",fill:!0,scrollable:!0,children:[l?(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:p,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Eye Color",onClick:function(){return r("eye_color")}})]}):null,d?(0,o.createComponentVNode)(2,c.Box,{children:(0,o.createComponentVNode)(2,c.Button,{content:"Change Skin Tone",onClick:function(){return r("skin_tone")}})}):null,u?(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:h,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Skin Color",onClick:function(){return r("skin_color")}})]}):null,s?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:f,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Hair Color",onClick:function(){return r("hair_color")}})]}),(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:N,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Ears Color",onClick:function(){return r("ears_color")}})]}),(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:b,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Secondary Ears Color",onClick:function(){return r("ears2_color")}})]}),(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:V,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Tail Color",onClick:function(){return r("tail_color")}})]}),(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:g,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Secondary Tail Color",onClick:function(){return r("tail2_color")}})]}),(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:v,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Wing Color",onClick:function(){return r("wing_color")}})]}),(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:k,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Secondary Wing Color",onClick:function(){return r("wing2_color")}})]})],4):null,m?(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.ColorBox,{color:C,mr:1}),(0,o.createComponentVNode)(2,c.Button,{content:"Change Facial Hair Color",onClick:function(){return r("facial_hair_color")}})]}):null]})},m=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=a.hair_style,d=a.hair_styles;return(0,o.createComponentVNode)(2,c.Section,{title:"Hair",fill:!0,scrollable:!0,children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return r("hair",{hair:e.hairstyle})},selected:e.hairstyle===l,content:e.hairstyle},e.hairstyle)}))})},p=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=a.facial_hair_style,d=a.facial_hair_styles;return(0,o.createComponentVNode)(2,c.Section,{title:"Facial Hair",fill:!0,scrollable:!0,children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return r("facial_hair",{facial_hair:e.facialhairstyle})},selected:e.facialhairstyle===l,content:e.facialhairstyle},e.facialhairstyle)}))})},h=function(e,t){var n=(0,i.useBackend)(t),a=n.act,l=n.data,d=l.ear_style,u=l.ear_styles;return(0,o.createComponentVNode)(2,c.Section,{title:"Ears",fill:!0,scrollable:!0,children:[(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return a("ear",{clear:!0})},selected:null===d,content:"-- Not Set --"}),(0,r.sortBy)((function(e){return e.name.toLowerCase()}))(u).map((function(e){return(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return a("ear",{ref:e.instance})},selected:e.name===d,content:e.name},e.instance)}))]})},f=function(e,t){var n=(0,i.useBackend)(t),a=n.act,l=n.data,d=l.tail_style,u=l.tail_styles;return(0,o.createComponentVNode)(2,c.Section,{title:"Tails",fill:!0,scrollable:!0,children:[(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return a("tail",{clear:!0})},selected:null===d,content:"-- Not Set --"}),(0,r.sortBy)((function(e){return e.name.toLowerCase()}))(u).map((function(e){return(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return a("tail",{ref:e.instance})},selected:e.name===d,content:e.name},e.instance)}))]})},C=function(e,t){var n=(0,i.useBackend)(t),a=n.act,l=n.data,d=l.wing_style,u=l.wing_styles;return(0,o.createComponentVNode)(2,c.Section,{title:"Wings",fill:!0,scrollable:!0,children:[(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return a("wing",{clear:!0})},selected:null===d,content:"-- Not Set --"}),(0,r.sortBy)((function(e){return e.name.toLowerCase()}))(u).map((function(e){return(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return a("wing",{ref:e.instance})},selected:e.name===d,content:e.name},e.instance)}))]})}},function(e,t,n){"use strict";t.__esModule=!0,t.ArcadeBattle=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.ArcadeBattle=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=(l.name,l.temp),u=l.enemyAction,s=l.enemyName,m=l.playerHP,p=l.playerMP,h=l.enemyHP,f=(l.enemyMP,l.gameOver);return(0,o.createComponentVNode)(2,i.Window,{width:400,height:240,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:s,textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Section,{color:"label",children:[(0,o.createComponentVNode)(2,a.Box,{children:d}),(0,o.createComponentVNode)(2,a.Box,{children:!f&&u})]}),(0,o.createComponentVNode)(2,a.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Player Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,minValue:0,maxValue:30,ranges:{olive:[31,Infinity],good:[20,31],average:[10,20],bad:[-Infinity,10]},children:[m,"HP"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Player Magic",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:p,minValue:0,maxValue:10,ranges:{purple:[11,Infinity],violet:[3,11],bad:[-Infinity,3]},children:[p,"MP"]})})]})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Enemy HP",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:h,minValue:0,maxValue:45,ranges:{olive:[31,Infinity],good:[20,31],average:[10,20],bad:[-Infinity,10]},children:[h,"HP"]})})})})]}),f&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:1,color:"green",content:"New Game",onClick:function(){return c("newgame")}})||(0,o.createComponentVNode)(2,a.Flex,{mt:2,justify:"space-between",spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"fist-raised",tooltip:"Go in for the kill!",tooltipPosition:"top",onClick:function(){return c("attack")},content:"Attack!"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"band-aid",tooltip:"Heal yourself!",tooltipPosition:"top",onClick:function(){return c("heal")},content:"Heal!"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"magic",tooltip:"Recharge your magic!",tooltipPosition:"top",onClick:function(){return c("charge")},content:"Recharge!"})})]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AreaScrubberControl=void 0;var o=n(0),r=n(2),a=n(1),i=n(3),c=n(7);t.AreaScrubberControl=function(e,t){var n=(0,a.useBackend)(t),c=n.act,d=n.data,u=(0,a.useLocalState)(t,"showArea",!1),s=u[0],m=u[1],p=d.scrubbers;return p?(0,o.createComponentVNode)(2,i.Window,{width:600,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,r.Section,{children:[(0,o.createComponentVNode)(2,r.Flex,{wrap:"wrap",children:[(0,o.createComponentVNode)(2,r.Flex.Item,{m:"2px",basis:"49%",children:(0,o.createComponentVNode)(2,r.Button,{textAlign:"center",fluid:!0,icon:"search",content:"Scan",onClick:function(){return c("scan")}})}),(0,o.createComponentVNode)(2,r.Flex.Item,{m:"2px",basis:"49%",grow:1,children:(0,o.createComponentVNode)(2,r.Button,{textAlign:"center",fluid:!0,icon:"layer-group",content:"Show Areas",selected:s,onClick:function(){return m(!s)}})}),(0,o.createComponentVNode)(2,r.Flex.Item,{m:"2px",basis:"49%",children:(0,o.createComponentVNode)(2,r.Button,{textAlign:"center",fluid:!0,icon:"toggle-on",content:"All On",onClick:function(){return c("allon")}})}),(0,o.createComponentVNode)(2,r.Flex.Item,{m:"2px",basis:"49%",grow:1,children:(0,o.createComponentVNode)(2,r.Button,{textAlign:"center",fluid:!0,icon:"toggle-off",content:"All Off",onClick:function(){return c("alloff")}})})]}),(0,o.createComponentVNode)(2,r.Flex,{wrap:"wrap",children:p.map((function(e){return(0,o.createComponentVNode)(2,r.Flex.Item,{m:"2px",basis:"32%",children:(0,o.createComponentVNode)(2,l,{scrubber:e,showArea:s})},e.id)}))})]})})}):(0,o.createComponentVNode)(2,r.Section,{title:"Error",children:[(0,o.createComponentVNode)(2,r.Box,{color:"bad",children:"No Scrubbers Detected."}),(0,o.createComponentVNode)(2,r.Button,{fluid:!0,icon:"search",content:"Scan",onClick:function(){return c("scan")}})]})};var l=function(e,t){var n=(0,a.useBackend)(t).act,i=e.scrubber,l=e.showArea;return(0,o.createComponentVNode)(2,r.Section,{title:i.name,children:[(0,o.createComponentVNode)(2,r.Button,{fluid:!0,icon:"power-off",content:i.on?"Enabled":"Disabled",selected:i.on,onClick:function(){return n("toggle",{id:i.id})}}),(0,o.createComponentVNode)(2,r.LabeledList,{children:[(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Pressure",children:[i.pressure," kPa"]}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Flow Rate",children:[i.flow_rate," L/s"]}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Load",children:[i.load," W"]}),l&&(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Area",children:(0,c.toTitleCase)(i.area)})]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.AssemblyInfrared=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.AssemblyInfrared=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.visible;return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Infrared Unit",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Laser",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",fluid:!0,selected:d,onClick:function(){return c("state")},children:d?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Visibility",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eye",fluid:!0,selected:u,onClick:function(){return c("visible")},children:u?"Able to be seen":"Invisible"})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AssemblyProx=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=n(20);t.AssemblyProx=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data,s=u.timing,m=u.time,p=u.range,h=u.maxRange,f=u.scanning;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,i.Section,{title:"Timing Unit",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Timer",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"stopwatch",selected:s,onClick:function(){return d("timing")},children:s?"Counting Down":"Disabled"}),children:(0,o.createComponentVNode)(2,i.NumberInput,{animated:!0,fluid:!0,value:m/10,minValue:0,maxValue:600,format:function(e){return(0,l.formatTime)((0,r.round)(e))},onDrag:function(e,t){return d("set_time",{time:t})}})})})}),(0,o.createComponentVNode)(2,i.Section,{title:"Prox Unit",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Range",children:(0,o.createComponentVNode)(2,i.NumberInput,{minValue:1,value:p,maxValue:h,onDrag:function(e,t){return d("range",{range:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Armed",children:[(0,o.createComponentVNode)(2,i.Button,{mr:1,icon:f?"lock":"lock-open",selected:f,onClick:function(){return d("scanning")},children:f?"ARMED":"Unarmed"}),"Movement sensor is active when armed!"]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AssemblyTimer=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=n(20);t.AssemblyTimer=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data,s=u.timing,m=u.time;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,i.Section,{title:"Timing Unit",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Timer",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"stopwatch",selected:s,onClick:function(){return d("timing")},children:s?"Counting Down":"Disabled"}),children:(0,o.createComponentVNode)(2,i.NumberInput,{animated:!0,fluid:!0,value:m/10,minValue:0,maxValue:600,format:function(e){return(0,l.formatTime)((0,r.round)(e))},onDrag:function(e,t){return d("set_time",{time:t})}})})})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosAlertConsole=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.AtmosAlertConsole=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.priority_alarms||[],u=l.minor_alarms||[];return(0,o.createComponentVNode)(2,i.Window,{width:350,height:300,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Alarms",children:(0,o.createVNode)(1,"ul",null,[0===d.length&&(0,o.createVNode)(1,"li","color-good","No Priority Alerts",16),d.map((function(e){return(0,o.createVNode)(1,"li",null,(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:e.name,color:"bad",onClick:function(){return c("clear",{ref:e.ref})}}),2,null,e.name)})),0===u.length&&(0,o.createVNode)(1,"li","color-good","No Minor Alerts",16),u.map((function(e){return(0,o.createVNode)(1,"li",null,(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:e.name,color:"average",onClick:function(){return c("clear",{ref:e.ref})}}),2,null,e.name)}))],0)})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosFilter=void 0;var o=n(0),r=n(1),a=n(2),i=(n(28),n(3));t.AtmosFilter=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.filter_types||[];return(0,o.createComponentVNode)(2,i.Window,{width:390,height:187,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.on?"power-off":"times",content:l.on?"On":"Off",selected:l.on,onClick:function(){return c("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transfer Rate",children:[(0,o.createComponentVNode)(2,a.Box,{inline:!0,mr:1,children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:l.last_flow_rate,format:function(e){return e+" L/s"}})}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:parseFloat(l.rate),width:"63px",unit:"L/s",minValue:0,maxValue:200,onDrag:function(e,t){return c("rate",{rate:t})}}),(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"plus",content:"Max",disabled:l.rate===l.max_rate,onClick:function(){return c("rate",{rate:"max"})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Filter",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{selected:e.selected,content:e.name,onClick:function(){return c("filter",{filterset:e.f_type})}},e.name)}))})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosMixer=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.AtmosMixer=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data;return(0,o.createComponentVNode)(2,i.Window,{width:370,height:195,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.on?"power-off":"times",content:l.on?"On":"Off",selected:l.on,onClick:function(){return c("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Output Pressure",children:[(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:parseFloat(l.set_pressure),unit:"kPa",width:"75px",minValue:0,maxValue:l.max_pressure,step:10,onChange:function(e,t){return c("pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"plus",content:"Max",disabled:l.set_pressure===l.max_pressure,onClick:function(){return c("pressure",{pressure:"max"})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider,{size:1}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{color:"label",children:(0,o.createVNode)(1,"u",null,"Concentrations",16)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Node 1 ("+l.node1_dir+")",children:(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:l.node1_concentration,unit:"%",width:"60px",minValue:0,maxValue:100,stepPixelSize:2,onDrag:function(e,t){return c("node1",{concentration:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Node 2 ("+l.node2_dir+")",children:(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:l.node2_concentration,unit:"%",width:"60px",minValue:0,maxValue:100,stepPixelSize:2,onDrag:function(e,t){return c("node2",{concentration:t})}})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Autolathe=void 0;var o=n(0),r=(n(5),n(44)),a=n(9),i=n(1),c=n(2),l=n(3),d=n(132),u=n(7),s=function(e,t){if(null===e.requirements)return!0;for(var n=Object.keys(e.requirements),o=function(){var n=a[r],o=t.find((function(e){return e.name===n}));return o?o.amount=e[1].price/d.build_eff,e[1]})).sort(l[C]);if(0!==n.length)return b&&(n=n.reverse()),g=!0,(0,o.createComponentVNode)(2,m,{title:e[0],items:n},e[0])}));return(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",overflow:"auto",children:(0,o.createComponentVNode)(2,i.Section,{onClick:function(e){return(0,c.refocusLayout)()},children:g?v:(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No items matching your criteria was found!"})})})},u=function(e,t){var n=(0,a.useLocalState)(t,"search",""),r=(n[0],n[1]),c=(0,a.useLocalState)(t,"sort",""),d=(c[0],c[1]),u=(0,a.useLocalState)(t,"descending",!1),s=u[0],m=u[1];return(0,o.createComponentVNode)(2,i.Box,{mb:"0.5rem",children:(0,o.createComponentVNode)(2,i.Flex,{width:"100%",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",mr:"0.5rem",children:(0,o.createComponentVNode)(2,i.Input,{placeholder:"Search by item name..",width:"100%",onInput:function(e,t){return r(t)}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"30%",children:(0,o.createComponentVNode)(2,i.Dropdown,{selected:"Alphabetical",options:Object.keys(l),width:"100%",lineHeight:"19px",onSelected:function(e){return d(e)}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Button,{icon:s?"arrow-down":"arrow-up",height:"19px",tooltip:s?"Descending order":"Ascending order",tooltipPosition:"bottom-left",ml:"0.5rem",onClick:function(){return m(!s)}})})]})})},s=function(e,t){return!!e.affordable&&!(e.reagent&&!t.beaker)},m=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=e.title,d=e.items,u=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["title","items"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.Collapsible,Object.assign({open:!0,title:l},u,{children:d.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Box,{display:"inline-block",verticalAlign:"middle",lineHeight:"20px",style:{float:"left"},children:e.name}),(0,o.createComponentVNode)(2,i.Button,{disabled:!s(e,c),content:(e.price/c.build_eff).toLocaleString("en-US"),width:"15%",textAlign:"center",style:{float:"right"},onClick:function(){return r("purchase",{cat:l,name:e.name})}}),(0,o.createComponentVNode)(2,i.Box,{style:{clear:"both"}})]},e.name)}))})))}},function(e,t,n){"use strict";t.__esModule=!0,t.BodyDesigner=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3);t.BodyDesigner=function(e,t){var n=(0,a.useBackend)(t),r=n.act,d=n.data,u=d.menu,s=d.disk,m=d.diskStored,p=d.activeBodyRecord,h=l[u];return(0,o.createComponentVNode)(2,c.Window,{width:400,height:650,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[s?(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"save",content:"Save To Disk",onClick:function(){return r("savetodisk")},disabled:!p}),(0,o.createComponentVNode)(2,i.Button,{icon:"save",content:"Load From Disk",onClick:function(){return r("loadfromdisk")},disabled:!m}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject",onClick:function(){return r("ejectdisk")}})]}):null,h]})})};var l={Main:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act;n.data;return(0,o.createComponentVNode)(2,i.Section,{title:"Database Functions",children:[(0,o.createComponentVNode)(2,i.Button,{icon:"eye",content:"View Individual Body Records",onClick:function(){return r("menu",{menu:"Body Records"})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"eye",content:"View Stock Body Records",onClick:function(){return r("menu",{menu:"Stock Records"})}})]})})),"Body Records":(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.bodyrecords;return(0,o.createComponentVNode)(2,i.Section,{title:"Body Records",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return r("menu",{menu:"Main"})}}),children:c.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{icon:"eye",content:e.name,onClick:function(){return r("view_brec",{view_brec:e.recref})}},e.name)}))})})),"Stock Records":(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.stock_bodyrecords;return(0,o.createComponentVNode)(2,i.Section,{title:"Stock Records",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return r("menu",{menu:"Main"})}}),children:c.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{icon:"eye",content:e,onClick:function(){return r("view_stock_brec",{view_stock_brec:e})}},e)}))})})),"Specific Record":(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.activeBodyRecord,u=l.mapRef;return d?(0,o.createComponentVNode)(2,i.Flex,{direction:"column",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"165px",children:(0,o.createComponentVNode)(2,i.Section,{title:"Specific Record",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return c("menu",{menu:"Main"})}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:d.real_name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Species",children:d.speciesname}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Bio. Sex",children:(0,o.createComponentVNode)(2,i.Button,{icon:"pen",content:(0,r.capitalize)(d.gender),onClick:function(){return c("href_conversion",{target_href:"bio_gender",target_value:1})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Synthetic",children:d.synthetic}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mind Compat",children:[d.locked,(0,o.createComponentVNode)(2,i.Button,{ml:1,icon:"eye",content:"View OOC Notes",disabled:!d.booc,onClick:function(){return c("boocnotes")}})]})]})})}),(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"130px",children:(0,o.createComponentVNode)(2,i.ByondUi,{style:{width:"100%",height:"128px"},params:{id:u,type:"map"}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"300px",children:(0,o.createComponentVNode)(2,i.Section,{title:"Customize",height:"300px",style:{overflow:"auto"},children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Scale",children:(0,o.createComponentVNode)(2,i.Button,{icon:"pen",content:d.scale,onClick:function(){return c("href_conversion",{target_href:"size_multiplier",target_value:1})}})}),Object.keys(d.styles).map((function(e){var t=d.styles[e];return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,children:[t.styleHref?(0,o.createComponentVNode)(2,i.Button,{icon:"pen",content:t.style,onClick:function(){return c("href_conversion",{target_href:t.styleHref,target_value:1})}}):null,t.colorHref?(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"pen",content:t.color,onClick:function(){return c("href_conversion",{target_href:t.colorHref,target_value:1})}}),(0,o.createComponentVNode)(2,i.ColorBox,{verticalAlign:"top",width:"32px",height:"20px",color:t.color,style:{border:"1px solid #fff"}})]}):null,t.colorHref2?(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"pen",content:t.color2,onClick:function(){return c("href_conversion",{target_href:t.colorHref2,target_value:1})}}),(0,o.createComponentVNode)(2,i.ColorBox,{verticalAlign:"top",width:"32px",height:"20px",color:t.color2,style:{border:"1px solid #fff"}})]}):null]},e)})),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Body Markings",children:[(0,o.createComponentVNode)(2,i.Button,{icon:"plus",content:"Add Marking",onClick:function(){return c("href_conversion",{target_href:"marking_style",target_value:1})}}),(0,o.createComponentVNode)(2,i.Flex,{wrap:"wrap",justify:"center",align:"center",children:Object.keys(d.markings).map((function(e){var t=d.markings[e];return(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"100%",children:(0,o.createComponentVNode)(2,i.Flex,{children:[(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Button,{mr:.2,fluid:!0,icon:"times",color:"red",onClick:function(){return c("href_conversion",{target_href:"marking_remove",target_value:e})}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,backgroundColor:t,content:e,onClick:function(){return c("href_conversion",{target_href:"marking_color",target_value:e})}})})]})},e)}))})]})]})})})]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"ERROR: Record Not Found!"})})),"OOC Notes":(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.activeBodyRecord;return(0,o.createComponentVNode)(2,i.Section,{title:"Body OOC Notes (This is OOC!)",height:"100%",scrollable:!0,buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return r("menu",{menu:"Specific Record"})}}),style:{"word-break":"break-all"},children:c&&c.booc||"ERROR: Body record not found!"})}))}},function(e,t,n){"use strict";t.__esModule=!0,t.BodyScanner=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=[["good","Alive"],["average","Unconscious"],["bad","DEAD"]],d=[["hasBorer","bad",function(e){return"Large growth detected in frontal lobe, possibly cancerous. Surgical removal is recommended."}],["hasVirus","bad",function(e){return"Viral pathogen detected in blood stream."}],["blind","average",function(e){return"Cataracts detected."}],["colourblind","average",function(e){return"Photoreceptor abnormalities detected."}],["nearsighted","average",function(e){return"Retinal misalignment detected."}],["humanPrey","average",function(e){return"Foreign Humanoid(s) detected: "+e.humanPrey}],["livingPrey","average",function(e){return"Foreign Creature(s) detected: "+e.livingPrey}],["objectPrey","average",function(e){return"Foreign Object(s) detected: "+e.objectPrey}]],u=[["Respiratory","oxyLoss"],["Brain","brainLoss"],["Toxin","toxLoss"],["Radiation","radLoss"],["Brute","bruteLoss"],["Genetic","cloneLoss"],["Burn","fireLoss"],["Paralysis","paralysis"]],s={average:[.25,.5],bad:[.5,Infinity]},m=function(e,t){for(var n=[],o=0;o0?e.reduce((function(e,t){return null===e?t:(0,o.createFragment)([e,!!t&&(0,o.createComponentVNode)(2,i.Box,{children:t})],0)})):null},h=function(e){if(e>100){if(e<300)return"mild infection";if(e<400)return"mild infection+";if(e<500)return"mild infection++";if(e<700)return"acute infection";if(e<800)return"acute infection+";if(e<900)return"acute infection++";if(e>=900)return"septic"}return""};t.BodyScanner=function(e,t){var n=(0,a.useBackend)(t).data,r=n.occupied,i=n.occupant,l=void 0===i?{}:i,d=r?(0,o.createComponentVNode)(2,f,{occupant:l}):(0,o.createComponentVNode)(2,_);return(0,o.createComponentVNode)(2,c.Window,{width:690,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:d})})};var f=function(e){var t=e.occupant;return(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,C,{occupant:t}),(0,o.createComponentVNode)(2,N,{occupant:t}),(0,o.createComponentVNode)(2,b,{occupant:t}),(0,o.createComponentVNode)(2,V,{occupant:t}),(0,o.createComponentVNode)(2,v,{organs:t.extOrgan}),(0,o.createComponentVNode)(2,k,{organs:t.intOrgan})]})},C=function(e,t){var n=(0,a.useBackend)(t),c=n.act,d=n.data,u=d.occupant;return(0,o.createComponentVNode)(2,i.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"user-slash",onClick:function(){return c("ejectify")},children:"Eject"}),(0,o.createComponentVNode)(2,i.Button,{icon:"print",onClick:function(){return c("print_p")},children:"Print Report"})],4),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:u.maxHealth,value:u.health/u.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",color:l[u.stat][0],children:l[u.stat][1]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Temperature",children:[(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:(0,r.round)(u.bodyTempC,0)}),"\xb0C,\xa0",(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:(0,r.round)(u.bodyTempF,0)}),"\xb0F"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Blood Volume",children:[(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:(0,r.round)(u.blood.volume,0)})," units\xa0(",(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:(0,r.round)(u.blood.percent,0)}),"%)"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Weight",children:(0,r.round)(d.occupant.weight)+"lbs, "+(0,r.round)(d.occupant.weight/2.20463)+"kgs"})]})})},N=function(e){var t=e.occupant;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Blood Reagents",children:t.reagents?(0,o.createComponentVNode)(2,i.Table,{children:[(0,o.createComponentVNode)(2,i.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Reagent"}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",children:"Amount"})]}),t.reagents.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",children:[e.amount," Units ",e.overdose?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"OVERDOSING"}):null]})]},e.name)}))]}):(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"No Blood Reagents Detected"})}),(0,o.createComponentVNode)(2,i.Section,{title:"Stomach Reagents",children:t.ingested?(0,o.createComponentVNode)(2,i.Table,{children:[(0,o.createComponentVNode)(2,i.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Reagent"}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",children:"Amount"})]}),t.ingested.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",children:[e.amount," Units ",e.overdose?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"OVERDOSING"}):null]})]},e.name)}))]}):(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"No Stomach Reagents Detected"})})],4)},b=function(e){var t=e.occupant,n=t.hasBorer||t.blind||t.colourblind||t.nearsighted||t.hasVirus;return(n=n||t.humanPrey||t.livingPrey||t.objectPrey)?(0,o.createComponentVNode)(2,i.Section,{title:"Abnormalities",children:d.map((function(e,n){if(t[e[0]])return(0,o.createComponentVNode)(2,i.Box,{color:e[1],bold:"bad"===e[1],children:e[2](t)})}))}):(0,o.createComponentVNode)(2,i.Section,{title:"Abnormalities",children:(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No abnormalities found."})})},V=function(e){var t=e.occupant;return(0,o.createComponentVNode)(2,i.Section,{title:"Damage",children:(0,o.createComponentVNode)(2,i.Table,{children:m(u,(function(e,n,r){return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Table.Row,{color:"label",children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:[e[0],":"]}),(0,o.createComponentVNode)(2,i.Table.Cell,{children:!!n&&n[0]+":"})]}),(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:(0,o.createComponentVNode)(2,g,{value:t[e[1]],marginBottom:r0&&"0.5rem",value:e.totalLoss/100,ranges:s,children:[(0,o.createComponentVNode)(2,i.Box,{float:"left",display:"inline",children:[!!e.bruteLoss&&(0,o.createComponentVNode)(2,i.Box,{display:"inline",position:"relative",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"bone"}),(0,r.round)(e.bruteLoss,0),"\xa0",(0,o.createComponentVNode)(2,i.Tooltip,{position:"top",content:"Brute damage"})]}),!!e.fireLoss&&(0,o.createComponentVNode)(2,i.Box,{display:"inline",position:"relative",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"fire"}),(0,r.round)(e.fireLoss,0),(0,o.createComponentVNode)(2,i.Tooltip,{position:"top",content:"Burn damage"})]})]}),(0,o.createComponentVNode)(2,i.Box,{display:"inline",children:(0,r.round)(e.totalLoss,0)})]})}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",width:"33%",children:[(0,o.createComponentVNode)(2,i.Box,{color:"average",display:"inline",children:p([e.internalBleeding&&"Internal bleeding",!!e.status.bleeding&&"External bleeding",e.lungRuptured&&"Ruptured lung",e.destroyed&&"Destroyed",!!e.status.broken&&e.status.broken,h(e.germ_level),!!e.open&&"Open incision"])}),(0,o.createComponentVNode)(2,i.Box,{display:"inline",children:[p([!!e.status.splinted&&"Splinted",!!e.status.robotic&&"Robotic",!!e.status.dead&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"DEAD"})]),p(e.implants.map((function(e){return e.known?e.name:"Unknown object"})))]})]})]},t)}))]})})},k=function(e){return 0===e.organs.length?(0,o.createComponentVNode)(2,i.Section,{title:"Internal Organs",children:(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"N/A"})}):(0,o.createComponentVNode)(2,i.Section,{title:"Internal Organs",children:(0,o.createComponentVNode)(2,i.Table,{children:[(0,o.createComponentVNode)(2,i.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"center",children:"Damage"}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",children:"Injuries"})]}),e.organs.map((function(e,t){return(0,o.createComponentVNode)(2,i.Table.Row,{textTransform:"capitalize",children:[(0,o.createComponentVNode)(2,i.Table.Cell,{width:"33%",children:e.name}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:e.maxHealth,value:e.damage/100,mt:t>0&&"0.5rem",ranges:s,children:(0,r.round)(e.damage,0)})}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",width:"33%",children:[(0,o.createComponentVNode)(2,i.Box,{color:"average",display:"inline",children:p([h(e.germ_level)])}),(0,o.createComponentVNode)(2,i.Box,{display:"inline",children:p([1===e.robotic&&"Robotic",2===e.robotic&&"Assisted",!!e.dead&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"DEAD"})])})]})]},t)}))]})})},_=function(){return(0,o.createComponentVNode)(2,i.Section,{textAlign:"center",flexGrow:"1",children:(0,o.createComponentVNode)(2,i.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected."]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BombTester=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);n(24);t.BombTester=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.simulating,s=d.mode,m=d.tank1,p=d.tank1ref,h=d.tank2,f=d.tank2ref,C=d.canister,N=d.sim_canister_output;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:400,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:u&&(0,o.createComponentVNode)(2,c)||(0,o.createComponentVNode)(2,a.Section,{title:"Virtual Explosive Simulator v2.01",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mode",children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("set_mode",{mode:1})},selected:1===s,children:"Single Tank"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("set_mode",{mode:2})},selected:2===s,children:"Transfer Valve"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("set_mode",{mode:3})},selected:3===s,children:"Canister"})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Primary Slot",children:m&&(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("remove_tank",{ref:p})},icon:"eject",children:m})||(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("add_tank",{slot:1})},icon:"upload",children:"Insert Tank"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Secondary Slot",children:h&&(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("remove_tank",{ref:f})},icon:"eject",children:h})||(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("add_tank",{slot:2})},icon:"upload",children:"Insert Tank"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Connected Canister",buttons:(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return l("canister_scan")},icon:"search",children:"Scan"}),children:C&&(0,o.createComponentVNode)(2,a.Box,{color:"label",children:C})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No tank connected."})}),C&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Canister Release Pressure",children:(0,o.createComponentVNode)(2,a.Slider,{minValue:0,value:N,maxValue:1013.25,onDrag:function(e,t){return l("set_can_pressure",{pressure:t})}})})]}),(0,o.createComponentVNode)(2,a.Button,{mt:2,color:"red",icon:"bomb",fontSize:2,onClick:function(){return l("start_sim")},fluid:!0,children:"Begin Simulation"})]})})})};var c=function(e){var t,n;function r(t){var n;n=e.call(this,t)||this;var o=Math.random()>.5,r=Math.random()>.5;return n.state={x:o?340:0,y:r?205:0,reverseX:!1,reverseY:!1},n.process=setInterval((function(){n.setState((function(e){var t=Object.assign({},e);return t.reverseX?t.x-2<-5?(t.reverseX=!1,t.x+=2):t.x-=2:t.x+2>340?(t.reverseX=!0,t.x-=2):t.x+=2,t.reverseY?t.y-2<-20?(t.reverseY=!1,t.y+=2):t.y-=2:t.y+2>205?(t.reverseY=!0,t.y-=2):t.y+=2,t}))}),1),n}n=e,(t=r).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var i=r.prototype;return i.componentWillUnmount=function(){clearInterval(this.process)},i.render=function(){var e=this.state,t={position:"relative",left:e.x+"px",top:e.y+"px"};return(0,o.createComponentVNode)(2,a.Section,{title:"Simulation in progress!",fill:!0,children:(0,o.createComponentVNode)(2,a.Box,{position:"absolute",style:{overflow:"hidden",width:"100%",height:"100%"},children:(0,o.createComponentVNode)(2,a.Icon,{style:t,name:"bomb",size:10,color:"red"})})})},r}(o.Component)},function(e,t,n){"use strict";t.__esModule=!0,t.BotanyEditor=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.BotanyEditor=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.activity,u=l.degradation,s=l.disk,m=l.sourceName,p=l.locus,h=l.loaded;return d?(0,o.createComponentVNode)(2,i.Window,{width:470,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:"Scanning..."})})}):(0,o.createComponentVNode)(2,i.Window,{width:470,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Buffered Genetic Data",children:s&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Source",children:m}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gene Decay",children:[u,"%"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Locus",children:p})]}),(0,o.createComponentVNode)(2,a.Button,{mt:1,icon:"eject",onClick:function(){return c("eject_disk")},children:"Eject Loaded Disk"})]})||(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:"No disk loaded."})}),(0,o.createComponentVNode)(2,a.Section,{title:"Loaded Material",children:h&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:h})}),(0,o.createComponentVNode)(2,a.Button,{mt:1,icon:"cog",onClick:function(){return c("apply_gene")},children:"Apply Gene Mods"}),(0,o.createComponentVNode)(2,a.Button,{mt:1,icon:"eject",onClick:function(){return c("eject_packet")},children:"Eject Target"})]})||(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:"No target seed packet loaded."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BotanyIsolator=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.BotanyIsolator=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.geneMasks,u=l.activity,s=l.degradation,m=l.disk,p=l.loaded,h=l.hasGenetics,f=l.sourceName;return u?(0,o.createComponentVNode)(2,i.Window,{width:470,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:"Scanning..."})})}):(0,o.createComponentVNode)(2,i.Window,{width:470,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Buffered Genetic Data",children:h&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Source",children:f}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gene decay",children:[s,"%"]}),m&&d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.mask,children:(0,o.createComponentVNode)(2,a.Button,{mb:-1,icon:"download",onClick:function(){return c("get_gene",{get_gene:e.tag})},children:"Extract"})},e.mask)}))||null]}),m&&(0,o.createComponentVNode)(2,a.Box,{mt:1,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return c("eject_disk")},children:"Eject Loaded Disk"}),(0,o.createComponentVNode)(2,a.Button,{icon:"trash",onClick:function(){return c("clear_buffer")},children:"Clear Genetic Buffer"})]})||(0,o.createComponentVNode)(2,a.NoticeBox,{mt:1,warning:!0,children:"No disk inserted."})]})||(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:"No Data Buffered."}),m&&(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return c("eject_disk")},children:"Eject Loaded Disk"})||(0,o.createComponentVNode)(2,a.NoticeBox,{mt:1,warning:!0,children:"No disk inserted."})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Loaded Material",children:p&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Packet Loaded",children:p})}),(0,o.createComponentVNode)(2,a.Button,{mt:1,icon:"cog",onClick:function(){return c("scan_genome")},children:"Process Genome"}),(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return c("eject_packet")},children:"Eject Packet"})]})||(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:"No packet loaded."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BrigTimer=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=n(20);t.BrigTimer=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data;return(0,o.createComponentVNode)(2,c.Window,{width:300,height:138,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i.Section,{title:"Cell Timer",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"clock-o",content:u.timing?"Stop":"Start",selected:u.timing,onClick:function(){return d(u.timing?"stop":"start")}}),u.flash_found&&(0,o.createComponentVNode)(2,i.Button,{icon:"lightbulb-o",content:u.flash_charging?"Recharging":"Flash",disabled:u.flash_charging,onClick:function(){return d("flash")}})||null],0),children:[(0,o.createComponentVNode)(2,i.NumberInput,{animated:!0,fluid:!0,value:u.time_left/10,minValue:0,maxValue:u.max_time_left/10,format:function(e){return(0,l.formatTime)((0,r.round)(e))},onDrag:function(e,t){return d("time",{time:t})}}),(0,o.createComponentVNode)(2,i.Flex,{mt:1,children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"hourglass-start",content:"Add "+(0,l.formatTime)(u.preset_short/10),onClick:function(){return d("preset",{preset:"short"})}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"hourglass-start",content:"Add "+(0,l.formatTime)(u.preset_medium/10),onClick:function(){return d("preset",{preset:"medium"})}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"hourglass-start",content:"Add "+(0,l.formatTime)(u.preset_long/10),onClick:function(){return d("preset",{preset:"long"})}})})]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Canister=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(20),l=n(3);t.Canister=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data,s=u.connected,m=u.can_relabel,p=u.pressure,h=u.releasePressure,f=u.defaultReleasePressure,C=u.minReleasePressure,N=u.maxReleasePressure,b=u.valveOpen,V=u.holding;return(0,o.createComponentVNode)(2,l.Window,{width:360,height:242,resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{children:[(0,o.createComponentVNode)(2,i.Section,{title:"Canister",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"pencil-alt",disabled:!m,content:"Relabel",onClick:function(){return d("relabel")}}),children:(0,o.createComponentVNode)(2,i.LabeledControls,{children:[(0,o.createComponentVNode)(2,i.LabeledControls.Item,{minWidth:"66px",label:"Tank Pressure",children:(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:p,format:function(e){return e<1e4?(0,r.toFixed)(e)+" kPa":(0,c.formatSiUnit)(1e3*e,1,"Pa")}})}),(0,o.createComponentVNode)(2,i.LabeledControls.Item,{label:"Regulator",children:(0,o.createComponentVNode)(2,i.Box,{position:"relative",left:"-8px",children:[(0,o.createComponentVNode)(2,i.Knob,{forcedInputWidth:"60px",size:1.25,color:!!b&&"yellow",value:h,unit:"kPa",minValue:C,maxValue:N,stepPixelSize:1,onDrag:function(e,t){return d("pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,position:"absolute",top:"-2px",right:"-20px",color:"transparent",icon:"fast-forward",onClick:function(){return d("pressure",{pressure:N})}}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,position:"absolute",top:"16px",right:"-20px",color:"transparent",icon:"undo",onClick:function(){return d("pressure",{pressure:f})}})]})}),(0,o.createComponentVNode)(2,i.LabeledControls.Item,{label:"Valve",children:(0,o.createComponentVNode)(2,i.Button,{my:.5,width:"50px",lineHeight:2,fontSize:"11px",color:b?V?"caution":"danger":null,content:b?"Open":"Closed",onClick:function(){return d("valve")}})}),(0,o.createComponentVNode)(2,i.LabeledControls.Item,{mr:1,label:"Port",children:(0,o.createComponentVNode)(2,i.Box,{position:"relative",children:[(0,o.createComponentVNode)(2,i.Icon,{size:1.25,name:s?"plug":"times",color:s?"good":"bad"}),(0,o.createComponentVNode)(2,i.Tooltip,{content:s?"Connected":"Disconnected",position:"top"})]})})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Holding Tank",buttons:!!V&&(0,o.createComponentVNode)(2,i.Button,{icon:"eject",color:b&&"danger",content:"Eject",onClick:function(){return d("eject")}}),children:[!!V&&(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Label",children:V.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pressure",children:[(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:V.pressure})," kPa"]})]}),!V&&(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No Holding Tank"})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ChemDispenser=void 0;var o=n(0),r=n(1),a=n(2),i=n(187),c=n(3),l=[5,10,20,30,40,60],d=[1,5,10];t.ChemDispenser=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{width:390,height:655,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m)]})})};var u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.amount;return(0,o.createComponentVNode)(2,a.Section,{title:"Settings",flex:"content",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Dispense",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",wrap:"wrap",spacing:"1",children:l.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",children:(0,o.createComponentVNode)(2,a.Button,{textAlign:"center",selected:c===e,content:e+"u",m:"0",fluid:!0,onClick:function(){return i("amount",{amount:e})}})},t)}))})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Custom Amount",children:(0,o.createComponentVNode)(2,a.Slider,{step:1,stepPixelSize:5,value:c,minValue:1,maxValue:120,onDrag:function(e,t){return i("amount",{amount:t})}})})]})})},s=function(e,t){for(var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.chemicals,d=void 0===l?[]:l,u=[],s=0;s<(d.length+1)%3;s++)u.push(!0);return(0,o.createComponentVNode)(2,a.Section,{title:c.glass?"Drink Dispenser":"Chemical Dispenser",flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",wrap:"wrap",height:"100%",spacingPrecise:"2",align:"flex-start",alignContent:"flex-start",children:[d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"40%",height:"20px",children:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",width:"100%",height:"100%",align:"flex-start",content:e.title+" ("+e.amount+")",onClick:function(){return i("dispense",{reagent:e.id})}})},t)})),u.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"25%",height:"20px"},t)}))]})})},m=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,u=l.isBeakerLoaded,s=l.beakerCurrentVolume,m=l.beakerMaxVolume,p=l.beakerContents,h=void 0===p?[]:p;return(0,o.createComponentVNode)(2,a.Section,{title:"Beaker",flex:"content",minHeight:"25%",buttons:(0,o.createComponentVNode)(2,a.Box,{children:[!!u&&(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"label",mr:2,children:[s," / ",m," units"]}),(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:"Eject",disabled:!u,onClick:function(){return c("ejectBeaker")}})]}),children:(0,o.createComponentVNode)(2,i.BeakerContents,{beakerLoaded:u,beakerContents:h,buttons:function(e){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"Isolate",icon:"compress-arrows-alt",onClick:function(){return c("remove",{reagent:e.id,amount:-1})}}),d.map((function(t,n){return(0,o.createComponentVNode)(2,a.Button,{content:t,onClick:function(){return c("remove",{reagent:e.id,amount:t})}},n)})),(0,o.createComponentVNode)(2,a.Button,{content:"ALL",onClick:function(){return c("remove",{reagent:e.id,amount:e.volume})}})],0)}})})}},function(e,t,n){"use strict";e.exports=n(494)()},function(e,t,n){"use strict";var o=n(495);function r(){}function a(){}a.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,a,i){if(i!==o){var c=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw c.name="Invariant Violation",c}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:r};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";t.__esModule=!0,t.ChemMaster=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(187),l=n(45),d=[1,5,10,30,60];t.ChemMaster=function(e,t){var n=(0,r.useBackend)(t).data,a=n.condi,c=n.beaker,d=n.beaker_reagents,p=void 0===d?[]:d,h=n.buffer_reagents,f=void 0===h?[]:h,C=n.mode;return(0,o.createComponentVNode)(2,i.Window,{width:575,height:500,resizable:!0,children:[(0,o.createComponentVNode)(2,l.ComplexModal),(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,u,{beaker:c,beakerReagents:p,bufferNonEmpty:f.length>0}),(0,o.createComponentVNode)(2,s,{mode:C,bufferReagents:f}),(0,o.createComponentVNode)(2,m,{isCondiment:a,bufferNonEmpty:f.length>0})]})]})};var u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,u=(n.data,e.beaker),s=e.beakerReagents,m=e.bufferNonEmpty;return(0,o.createComponentVNode)(2,a.Section,{title:"Beaker",buttons:m?(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"eject",disabled:!u,content:"Eject and Clear Buffer",onClick:function(){return i("eject")}}):(0,o.createComponentVNode)(2,a.Button,{icon:"eject",disabled:!u,content:"Eject and Clear Buffer",onClick:function(){return i("eject")}}),children:u?(0,o.createComponentVNode)(2,c.BeakerContents,{beakerLoaded:!0,beakerContents:s,buttons:function(e,n){return(0,o.createComponentVNode)(2,a.Box,{mb:n0?(0,o.createComponentVNode)(2,c.BeakerContents,{beakerLoaded:!0,beakerContents:s,buttons:function(e,r){return(0,o.createComponentVNode)(2,a.Box,{mb:r0?l.desc:"N/A"}),l.blood_type&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood type",children:l.blood_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood DNA",className:"LabeledList__breakContents",children:l.blood_dna})],4),!c.condi&&(0,o.createComponentVNode)(2,a.Button,{icon:c.printing?"spinner":"print",disabled:c.printing,iconSpin:!!c.printing,ml:"0.5rem",content:"Print",onClick:function(){return i("print",{idx:l.idx,beaker:e.args.beaker})}})]})})})}))},function(e,t,n){"use strict";t.__esModule=!0,t.ClawMachine=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.ClawMachine=function(e,t){var n,c=(0,r.useBackend)(t),l=c.act,d=c.data,u=(d.wintick,d.instructions),s=d.gameStatus,m=d.winscreen;return"CLAWMACHINE_NEW"===s?n=(0,o.createComponentVNode)(2,a.Box,{align:"center",children:[(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"hr"),(0,o.createVNode)(1,"b",null,"Pay to Play!",16)," ",(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"hr"),u,(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"hr")," ",(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{content:"Start",onClick:function(){return l("newgame")}})]}):"CLAWMACHINE_END"===s?n=(0,o.createComponentVNode)(2,a.Box,{align:"center",children:[(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"hr"),(0,o.createVNode)(1,"b",null,"Thank you for playing!",16)," ",(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"hr"),m,(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"hr")," ",(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{content:"Close",onClick:function(){return l("return")}})]}):"CLAWMACHINE_ON"===s&&(n=(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Progress",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{bad:[-Infinity,0],average:[1,7],good:[8,Infinity]},value:d.wintick,minValue:0,maxValue:10})})}),(0,o.createComponentVNode)(2,a.Box,{align:"center",children:[(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"hr")," ",(0,o.createVNode)(1,"br"),u,(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"hr")," ",(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{content:"Up",onClick:function(){return l("pointless")}}),(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{content:"Left",onClick:function(){return l("pointless")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Right",onClick:function(){return l("pointless")}}),(0,o.createVNode)(1,"br")," ",(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{content:"Down",onClick:function(){return l("pointless")}})]})]})),(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createVNode)(1,"center",null,n,0)})}},function(e,t,n){"use strict";t.__esModule=!0,t.Cleanbot=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Cleanbot=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.open,s=l.locked,m=l.version,p=l.blood,h=(l.patrol,l.wet_floors),f=l.spray_blood,C=l.rgbpanel,N=l.red_switch,b=l.green_switch,V=l.blue_switch;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:400,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Automatic Station Cleaner "+m,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("start")},children:d?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",color:u?"bad":"good",children:u?"Open":"Closed"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Behavior Controls",color:s?"good":"bad",children:s?"Locked":"Unlocked"})]})}),!s&&(0,o.createComponentVNode)(2,a.Section,{title:"Behavior Controls",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:p?"toggle-on":"toggle-off",selected:p,onClick:function(){return c("blood")},children:p?"Cleans Blood":"Ignores Blood"})})||null,!s&&u&&(0,o.createComponentVNode)(2,a.Section,{title:"Maintenance Panel",children:C&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{fontSize:5.39,icon:N?"toggle-on":"toggle-off",backgroundColor:N?"red":"maroon",onClick:function(){return c("red_switch")}}),(0,o.createComponentVNode)(2,a.Button,{fontSize:5.39,icon:b?"toggle-on":"toggle-off",backgroundColor:b?"green":"darkgreen",onClick:function(){return c("green_switch")}}),(0,o.createComponentVNode)(2,a.Button,{fontSize:5.39,icon:V?"toggle-on":"toggle-off",backgroundColor:V?"blue":"darkblue",onClick:function(){return c("blue_switch")}})]})||(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Odd Looking Screw Twiddled",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,selected:h,onClick:function(){return c("wet_floors")},icon:"screwdriver",children:h?"Yes":"No"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Weird Button Pressed",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"brown",selected:f,onClick:function(){return c("spray_blood")},icon:"screwdriver",children:f?"Yes":"No"})})]})})})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.CloningConsole=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(28),l=n(45),d=n(3),u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data,d=e.args,u=d.activerecord,s=d.realname,m=d.health,p=d.unidentity,h=d.strucenzymes,f=m.split(" - ");return(0,o.createComponentVNode)(2,i.Section,{level:2,m:"-1rem",pb:"1rem",title:"Records of "+s,children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Damage",children:f.length>1?(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{color:c.COLORS.damageType.oxy,display:"inline",children:f[0]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,i.Box,{color:c.COLORS.damageType.toxin,display:"inline",children:f[2]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,i.Box,{color:c.COLORS.damageType.brute,display:"inline",children:f[3]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,i.Box,{color:c.COLORS.damageType.burn,display:"inline",children:f[1]})],4):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Unknown"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"UI",className:"LabeledList__breakContents",children:p}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"SE",className:"LabeledList__breakContents",children:h}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Disk",children:[(0,o.createComponentVNode)(2,i.Button.Confirm,{disabled:!l.disk,icon:"arrow-circle-down",content:"Import",onClick:function(){return r("disk",{option:"load"})}}),(0,o.createComponentVNode)(2,i.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export UI",onClick:function(){return r("disk",{option:"save",savetype:"ui"})}}),(0,o.createComponentVNode)(2,i.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export UI and UE",onClick:function(){return r("disk",{option:"save",savetype:"ue"})}}),(0,o.createComponentVNode)(2,i.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export SE",onClick:function(){return r("disk",{option:"save",savetype:"se"})}})]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,i.Button,{disabled:!l.podready,icon:"user-plus",content:"Clone",onClick:function(){return r("clone",{ref:u})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"trash",content:"Delete",onClick:function(){return r("del_rec")}})]})]})})};t.CloningConsole=function(e,t){var n=(0,a.useBackend)(t);n.act,n.data.menu;return(0,l.modalRegisterBodyOverride)("view_rec",u),(0,o.createComponentVNode)(2,d.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,l.ComplexModal,{maxWidth:"75%",maxHeight:"75%"}),(0,o.createComponentVNode)(2,d.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,f),(0,o.createComponentVNode)(2,C),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,i.Section,{noTopPadding:!0,flexGrow:"1",children:(0,o.createComponentVNode)(2,m)})]})]})};var s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.menu;return(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===c,icon:"home",onClick:function(){return r("menu",{num:1})},children:"Main"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:2===c,icon:"folder",onClick:function(){return r("menu",{num:2})},children:"Records"})]})},m=function(e,t){var n,r=(0,a.useBackend)(t).data.menu;return 1===r?n=(0,o.createComponentVNode)(2,p):2===r&&(n=(0,o.createComponentVNode)(2,h)),n},p=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.loading,u=l.scantemp,s=l.occupant,m=l.locked,p=l.can_brainscan,h=l.scan_mode,f=l.numberofpods,C=l.pods,N=l.selected_pod,b=m&&!!s;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Scanner",level:"2",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{display:"inline",color:"label",children:"Scanner Lock:\xa0"}),(0,o.createComponentVNode)(2,i.Button,{disabled:!s,selected:b,icon:b?"toggle-on":"toggle-off",content:b?"Engaged":"Disengaged",onClick:function(){return c("lock")}}),(0,o.createComponentVNode)(2,i.Button,{disabled:b||!s,icon:"user-slash",content:"Eject Occupant",onClick:function(){return c("eject")}})],4),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",children:d?(0,o.createComponentVNode)(2,i.Box,{color:"average",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"spinner",spin:!0}),"\xa0 Scanning..."]}):(0,o.createComponentVNode)(2,i.Box,{color:u.color,children:u.text})}),!!p&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Scan Mode",children:(0,o.createComponentVNode)(2,i.Button,{icon:h?"brain":"male",content:h?"Brain":"Body",onClick:function(){return c("toggle_mode")}})})]}),(0,o.createComponentVNode)(2,i.Button,{disabled:!s||d,icon:"user",content:"Scan Occupant",mt:"0.5rem",mb:"0",onClick:function(){return c("scan")}})]}),(0,o.createComponentVNode)(2,i.Section,{title:"Pods",level:"2",children:f?C.map((function(e,t){var n;return n="cloning"===e.status?(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:"100",value:e.progress/100,ranges:{good:[.75,Infinity],average:[.25,.75],bad:[-Infinity,.25]},mt:"0.5rem",children:(0,o.createComponentVNode)(2,i.Box,{textAlign:"center",children:(0,r.round)(e.progress,0)+"%"})}):"mess"===e.status?(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:"bad",mt:"0.5rem",children:"ERROR"}):(0,o.createComponentVNode)(2,i.Button,{selected:N===e.pod,icon:N===e.pod&&"check",content:"Select",mt:"0.5rem",onClick:function(){return c("selectpod",{ref:e.pod})}}),(0,o.createComponentVNode)(2,i.Box,{width:"64px",textAlign:"center",display:"inline-block",mr:"0.5rem",children:[(0,o.createVNode)(1,"img",null,null,1,{src:"pod_"+e.status+".gif",style:{width:"100%","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createComponentVNode)(2,i.Box,{color:"label",children:["Pod #",t+1]}),(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:e.biomass>=150?"good":"bad",display:"inline",children:[(0,o.createComponentVNode)(2,i.Icon,{name:e.biomass>=150?"circle":"circle-o"}),"\xa0",e.biomass]}),n]},t)})):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"No pods detected. Unable to clone."})})],4)},h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.records;return c.length?(0,o.createComponentVNode)(2,i.Box,{mt:"0.5rem",children:c.map((function(e,t){return(0,o.createComponentVNode)(2,i.Button,{icon:"user",mb:"0.5rem",content:e.realname,onClick:function(){return r("view_rec",{ref:e.record})}},t)}))}):(0,o.createComponentVNode)(2,i.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No records found."]})})},f=function(e,t){var n,r=(0,a.useBackend)(t),c=r.act,l=r.data.temp;if(l&&l.text&&!(l.text.length<=0)){var d=((n={})[l.style]=!0,n);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.NoticeBox,Object.assign({},d,{children:[(0,o.createComponentVNode)(2,i.Box,{display:"inline-block",verticalAlign:"middle",children:l.text}),(0,o.createComponentVNode)(2,i.Button,{icon:"times-circle",float:"right",onClick:function(){return c("cleartemp")}}),(0,o.createComponentVNode)(2,i.Box,{clear:"both"})]})))}},C=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.scanner,d=c.numberofpods,u=c.autoallowed,s=c.autoprocess,m=c.disk;return(0,o.createComponentVNode)(2,i.Section,{title:"Status",buttons:(0,o.createFragment)([!!u&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{display:"inline",color:"label",children:"Auto-processing:\xa0"}),(0,o.createComponentVNode)(2,i.Button,{selected:s,icon:s?"toggle-on":"toggle-off",content:s?"Enabled":"Disabled",onClick:function(){return r("autoprocess",{on:s?0:1})}})],4),(0,o.createComponentVNode)(2,i.Button,{disabled:!m,icon:"eject",content:"Eject Disk",onClick:function(){return r("disk",{option:"eject"})}})],0),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Scanner",children:l?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"Connected"}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Not connected!"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pods",children:d?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:[d," connected"]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"None connected!"})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ColorMate=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.ColorMate=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.items,u=l.activecolor,s=Math.min(270+15*d.length,600);return(0,o.createComponentVNode)(2,i.Window,{width:300,height:s,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:d.length&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Paint",children:(0,o.createComponentVNode)(2,a.Flex,{justify:"center",align:"center",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",children:(0,o.createComponentVNode)(2,a.Box,{backgroundColor:u,width:"120px",height:"120px"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50% ",children:[(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eye-dropper",onClick:function(){return c("select")},children:"Select Color"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"fill-drip",onClick:function(){return c("paint")},children:"Paint Items"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"tint-slash",onClick:function(){return c("clear")},children:"Remove Paintjob"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",onClick:function(){return c("eject")},children:"Eject Items"})]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Items",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{children:["#",t+1,": ",e]},t)}))})],4)||(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No items inserted."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Communicator=void 0;var o=n(0),r=n(9),a=n(7),i=n(1),c=n(2),l=n(3),d=n(94),u={};t.Communicator=function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.data.currentTab);return(0,o.createComponentVNode)(2,l.Window,{width:475,height:700,resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{children:[(0,o.createComponentVNode)(2,m),(0,o.createComponentVNode)(2,c.Box,{height:"88%",mb:1,style:{"overflow-y":"auto"},children:u[r]||(0,o.createComponentVNode)(2,s)}),(0,o.createComponentVNode)(2,p)]})})};var s=function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.data.currentTab);return(0,o.createComponentVNode)(2,c.Section,{title:"Error!",children:["You tried to access tab #",r,", but there was no template defined!"]})},m=function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.data),l=r.time,d=r.connectionStatus,u=r.owner,s=r.occupation;return(0,o.createComponentVNode)(2,c.Section,{children:(0,o.createComponentVNode)(2,c.Flex,{align:"center",justify:"space-between",children:[(0,o.createComponentVNode)(2,c.Flex.Item,{color:"average",children:l}),(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.Icon,{color:1===d?"good":"bad",name:1===d?"signal":"exclamation-triangle"})}),(0,o.createComponentVNode)(2,c.Flex.Item,{color:"average",children:(0,a.decodeHtmlEntities)(u)}),(0,o.createComponentVNode)(2,c.Flex.Item,{color:"average",children:(0,a.decodeHtmlEntities)(s)})]})})},p=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data.flashlight;return(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"80%",children:(0,o.createComponentVNode)(2,c.Button,{p:1,fluid:!0,icon:"home",iconSize:2,textAlign:"center",onClick:function(){return r("switch_tab",{switch_tab:1})}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"20%",children:(0,o.createComponentVNode)(2,c.Button,{icon:"lightbulb",iconSize:2,p:1,fluid:!0,textAlign:"center",selected:a,tooltip:"Flashlight",tooltipPosition:"top",onClick:function(){return r("Light")}})})]})};u[1]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data.homeScreen;return(0,o.createComponentVNode)(2,c.Flex,{mt:2,wrap:"wrap",align:"center",justify:"center",children:a.map((function(e){return(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"25%",textAlign:"center",mb:2,children:[(0,o.createComponentVNode)(2,c.Button,{style:{"border-radius":"10%",border:"1px solid #000"},width:"64px",height:"64px",position:"relative",onClick:function(){return r("switch_tab",{switch_tab:e.number})},children:(0,o.createComponentVNode)(2,c.Icon,{name:e.icon,position:"absolute",size:3,top:"25%",left:"25%"})}),(0,o.createComponentVNode)(2,c.Box,{children:e.module})]},e.number)}))})}));var h=function(e,t){for(var n=(0,i.useBackend)(t),r=n.act,a=n.data.targetAddress,l=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"].map((function(e){return(0,o.createComponentVNode)(2,c.Button,{content:e,fontSize:2,fluid:!0,onClick:function(){return r("add_hex",{add_hex:e})}},e)})),d=[],u=0;un?t.length>n?t.slice(0,n)+"...":t:e+t},N=function(e,t,n,o){if(n<0||n>o.length)return f(e,t)?"TinderMessage_First_Sent":"TinderMessage_First_Received";var r=f(e,t),a=f(o[n],t);return r&&a?"TinderMessage_Subsequent_Sent":r||a?r?"TinderMessage_First_Sent":"TinderMessage_First_Received":"TinderMessage_Subsequent_Received"};u[40]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),r=n.act,l=n.data,d=l.targetAddressName,u=l.targetAddress,s=l.imList,m=(0,i.useLocalState)(t,"clipboardMode",!1),p=m[0],h=m[1];return p?(0,o.createComponentVNode)(2,c.Section,{title:(0,o.createComponentVNode)(2,c.Box,{inline:!0,style:{"white-space":"nowrap","overflow-x":"hidden"},width:"90%",children:C("Conversation with ",(0,a.decodeHtmlEntities)(d),30)}),buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"eye",selected:p,tooltip:"Exit Clipboard Mode",tooltipPosition:"bottom-left",onClick:function(){return h(!p)}}),height:"100%",stretchContents:!0,children:[(0,o.createComponentVNode)(2,c.Section,{style:{height:"95%","overflow-y":"auto"},children:s.map((function(e,t){return(0,o.createComponentVNode)(2,c.Box,{className:f(e,u)?"ClassicMessage_Sent":"ClassicMessage_Received",children:[f(e,u)?"You":"Them",": ",e.im]},t)}))}),(0,o.createComponentVNode)(2,c.Button,{icon:"comment",onClick:function(){return r("message",{message:u})},content:"Message"})]}):(0,o.createComponentVNode)(2,c.Section,{title:(0,o.createComponentVNode)(2,c.Box,{inline:!0,style:{"white-space":"nowrap","overflow-x":"hidden"},width:"100%",children:C("Conversation with ",(0,a.decodeHtmlEntities)(d),30)}),buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"eye",selected:p,tooltip:"Enter Clipboard Mode",tooltipPosition:"bottom-left",onClick:function(){return h(!p)}}),height:"100%",stretchContents:!0,children:[(0,o.createComponentVNode)(2,c.Section,{style:{height:"95%","overflow-y":"auto"},children:s.map((function(e,t,n){return(0,o.createComponentVNode)(2,c.Box,{textAlign:f(e,u)?"right":"left",mb:1,children:(0,o.createComponentVNode)(2,c.Box,{maxWidth:"75%",className:N(e,u,t-1,n),inline:!0,children:(0,a.decodeHtmlEntities)(e.im)})},t)}))}),(0,o.createComponentVNode)(2,c.Button,{icon:"comment",onClick:function(){return r("message",{message:u})},content:"Message"})]})}));var b=function(e,t){var n=(0,i.useBackend)(t),r=n.act,l=n.data.target_feed;return(0,o.createComponentVNode)(2,c.Section,{title:(0,a.decodeHtmlEntities)(l.name)+" by "+(0,a.decodeHtmlEntities)(l.author),level:2,buttons:(0,o.createComponentVNode)(2,c.Button,{content:"Back",icon:"chevron-up",onClick:function(){return r("newsfeed",{newsfeed:null})}}),children:l.messages.map((function(e){return(0,o.createComponentVNode)(2,c.Section,{children:["- ",(0,a.decodeHtmlEntities)(e.body),!!e.img&&(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/png;base64,"+e.img}),(0,a.decodeHtmlEntities)(e.caption)||null]}),(0,o.createComponentVNode)(2,c.Box,{color:"grey",children:["[",e.message_type," by ",(0,a.decodeHtmlEntities)(e.author)," - ",e.time_stamp,"]"]})]},e.ref)}))})},V=function(e,t){var n=(0,i.useBackend)(t),r=n.act,l=n.data,d=l.feeds,u=l.latest_news;return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Section,{title:"Recent News",level:2,children:(0,o.createComponentVNode)(2,c.Section,{children:u.map((function(e){return(0,o.createComponentVNode)(2,c.Box,{mb:2,children:[(0,o.createVNode)(1,"h5",null,[(0,a.decodeHtmlEntities)(e.channel),(0,o.createComponentVNode)(2,c.Button,{ml:1,icon:"chevron-up",onClick:function(){return r("newsfeed",{newsfeed:e.index})},content:"Go to"})],0),"- ",(0,a.decodeHtmlEntities)(e.body),!!e.img&&(0,o.createComponentVNode)(2,c.Box,{children:["[image omitted, view story for more details]",e.caption||null]}),(0,o.createComponentVNode)(2,c.Box,{fontSize:.9,children:["[",e.message_type," by ",(0,o.createComponentVNode)(2,c.Box,{inline:!0,color:"average",children:e.author})," - ",e.time_stamp,"]"]})]},e.index)}))})}),(0,o.createComponentVNode)(2,c.Section,{title:"News Feeds",level:2,children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{fluid:!0,icon:"chevron-up",onClick:function(){return r("newsfeed",{newsfeed:e.index})},content:e.name},e.index)}))})],4)};u[5]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.data),a=r.feeds,l=r.target_feed;return(0,o.createComponentVNode)(2,c.Section,{title:"News",stretchContents:!0,height:"100%",children:!a.length&&(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Error: No newsfeeds available. Please try again later."})||l&&(0,o.createComponentVNode)(2,b)||(0,o.createComponentVNode)(2,V)})}));u[6]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data.note;return(0,o.createComponentVNode)(2,c.Section,{title:"Note Keeper",height:"100%",stretchContents:!0,buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"pen",onClick:function(){return r("edit")},content:"Edit Notes"}),children:(0,o.createComponentVNode)(2,c.Section,{color:"average",width:"100%",height:"100%",style:{"word-break":"break-all","overflow-y":"auto"},children:a})})}));u[7]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),l=(n.act,n.data),d=l.aircontents,u=l.weather;return(0,o.createComponentVNode)(2,c.Section,{title:"Weather",children:[(0,o.createComponentVNode)(2,c.Section,{level:2,title:"Current Conditions",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,r.filter)((function(e){return"0"!==e.val||"Pressure"===e.entry||"Temperature"===e.entry}))(d).map((function(e){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.entry,color:(t=e.val,n=e.bad_low,r=e.poor_low,i=e.poor_high,l=e.bad_high,ti?"average":t>l?"bad":"good"),children:[e.val,(0,a.decodeHtmlEntities)(e.units)]},e.entry);var t,n,r,i,l}))})}),(0,o.createComponentVNode)(2,c.Section,{level:2,title:"Weather Reports",children:!!u.length&&(0,o.createComponentVNode)(2,c.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.Planet,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Time",children:e.Time}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Weather",children:(0,a.toTitleCase)(e.Weather)}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Temperature",children:["Current: ",e.Temperature.toFixed(),"\xb0C | High: ",e.High.toFixed(),"\xb0C | Low: ",e.Low.toFixed(),"\xb0C"]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Wind Direction",children:e.WindDir}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Wind Speed",children:e.WindSpeed}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Forecast",children:(0,a.decodeHtmlEntities)(e.Forecast)})]})},e.Planet)}))})||(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"No weather reports available. Please check back later."})})]})})),u[8]=(0,o.createComponentVNode)(2,d.CrewManifestContent);u[9]=(0,o.createComponentVNode)(2,(function(e,t){var n=(0,i.useBackend)(t),r=n.act,l=n.data,d=l.owner,u=l.occupation,s=l.connectionStatus,m=l.address,p=l.visible,h=l.ring;return(0,o.createComponentVNode)(2,c.Section,{title:"Settings",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Owner",children:(0,o.createComponentVNode)(2,c.Button,{icon:"pen",fluid:!0,content:(0,a.decodeHtmlEntities)(d),onClick:function(){return r("rename")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Occupation",children:(0,a.decodeHtmlEntities)(u)}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Connection",children:1===s?(0,o.createComponentVNode)(2,c.Box,{color:"good",children:"Connected"}):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Disconnected"})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Device EPv2 Address",children:m}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Visibility",children:(0,o.createComponentVNode)(2,c.Button.Checkbox,{checked:p,selected:p,fluid:!0,content:p?"This device can be seen by other devices.":"This device is invisible to other devices.",onClick:function(){return r("toggle_visibility")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Ringer",children:(0,o.createComponentVNode)(2,c.Button.Checkbox,{checked:h,selected:h,fluid:!0,content:h?"Ringer on.":"Ringer off.",onClick:function(){return r("toggle_ringer")}})})]})})}))},function(e,t,n){"use strict";t.__esModule=!0,t.ComputerFabricator=void 0;var o=n(0),r=(n(7),n(1)),a=n(2),i=n(3);t.ComputerFabricator=function(e,t){var n=(0,r.useBackend)(t),s=n.act,m=n.data;return(0,o.createComponentVNode)(2,i.Window,{title:"Personal Computer Vendor",width:500,height:420,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{italic:!0,fontSize:"20px",children:"Your perfect device, only three steps away..."}),0!==m.state&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mb:1,icon:"circle",content:"Clear Order",onClick:function(){return s("clean_order")}}),0===m.state&&(0,o.createComponentVNode)(2,c),1===m.state&&(0,o.createComponentVNode)(2,l),2===m.state&&(0,o.createComponentVNode)(2,d),3===m.state&&(0,o.createComponentVNode)(2,u)]})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act;n.data;return(0,o.createComponentVNode)(2,a.Section,{title:"Step 1",minHeight:"306px",children:[(0,o.createComponentVNode)(2,a.Box,{mt:5,bold:!0,textAlign:"center",fontSize:"40px",children:"Choose your Device"}),(0,o.createComponentVNode)(2,a.Box,{mt:3,children:(0,o.createComponentVNode)(2,a.Grid,{width:"100%",children:[(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"laptop",content:"Laptop",textAlign:"center",fontSize:"30px",lineHeight:2,onClick:function(){return i("pick_device",{pick:"1"})}})}),(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"tablet-alt",content:"Tablet",textAlign:"center",fontSize:"30px",lineHeight:2,onClick:function(){return i("pick_device",{pick:"2"})}})})]})})]})},l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data;return(0,o.createComponentVNode)(2,a.Section,{title:"Step 2: Customize your device",minHeight:"282px",buttons:(0,o.createComponentVNode)(2,a.Box,{bold:!0,color:"good",children:[c.totalprice,"\u20ae"]}),children:[(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Battery:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"Allows your device to operate without external utility power\nsource. Advanced batteries increase battery life.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_battery,onClick:function(){return i("hw_battery",{battery:"1"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Upgraded",selected:2===c.hw_battery,onClick:function(){return i("hw_battery",{battery:"2"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Advanced",selected:3===c.hw_battery,onClick:function(){return i("hw_battery",{battery:"3"})}})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Hard Drive:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"Stores file on your device. Advanced drives can store more\nfiles, but use more power, shortening battery life.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_disk,onClick:function(){return i("hw_disk",{disk:"1"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Upgraded",selected:2===c.hw_disk,onClick:function(){return i("hw_disk",{disk:"2"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Advanced",selected:3===c.hw_disk,onClick:function(){return i("hw_disk",{disk:"3"})}})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Network Card:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"Allows your device to wirelessly connect to stationwide NTNet\nnetwork. Basic cards are limited to on-station use, while\nadvanced cards can operate anywhere near the station, which\nincludes asteroid outposts",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"None",selected:0===c.hw_netcard,onClick:function(){return i("hw_netcard",{netcard:"0"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_netcard,onClick:function(){return i("hw_netcard",{netcard:"1"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Advanced",selected:2===c.hw_netcard,onClick:function(){return i("hw_netcard",{netcard:"2"})}})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Nano Printer:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"A device that allows for various paperwork manipulations,\nsuch as, scanning of documents or printing new ones.\nThis device was certified EcoFriendlyPlus and is capable of\nrecycling existing paper for printing purposes.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"None",selected:0===c.hw_nanoprint,onClick:function(){return i("hw_nanoprint",{print:"0"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_nanoprint,onClick:function(){return i("hw_nanoprint",{print:"1"})}})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Secondary Card Reader:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"Adds a secondary RFID card reader, for manipulating or\nreading from a second standard RFID card.\nPlease note that a primary card reader is necessary to\nallow the device to read your identification, but one\nis included in the base price.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"None",selected:0===c.hw_card,onClick:function(){return i("hw_card",{card:"0"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_card,onClick:function(){return i("hw_card",{card:"1"})}})})]}),2!==c.devtype&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Processor Unit:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"A component critical for your device's functionality.\nIt allows you to run programs from your hard drive.\nAdvanced CPUs use more power, but allow you to run\nmore programs on background at once.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_cpu,onClick:function(){return i("hw_cpu",{cpu:"1"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Advanced",selected:2===c.hw_cpu,onClick:function(){return i("hw_cpu",{cpu:"2"})}})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,position:"relative",children:["Tesla Relay:",(0,o.createComponentVNode)(2,a.Tooltip,{content:"An advanced wireless power relay that allows your device\nto connect to nearby area power controller to provide\nalternative power source. This component is currently\nunavailable on tablet computers due to size restrictions.",position:"right"})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"None",selected:0===c.hw_tesla,onClick:function(){return i("hw_tesla",{tesla:"0"})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Standard",selected:1===c.hw_tesla,onClick:function(){return i("hw_tesla",{tesla:"1"})}})})]})],4)]}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:3,content:"Confirm Order",color:"good",textAlign:"center",fontSize:"18px",lineHeight:2,onClick:function(){return i("confirm_order")}})]})},d=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data);return(0,o.createComponentVNode)(2,a.Section,{title:"Step 3: Payment",minHeight:"282px",children:[(0,o.createComponentVNode)(2,a.Box,{italic:!0,textAlign:"center",fontSize:"20px",children:"Your device is ready for fabrication..."}),(0,o.createComponentVNode)(2,a.Box,{bold:!0,mt:2,textAlign:"center",fontSize:"16px",children:[(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:"Please swipe your ID now to authorize payment of:"}),"\xa0",(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"good",children:[i.totalprice,"\u20ae"]})]})]})},u=function(e,t){return(0,o.createComponentVNode)(2,a.Section,{minHeight:"282px",children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,textAlign:"center",fontSize:"28px",mt:10,children:"Thank you for your purchase!"}),(0,o.createComponentVNode)(2,a.Box,{italic:!0,mt:1,textAlign:"center",children:"If you experience any difficulties with your new device, please contact your local network administrator."})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.CookingAppliance=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.CookingAppliance=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.temperature,u=l.optimalTemp,s=l.temperatureEnough,m=l.efficiency,p=l.containersRemovable,h=l.our_contents;return(0,o.createComponentVNode)(2,i.Window,{width:600,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:s?"good":"blue",value:d,maxValue:u+100,children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:d}),"\xb0C / ",u,"\xb0C"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Efficiency",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m}),"%"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Containers",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:h.map((function(e,t){return e.empty?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Slot #"+(t+1),children:(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("slot",{slot:t+1})},children:"Empty"})}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Slot #"+(t+1),verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!p,onClick:function(){return c("slot",{slot:t+1})},children:e.container||"No Container"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.progressText[0],value:e.progress,maxValue:1,children:e.progressText[1]})})]})},t)}))})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Cryo=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=[{label:"Resp.",type:"oxyLoss"},{label:"Toxin",type:"toxLoss"},{label:"Brute",type:"bruteLoss"},{label:"Burn",type:"fireLoss"}],l=[["good","Conscious"],["average","Unconscious"],["bad","DEAD"]];t.Cryo=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{width:520,height:470,resizeable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:(0,o.createComponentVNode)(2,d)})})};var d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,d=n.data,s=d.isOperating,m=d.hasOccupant,p=d.occupant,h=void 0===p?[]:p,f=d.cellTemperature,C=d.cellTemperatureStatus,N=d.isBeakerLoaded;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Occupant",flexGrow:"1",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"user-slash",onClick:function(){return i("ejectOccupant")},disabled:!m,children:"Eject"}),children:m?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Occupant",children:h.name||"Unknown"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:h.health,max:h.maxHealth,value:h.health/h.maxHealth,color:h.health>0?"good":"average",children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(h.health)})})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:l[h.stat][0],children:l[h.stat][1]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(h.bodyTemperature)})," K"]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),c.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.label,children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:h[e.type]/100,ranges:{bad:[.01,Infinity]},children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(h[e.type])})})},e.id)}))]}):(0,o.createComponentVNode)(2,a.Flex,{height:"100%",textAlign:"center",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected."]})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Cell",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return i("ejectBeaker")},disabled:!N,children:"Eject Beaker"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return i(s?"switchOff":"switchOn")},selected:s,children:s?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",color:C,children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:f})," K"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Beaker",children:(0,o.createComponentVNode)(2,u)})]})})],4)},u=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data),c=i.isBeakerLoaded,l=i.beakerLabel,d=i.beakerVolume;return c?(0,o.createFragment)([l||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No label"}),(0,o.createComponentVNode)(2,a.Box,{color:!d&&"bad",children:d?(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:d,format:function(e){return Math.round(e)+" units remaining"}}):"Beaker is empty"})],0):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No beaker loaded"})}},function(e,t,n){"use strict";t.__esModule=!0,t.CryoStorageItemsVr=t.CryoStorageVr=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(190);t.CryoStorageVr=function(e,t){var n=(0,r.useBackend)(t),d=(n.act,n.data),u=d.real_name,s=d.allow_items,m=(0,r.useLocalState)(t,"tab",0),p=m[0],h=m[1];return(0,o.createComponentVNode)(2,i.Window,{width:400,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===p,onClick:function(){return h(0)},children:"Crew"}),!!s&&(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===p,onClick:function(){return h(1)},children:"Items"})]}),(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:["Welcome, ",u,"."]}),0===p&&(0,o.createComponentVNode)(2,c.CryoStorageCrew),!!s&&1===p&&(0,o.createComponentVNode)(2,l)]})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.items);return(0,o.createComponentVNode)(2,a.Section,{title:"Stored Items",children:i.length&&i.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{color:"label",children:e},e)}))||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No items stored."})})};t.CryoStorageItemsVr=l},function(e,t,n){"use strict";t.__esModule=!0,t.DNAForensics=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.DNAForensics=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.scan_progress,u=l.scanning,s=l.bloodsamp,m=l.bloodsamp_desc;return(0,o.createComponentVNode)(2,i.Window,{width:540,height:326,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{selected:u,disabled:!s,icon:"power-off",onClick:function(){return c("scanItem")},children:u?"Halt Scan":"Begin Scan"}),(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:"eject",onClick:function(){return c("ejectItem")},children:"Eject Bloodsample"})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Scan Progress",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[99,Infinity],violet:[-Infinity,99]},value:d,maxValue:100})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Blood Sample",children:s&&(0,o.createComponentVNode)(2,a.Box,{children:[s,(0,o.createComponentVNode)(2,a.Box,{color:"label",children:m})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No blood sample inserted."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.DNAModifier=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(45),l=[["good","Alive"],["average","Unconscious"],["bad","DEAD"]],d=[["ui","Modify U.I.","dna"],["se","Modify S.E.","dna"],["buffer","Transfer Buffers","syringe"],["rejuvenators","Rejuvenators","flask"]],u=[5,10,20,30,50];t.DNAModifier=function(e,t){var n,a=(0,r.useBackend)(t),l=(a.act,a.data),d=l.irradiating,u=l.dnaBlockSize,p=l.occupant;return t.dnaBlockSize=u,t.isDNAInvalid=!p.isViableSubject||!p.uniqueIdentity||!p.structuralEnzymes,d&&(n=(0,o.createComponentVNode)(2,g,{duration:d})),(0,o.createComponentVNode)(2,i.Window,{width:660,height:700,resizable:!0,children:[(0,o.createComponentVNode)(2,c.ComplexModal),n,(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m)]})]})};var s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,d=c.locked,u=c.hasOccupant,s=c.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{color:"label",display:"inline",mr:"0.5rem",children:"Door Lock:"}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u,selected:d,icon:d?"toggle-on":"toggle-off",content:d?"Engaged":"Disengaged",onClick:function(){return i("toggleLock")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u||d,icon:"user-slash",content:"Eject",onClick:function(){return i("ejectOccupant")}})],4),children:u?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:s.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:s.minHealth,max:s.maxHealth,value:s.health/s.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:l[s.stat][0],children:l[s.stat][1]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider)]})}),t.isDNAInvalid?(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-circle"}),"\xa0 The occupant's DNA structure is ruined beyond recognition, please insert a subject with an intact DNA structure."]}):(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Radiation",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:"0",max:"100",value:s.radiationLevel/100,color:"average"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Unique Enzymes",children:c.occupant.uniqueEnzymes?c.occupant.uniqueEnzymes:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-circle"}),"\xa0 Unknown"]})})]})],0):(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"Cell unoccupied."})})},m=function(e,t){var n,i=(0,r.useBackend)(t),c=i.act,l=i.data,u=l.selectedMenuKey,s=l.hasOccupant;l.occupant;return s?t.isDNAInvalid?(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No operation possible on this subject."]})})}):("ui"===u?n=(0,o.createFragment)([(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,f)],4):"se"===u?n=(0,o.createFragment)([(0,o.createComponentVNode)(2,h),(0,o.createComponentVNode)(2,f)],4):"buffer"===u?n=(0,o.createComponentVNode)(2,C):"rejuvenators"===u&&(n=(0,o.createComponentVNode)(2,V)),(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:[(0,o.createComponentVNode)(2,a.Tabs,{children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:u===e[0],onClick:function(){return c("selectMenuKey",{key:e[0]})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:e[2]}),e[1]]},t)}))}),n]})):(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant in DNA modifier."]})})})},p=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.selectedUIBlock,d=c.selectedUISubBlock,u=c.selectedUITarget,s=c.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Modify Unique Identifier",level:"2",children:[(0,o.createComponentVNode)(2,v,{dnaString:s.uniqueIdentity,selectedBlock:l,selectedSubblock:d,blockSize:t.dnaBlockSize,action:"selectUIBlock"}),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"15",stepPixelSize:"20",value:u,format:function(e){return e.toString(16).toUpperCase()},ml:"0",onChange:function(e,t){return i("changeUITarget",{value:t})}})})}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Irradiate Block",mt:"0.5rem",onClick:function(){return i("pulseUIRadiation")}})]})},h=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.selectedSEBlock,d=c.selectedSESubBlock,u=c.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Modify Structural Enzymes",level:"2",children:[(0,o.createComponentVNode)(2,v,{dnaString:u.structuralEnzymes,selectedBlock:l,selectedSubblock:d,blockSize:t.dnaBlockSize,action:"selectSEBlock"}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Irradiate Block",onClick:function(){return i("pulseSERadiation")}})]})},f=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.radiationIntensity,d=c.radiationDuration;return(0,o.createComponentVNode)(2,a.Section,{title:"Radiation Emitter",level:"2",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Intensity",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"10",stepPixelSize:"20",value:l,popUpPosition:"right",ml:"0",onChange:function(e,t){return i("radiationIntensity",{value:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Duration",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"20",stepPixelSize:"10",unit:"s",value:d,popUpPosition:"right",ml:"0",onChange:function(e,t){return i("radiationDuration",{value:t})}})})]}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Pulse Radiation",tooltip:"Mutates a random block of either the occupant's UI or SE.",tooltipPosition:"top-right",mt:"0.5rem",onClick:function(){return i("pulseRadiation")}})]})},C=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.buffers.map((function(e,t){return(0,o.createComponentVNode)(2,N,{id:t+1,name:"Buffer "+(t+1),buffer:e},t)})));return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Buffers",level:"2",children:i}),(0,o.createComponentVNode)(2,b)],4)},N=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=e.id,d=e.name,u=e.buffer,s=c.isInjectorReady,m=d+(u.data?" - "+u.label:"");return(0,o.createComponentVNode)(2,a.Box,{backgroundColor:"rgba(0, 0, 0, 0.33)",mb:"0.5rem",children:(0,o.createComponentVNode)(2,a.Section,{title:m,level:"3",mx:"0",lineHeight:"18px",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:!u.data,icon:"trash",content:"Clear",onClick:function(){return i("bufferOption",{option:"clear",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u.data,icon:"pen",content:"Rename",onClick:function(){return i("bufferOption",{option:"changeLabel",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u.data||!c.hasDisk,icon:"save",content:"Export",tooltip:"Exports this buffer to the currently loaded data disk.",tooltipPosition:"bottom-left",onClick:function(){return i("bufferOption",{option:"saveDisk",id:l})}})],4),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Write",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject U.I",mb:"0",onClick:function(){return i("bufferOption",{option:"saveUI",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject U.I and U.E.",mb:"0",onClick:function(){return i("bufferOption",{option:"saveUIAndUE",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject S.E.",mb:"0",onClick:function(){return i("bufferOption",{option:"saveSE",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!c.hasDisk||!c.disk.data,icon:"arrow-circle-down",content:"From Disk",mb:"0",onClick:function(){return i("bufferOption",{option:"loadDisk",id:l})}})]}),!!u.data&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subject",children:u.owner||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Unknown"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Data Type",children:["ui"===u.type?"Unique Identifiers":"Structural Enzymes",!!u.ue&&" and Unique Enzymes"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transfer to",children:[(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:s?"syringe":"spinner",iconSpin:!s,content:"Injector",mb:"0",onClick:function(){return i("bufferOption",{option:"createInjector",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:s?"syringe":"spinner",iconSpin:!s,content:"Block Injector",mb:"0",onClick:function(){return i("bufferOption",{option:"createInjector",id:l,block:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"user",content:"Subject",mb:"0",onClick:function(){return i("bufferOption",{option:"transfer",id:l})}})]})],4)]}),!u.data&&(0,o.createComponentVNode)(2,a.Box,{color:"label",mt:"0.5rem",children:"This buffer is empty."})]})})},b=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.hasDisk,d=c.disk;return(0,o.createComponentVNode)(2,a.Section,{title:"Data Disk",level:"2",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:!l||!d.data,icon:"trash",content:"Wipe",onClick:function(){return i("wipeDisk")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!l,icon:"eject",content:"Eject",onClick:function(){return i("ejectDisk")}})],4),children:l?d.data?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Label",children:d.label?d.label:"No label"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subject",children:d.owner?d.owner:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Unknown"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Data Type",children:["ui"===d.type?"Unique Identifiers":"Structural Enzymes",!!d.ue&&" and Unique Enzymes"]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"Disk is blank."}):(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",my:"1rem",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"save-o",size:"4"}),(0,o.createVNode)(1,"br"),"No disk inserted."]})})},V=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.isBeakerLoaded,d=c.beakerVolume,s=c.beakerLabel;return(0,o.createComponentVNode)(2,a.Section,{title:"Rejuvenators and Beaker",level:"2",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!l,icon:"eject",content:"Eject",onClick:function(){return i("ejectBeaker")}}),children:l?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Inject",children:[u.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{disabled:e>d,icon:"syringe",content:e,onClick:function(){return i("injectRejuvenators",{amount:e})}},t)})),(0,o.createComponentVNode)(2,a.Button,{disabled:d<=0,icon:"syringe",content:"All",onClick:function(){return i("injectRejuvenators",{amount:d})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Beaker",children:[(0,o.createComponentVNode)(2,a.Box,{mb:"0.5rem",children:s||"No label"}),d?(0,o.createComponentVNode)(2,a.Box,{color:"good",children:[d," unit",1===d?"":"s"," remaining"]}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Empty"})]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",my:"25%",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",size:"4"}),(0,o.createVNode)(1,"br"),"No beaker loaded."]})})},g=function(e,t){return(0,o.createComponentVNode)(2,a.Dimmer,{textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"spinner",size:"5",spin:!0}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Box,{color:"average",children:(0,o.createVNode)(1,"h1",null,[(0,o.createComponentVNode)(2,a.Icon,{name:"radiation"}),(0,o.createTextVNode)("\xa0Irradiating occupant\xa0"),(0,o.createComponentVNode)(2,a.Icon,{name:"radiation"})],4)}),(0,o.createComponentVNode)(2,a.Box,{color:"label",children:(0,o.createVNode)(1,"h3",null,[(0,o.createTextVNode)("For "),e.duration,(0,o.createTextVNode)(" second"),1===e.duration?"":"s"],0)})]})},v=function(e,t){for(var n=(0,r.useBackend)(t),i=n.act,c=(n.data,e.dnaString),l=e.selectedBlock,d=e.selectedSubblock,u=e.blockSize,s=e.action,m=c.split(""),p=[],h=function(e){for(var t=e/u+1,n=[],r=function(r){var c=r+1;n.push((0,o.createComponentVNode)(2,a.Button,{selected:l===t&&d===c,content:m[e+r],mb:"0",onClick:function(){return i(s,{block:t,subblock:c})}}))},c=0;c1?"Dangerous!":null]},e.stage)}))||(0,o.createComponentVNode)(2,a.Box,{children:"No virus sample loaded."})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Affected Species",color:"label",children:[m&&m.length?null:"None",m.sort().join(", ")]}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Reverse Engineering",children:[(0,o.createComponentVNode)(2,a.Box,{color:"bad",mb:1,children:(0,o.createVNode)(1,"i",null,"CAUTION: Reverse engineering will destroy the viral sample.",16)}),d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.stage,icon:"exchange-alt",onClick:function(){return i("grab",{grab:e.reference})}},e.stage)})),(0,o.createComponentVNode)(2,a.Button,{content:"Species",icon:"exchange-alt",onClick:function(){return i("affected_species")}})]})],4)]})},l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=(c.dish_inserted,c.buffer),d=c.species_buffer,u=(c.effects,c.info);c.growth,c.affected_species,c.busy;return(0,o.createComponentVNode)(2,a.Section,{title:"Storage",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Memory Buffer",children:l?(0,o.createComponentVNode)(2,a.Box,{children:[l.name," (",l.stage,")"]}):d?(0,o.createComponentVNode)(2,a.Box,{children:d}):"Empty"})}),(0,o.createComponentVNode)(2,a.Button,{mt:1,icon:"save",content:"Save To Disk",disabled:!l&&!d,onClick:function(){return i("disk")}}),l?(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Splice #1",disabled:l.stage>1,onClick:function(){return i("splice",{splice:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Splice #2",disabled:l.stage>2,onClick:function(){return i("splice",{splice:2})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Splice #3",disabled:l.stage>3,onClick:function(){return i("splice",{splice:3})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Splice #4",disabled:l.stage>4,onClick:function(){return i("splice",{splice:4})}})]}):d?(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Splice Species",disabled:!d||u,onClick:function(){return i("splice",{splice:5})}})}):null]})}},function(e,t,n){"use strict";t.__esModule=!0,t.DishIncubator=void 0;var o=n(0),r=(n(5),n(20)),a=n(1),i=n(2),c=n(3);t.DishIncubator=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=d.on,s=d.system_in_use,m=d.food_supply,p=d.radiation,h=d.growth,f=d.toxins,C=d.chemicals_inserted,N=d.can_breed_virus,b=d.chemical_volume,V=d.max_chemical_volume,g=d.dish_inserted,v=d.blood_already_infected,k=d.virus,_=d.analysed,y=d.infection_rate;return(0,o.createComponentVNode)(2,c.Window,{width:400,height:600,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Section,{title:"Environmental Conditions",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"power-off",selected:u,content:u?"On":"Off",onClick:function(){return l("power")}}),children:[(0,o.createComponentVNode)(2,i.Flex,{spacing:1,mb:1,children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"radiation",content:"Add Radiation",onClick:function(){return l("rad")}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button.Confirm,{fluid:!0,color:"red",icon:"trash",confirmIcon:"trash",content:"Flush System",disabled:!s,onClick:function(){return l("flush")}})})]}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Virus Food",children:(0,o.createComponentVNode)(2,i.ProgressBar,{minValue:0,maxValue:100,ranges:{good:[40,Infinity],average:[20,40],bad:[-Infinity,20]},value:m})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Radiation Level",children:(0,o.createComponentVNode)(2,i.ProgressBar,{minValue:0,maxValue:100,color:p>=50?"bad":h>=25?"average":"good",value:p,children:[(0,r.formatCommaNumber)(1e4*p)," \xb5Sv"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Toxicity",children:(0,o.createComponentVNode)(2,i.ProgressBar,{minValue:0,maxValue:100,ranges:{bad:[50,Infinity],average:[25,50],good:[-Infinity,25]},value:f})})]})]}),(0,o.createComponentVNode)(2,i.Section,{title:N?"Vial":"Chemicals",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject "+(N?"Vial":"Chemicals"),disabled:!C,onClick:function(){return l("ejectchem")}}),(0,o.createComponentVNode)(2,i.Button,{icon:"virus",content:"Breed Virus",disabled:!N,onClick:function(){return l("virus")}})],4),children:C&&(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Volume",children:(0,o.createComponentVNode)(2,i.ProgressBar,{minValue:0,maxValue:V,value:b,children:[b,"/",V]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Breeding Environment",color:N?"good":"average",children:[g?N?"Suitable":"No hemolytic samples detected":"N/A",v?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"CAUTION: Viral infection detected in blood sample."}):null]})]})})||(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No chemicals inserted."})}),(0,o.createComponentVNode)(2,i.Section,{title:"Virus Dish",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject Dish",disabled:!g,onClick:function(){return l("ejectdish")}}),children:g?k?(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Growth Density",children:(0,o.createComponentVNode)(2,i.ProgressBar,{minValue:0,maxValue:100,ranges:{good:[50,Infinity],average:[25,50],bad:[-Infinity,25]},value:h})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Infection Rate",children:_?y:"Unknown."})]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"No virus detected."}):(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No dish loaded."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.DisposalBin=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.DisposalBin=function(e,t){var n,c,l=(0,r.useBackend)(t),d=l.act,u=l.data;return 2===u.mode?(n="good",c="Ready"):u.mode<=0?(n="bad",c="N/A"):1===u.mode?(n="average",c="Pressurizing"):(n="average",c="Idle"),(0,o.createComponentVNode)(2,i.Window,{width:300,height:250,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,m:1,children:"Status"}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"State",color:n,children:c}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{bad:[-Infinity,0],average:[0,99],good:[99,Infinity]},value:u.pressure,minValue:0,maxValue:100})})]}),(0,o.createComponentVNode)(2,a.Box,{bold:!0,m:1,children:"Controls"}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Handle",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"toggle-off",disabled:u.isAI||u.panel_open,content:"Disengaged",selected:u.flushing?null:"selected",onClick:function(){return d("disengageHandle")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"toggle-on",disabled:u.isAI||u.panel_open,content:"Engaged",selected:u.flushing?"selected":null,onClick:function(){return d("engageHandle")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"toggle-off",disabled:-1===u.mode,content:"Off",selected:u.mode?null:"selected",onClick:function(){return d("pumpOff")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"toggle-on",disabled:-1===u.mode,content:"On",selected:u.mode?"selected":null,onClick:function(){return d("pumpOn")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Eject",children:(0,o.createComponentVNode)(2,a.Button,{icon:"sign-out-alt",disabled:u.isAI,content:"Eject Contents",onClick:function(){return d("eject")}})})]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.DroneConsole=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.DroneConsole=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.drones,u=l.areas,s=l.selected_area,m=l.fabricator,p=l.fabPower;return(0,o.createComponentVNode)(2,i.Window,{width:600,height:350,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Drone Fabricator",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!m,selected:p,icon:"power-off",content:p?"Enabled":"Disabled",onClick:function(){return c("toggle_fab")}}),children:m?(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Linked."}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:["Fabricator not detected.",(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Search for Fabricator",onClick:function(){return c("search_fab")}})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Request Drone",children:[(0,o.createComponentVNode)(2,a.Dropdown,{options:u?u.sort():null,selected:s,width:"100%",onSelected:function(e){return c("set_dcall_area",{area:e})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"share-square",content:"Send Ping",onClick:function(){return c("ping")}})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Maintenance Units",children:d&&d.length?(0,o.createComponentVNode)(2,a.LabeledList,{children:d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Resync",onClick:function(){return c("resync",{ref:e.ref})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"exclamation-triangle",color:"red",content:"Shutdown",onClick:function(){return c("shutdown",{ref:e.ref})}})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:e.loc}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge",children:[e.charge," / ",e.maxCharge]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Active",children:e.active?"Yes":"No"})]})},e.name)}))}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No drones detected."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.EmbeddedController=void 0;var o=n(0),r=(n(7),n(5),n(1)),a=n(2),i=n(3),c=((0,n(24).createLogger)("fuck"),{});t.EmbeddedController=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data.internalTemplateName),l=c[a];if(!l)throw Error("Unable to find Component for template name: "+a);return(0,o.createComponentVNode)(2,i.Window,{width:450,height:340,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,l)})})};var l=function(e,t){var n=e.bars;return(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:n.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.label,children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.color(e.value),minValue:e.minValue,maxValue:e.maxValue,value:e.value,children:e.textValue})},e.label)}))})})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.data,c=n.act,l=!0;i.interior_status&&"open"===i.interior_status.state?l=!1:i.external_pressure&&i.chamber_pressure&&(l=!(Math.abs(i.external_pressure-i.chamber_pressure)>5));var d=!0;return i.exterior_status&&"open"===i.exterior_status.state?d=!1:i.internal_pressure&&i.chamber_pressure&&(d=!(Math.abs(i.internal_pressure-i.chamber_pressure)>5)),(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{disabled:i.airlock_disabled,icon:"arrow-left",content:"Cycle to Exterior",onClick:function(){return c("cycle_ext")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:i.airlock_disabled,icon:"arrow-right",content:"Cycle to Interior",onClick:function(){return c("cycle_int")}})]}),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:i.airlock_disabled,color:l?"":"bad",icon:"exclamation-triangle",confirmIcon:"exclamation-triangle",content:"Force Exterior Door",onClick:function(){return c("force_ext")}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:i.airlock_disabled,color:d?"":"bad",icon:"exclamation-triangle",confirmIcon:"exclamation-triangle",content:"Force Interior Door",onClick:function(){return c("force_int")}})]})],4)},u=function(e,t){var n=(0,r.useBackend)(t),i=n.data,c=(n.act,{docked:(0,o.createComponentVNode)(2,s),undocking:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"EJECTING-STAND CLEAR!"}),undocked:(0,o.createComponentVNode)(2,a.Box,{color:"grey",children:"POD EJECTED"}),docking:(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"INITIALIZING..."})}),l=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"ERROR"});return"open"===i.exterior_status.state?l=(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"OPEN"}):"unlocked"===i.exterior_status.lock?l=(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"UNSECURED"}):"locked"===i.exterior_status.lock&&(l=(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"SECURED"})),(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Escape Pod Status",children:c[i.docking_status]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Docking Hatch",children:l})]})})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.data;n.act;return i.armed?(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"ARMED"}):(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"SYSTEMS OK"})},m=function(e,t){var n=(0,r.useBackend)(t),i=n.data,c=n.act;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{disabled:!i.override_enabled,icon:"exclamation-triangle",content:"Force Exterior Door",color:"docked"!==i.docking_status?"bad":"",onClick:function(){return c("force_door")}}),(0,o.createComponentVNode)(2,a.Button,{selected:i.override_enabled,color:"docked"!==i.docking_status?"bad":"average",icon:"exclamation-triangle",content:"Override",onClick:function(){return c("toggle_override")}})]})},p=function(e,t){var n=(0,r.useBackend)(t),i=n.data,c=(n.act,{docked:(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"DOCKED"}),docking:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"DOCKING"}),undocking:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"UNDOCKING"}),undocked:(0,o.createComponentVNode)(2,a.Box,{color:"grey",children:"NOT IN USE"})}[i.docking_status]);return i.override_enabled&&(c=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[i.docking_status.toUpperCase(),"-OVERRIDE ENABLED"]})),c};c.AirlockConsoleAdvanced=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,u=function(e){return e<80||e>120?"bad":e<95||e>110?"average":"good"},s=[{minValue:0,maxValue:202,value:c.external_pressure,label:"External Pressure",textValue:c.external_pressure+" kPa",color:u},{minValue:0,maxValue:202,value:c.chamber_pressure,label:"Chamber Pressure",textValue:c.chamber_pressure+" kPa",color:u},{minValue:0,maxValue:202,value:c.internal_pressure,label:"Internal Pressure",textValue:c.internal_pressure+" kPa",color:u}];return(0,o.createFragment)([(0,o.createComponentVNode)(2,l,{bars:s}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Purge",onClick:function(){return i("purge")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"lock-open",content:"Secure",onClick:function(){return i("secure")}})]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!c.processing,icon:"ban",color:"bad",content:"Abort",onClick:function(){return i("abort")}})})]})],4)};c.AirlockConsoleSimple=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,u=[{minValue:0,maxValue:202,value:c.chamber_pressure,label:"Chamber Pressure",textValue:c.chamber_pressure+" kPa",color:function(e){return e<80||e>120?"bad":e<95||e>110?"average":"good"}}];return(0,o.createFragment)([(0,o.createComponentVNode)(2,l,{bars:u}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!c.processing,icon:"ban",color:"bad",content:"Abort",onClick:function(){return i("abort")}})})]})],4)};c.AirlockConsolePhoron=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,u=[{minValue:0,maxValue:202,value:c.chamber_pressure,label:"Chamber Pressure",textValue:c.chamber_pressure+" kPa",color:function(e){return e<80||e>120?"bad":e<95||e>110?"average":"good"}},{minValue:0,maxValue:100,value:c.chamber_phoron,label:"Chamber Phoron",textValue:c.chamber_phoron+" mol",color:function(e){return e>5?"bad":e>.5?"average":"good"}}];return(0,o.createFragment)([(0,o.createComponentVNode)(2,l,{bars:u}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!c.processing,icon:"ban",color:"bad",content:"Abort",onClick:function(){return i("abort")}})})]})],4)};c.AirlockConsoleDocking=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,u=[{minValue:0,maxValue:202,value:c.chamber_pressure,label:"Chamber Pressure",textValue:c.chamber_pressure+" kPa",color:function(e){return e<80||e>120?"bad":e<95||e>110?"average":"good"}}];return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Dock",buttons:c.airlock_disabled||c.override_enabled?(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",color:c.override_enabled?"red":"",content:"Override",onClick:function(){return i("toggle_override")}}):null,children:(0,o.createComponentVNode)(2,p)}),(0,o.createComponentVNode)(2,l,{bars:u}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!c.processing,icon:"ban",color:"bad",content:"Abort",onClick:function(){return i("abort")}})})]})],4)};c.DockingConsoleSimple=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"ERROR"});return"open"===c.exterior_status.state?l=(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"OPEN"}):"unlocked"===c.exterior_status.lock?l=(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"UNSECURED"}):"locked"===c.exterior_status.lock&&(l=(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"SECURED"})),(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",disabled:!c.override_enabled,content:"Force exterior door",onClick:function(){return i("force_door")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",color:c.override_enabled?"red":"",content:"Override",onClick:function(){return i("toggle_override")}})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Dock Status",children:(0,o.createComponentVNode)(2,p)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Docking Hatch",children:l})]})})};c.DockingConsoleMulti=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Docking Status",children:(0,o.createComponentVNode)(2,p)}),(0,o.createComponentVNode)(2,a.Section,{title:"Airlocks",children:n.airlocks.length?(0,o.createComponentVNode)(2,a.LabeledList,{children:n.airlocks.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{color:e.override_enabled?"bad":"good",label:e.name,children:e.override_enabled?"OVERRIDE ENABLED":"STATUS OK"},e.name)}))}):(0,o.createComponentVNode)(2,a.Flex,{height:"100%",mt:"0.5em",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"door-closed",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No airlocks found."]})})})],4)};c.DoorAccessConsole=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l="open"===c.interior_status.state||"closed"===c.exterior_status.state,d="open"===c.exterior_status.state||"closed"===c.interior_status.state;return(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:l?"arrow-left":"exclamation-triangle",content:l?"Cycle To Exterior":"Lock Exterior Door",onClick:function(){i(l?"cycle_ext_door":"force_ext")}}),(0,o.createComponentVNode)(2,a.Button,{icon:d?"arrow-right":"exclamation-triangle",content:d?"Cycle To Interior":"Lock Interior Door",onClick:function(){i(d?"cycle_int_door":"force_int")}})],0),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Exterior Door Status",children:"closed"===c.exterior_status.state?"Locked":"Open"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Interior Door Status",children:"closed"===c.interior_status.state?"Locked":"Open"})]})})};c.EscapePodConsole=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data;return(0,o.createFragment)([(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:[(0,o.createComponentVNode)(2,m),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",disabled:c.armed,color:c.armed?"bad":"average",content:"ARM",onClick:function(){return i("manual_arm")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",disabled:!c.can_force,color:"bad",content:"MANUAL EJECT",onClick:function(){return i("force_launch")}})]})]})],4)};c.EscapePodBerthConsole=function(e,t){(0,r.useBackend)(t).data;return(0,o.createFragment)([(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,m)})],4)}},function(e,t,n){"use strict";t.__esModule=!0,t.ExonetNode=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.ExonetNode=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.allowPDAs,s=l.allowCommunicators,m=l.allowNewscasters,p=l.logs;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,content:"Power "+(d?"On":"Off"),onClick:function(){return c("toggle_power")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Incoming PDA Messages",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:u,content:u?"Open":"Closed",onClick:function(){return c("toggle_PDA_port")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Incoming Communicators",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:s,content:s?"Open":"Closed",onClick:function(){return c("toggle_communicator_port")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Incoming Newscaster Content",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:m,content:m?"Open":"Closed",onClick:function(){return c("toggle_newscaster_port")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Logging",children:(0,o.createComponentVNode)(2,a.Flex,{wrap:"wrap",children:[p.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{m:"2px",basis:"49%",grow:t%2,children:e},t)})),p&&0!==p.length?null:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No logs found."})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Farmbot=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Farmbot=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.locked,s=l.tank,m=l.tankVolume,p=l.tankMaxVolume,h=l.waters_trays,f=l.refills_water,C=l.uproots_weeds,N=l.replaces_nutriment;l.collects_produce,l.removes_dead;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:540,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Automatic Hyrdoponic Assisting Unit v2.0",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("power")},children:d?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Water Tank",children:s&&(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,maxValue:p,children:[m," / ",p]})||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No water tank detected."})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Behavior Controls",color:u?"good":"bad",children:u?"Locked":"Unlocked"})]})}),!u&&(0,o.createComponentVNode)(2,a.Section,{title:"Behavior Controls",children:[(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Watering Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Water plants",children:(0,o.createComponentVNode)(2,a.Button,{icon:h?"toggle-on":"toggle-off",selected:h,onClick:function(){return c("water")},children:h?"Yes":"No"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Refill watertank",children:(0,o.createComponentVNode)(2,a.Button,{icon:f?"toggle-on":"toggle-off",selected:f,onClick:function(){return c("refill")},children:f?"Yes":"No"})})]})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Weeding controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Weed plants",children:(0,o.createComponentVNode)(2,a.Button,{icon:C?"toggle-on":"toggle-off",selected:C,onClick:function(){return c("weed")},children:C?"Yes":"No"})})})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Nutriment controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Replace fertilizer",children:(0,o.createComponentVNode)(2,a.Button,{icon:N?"toggle-on":"toggle-off",selected:N,onClick:function(){return c("replacenutri")},children:N?"Yes":"No"})})})})]})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.FaxContent=t.Fax=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(95),l=n(96);t.Fax=function(e,t){return(0,r.useBackend)(t).data.authenticated?(0,o.createComponentVNode)(2,i.Window,{width:600,height:250,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,c.LoginInfo),(0,o.createComponentVNode)(2,d)]})}):(0,o.createComponentVNode)(2,i.Window,{width:600,height:250,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,l.LoginScreen)]})})};var d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.bossName,d=c.copyItem,u=c.cooldown,s=c.destination;return(0,o.createComponentVNode)(2,a.Section,{children:[!!u&&(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:"Transmitter arrays realigning. Please stand by."}),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network",children:[l," Quantum Entanglement Network"]})}),d&&(0,o.createComponentVNode)(2,a.Box,{mt:1,children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Currently Sending",children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sending To",children:(0,o.createComponentVNode)(2,a.Button,{icon:"map-marker-alt",content:s,onClick:function(){return i("dept")}})})]}),(0,o.createComponentVNode)(2,a.Button,{icon:"share-square",onClick:function(){return i("send")},content:"Send",fluid:!0})]})||(0,o.createComponentVNode)(2,a.Box,{mt:1,children:"Please insert item to transmit."})]})};t.FaxContent=d;var u=function(e,t){var n=(0,r.useBackend)(t),i=n.act;return n.data.copyItem?(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",onClick:function(){return i("remove")},content:"Remove Item"})}):null}},function(e,t,n){"use strict";t.__esModule=!0,t.FileCabinet=void 0;var o=n(0),r=n(9),a=n(1),i=n(2),c=n(3);t.FileCabinet=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data.contents,u=(0,r.sortBy)((function(e){return e.name}))(d||[]);return(0,o.createComponentVNode)(2,c.Window,{width:350,height:300,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i.Section,{children:u.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"file",content:e.name,onClick:function(){return l("retrieve",{ref:e.ref})}},e.ref)}))})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Floorbot=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Floorbot=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.open,s=l.locked,m=l.amount,p=l.possible_bmode,h=l.improvefloors,f=l.eattiles,C=l.maketiles,N=l.bmode;return(0,o.createComponentVNode)(2,i.Window,{width:390,height:310,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Automatic Station Floor Repairer v2.0",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("start")},children:d?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tiles Left",children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",color:u?"bad":"good",children:u?"Open":"Closed"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Behavior Controls",color:s?"good":"bad",children:s?"Locked":"Unlocked"})]})}),!s&&(0,o.createComponentVNode)(2,a.Section,{title:"Behavior Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Improves Floors",children:(0,o.createComponentVNode)(2,a.Button,{icon:h?"toggle-on":"toggle-off",selected:h,onClick:function(){return c("improve")},children:h?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Finds Tiles",children:(0,o.createComponentVNode)(2,a.Button,{icon:f?"toggle-on":"toggle-off",selected:f,onClick:function(){return c("tiles")},children:f?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Makes Metal Sheets into Tiles",children:(0,o.createComponentVNode)(2,a.Button,{icon:C?"toggle-on":"toggle-off",selected:C,onClick:function(){return c("make")},children:C?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Bridge Mode",children:(0,o.createComponentVNode)(2,a.Dropdown,{over:!0,width:"100%",placeholder:"Disabled",selected:N,options:p,onSelected:function(e){return c("bridgemode",{dir:e})}})})]})})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GasPump=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.GasPump=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.pressure_set,s=l.last_flow_rate,m=l.last_power_draw,p=l.max_power_draw;return(0,o.createComponentVNode)(2,i.Window,{width:470,height:290,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:s/10})," L/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Load",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,minValue:0,maxValue:p,color:m=100?s="Running":!d&&u>0&&(s="DISCHARGING"),(0,o.createComponentVNode)(2,i.Window,{width:500,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"exclamation-triangle",confirmIcon:"exclamation-triangle",color:"red",content:"Toggle Breaker",confirmContent:d?"This will disable gravity!":"This will enable gravity!",onClick:function(){return c("gentoggle")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Breaker Setting",children:d?"Generator Enabled":"Generator Disabled"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Mode",children:["Generator ",s]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Status",children:[u,"%"]})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GuestPass=void 0;var o=n(0),r=n(9),a=n(1),i=n(2),c=n(3);t.GuestPass=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=(d.access,d.area),s=d.giver,m=d.giveName,p=d.reason,h=d.duration,f=d.mode,C=d.log,N=d.uid;return(0,o.createComponentVNode)(2,c.Window,{width:500,height:520,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:1===f&&(0,o.createComponentVNode)(2,i.Section,{title:"Activity Log",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"scroll",content:"Activity Log",selected:!0,onClick:function(){return l("mode",{mode:0})}}),children:[(0,o.createComponentVNode)(2,i.Button,{icon:"print",content:"Print",onClick:function(){return l("print")},fluid:!0,mb:1}),(0,o.createComponentVNode)(2,i.Section,{level:2,title:"Logs",children:C.length&&C.map((function(e){return(0,o.createVNode)(1,"div",null,null,1,{dangerouslySetInnerHTML:{__html:e}},e)}))||(0,o.createComponentVNode)(2,i.Box,{children:"No logs."})})]})||(0,o.createComponentVNode)(2,i.Section,{title:"Guest pass terminal #"+N,buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"scroll",content:"Activity Log",onClick:function(){return l("mode",{mode:1})}}),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Issuing ID",children:(0,o.createComponentVNode)(2,i.Button,{content:s||"Insert ID",onClick:function(){return l("id")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Issued To",children:(0,o.createComponentVNode)(2,i.Button,{content:m,onClick:function(){return l("giv_name")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Reason",children:(0,o.createComponentVNode)(2,i.Button,{content:p,onClick:function(){return l("reason")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Duration (minutes)",children:(0,o.createComponentVNode)(2,i.Button,{content:h,onClick:function(){return l("duration")}})})]}),(0,o.createComponentVNode)(2,i.Button.Confirm,{icon:"check",fluid:!0,content:"Issue Pass",onClick:function(){return l("issue")}}),(0,o.createComponentVNode)(2,i.Section,{title:"Access",level:2,children:(0,r.sortBy)((function(e){return e.area_name}))(u).map((function(e){return(0,o.createComponentVNode)(2,i.Button.Checkbox,{checked:e.on,content:e.area_name,onClick:function(){return l("access",{access:e.area})}},e.area)}))})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Holodeck=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.Holodeck=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.supportedPrograms,u=l.restrictedPrograms,s=l.currentProgram,m=l.isSilicon,p=l.safetyDisabled,h=l.emagged,f=l.gravity,C=d;return p&&(C=C.concat(u)),(0,o.createComponentVNode)(2,i.Window,{width:400,height:610,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Programs",children:C.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{color:-1!==u.indexOf(e)?"bad":null,icon:"eye",content:e,selected:s===e,fluid:!0,onClick:function(){return c("program",{program:e})}},e)}))}),!!m&&(0,o.createComponentVNode)(2,a.Section,{title:"Override",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",fluid:!0,disabled:h,color:p?"good":"bad",onClick:function(){return c("AIoverride")},children:[!!h&&"Error, unable to control. ",p?"Enable Safeties":"Disable Safeties"]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safeties",children:p?(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"DISABLED"}):(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"ENABLED"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gravity",children:(0,o.createComponentVNode)(2,a.Button,{icon:"user-astronaut",selected:f,onClick:function(){return c("gravity")},children:f?"Enabled":"Disabled"})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ICAssembly=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=(n(7),n(20));t.ICAssembly=function(e,t){var n=(0,a.useBackend)(t),u=(n.act,n.data),s=u.total_parts,m=u.max_components,p=u.total_complexity,h=u.max_complexity,f=u.battery_charge,C=u.battery_max,N=u.net_power,b=u.unremovable_circuits,V=u.removable_circuits;return(0,o.createComponentVNode)(2,c.Window,{width:600,height:380,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Space in Assembly",children:(0,o.createComponentVNode)(2,i.ProgressBar,{ranges:{good:[0,.25],average:[.5,.75],bad:[.75,1]},value:s/m,maxValue:1,children:[s," / ",m," (",(0,r.round)(s/m*100,1),"%)"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Complexity",children:(0,o.createComponentVNode)(2,i.ProgressBar,{ranges:{good:[0,.25],average:[.5,.75],bad:[.75,1]},value:p/h,maxValue:1,children:[p," / ",h," (",(0,r.round)(p/h*100,1),"%)"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Cell Charge",children:f&&(0,o.createComponentVNode)(2,i.ProgressBar,{ranges:{bad:[0,.25],average:[.5,.75],good:[.75,1]},value:f/C,maxValue:1,children:[f," / ",C," (",(0,r.round)(f/C*100,1),"%)"]})||(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"No cell detected."})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Net Energy",children:0===N?"0 W/s":(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:N,format:function(e){return"-"+(0,l.formatPower)(Math.abs(e))+"/s"}})})]})}),b.length&&(0,o.createComponentVNode)(2,d,{title:"Built-in Components",circuits:b})||null,V.length&&(0,o.createComponentVNode)(2,d,{title:"Removable Components",circuits:V})||null]})})};var d=function(e,t){var n=(0,a.useBackend)(t).act,r=e.title,c=e.circuits;return(0,o.createComponentVNode)(2,i.Section,{title:r,children:(0,o.createComponentVNode)(2,i.LabeledList,{children:c.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:[(0,o.createComponentVNode)(2,i.Button,{icon:"eye",onClick:function(){return n("open_circuit",{ref:e.ref})},children:"View"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eye",onClick:function(){return n("rename_circuit",{ref:e.ref})},children:"Rename"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eye",onClick:function(){return n("scan_circuit",{ref:e.ref})},children:"Debugger Scan"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eye",onClick:function(){return n("remove_circuit",{ref:e.ref})},children:"Remove"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eye",onClick:function(){return n("bottom_circuit",{ref:e.ref})},children:"Move to Bottom"})]},e.ref)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ICCircuit=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7),l=n(20);t.ICCircuit=function(e,t){var n=(0,r.useBackend)(t),c=n.act,s=n.data,m=(s.name,s.desc),p=s.displayed_name,h=(s.removable,s.complexity),f=s.power_draw_idle,C=s.power_draw_per_use,N=s.extended_desc,b=s.inputs,V=s.outputs,g=s.activators;return(0,o.createComponentVNode)(2,i.Window,{width:600,height:400,resizable:!0,title:p,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stats",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("rename")},children:"Rename"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("scan")},children:"Scan with Device"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("remove")},children:"Remove"})],4),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Complexity",children:h}),f&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Draw (Idle)",children:(0,l.formatPower)(f)})||null,C&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Draw (Active)",children:(0,l.formatPower)(C)})||null]}),N]}),(0,o.createComponentVNode)(2,a.Section,{title:"Circuit",children:[(0,o.createComponentVNode)(2,a.Flex,{textAlign:"center",spacing:1,children:[b.length&&(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Section,{title:"Inputs",children:(0,o.createComponentVNode)(2,d,{list:b})})})||null,(0,o.createComponentVNode)(2,a.Flex.Item,{basis:b.length&&V.length?"33%":b.length||V.length?"45%":"100%",children:(0,o.createComponentVNode)(2,a.Section,{title:p,mb:1,children:(0,o.createComponentVNode)(2,a.Box,{children:m})})}),V.length&&(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Section,{title:"Outputs",children:(0,o.createComponentVNode)(2,d,{list:V})})})||null]}),(0,o.createComponentVNode)(2,a.Section,{title:"Triggers",children:g.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("pin_name",{pin:e.ref})},children:e.pulse_out?"":""}),(0,o.createComponentVNode)(2,u,{pin:e})]},e.name)}))})]})]})})};var d=function(e,t){var n=(0,r.useBackend)(t).act;return e.list.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return n("pin_name",{pin:e.ref})},children:[(0,c.decodeHtmlEntities)(e.type),": ",e.name]}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return n("pin_data",{pin:e.ref})},children:e.data}),(0,o.createComponentVNode)(2,u,{pin:e})]},e.ref)}))},u=function(e,t){var n=(0,r.useBackend)(t).act,i=e.pin;return i.linked.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return n("pin_unwire",{pin:i.ref,link:e.ref})},children:e.name}),"@\xa0",(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return n("examine",{ref:e.holder_ref})},children:e.holder_name})]},e.ref)}))}},function(e,t,n){"use strict";t.__esModule=!0,t.ICDetailer=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(7);t.ICDetailer=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.detail_color,s=d.color_list;return(0,o.createComponentVNode)(2,i.Window,{width:420,height:254,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:Object.keys(s).map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{ml:0,mr:0,mb:-.4,mt:0,tooltip:(0,c.toTitleCase)(e),tooltipPosition:t%6==5?"left":"right",height:"64px",width:"64px",onClick:function(){return l("change_color",{color:e})},style:s[e]===u?{border:"4px solid black","border-radius":0}:{"border-radius":0},backgroundColor:s[e]},e)}))})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ICPrinter=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(9);n(24);t.ICPrinter=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data),l=c.metal,u=c.max_metal,s=c.metal_per_sheet,m=(c.debug,c.upgraded),p=c.can_clone;c.assembly_to_clone,c.categories;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:630,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Metal",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:l,maxValue:u,children:[l/s," / ",u/s," sheets"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Circuits Available",children:m?"Advanced":"Regular"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Assembly Cloning",children:p?"Available":"Unavailable"})]}),(0,o.createComponentVNode)(2,a.Box,{mt:1,children:"Note: A red component name means that the printer must be upgraded to create that component."})]}),(0,o.createComponentVNode)(2,d)]})})};var l=function(e,t){return!!e.can_build&&!(e.cost>t.metal)},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,d=n.data,u=d.categories,s=(d.debug,(0,r.useSharedState)(t,"categoryTarget",null)),m=s[0],p=s[1],h=(0,c.filter)((function(e){return e.name===m}))(u)[0];return(0,o.createComponentVNode)(2,a.Section,{title:"Circuits",children:[(0,o.createComponentVNode)(2,a.Tabs,{children:(0,c.sortBy)((function(e){return e.name}))(u).map((function(e){return(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:m===e.name,onClick:function(){return p(e.name)},children:e.name},e.name)}))}),h&&(0,o.createComponentVNode)(2,a.Section,{title:h.name,level:2,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,c.sortBy)((function(e){return e.name}))(h.items).map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,labelColor:e.can_build?"good":"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!l(e,d),icon:"print",onClick:function(){return i("build",{build:e.path})},children:"Print"}),children:e.desc},e.name)}))})})||"No category selected."]})}},function(e,t,n){"use strict";t.__esModule=!0,t.IDCard=void 0;var o=n(0),r=n(2),a=n(1),i=n(3),c=n(191);t.IDCard=function(e,t){var n=(0,a.useBackend)(t).data,l=n.registered_name,d=n.sex,u=n.age,s=n.assignment,m=n.fingerprint_hash,p=n.blood_type,h=n.dna_hash,f=n.photo_front,C=[{name:"Sex",val:d},{name:"Age",val:u},{name:"Blood Type",val:p},{name:"Fingerprint",val:m},{name:"DNA Hash",val:h}];return(0,o.createComponentVNode)(2,i.Window,{width:470,height:250,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,r.Section,{children:[(0,o.createComponentVNode)(2,r.Flex,{children:[(0,o.createComponentVNode)(2,r.Flex.Item,{basis:"25%",textAlign:"left",children:(0,o.createComponentVNode)(2,r.Box,{inline:!0,style:{width:"101px",height:"120px",overflow:"hidden",outline:"2px solid #4972a1"},children:f&&(0,o.createVNode)(1,"img",null,null,1,{src:f.substr(1,f.length-1),style:{width:"300px","margin-left":"-94px","-ms-interpolation-mode":"nearest-neighbor"}})||(0,o.createComponentVNode)(2,r.Icon,{name:"user",size:8,ml:1.5,mt:2.5})})}),(0,o.createComponentVNode)(2,r.Flex.Item,{basis:0,grow:1,children:(0,o.createComponentVNode)(2,r.LabeledList,{children:C.map((function(e){return(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:e.name,children:e.val},e.name)}))})})]}),(0,o.createComponentVNode)(2,r.Flex,{className:"IDCard__NamePlate",align:"center",justify:"space-around",children:[(0,o.createComponentVNode)(2,r.Flex.Item,{children:(0,o.createComponentVNode)(2,r.Box,{textAlign:"center",children:l})}),(0,o.createComponentVNode)(2,r.Flex.Item,{children:(0,o.createComponentVNode)(2,r.Box,{textAlign:"center",children:(0,o.createComponentVNode)(2,c.RankIcon,{rank:s})})}),(0,o.createComponentVNode)(2,r.Flex.Item,{children:(0,o.createComponentVNode)(2,r.Box,{textAlign:"center",children:s})})]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.InventoryPanel=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.InventoryPanel=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.slots,u=l.internalsValid;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:200,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d&&d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,a.Button,{mb:-1,icon:e.item?"hand-paper":"gift",onClick:function(){return c(e.act)},children:e.item||"Nothing"})},e.name)}))})}),u&&(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:u&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"lungs",onClick:function(){return c("internals")},children:"Set Internals"})||null})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.InventoryPanelHuman=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.InventoryPanelHuman=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.slots,u=l.specialSlots,s=(l.internals,l.internalsValid),m=l.sensors,p=l.handcuffed,h=l.handcuffedParams,f=l.legcuffed,C=l.legcuffedParams,N=l.accessory;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[d&&d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,a.Button,{mb:-1,icon:e.item?"hand-paper":"gift",onClick:function(){return c(e.act,e.params)},children:e.item||"Nothing"})},e.name)})),(0,o.createComponentVNode)(2,a.LabeledList.Divider),u&&u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,a.Button,{mb:-1,icon:e.item?"hand-paper":"gift",onClick:function(){return c(e.act,e.params)},children:e.item||"Nothing"})},e.name)}))]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:[(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"running",onClick:function(){return c("targetSlot",{slot:"splints"})},children:"Remove Splints"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"hand-paper",onClick:function(){return c("targetSlot",{slot:"pockets"})},children:"Empty Pockets"}),s&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"lungs",onClick:function(){return c("targetSlot",{slot:"internals"})},children:"Set Internals"})||null,m&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"book-medical",onClick:function(){return c("targetSlot",{slot:"sensors"})},children:"Set Sensors"})||null,p&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"bad",icon:"unlink",onClick:function(){return c("targetSlot",h)},children:"Handcuffed"})||null,f&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"bad",icon:"unlink",onClick:function(){return c("targetSlot",C)},children:"Legcuffed"})||null,N&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"bad",icon:"unlink",onClick:function(){return c("targetSlot",{slot:"tie"})},children:"Remove Accessory"})||null]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.IsolationCentrifuge=void 0;var o=n(0),r=(n(5),n(20),n(1)),a=n(2),i=n(3);t.IsolationCentrifuge=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.busy,u=l.antibodies,s=l.pathogens,m=l.is_antibody_sample,p=l.sample_inserted,h=(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No vial detected."});return p&&(h=u||s?(0,o.createFragment)([u?(0,o.createComponentVNode)(2,a.Section,{title:"Antibodies",children:u}):null,s.length?(0,o.createComponentVNode)(2,a.Section,{title:"Pathogens",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:s.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:e.spread_type},e.name)}))})}):null],0):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No antibodies or viral strains detected."})),(0,o.createComponentVNode)(2,i.Window,{width:400,height:500,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:d?(0,o.createComponentVNode)(2,a.Section,{title:"The Centrifuge is currently busy.",color:"bad",children:(0,o.createVNode)(1,"center",null,(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:d}),2)}):(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:m?"Antibody Sample":"Blood Sample",children:[(0,o.createComponentVNode)(2,a.Flex,{spacing:1,mb:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"print",content:"Print",disabled:!u&&!s.length,onClick:function(){return c("print")}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:"Eject Vial",disabled:!p,onClick:function(){return c("sample")}})})]}),h]}),u&&!m||s.length?(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[u&&!m?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Isolate Antibodies",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:u,onClick:function(){return c("antibody")}})}):null,s.length?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Isolate Strain",children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:e.name,onClick:function(){return c("isolate",{isolate:e.reference})}},e.name)}))}):null]})}):null],0)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.JanitorCart=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.JanitorCart=function(e,t){var n=(0,r.useBackend)(t),c=n.act,d=n.data,u=d.mybag,s=d.mybucket,m=d.mymop,p=d.myspray,h=d.myreplacer,f=d.signs;d.icons;return(0,o.createComponentVNode)(2,i.Window,{width:210,height:180,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:u||"Garbage Bag Slot",tooltipPosition:"bottom-right",color:u?"grey":"transparent",style:{border:u?null:"2px solid grey"},onClick:function(){return c("bag")},children:(0,o.createComponentVNode)(2,l,{iconkey:"mybag"})}),(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:s||"Bucket Slot",tooltipPosition:"bottom",color:s?"grey":"transparent",style:{border:s?null:"2px solid grey"},onClick:function(){return c("bucket")},children:(0,o.createComponentVNode)(2,l,{iconkey:"mybucket"})}),(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:m||"Mop Slot",tooltipPosition:"bottom-left",color:m?"grey":"transparent",style:{border:m?null:"2px solid grey"},onClick:function(){return c("mop")},children:(0,o.createComponentVNode)(2,l,{iconkey:"mymop"})}),(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:p||"Spray Slot",tooltipPosition:"top-right",color:p?"grey":"transparent",style:{border:p?null:"2px solid grey"},onClick:function(){return c("spray")},children:(0,o.createComponentVNode)(2,l,{iconkey:"myspray"})}),(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:h||"Light Replacer Slot",tooltipPosition:"top",color:h?"grey":"transparent",style:{border:h?null:"2px solid grey"},onClick:function(){return c("replacer")},children:(0,o.createComponentVNode)(2,l,{iconkey:"myreplacer"})}),(0,o.createComponentVNode)(2,a.Button,{width:"64px",height:"64px",position:"relative",tooltip:f||"Signs Slot",tooltipPosition:"top-left",color:f?"grey":"transparent",style:{border:f?null:"2px solid grey"},onClick:function(){return c("sign")},children:(0,o.createComponentVNode)(2,l,{iconkey:"signs"})})]})})};var c={mybag:"trash",mybucket:"fill",mymop:"broom",myspray:"spray-can",myreplacer:"lightbulb",signs:"sign"},l=function(e,t){var n=(0,r.useBackend)(t).data,i=e.iconkey,l=n.icons;return i in l?(0,o.createVNode)(1,"img",null,null,1,{src:l[i].substr(1,l[i].length-1),style:{position:"absolute",left:0,right:0,top:0,bottom:0,width:"64px",height:"64px","-ms-interpolation-mode":"nearest-neighbor"}}):(0,o.createComponentVNode)(2,a.Icon,{style:{position:"absolute",left:"4px",right:0,top:"20px",bottom:0,width:"64px",height:"64px"},fontSize:2,name:c[i]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Jukebox=void 0;var o=n(0),r=n(5),a=n(9),i=n(1),c=n(2),l=n(3);t.Jukebox=function(e,t){var n=(0,i.useBackend)(t),d=n.act,u=n.data,s=u.playing,m=u.loop_mode,p=u.volume,h=u.current_track_ref,f=u.current_track,C=u.percent,N=u.tracks;return(0,o.createComponentVNode)(2,l.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,c.Section,{title:"Currently Playing",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Title",children:s&&f&&(0,o.createComponentVNode)(2,c.Box,{children:[f.title," by ",f.artist||"Unkown"]})||(0,o.createComponentVNode)(2,c.Box,{children:"Stopped"})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Controls",children:[(0,o.createComponentVNode)(2,c.Button,{icon:"play",disabled:s,onClick:function(){return d("play")},children:"Play"}),(0,o.createComponentVNode)(2,c.Button,{icon:"stop",disabled:!s,onClick:function(){return d("stop")},children:"Stop"})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Loop Mode",children:[(0,o.createComponentVNode)(2,c.Button,{icon:"play",onClick:function(){return d("loopmode",{loopmode:1})},selected:1===m,children:"Next"}),(0,o.createComponentVNode)(2,c.Button,{icon:"random",onClick:function(){return d("loopmode",{loopmode:2})},selected:2===m,children:"Shuffle"}),(0,o.createComponentVNode)(2,c.Button,{icon:"redo",onClick:function(){return d("loopmode",{loopmode:3})},selected:3===m,children:"Repeat"}),(0,o.createComponentVNode)(2,c.Button,{icon:"step-forward",onClick:function(){return d("loopmode",{loopmode:4})},selected:4===m,children:"Once"})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Progress",children:(0,o.createComponentVNode)(2,c.ProgressBar,{value:C,maxValue:1,color:"good"})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Volume",children:(0,o.createComponentVNode)(2,c.Slider,{minValue:0,step:.01,value:p,maxValue:1,ranges:{good:[.75,Infinity],average:[.25,.75],bad:[0,.25]},format:function(e){return(0,r.round)(100*e,1)+"%"},onChange:function(e,t){return d("volume",{val:(0,r.round)(t,2)})}})})]})}),(0,o.createComponentVNode)(2,c.Section,{title:"Available Tracks",children:N.length&&(0,a.sortBy)((function(e){return e.title}))(N).map((function(e){return(0,o.createComponentVNode)(2,c.Button,{fluid:!0,icon:"play",selected:h===e.ref,onClick:function(){return d("change_track",{change_track:e.ref})},children:e.title},e.ref)}))||(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Error: No songs loaded."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.LawManager=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.LawManager=function(e,t){var n=(0,r.useBackend)(t),l=(n.act,n.data.isSlaved);return(0,o.createComponentVNode)(2,i.Window,{width:800,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[l&&(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:["Law-synced to ",l]})||null,(0,o.createComponentVNode)(2,c)]})})};var c=function(e,t){var n=(0,r.useSharedState)(t,"lawsTabIndex",0),i=n[0],c=n[1];return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===i,onClick:function(){return c(0)},children:"Law Management"}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===i,onClick:function(){return c(1)},children:"Law Sets"})]}),0===i&&(0,o.createComponentVNode)(2,l)||null,1===i&&(0,o.createComponentVNode)(2,u)||null],0)},l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.ion_law_nr,u=c.ion_law,s=c.zeroth_law,m=c.inherent_law,p=c.supplied_law,h=c.supplied_law_position,f=c.zeroth_laws,C=c.has_zeroth_laws,N=c.ion_laws,b=c.has_ion_laws,V=c.inherent_laws,g=c.has_inherent_laws,v=c.supplied_laws,k=c.has_supplied_laws,_=c.isAI,y=c.isMalf,L=c.isAdmin,B=c.channel,x=c.channels,w=f.map((function(e){return e.zero=!0,e})).concat(V);return(0,o.createComponentVNode)(2,a.Section,{children:[b&&(0,o.createComponentVNode)(2,d,{laws:N,title:l+" Laws:",mt:-2})||null,(C||g)&&(0,o.createComponentVNode)(2,d,{laws:w,title:"Inherent Laws",mt:-2})||null,k&&(0,o.createComponentVNode)(2,d,{laws:v,title:"Supplied Laws",mt:-2})||null,(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Controls",mt:-2,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Statement Channel",children:x.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.channel,selected:B===e.channel,onClick:function(){return i("law_channel",{law_channel:e.channel})}},e.channel)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"State Laws",children:(0,o.createComponentVNode)(2,a.Button,{icon:"volume-up",onClick:function(){return i("state_laws")},children:"State Laws"})}),_&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Law Notification",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation",onClick:function(){return i("notify_laws")},children:"Notify"})})||null]})}),y&&(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Add Laws",mt:-2,children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Type"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Law"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Index"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Add"})]}),L&&!C&&(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Zero"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Input,{value:s,fluid:!0,onChange:function(e,t){return i("change_zeroth_law",{val:t})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("add_zeroth_law")},children:"Add"})})]})||null,(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Ion"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Input,{value:u,fluid:!0,onChange:function(e,t){return i("change_ion_law",{val:t})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("add_ion_law")},children:"Add"})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Inherent"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Input,{value:m,fluid:!0,onChange:function(e,t){return i("change_inherent_law",{val:t})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("add_inherent_law")},children:"Add"})})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Supplied"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Input,{value:p,fluid:!0,onChange:function(e,t){return i("change_supplied_law",{val:t})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("change_supplied_law_position")},children:h})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return i("add_supplied_law")},children:"Add"})})]})]})})||null]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.isMalf,d=c.isAdmin,u=e.laws,s=e.title,m=e.noButtons,p=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["laws","title","noButtons"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Section,Object.assign({level:2,title:s},p,{children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Index"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Law"}),!m&&(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"State"})||null,l&&!m&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Edit"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Delete"})],4)||null]}),u.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:[e.index,"."]}),(0,o.createComponentVNode)(2,a.Table.Cell,{color:e.zero?"bad":null,children:e.law}),!m&&(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"volume-up",selected:e.state,onClick:function(){return i("state_law",{ref:e.ref,state_law:!e.state})},children:e.state?"Yes":"No"})})||null,l&&!m&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{disabled:e.zero&&!d,icon:"pen",onClick:function(){return i("edit_law",{edit_law:e.ref})},children:"Edit"})}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{disabled:e.zero&&!d,color:"bad",icon:"trash",onClick:function(){return i("delete_law",{delete_law:e.ref})},children:"Delete"})})],4)||null]},e.index)}))]})})))},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.isMalf,u=c.law_sets;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Remember: Stating laws other than those currently loaded may be grounds for decommissioning! - NanoTrasen"}),u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{disabled:!l,icon:"sync",onClick:function(){return i("transfer_laws",{transfer_laws:e.ref})},children:"Load Laws"}),(0,o.createComponentVNode)(2,a.Button,{icon:"volume-up",onClick:function(){return i("state_law_set",{state_law_set:e.ref})},children:"State Laws"})],4),children:[e.laws.has_ion_laws&&(0,o.createComponentVNode)(2,d,{noButtons:!0,laws:e.laws.ion_laws,title:e.laws.ion_law_nr+" Laws:"})||null,(e.laws.has_zeroth_laws||e.laws.has_inherent_laws)&&(0,o.createComponentVNode)(2,d,{noButtons:!0,laws:e.laws.zeroth_laws.concat(e.laws.inherent_laws),title:e.header})||null,e.laws.has_supplied_laws&&(0,o.createComponentVNode)(2,d,{noButtons:!0,laws:e.laws.supplied_laws,title:"Supplied Laws"})||null]},e.name)}))||null],0)}},function(e,t,n){"use strict";t.__esModule=!0,t.LookingGlass=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.LookingGlass=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.supportedPrograms,u=l.currentProgram,s=l.immersion,m=l.gravity,p=Math.min(180+23*d.length,600);return(0,o.createComponentVNode)(2,i.Window,{width:300,height:p,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Programs",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eye",selected:e===u,onClick:function(){return c("program",{program:e})},children:e},e)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gravity",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"user-astronaut",selected:m,onClick:function(){return c("gravity")},children:m?"Enabled":"Disabled"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Full Immersion",children:(0,o.createComponentVNode)(2,a.Button,{mt:-1,fluid:!0,icon:"eye",selected:s,onClick:function(){return c("immersion")},children:s?"Enabled":"Disabled"})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MechaControlConsole=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7);t.MechaControlConsole=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.beacons,s=d.stored_data;return(0,o.createComponentVNode)(2,i.Window,{width:600,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[s.length&&(0,o.createComponentVNode)(2,a.Modal,{children:(0,o.createComponentVNode)(2,a.Section,{height:"400px",style:{"overflow-y":"auto"},title:"Log",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"window-close",onClick:function(){return l("clear_log")}}),children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",children:["(",e.time,") (",e.year,")"]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,c.decodeHtmlEntities)(e.message)})]},e.time)}))})})||null,u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"comment",onClick:function(){return l("send_message",{mt:e.ref})},children:"Message"}),(0,o.createComponentVNode)(2,a.Button,{icon:"eye",onClick:function(){return l("get_log",{mt:e.ref})},children:"View Log"}),(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"red",content:"EMP",icon:"bomb",onClick:function(){return l("shock",{mt:e.ref})}})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*e.maxHealth,Infinity],average:[.5*e.maxHealth,.75*e.maxHealth],bad:[-Infinity,.5*e.maxHealth]},value:e.health,maxValue:e.maxHealth})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Charge",children:e.cell&&(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*e.cellMaxCharge,Infinity],average:[.5*e.cellMaxCharge,.75*e.cellMaxCharge],bad:[-Infinity,.5*e.cellMaxCharge]},value:e.cellCharge,maxValue:e.cellMaxCharge})||(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No Cell Installed"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Air Tank",children:[e.airtank,"kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pilot",children:e.pilot||"Unoccupied"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:(0,c.toTitleCase)(e.location)||"Unknown"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Active Equipment",children:e.active||"None"}),e.cargoMax&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cargo Space",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{bad:[.75*e.cargoMax,Infinity],average:[.5*e.cargoMax,.75*e.cargoMax],good:[-Infinity,.5*e.cargoMax]},value:e.cargoUsed,maxValue:e.cargoMax})})||null]})},e.name)}))||(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No mecha beacons found."})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Medbot=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Medbot=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.open,s=l.beaker,m=l.beaker_total,p=l.beaker_max,h=l.locked,f=l.heal_threshold,C=l.heal_threshold_max,N=l.injection_amount_min,b=l.injection_amount,V=l.injection_amount_max,g=l.use_beaker,v=l.declare_treatment,k=l.vocal;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:600,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Automatic Medical Unit v2.0",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("power")},children:d?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",color:u?"bad":"good",children:u?"Open":"Closed"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Beaker",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:"eject",onClick:function(){return c("eject")},children:"Eject"}),children:s&&(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,maxValue:p,children:[m," / ",p]})||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No beaker loaded."})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Behavior Controls",color:h?"good":"bad",children:h?"Locked":"Unlocked"})]})}),!h&&(0,o.createComponentVNode)(2,a.Section,{title:"Behavioral Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Healing Threshold",children:(0,o.createComponentVNode)(2,a.NumberInput,{fluid:!0,minValue:0,maxValue:C,value:f,onDrag:function(e,t){return c("adj_threshold",{val:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Injection Amount",children:(0,o.createComponentVNode)(2,a.NumberInput,{fluid:!0,minValue:N,maxValue:V,value:b,onDrag:function(e,t){return c("adj_inject",{val:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Reagent Source",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:g?"toggle-on":"toggle-off",selected:g,onClick:function(){return c("use_beaker")},children:g?"Loaded Beaker (When available)":"Internal Synthesizer"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Treatment Report",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:v?"toggle-on":"toggle-off",selected:v,onClick:function(){return c("declaretreatment")},children:v?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Speaker",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:k?"toggle-on":"toggle-off",selected:k,onClick:function(){return c("togglevoice")},children:k?"On":"Off"})})]})})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MedicalRecords=void 0;var o=n(0),r=n(1),a=n(2),i=n(45),c=n(3),l=n(95),d=n(96),u=n(62),s=(n(7),function(e,t){(0,i.modalOpen)(e,"edit",{field:t.edit,value:t.value})});t.MedicalRecords=function(e,t){var n,s=(0,r.useBackend)(t).data,f=s.authenticated,C=s.screen;return f?(2===C?n=(0,o.createComponentVNode)(2,m):3===C?n=(0,o.createComponentVNode)(2,p):4===C?n=(0,o.createComponentVNode)(2,h):5===C?n=(0,o.createComponentVNode)(2,N):6===C&&(n=(0,o.createComponentVNode)(2,b)),(0,o.createComponentVNode)(2,c.Window,{width:800,height:380,resizable:!0,children:[(0,o.createComponentVNode)(2,i.ComplexModal,{maxHeight:"100%",maxWidth:"80%"}),(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,l.LoginInfo),(0,o.createComponentVNode)(2,u.TemporaryNotice),(0,o.createComponentVNode)(2,V),(0,o.createComponentVNode)(2,a.Section,{height:"calc(100% - 5rem)",flexGrow:"1",children:n})]})]})):(0,o.createComponentVNode)(2,c.Window,{width:800,height:380,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,d.LoginScreen)})})};var m=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.records;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Input,{fluid:!0,placeholder:"Search by Name, DNA, or ID",onChange:function(e,t){return i("search",{t1:t})}}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:c.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{icon:"user",mb:"0.5rem",content:e.id+": "+e.name,onClick:function(){return i("d_rec",{d_rec:e.ref})}},t)}))})],4)},p=function(e,t){var n=(0,r.useBackend)(t).act;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"download",content:"Backup to Disk",disabled:!0}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"upload",content:"Upload from Disk",my:"0.5rem",disabled:!0}),(0,o.createTextVNode)(" "),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",content:"Delete All Medical Records",onClick:function(){return n("del_all")}})],4)},h=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.medical,d=c.printing;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"General Data",level:2,mt:"-6px",children:(0,o.createComponentVNode)(2,f)}),(0,o.createComponentVNode)(2,a.Section,{title:"Medical Data",level:2,children:(0,o.createComponentVNode)(2,C)}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",level:2,children:[(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",disabled:!!l.empty,content:"Delete Medical Record",color:"bad",onClick:function(){return i("del_r")}}),(0,o.createComponentVNode)(2,a.Button,{icon:d?"spinner":"print",disabled:d,iconSpin:!!d,content:"Print Entry",ml:"0.5rem",onClick:function(){return i("print_p")}}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-left",content:"Back",mt:"0.5rem",onClick:function(){return i("screen",{screen:2})}})]})],4)},f=function(e,t){var n=(0,r.useBackend)(t).data.general;return n&&n.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"left",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:n.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[(0,o.createComponentVNode)(2,a.Box,{height:"20px",display:"inline-block",children:e.value.split("\n").map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)}))}),!!e.edit&&(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",onClick:function(){return s(t,e)}})]},n)}))})}),(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"right",textAlign:"right",children:!!n.has_photos&&n.photos.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",textAlign:"center",color:"label",children:[(0,o.createVNode)(1,"img",null,null,1,{src:e.substr(1,e.length-1),style:{width:"96px","margin-bottom":"0.5rem","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createVNode)(1,"br"),"Photo #",t+1]},t)}))})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"General records lost!"})},C=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data.medical;return l&&l.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList,{children:l.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[e.value.split("\n").map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)})),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",mb:e.line_break?"1rem":"initial",onClick:function(){return s(t,e)}})]},n)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Comments/Log",level:2,children:[0===l.comments.length?(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"No comments found."}):l.comments.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",display:"inline",children:e.header}),(0,o.createVNode)(1,"br"),e.text,(0,o.createComponentVNode)(2,a.Button,{icon:"comment-slash",color:"bad",ml:"0.5rem",onClick:function(){return c("del_c",{del_c:t+1})}})]},t)})),(0,o.createComponentVNode)(2,a.Button,{icon:"comment-medical",content:"Add Entry",color:"good",mt:"0.5rem",mb:"0",onClick:function(){return(0,i.modalOpen)(t,"add_c")}})]})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:["Medical records lost!",(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"New Record",ml:"0.5rem",onClick:function(){return c("new")}})]})},N=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.virus;return c.sort((function(e,t){return e.name>t.name?1:-1})),c.map((function(e,t){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"flask",content:e.name,mb:"0.5rem",onClick:function(){return i("vir",{vir:e.D})}}),(0,o.createVNode)(1,"br")],4,t)}))},b=function(e,t){var n=(0,r.useBackend)(t).data.medbots;return 0===n.length?(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"There are no Medbots."}):n.map((function(e,t){return(0,o.createComponentVNode)(2,a.Collapsible,{open:!0,title:e.name,children:(0,o.createComponentVNode)(2,a.Box,{px:"0.5rem",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:[e.area||"Unknown"," (",e.x,", ",e.y,")"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:e.on?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Online"}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:e.use_beaker?"Reservoir: "+e.total_volume+"/"+e.maximum_volume:"Using internal synthesizer."})],4):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Offline"})})]})})},t)}))},V=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.screen;return(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===c,onClick:function(){return i("screen",{screen:2})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"list"}),"List Records"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:5===c,onClick:function(){return i("screen",{screen:5})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"database"}),"Virus Database"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:6===c,onClick:function(){return i("screen",{screen:6})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"plus-square"}),"Medbot Tracking"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:3===c,onClick:function(){return i("screen",{screen:3})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"wrench"}),"Record Maintenance"]})]})};(0,i.modalRegisterBodyOverride)("virus",(function(e,t){var n=(0,r.useBackend)(t).act,i=e.args;return(0,o.createComponentVNode)(2,a.Section,{level:2,m:"-1rem",title:i.name||"Virus",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"times",color:"red",onClick:function(){return n("modal_close")}}),children:(0,o.createComponentVNode)(2,a.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Spread",children:[i.spread_text," Transmission"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Possible cure",children:i.antigen}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rate of Progression",children:i.rate}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Antibiotic Resistance",children:[i.resistance,"%"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species Affected",children:i.species}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Symptoms",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:i.symptoms.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.stage+". "+e.name,children:[(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"label",children:"Strength:"})," ",e.strength,"\xa0",(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"label",children:"Aggressiveness:"})," ",e.aggressiveness]},e.stage)}))})})]})})})}))},function(e,t,n){"use strict";t.__esModule=!0,t.MessageMonitor=void 0;var o=n(0),r=(n(5),n(7)),a=n(1),i=n(2),c=n(3),l=n(62),d=n(61);t.MessageMonitor=function(e,t){var n,r=(0,a.useBackend)(t),d=(r.act,r.data),p=d.auth,h=d.linkedServer,f=(d.message,d.hacking),C=d.emag;return n=f||C?(0,o.createComponentVNode)(2,u):p?h?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"ERROR"}):(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,c.Window,{width:670,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,l.TemporaryNotice),n]})})};var u=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.isMalfAI);return(0,o.createComponentVNode)(2,d.FullscreenNotice,{title:"ERROR",children:r?(0,o.createComponentVNode)(2,i.Box,{children:"Brute-forcing for server key. It will take 20 seconds for every character that the password has."}):(0,o.createComponentVNode)(2,i.Box,{children:["01000010011100100111010101110100011001010010110",(0,o.createVNode)(1,"br"),"10110011001101111011100100110001101101001011011100110011",(0,o.createVNode)(1,"br"),"10010000001100110011011110111001000100000011100110110010",(0,o.createVNode)(1,"br"),"10111001001110110011001010111001000100000011010110110010",(0,o.createVNode)(1,"br"),"10111100100101110001000000100100101110100001000000111011",(0,o.createVNode)(1,"br"),"10110100101101100011011000010000001110100011000010110101",(0,o.createVNode)(1,"br"),"10110010100100000001100100011000000100000011100110110010",(0,o.createVNode)(1,"br"),"10110001101101111011011100110010001110011001000000110011",(0,o.createVNode)(1,"br"),"00110111101110010001000000110010101110110011001010111001",(0,o.createVNode)(1,"br"),"00111100100100000011000110110100001100001011100100110000",(0,o.createVNode)(1,"br"),"10110001101110100011001010111001000100000011101000110100",(0,o.createVNode)(1,"br"),"00110000101110100001000000111010001101000011001010010000",(0,o.createVNode)(1,"br"),"00111000001100001011100110111001101110111011011110111001",(0,o.createVNode)(1,"br"),"00110010000100000011010000110000101110011001011100010000",(0,o.createVNode)(1,"br"),"00100100101101110001000000111010001101000011001010010000",(0,o.createVNode)(1,"br"),"00110110101100101011000010110111001110100011010010110110",(0,o.createVNode)(1,"br"),"10110010100101100001000000111010001101000011010010111001",(0,o.createVNode)(1,"br"),"10010000001100011011011110110111001110011011011110110110",(0,o.createVNode)(1,"br"),"00110010100100000011000110110000101101110001000000111001",(0,o.createVNode)(1,"br"),"00110010101110110011001010110000101101100001000000111100",(0,o.createVNode)(1,"br"),"10110111101110101011100100010000001110100011100100111010",(0,o.createVNode)(1,"br"),"10110010100100000011010010110111001110100011001010110111",(0,o.createVNode)(1,"br"),"00111010001101001011011110110111001110011001000000110100",(0,o.createVNode)(1,"br"),"10110011000100000011110010110111101110101001000000110110",(0,o.createVNode)(1,"br"),"00110010101110100001000000111001101101111011011010110010",(0,o.createVNode)(1,"br"),"10110111101101110011001010010000001100001011000110110001",(0,o.createVNode)(1,"br"),"10110010101110011011100110010000001101001011101000010111",(0,o.createVNode)(1,"br"),"00010000001001101011000010110101101100101001000000111001",(0,o.createVNode)(1,"br"),"10111010101110010011001010010000001101110011011110010000",(0,o.createVNode)(1,"br"),"00110100001110101011011010110000101101110011100110010000",(0,o.createVNode)(1,"br"),"00110010101101110011101000110010101110010001000000111010",(0,o.createVNode)(1,"br"),"00110100001100101001000000111001001101111011011110110110",(0,o.createVNode)(1,"br"),"10010000001100100011101010111001001101001011011100110011",(0,o.createVNode)(1,"br"),"10010000001110100011010000110000101110100001000000111010",(0,o.createVNode)(1,"br"),"001101001011011010110010100101110"]})})},s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.isMalfAI;return(0,o.createComponentVNode)(2,d.FullscreenNotice,{title:"Welcome",children:[(0,o.createComponentVNode)(2,i.Box,{fontSize:"1.5rem",bold:!0,children:[(0,o.createComponentVNode)(2,i.Icon,{name:"exclamation-triangle",verticalAlign:"middle",size:3,mr:"1rem"}),"Unauthorized"]}),(0,o.createComponentVNode)(2,i.Box,{color:"label",my:"1rem",children:["Decryption Key:",(0,o.createComponentVNode)(2,i.Input,{placeholder:"Decryption Key",ml:"0.5rem",onChange:function(e,t){return r("auth",{key:t})}})]}),!!c&&(0,o.createComponentVNode)(2,i.Button,{icon:"terminal",content:"Hack",onClick:function(){return r("hack")}}),(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"Please authenticate with the server in order to show additional options."})]})},m=function(e,t){var n,r=(0,a.useBackend)(t),c=r.act,l=r.data.linkedServer,d=(0,a.useLocalState)(t,"tabIndex",0),u=d[0],s=d[1];return 0===u?n=(0,o.createComponentVNode)(2,p):1===u?n=(0,o.createComponentVNode)(2,h,{logs:l.pda_msgs,pda:!0}):2===u?n=(0,o.createComponentVNode)(2,h,{logs:l.rc_msgs,rc:!0}):3===u?n=(0,o.createComponentVNode)(2,f):4===u&&(n=(0,o.createComponentVNode)(2,C)),(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:0===u,onClick:function(){return s(0)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"bars"})," Main Menu"]},"Main"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===u,onClick:function(){return s(1)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"font"})," Message Logs"]},"MessageLogs"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:2===u,onClick:function(){return s(2)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"bold"})," Request Logs"]},"RequestLogs"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:3===u,onClick:function(){return s(3)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"comment-alt"})," Admin Messaging"]},"AdminMessage"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:4===u,onClick:function(){return s(4)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"comment-slash"})," Spam Filter"]},"SpamFilter"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{color:"red",onClick:function(){return c("deauth")},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"sign-out-alt"})," Log Out"]},"Logout")]}),(0,o.createComponentVNode)(2,i.Box,{m:2,children:n})],4)},p=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.linkedServer;return(0,o.createComponentVNode)(2,i.Section,{title:"Main Menu",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"link",content:"Server Link",onClick:function(){return r("find")}}),(0,o.createComponentVNode)(2,i.Button,{icon:"power-off",content:"Server "+(c.active?"Enabled":"Disabled"),selected:c.active,onClick:function(){return r("active")}})],4),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Server Status",children:(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"Good"})})}),(0,o.createComponentVNode)(2,i.Button,{mt:1,icon:"key",content:"Set Custom Key",onClick:function(){return r("pass")}}),(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"red",confirmIcon:"exclamation-triangle",icon:"exclamation-triangle",content:"Clear Message Logs"}),(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"red",confirmIcon:"exclamation-triangle",icon:"exclamation-triangle",content:"Clear Request Logs"})]})},h=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=(n.data,e.logs),d=e.pda,u=e.rc;return(0,o.createComponentVNode)(2,i.Section,{title:d?"PDA Logs":u?"Request Logs":"Logs",buttons:(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"red",icon:"trash",confirmIcon:"trash",content:"Delete All",onClick:function(){return c(d?"del_pda":"del_rc")}}),children:(0,o.createComponentVNode)(2,i.Flex,{wrap:"wrap",children:l.map((function(e,t){return(0,o.createComponentVNode)(2,i.Flex.Item,{m:"2px",basis:"49%",grow:t%2,children:(0,o.createComponentVNode)(2,i.Section,{title:e.sender+" -> "+e.recipient,buttons:(0,o.createComponentVNode)(2,i.Button.Confirm,{confirmContent:"Delete Log?",color:"bad",icon:"trash",confirmIcon:"trash",onClick:function(){return c("delete",{id:e.ref,type:u?"rc":"pda"})}}),children:u?(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Message",children:e.message}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Verification",color:"Unauthenticated"===e.id_auth?"bad":"good",children:(0,r.decodeHtmlEntities)(e.id_auth)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Stamp",children:e.stamp})]}):e.message})},e.ref)}))})})},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.possibleRecipients,d=c.customsender,u=c.customrecepient,s=c.customjob,m=c.custommessage,p=Object.keys(l);return(0,o.createComponentVNode)(2,i.Section,{title:"Admin Messaging",children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Sender",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,value:d,onChange:function(e,t){return r("set_sender",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Sender's Job",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,value:s,onChange:function(e,t){return r("set_sender_job",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Recipient",children:(0,o.createComponentVNode)(2,i.Dropdown,{value:u,options:p,width:"100%",mb:-.7,onSelected:function(e){return r("set_recipient",{val:l[e]})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Message",verticalAlign:"top",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,mb:.5,value:m,onChange:function(e,t){return r("set_message",{val:t})}})})]}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"comment",content:"Send Message",onClick:function(){return r("send_message")}})]})},C=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.linkedServer;return(0,o.createComponentVNode)(2,i.Section,{title:"Spam Filtering",children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:c.spamFilter.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.index,buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"trash",color:"bad",content:"Delete",onClick:function(){return r("deltoken",{deltoken:e.index})}}),children:e.token},e.index)}))}),(0,o.createComponentVNode)(2,i.Button,{icon:"plus",content:"Add New Entry",onClick:function(){return r("addtoken")}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Microwave=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.Microwave=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.config,d=n.data,u=d.broken,s=d.operating,m=d.dirty,p=d.items;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:u&&(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Bzzzzttttt!!"})})||s&&(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{color:"good",children:["Microwaving in progress!",(0,o.createVNode)(1,"br"),"Please wait...!"]})})||m&&(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:["This microwave is dirty!",(0,o.createVNode)(1,"br"),"Please clean it before use!"]})})||p.length&&(0,o.createComponentVNode)(2,a.Section,{level:1,title:"Ingredients",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",onClick:function(){return c("cook")},children:"Microwave"}),(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return c("dispose")},children:"Eject"})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:p.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[e.amt," ",e.extra]},e.name)}))})})||(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[l.title," is empty."]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MiningOreProcessingConsole=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=(n(9),n(192));t.MiningOreProcessingConsole=function(e,t){var n=(0,a.useBackend)(t),r=n.act,d=n.data,u=d.unclaimedPoints,s=(d.ores,d.showAllOres,d.power),p=d.speed;return(0,o.createComponentVNode)(2,c.Window,{width:400,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,l.MiningUser,{insertIdText:(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-right",mr:1,onClick:function(){return r("insert")},children:"Insert ID"}),"in order to claim points."]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"bolt",selected:p,onClick:function(){return r("speed_toggle")},children:p?"High-Speed Active":"High-Speed Inactive"}),(0,o.createComponentVNode)(2,i.Button,{icon:"power-off",selected:s,onClick:function(){return r("power")},children:s?"Smelting":"Not Smelting"})],4),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current unclaimed points",buttons:(0,o.createComponentVNode)(2,i.Button,{disabled:u<1,icon:"download",onClick:function(){return r("claim")},children:"Claim"}),children:(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:u})})})}),(0,o.createComponentVNode)(2,m)]})})};var d=["Not Processing","Smelting","Compressing","Alloying"],u=["verdantium","mhydrogen","diamond","platinum","uranium","gold","silver","rutile","phoron","marble","lead","sand","carbon","hematite"],s=function(e,t){return-1===u.indexOf(e.ore)||-1===u.indexOf(t.ore)?e.ore-t.ore:u.indexOf(t.ore)-u.indexOf(e.ore)},m=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,u=l.ores,m=l.showAllOres;l.power;return(0,o.createComponentVNode)(2,i.Section,{title:"Ore Processing Controls",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:m?"toggle-on":"toggle-off",selected:m,onClick:function(){return c("showAllOres")},children:m?"All Ores":"Ores in Machine"}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:u.length&&u.sort(s).map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:(0,r.toTitleCase)(e.name),buttons:(0,o.createComponentVNode)(2,i.Dropdown,{width:"120px",color:(0===e.processing?"red":1===e.processing&&"green")||2===e.processing&&"blue"||3===e.processing&&"yellow",options:d,selected:d[e.processing],onSelected:function(t){return c("toggleSmelting",{ore:e.ore,set:d.indexOf(t)})}}),children:(0,o.createComponentVNode)(2,i.Box,{inline:!0,children:(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:e.amount})})},e.ore)}))||(0,o.createComponentVNode)(2,i.Box,{color:"bad",textAlign:"center",children:"No ores in machine."})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MiningStackingConsole=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3);n(9);t.MiningStackingConsole=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=d.stacktypes,s=d.stackingAmt;return(0,o.createComponentVNode)(2,c.Window,{width:400,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,i.Section,{title:"Stacker Controls",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Stacking",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,value:s,minValue:1,maxValue:50,stepPixelSize:5,onChange:function(e,t){return l("change_stack",{amt:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Divider),u.length&&u.sort().map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:(0,r.toTitleCase)(e.type),buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return l("release_stack",{stack:e.type})},children:"Eject"}),children:(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:e.amt})},e.type)}))||(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Empty",color:"average",children:"No stacks in machine."})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MiningVendor=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=n(192);var d={Alphabetical:function(e,t){return e-t},"By availability":function(e,t){return-(e.affordable-t.affordable)},"By price":function(e,t){return e.price-t.price}};t.MiningVendor=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{width:400,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",scrollable:!0,children:[(0,o.createComponentVNode)(2,l.MiningUser,{insertIdText:"Please insert an ID in order to make purchases."}),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,u)]})})};var u=function(e,t){var n=(0,a.useBackend)(t),l=(n.act,n.data),u=l.has_id,s=l.id,p=l.items,h=(0,a.useLocalState)(t,"search",""),f=h[0],C=(h[1],(0,a.useLocalState)(t,"sort","Alphabetical")),N=C[0],b=(C[1],(0,a.useLocalState)(t,"descending",!1)),V=b[0],g=(b[1],(0,r.createSearch)(f,(function(e){return e[0]}))),v=!1,k=Object.entries(p).map((function(e,t){var n=Object.entries(e[1]).filter(g).map((function(e){return e[1].affordable=u&&s.points>=e[1].price,e[1]})).sort(d[N]);if(0!==n.length)return V&&(n=n.reverse()),v=!0,(0,o.createComponentVNode)(2,m,{title:e[0],items:n},e[0])}));return(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",overflow:"auto",children:(0,o.createComponentVNode)(2,i.Section,{onClick:function(e){return(0,c.refocusLayout)()},children:v?k:(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No items matching your criteria was found!"})})})},s=function(e,t){var n=(0,a.useLocalState)(t,"search",""),r=(n[0],n[1]),c=(0,a.useLocalState)(t,"sort",""),l=(c[0],c[1]),u=(0,a.useLocalState)(t,"descending",!1),s=u[0],m=u[1];return(0,o.createComponentVNode)(2,i.Box,{mb:"0.5rem",children:(0,o.createComponentVNode)(2,i.Flex,{width:"100%",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",mr:"0.5rem",children:(0,o.createComponentVNode)(2,i.Input,{placeholder:"Search by item name..",width:"100%",onInput:function(e,t){return r(t)}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"30%",children:(0,o.createComponentVNode)(2,i.Dropdown,{selected:"Alphabetical",options:Object.keys(d),width:"100%",lineHeight:"19px",onSelected:function(e){return l(e)}})}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Button,{icon:s?"arrow-down":"arrow-up",height:"19px",tooltip:s?"Descending order":"Ascending order",tooltipPosition:"bottom-left",ml:"0.5rem",onClick:function(){return m(!s)}})})]})})},m=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=e.title,d=e.items,u=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["title","items"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.Collapsible,Object.assign({open:!0,title:l},u,{children:d.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Box,{display:"inline-block",verticalAlign:"middle",lineHeight:"20px",style:{float:"left"},children:e.name}),(0,o.createComponentVNode)(2,i.Button,{disabled:!c.has_id||c.id.points=450?"Overcharged":e>=250?"Good Charge":"Low Charge":e>=250?"NIF Power Requirement met.":e>=150?"Fluctuations in available power.":"Power failure imminent."},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=(n.config,n.data),u=c.nif_percent,s=c.nif_stat,m=(c.last_notification,c.nutrition),p=c.isSynthetic,h=c.modules,f=e.setViewing;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"NIF Condition",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u,minValue:0,maxValue:100,ranges:{good:[50,Infinity],average:[25,50],bad:[-Infinity,0]},children:[l(s,u)," (",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:u}),"%)"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"NIF Power",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,minValue:0,maxValue:700,ranges:{good:[250,Infinity],average:[150,250],bad:[0,150]},children:d(m,p)})})]}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"NIFSoft Modules",mt:1,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:h.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",color:"bad",confirmContent:"UNINSTALL?",confirmIcon:"trash",tooltip:"Uninstall Module",tooltipPosition:"left",onClick:function(){return i("uninstall",{module:e.ref})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"search",onClick:function(){return f(e)},tooltip:"View Information",tooltipPosition:"left"})],4),children:e.activates&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,selected:e.active,content:e.stat_text,onClick:function(){return i("toggle_module",{module:e.ref})}})||(0,o.createComponentVNode)(2,a.Box,{children:e.stat_text})},e.ref)}))})})]})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.theme;return(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"NIF Theme",verticalAlign:"top",children:(0,o.createComponentVNode)(2,a.Dropdown,{width:"100%",placeholder:"Default",selected:l,options:c,onSelected:function(e){return i("setTheme",{theme:e})}})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NTNetRelay=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(61);t.NTNetRelay=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),c=a.dos_crashed,u=(a.enabled,a.dos_overload,a.dos_capacity,(0,o.createComponentVNode)(2,l));return c&&(u=(0,o.createComponentVNode)(2,d)),(0,o.createComponentVNode)(2,i.Window,{width:c?700:500,height:c?600:300,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:u})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=(c.dos_crashed,c.enabled),d=c.dos_overload,u=c.dos_capacity;return(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:l,content:"Relay "+(l?"On":"Off"),onClick:function(){return i("toggle")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network Buffer Status",children:[d," / ",u," GQ"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Options",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",content:"Purge network blacklist",onClick:function(){return i("purge")}})})]})})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act;n.data;return(0,o.createComponentVNode)(2,c.FullscreenNotice,{title:"ERROR",children:[(0,o.createComponentVNode)(2,a.Box,{fontSize:"1.5rem",bold:!0,color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",verticalAlign:"middle",size:3,mr:"1rem"}),(0,o.createVNode)(1,"h2",null,"NETWORK BUFFERS OVERLOADED",16),(0,o.createVNode)(1,"h3",null,"Overload Recovery Mode",16),(0,o.createVNode)(1,"i",null,"This system is suffering temporary outage due to overflow of traffic buffers. Until buffered traffic is processed, all further requests will be dropped. Frequent occurences of this error may indicate insufficient hardware capacity of your network. Please contact your network planning department for instructions on how to resolve this issue.",16),(0,o.createVNode)(1,"h3",null,"ADMINISTRATIVE OVERRIDE",16),(0,o.createVNode)(1,"b",null," CAUTION - Data loss may occur ",16)]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",content:"Purge buffered traffic",onClick:function(){return i("restart")}})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Newscaster=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=n(62);t.Newscaster=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data);r.screen,r.user;return(0,o.createComponentVNode)(2,c.Window,{width:600,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,l.TemporaryNotice,{decode:!0}),(0,o.createComponentVNode)(2,d)]})})};var d=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.user,(0,a.useSharedState)(t,"screen","Main Menu")),c=r[0],l=r[1],d=u[c];return(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,d,{setScreen:l})})},u={"Main Menu":function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=r.securityCaster,l=r.wanted_issue,d=e.setScreen;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Main Menu",children:[l&&(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"eye",onClick:function(){return d("View Wanted")},color:"bad",children:"Read WANTED Issue"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"eye",onClick:function(){return d("View List")},children:"View Feed Channels"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"plus",onClick:function(){return d("New Channel")},children:"Create Feed Channel"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"plus",onClick:function(){return d("New Story")},children:"Create Feed Message"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"print",onClick:function(){return d("Print")},children:"Print Newspaper"})]}),!!c&&(0,o.createComponentVNode)(2,i.Section,{title:"Feed Security Functions",children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"plus",onClick:function(){return d("New Wanted")},children:'Manage "Wanted" Issue'})})],0)},"New Channel":function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.channel_name,u=l.c_locked,s=l.user,m=e.setScreen;return(0,o.createComponentVNode)(2,i.Section,{title:"Creating new Feed Channel",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return m("Main Menu")},children:"Back"}),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Channel Name",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,value:(0,r.decodeHtmlEntities)(d),onInput:function(e,t){return c("set_channel_name",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Channel Author",color:"good",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Accept Public Feeds",children:(0,o.createComponentVNode)(2,i.Button,{icon:u?"lock":"lock-open",selected:!u,onClick:function(){return c("set_channel_lock")},children:u?"No":"Yes"})})]}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"good",icon:"plus",onClick:function(){return c("submit_new_channel")},children:"Submit Channel"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"bad",icon:"undo",onClick:function(){return m("Main Menu")},children:"Cancel"})]})},"View List":function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data.channels,d=e.setScreen;return(0,o.createComponentVNode)(2,i.Section,{title:"Station Feed Channels",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return d("Main Menu")},children:"Back"}),children:l.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"eye",color:e.admin?"good":e.censored?"bad":"",onClick:function(){c("show_channel",{show_channel:e.ref}),d("View Selected Channel")},children:(0,r.decodeHtmlEntities)(e.name)},e.name)}))})},"New Story":function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.channel_name,d=c.user,u=c.msg,s=c.photo_data,m=e.setScreen;return(0,o.createComponentVNode)(2,i.Section,{title:"Creating new Feed Message...",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return m("Main Menu")},children:"Back"}),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Receiving Channel",children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,onClick:function(){return r("set_channel_receiving")},children:l||"Unset"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Message Author",color:"good",children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Message Body",verticalAlign:"top",children:(0,o.createComponentVNode)(2,i.Flex,{children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Section,{width:"99%",inline:!0,children:u||"(no message yet)"})}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Button,{verticalAlign:"top",onClick:function(){return r("set_new_message")},icon:"pen",tooltip:"Edit Message",tooltipPosition:"left"})})]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Attach Photo",children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"image",onClick:function(){return r("set_attachment")},children:s?"Photo Attached":"No Photo"})})]}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"good",icon:"plus",onClick:function(){return r("submit_new_message")},children:"Submit Message"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"bad",icon:"undo",onClick:function(){return m("Main Menu")},children:"Cancel"})]})},Print:function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.total_num,d=c.active_num,u=c.message_num,s=c.paper_remaining,m=e.setScreen;return(0,o.createComponentVNode)(2,i.Section,{title:"Printing",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return m("Main Menu")},children:"Back"}),children:[(0,o.createComponentVNode)(2,i.Box,{color:"label",mb:1,children:["Newscaster currently serves a total of ",l," Feed channels, ",d," of which are active, and a total of ",u," Feed stories."]}),(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Liquid Paper remaining",children:[100*s," cm\xb3"]})}),(0,o.createComponentVNode)(2,i.Button,{mt:1,fluid:!0,color:"good",icon:"plus",onClick:function(){return r("print_paper")},children:"Print Paper"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"bad",icon:"undo",onClick:function(){return m("Main Menu")},children:"Cancel"})]})},"New Wanted":function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.channel_name,u=l.msg,s=l.photo_data,m=l.user,p=l.wanted_issue,h=e.setScreen;return(0,o.createComponentVNode)(2,i.Section,{title:"Wanted Issue Handler",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return h("Main Menu")},children:"Back"}),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[!!p&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Already In Circulation",children:"A wanted issue is already in circulation. You can edit or cancel it below."}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Criminal Name",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,value:(0,r.decodeHtmlEntities)(d),onInput:function(e,t){return c("set_channel_name",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Description",children:(0,o.createComponentVNode)(2,i.Input,{fluid:!0,value:(0,r.decodeHtmlEntities)(u),onInput:function(e,t){return c("set_wanted_desc",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Attach Photo",children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"image",onClick:function(){return c("set_attachment")},children:s?"Photo Attached":"No Photo"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Prosecutor",color:"good",children:m})]}),(0,o.createComponentVNode)(2,i.Button,{mt:1,fluid:!0,color:"good",icon:"plus",onClick:function(){return c("submit_wanted")},children:"Submit Wanted Issue"}),!!p&&(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"average",icon:"minus",onClick:function(){return c("cancel_wanted")},children:"Take Down Issue"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"bad",icon:"undo",onClick:function(){return h("Main Menu")},children:"Cancel"})]})},"View Wanted":function(e,t){var n=(0,a.useBackend)(t),c=(n.act,n.data.wanted_issue),l=e.setScreen;return c?(0,o.createComponentVNode)(2,i.Section,{title:"--STATIONWIDE WANTED ISSUE--",color:"bad",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return l("Main Menu")},children:"Back"}),children:(0,o.createComponentVNode)(2,i.Box,{color:"white",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Submitted by",color:"good",children:(0,r.decodeHtmlEntities)(c.author)}),(0,o.createComponentVNode)(2,i.LabeledList.Divider),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Criminal",children:(0,r.decodeHtmlEntities)(c.criminal)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Description",children:(0,r.decodeHtmlEntities)(c.desc)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Photo",children:c.img&&(0,o.createVNode)(1,"img",null,null,1,{src:c.img})||"None"})]})})}):(0,o.createComponentVNode)(2,i.Section,{title:"No Outstanding Wanted Issues",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return l("Main Menu")},children:"Back"}),children:"There are no wanted issues currently outstanding."})},"View Selected Channel":function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.viewing_channel,u=l.securityCaster,s=l.company,m=e.setScreen;return d?(0,o.createComponentVNode)(2,i.Section,{title:(0,r.decodeHtmlEntities)(d.name),buttons:(0,o.createFragment)([!!u&&(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"bad",icon:"ban",confirmIcon:"ban",content:"Issue D-Notice",onClick:function(){return c("toggle_d_notice",{ref:d.ref})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return m("View List")},children:"Back"})],0),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Channel Created By",children:u&&(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"bad",icon:"strikethrough",confirmIcon:"strikethrough",content:(0,r.decodeHtmlEntities)(d.author),tooltip:"Censor?",confirmContent:"Censor Author",onClick:function(){return c("censor_channel_author",{ref:d.ref})}})||(0,o.createComponentVNode)(2,i.Box,{children:(0,r.decodeHtmlEntities)(d.author)})})}),!!d.censored&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:["ATTENTION: This channel has been deemed as threatening to the welfare of the station, and marked with a ",s," D-Notice. No further feed story additions are allowed while the D-Notice is in effect."]}),!!d.messages.length&&d.messages.map((function(e){return(0,o.createComponentVNode)(2,i.Section,{children:["- ",(0,r.decodeHtmlEntities)(e.body),!!e.img&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/png;base64,"+e.img}),(0,r.decodeHtmlEntities)(e.caption)||null]}),(0,o.createComponentVNode)(2,i.Box,{color:"grey",children:["[Story by ",(0,r.decodeHtmlEntities)(e.author)," - ",e.timestamp,"]"]}),!!u&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button.Confirm,{mt:1,color:"bad",icon:"strikethrough",confirmIcon:"strikethrough",content:"Censor Story",onClick:function(){return c("censor_channel_story_body",{ref:e.ref})}}),(0,o.createComponentVNode)(2,i.Button.Confirm,{color:"bad",icon:"strikethrough",confirmIcon:"strikethrough",content:"Censor Author",onClick:function(){return c("censor_channel_story_author",{ref:e.ref})}})],4)]},e.ref)}))||!d.censored&&(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No feed messages found in channel."})]}):(0,o.createComponentVNode)(2,i.Section,{title:"Channel Not Found",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return m("View List")},children:"Back"}),children:"The channel you were looking for no longer exists."})}}},function(e,t,n){"use strict";t.__esModule=!0,t.NoticeBoard=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.NoticeBoard=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data.notices;return(0,o.createComponentVNode)(2,i.Window,{width:330,height:300,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:l.length?(0,o.createComponentVNode)(2,a.LabeledList,{children:l.map((function(e,t){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[e.isphoto&&(0,o.createComponentVNode)(2,a.Button,{icon:"image",content:"Look",onClick:function(){return c("look",{ref:e.ref})}})||e.ispaper&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"sticky-note",content:"Read",onClick:function(){return c("read",{ref:e.ref})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Write",onClick:function(){return c("write",{ref:e.ref})}})],4)||"Unknown Entity",(0,o.createComponentVNode)(2,a.Button,{icon:"minus-circle",content:"Remove",onClick:function(){return c("remove",{ref:e.ref})}})]},t)}))}):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No notices posted here."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosAccessDecrypter=void 0;var o=n(0),r=n(1),a=n(3),i=n(133),c=n(2);t.NtosAccessDecrypter=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.message,s=d.running,m=d.rate,p=d.factor,h=d.regions,f=function(e){for(var t="";t.lengthp?t+="0":t+="1";return t};return(0,o.createComponentVNode)(2,a.NtosWindow,{width:600,height:600,theme:"syndicate",children:(0,o.createComponentVNode)(2,a.NtosWindow.Content,{children:u&&(0,o.createComponentVNode)(2,c.NoticeBox,{children:u})||s&&(0,o.createComponentVNode)(2,c.Section,{children:["Attempting to decrypt network access codes. Please wait. Rate: ",m," PHash/s",(0,o.createComponentVNode)(2,c.Box,{children:f(45)}),(0,o.createComponentVNode)(2,c.Box,{children:f(45)}),(0,o.createComponentVNode)(2,c.Box,{children:f(45)}),(0,o.createComponentVNode)(2,c.Box,{children:f(45)}),(0,o.createComponentVNode)(2,c.Box,{children:f(45)}),(0,o.createComponentVNode)(2,c.Button,{fluid:!0,icon:"ban",onClick:function(){return l("PRG_reset")},children:"Abort"})]})||(0,o.createComponentVNode)(2,c.Section,{title:"Pick access code to decrypt",children:h.length&&(0,o.createComponentVNode)(2,i.IdentificationComputerRegions,{actName:"PRG_execute"})||(0,o.createComponentVNode)(2,c.Box,{children:"Please insert ID card."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosArcade=void 0;var o=n(0),r=n(93),a=n(1),i=n(2),c=n(3);t.NtosArcade=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data;return(0,o.createComponentVNode)(2,c.NtosWindow,{width:450,height:350,children:(0,o.createComponentVNode)(2,c.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,i.Section,{title:"Outbomb Cuban Pete Ultra",textAlign:"center",children:[(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Grid,{children:[(0,o.createComponentVNode)(2,i.Grid.Column,{size:2,children:[(0,o.createComponentVNode)(2,i.Box,{m:1}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Player Health",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:d.PlayerHitpoints,minValue:0,maxValue:30,ranges:{olive:[31,Infinity],good:[20,31],average:[10,20],bad:[-Infinity,10]},children:[d.PlayerHitpoints,"HP"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Player Magic",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:d.PlayerMP,minValue:0,maxValue:10,ranges:{purple:[11,Infinity],violet:[3,11],bad:[-Infinity,3]},children:[d.PlayerMP,"MP"]})})]}),(0,o.createComponentVNode)(2,i.Box,{my:1,mx:4}),(0,o.createComponentVNode)(2,i.Section,{backgroundColor:1===d.PauseState?"#1b3622":"#471915",children:d.Status})]}),(0,o.createComponentVNode)(2,i.Grid.Column,{children:[(0,o.createComponentVNode)(2,i.ProgressBar,{value:d.Hitpoints,minValue:0,maxValue:45,ranges:{good:[30,Infinity],average:[5,30],bad:[-Infinity,5]},children:[(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:d.Hitpoints}),"HP"]}),(0,o.createComponentVNode)(2,i.Box,{m:1}),(0,o.createComponentVNode)(2,i.Section,{inline:!0,width:"156px",textAlign:"center",children:(0,o.createVNode)(1,"img",null,null,1,{src:(0,r.resolveAsset)(d.BossID)})})]})]}),(0,o.createComponentVNode)(2,i.Box,{my:1,mx:4}),(0,o.createComponentVNode)(2,i.Button,{icon:"fist-raised",tooltip:"Go in for the kill!",tooltipPosition:"top",disabled:0===d.GameActive||1===d.PauseState,onClick:function(){return l("Attack")},content:"Attack!"}),(0,o.createComponentVNode)(2,i.Button,{icon:"band-aid",tooltip:"Heal yourself!",tooltipPosition:"top",disabled:0===d.GameActive||1===d.PauseState,onClick:function(){return l("Heal")},content:"Heal!"}),(0,o.createComponentVNode)(2,i.Button,{icon:"magic",tooltip:"Recharge your magic!",tooltipPosition:"top",disabled:0===d.GameActive||1===d.PauseState,onClick:function(){return l("Recharge_Power")},content:"Recharge!"})]}),(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"sync-alt",tooltip:"One more game couldn't hurt.",tooltipPosition:"top",disabled:1===d.GameActive,onClick:function(){return l("Start_Game")},content:"Begin Game"}),(0,o.createComponentVNode)(2,i.Button,{icon:"ticket-alt",tooltip:"Claim at your local Arcade Computer for Prizes!",tooltipPosition:"top",disabled:1===d.GameActive,onClick:function(){return l("Dispense_Tickets")},content:"Claim Tickets"})]}),(0,o.createComponentVNode)(2,i.Box,{color:d.TicketCount>=1?"good":"normal",children:["Earned Tickets: ",d.TicketCount]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosAtmosControl=void 0;var o=n(0),r=n(3),a=n(185);t.NtosAtmosControl=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:870,height:708,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,a.AtmosControlContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosCameraConsole=void 0;var o=n(0),r=n(3),a=n(186);t.NtosCameraConsole=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:870,height:708,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,a.CameraConsoleContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosCommunicationsConsole=void 0;var o=n(0),r=n(1),a=n(3),i=n(188);t.NtosCommunicationsConsole=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.NtosWindow,{width:400,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,a.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i.CommunicationsConsoleContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosConfiguration=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosConfiguration=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.PC_device_theme,u=l.power_usage,s=l.battery_exists,m=l.battery,p=void 0===m?{}:m,h=l.disk_size,f=l.disk_used,C=l.hardware,N=void 0===C?[]:C;return(0,o.createComponentVNode)(2,i.NtosWindow,{theme:d,width:520,height:630,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Power Supply",buttons:(0,o.createComponentVNode)(2,a.Box,{inline:!0,bold:!0,mr:1,children:["Power Draw: ",u,"W"]}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Battery Status",color:!s&&"average",children:s?(0,o.createComponentVNode)(2,a.ProgressBar,{value:p.charge,minValue:0,maxValue:p.max,ranges:{good:[p.max/2,Infinity],average:[p.max/4,p.max/2],bad:[-Infinity,p.max/4]},children:[p.charge," / ",p.max]}):"Not Available"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"File System",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:f,minValue:0,maxValue:h,color:"good",children:[f," GQ / ",h," GQ"]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Hardware Components",children:N.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,level:2,buttons:(0,o.createFragment)([!e.critical&&(0,o.createComponentVNode)(2,a.Button.Checkbox,{content:"Enabled",checked:e.enabled,mr:1,onClick:function(){return c("PC_toggle_component",{name:e.name})}}),(0,o.createComponentVNode)(2,a.Box,{inline:!0,bold:!0,mr:1,children:["Power Usage: ",e.powerusage,"W"]})],0),children:e.desc},e.name)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosCrewMonitor=void 0;var o=n(0),r=n(3),a=n(189);t.NtosCrewMonitor=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:800,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,a.CrewMonitorContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosDigitalWarrant=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(9);t.NtosDigitalWarrant=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),c=(a.warrantname,a.warrantcharges,a.warrantauth),d=(a.type,a.allwarrants,(0,o.createComponentVNode)(2,l));return c&&(d=(0,o.createComponentVNode)(2,u)),(0,o.createComponentVNode)(2,i.NtosWindow,{width:500,height:350,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:d})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act;n.data.allwarrants;return(0,o.createComponentVNode)(2,a.Section,{title:"Warrants",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"plus",fluid:!0,onClick:function(){return i("addwarrant")},children:"Create New Warrant"}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Arrest Warrants",children:(0,o.createComponentVNode)(2,d,{type:"arrest"})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Search Warrants",children:(0,o.createComponentVNode)(2,d,{type:"search"})})]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=e.type,u=l.allwarrants,s=(0,c.filter)((function(e){return e.arrestsearch===d}))(u);return(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"arrest"===d?"Name":"Location"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"arrest"===d?"Charges":"Reason"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Authorized By"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Edit"})]}),s.length&&s.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.warrantname}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.charges}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.auth}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("editwarrant",{id:e.id})}})})]},e.id)}))||(0,o.createComponentVNode)(2,a.Table.Row,{children:(0,o.createComponentVNode)(2,a.Table.Cell,{colspan:"3",color:"bad",children:["No ",d," warrants found."]})})]})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.warrantname,d=c.warrantcharges,u=c.warrantauth,s=c.type,m="arrest"===s,p="arrest"===s?"Name":"Location",h="arrest"===s?"Charges":"Reason";return(0,o.createComponentVNode)(2,a.Section,{title:m?"Editing Arrest Warrant":"Editing Search Warrant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"save",onClick:function(){return i("savewarrant")},children:"Save"}),(0,o.createComponentVNode)(2,a.Button,{color:"bad",icon:"trash",onClick:function(){return i("deletewarrant")},children:"Delete"}),(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return i("back")},children:"Back"})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:p,buttons:m&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"search",onClick:function(){return i("editwarrantname")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("editwarrantnamecustom")}})],4)||(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("editwarrantnamecustom")}}),children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:h,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("editwarrantcharges")}}),children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Authorized By",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"balance-scale",onClick:function(){return i("editwarrantauth")}}),children:u})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosEmailAdministration=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(193);t.NtosEmailAdministration=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),c=a.error,m=a.cur_title,p=a.current_account,h=(0,o.createComponentVNode)(2,l);return c?h=(0,o.createComponentVNode)(2,d):m?h=(0,o.createComponentVNode)(2,u):p&&(h=(0,o.createComponentVNode)(2,s)),(0,o.createComponentVNode)(2,i.NtosWindow,{width:600,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:h})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.accounts;return(0,o.createComponentVNode)(2,a.Section,{title:"Welcome to the NTNet Email Administration System",children:[(0,o.createComponentVNode)(2,a.Box,{italic:!0,mb:1,children:"SECURE SYSTEM - Have your identification ready"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"plus",onClick:function(){return i("newaccount")},children:"Create New Account"}),(0,o.createComponentVNode)(2,a.Box,{bold:!0,mt:1,mb:1,children:"Select account to administrate"}),c.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eye",onClick:function(){return i("viewaccount",{viewaccount:e.uid})},children:e.login},e.uid)}))]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.error;return(0,o.createComponentVNode)(2,a.Section,{title:"Message",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return i("back")},children:"Back"}),children:c})},u=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,c.NtosEmailClientViewMessage,{administrator:!0})})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=(c.error,c.msg_title,c.msg_body,c.msg_timestamp,c.msg_source,c.current_account),d=c.cur_suspended,u=c.messages;c.accounts;return(0,o.createComponentVNode)(2,a.Section,{title:"Viewing "+l+" in admin mode",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return i("back")},children:"Back"}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account Status",children:(0,o.createComponentVNode)(2,a.Button,{color:d?"bad":"",icon:"ban",tooltip:(d?"Uns":"S")+"uspend Account?",onClick:function(){return i("ban")},children:d?"Suspended":"Normal"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:(0,o.createComponentVNode)(2,a.Button,{icon:"key",onClick:function(){return i("changepass")},children:"Change Password"})})]}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Messages",children:u.length&&(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Source"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Title"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Received at"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Actions"})]}),u.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.source}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.title}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.timestamp}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"eye",onClick:function(){return i("viewmail",{viewmail:e.uid})},children:"View"})})]},e.uid)}))]})||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No messages found in selected account."})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosFileManager=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);n(7);t.NtosFileManager=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.PC_device_theme,s=d.usbconnected,m=d.filename,p=d.filedata,h=d.error,f=d.files,C=void 0===f?[]:f,N=d.usbfiles,b=void 0===N?[]:N;return(0,o.createComponentVNode)(2,i.NtosWindow,{resizable:!0,theme:u,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:(m||h)&&(0,o.createComponentVNode)(2,a.Section,{title:"Viewing File "+m,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"Edit",onClick:function(){return l("PRG_edit")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"print",content:"Print",onClick:function(){return l("PRG_printfile")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Close",onClick:function(){return l("PRG_closefile")}})],4),children:[h||null,p&&(0,o.createVNode)(1,"div",null,null,1,{dangerouslySetInnerHTML:{__html:p}})]})||(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,c,{files:C,usbconnected:s,onUpload:function(e){return l("PRG_copytousb",{name:e})},onDelete:function(e){return l("PRG_deletefile",{name:e})},onOpen:function(e){return l("PRG_openfile",{name:e})},onRename:function(e,t){return l("PRG_rename",{name:e,new_name:t})},onDuplicate:function(e){return l("PRG_clone",{file:e})}})}),s&&(0,o.createComponentVNode)(2,a.Section,{title:"Data Disk",children:(0,o.createComponentVNode)(2,c,{usbmode:!0,files:b,usbconnected:s,onUpload:function(e){return l("PRG_copyfromusb",{name:e})},onDelete:function(e){return l("PRG_deletefile",{name:e})},onRename:function(e,t){return l("PRG_rename",{name:e,new_name:t})},onDuplicate:function(e){return l("PRG_clone",{file:e})}})})||null,(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return l("PRG_newtextfile")},children:"New Text File"})})],0)})})};var c=function(e){var t=e.files,n=void 0===t?[]:t,r=e.usbconnected,i=e.usbmode,c=e.onUpload,l=e.onDelete,d=e.onRename,u=e.onOpen;return(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"File"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Type"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:"Size"})]}),n.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{className:"candystripe",children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.undeletable?e.name:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Input,{width:"80%",content:e.name,currentValue:e.name,tooltip:"Rename",onCommit:function(t,n){return d(e.name,n)}}),(0,o.createComponentVNode)(2,a.Button,{content:"Open",onClick:function(){return u(e.name)}})],4)}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.type}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.size}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:!e.undeletable&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",confirmIcon:"times",confirmContent:"",tooltip:"Delete",onClick:function(){return l(e.name)}}),!!r&&(i?(0,o.createComponentVNode)(2,a.Button,{icon:"download",tooltip:"Download",onClick:function(){return c(e.name)}}):(0,o.createComponentVNode)(2,a.Button,{icon:"upload",tooltip:"Upload",onClick:function(){return c(e.name)}}))],0)})]},e.name)}))]})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosIdentificationComputer=void 0;var o=n(0),r=(n(9),n(1)),a=(n(2),n(3)),i=(n(7),n(28),n(133));t.NtosIdentificationComputer=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.NtosWindow,{width:600,height:700,resizable:!0,children:(0,o.createComponentVNode)(2,a.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i.IdentificationComputerContent,{ntos:!0})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosMain=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c={compconfig:"cog",ntndownloader:"download",filemanager:"folder",smmonitor:"radiation",alarmmonitor:"bell",cardmod:"id-card",arcade:"gamepad",ntnrc_client:"comment-alt",nttransfer:"exchange-alt",powermonitor:"plug",job_manage:"address-book",crewmani:"clipboard-list",robocontrol:"robot",atmosscan:"thermometer-half",shipping:"tags"};t.NtosMain=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.device_theme,s=d.programs,m=void 0===s?[]:s,p=d.has_light,h=d.light_on,f=d.comp_light_color,C=d.removable_media,N=void 0===C?[]:C,b=d.login,V=void 0===b?[]:b;return(0,o.createComponentVNode)(2,i.NtosWindow,{title:"syndicate"===u?"Syndix Main Menu":"NtOS Main Menu",theme:u,width:400,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:[!!p&&(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.Button,{width:"144px",icon:"lightbulb",selected:h,onClick:function(){return l("PC_toggle_light")},children:["Flashlight: ",h?"ON":"OFF"]}),(0,o.createComponentVNode)(2,a.Button,{ml:1,onClick:function(){return l("PC_light_color")},children:["Color:",(0,o.createComponentVNode)(2,a.ColorBox,{ml:1,color:f})]})]}),(0,o.createComponentVNode)(2,a.Section,{title:"User Login",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:"Eject ID",disabled:!V.IDName,onClick:function(){return l("PC_Eject_Disk",{name:"ID"})}}),children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:["ID Name: ",V.IDName]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:["Assignment: ",V.IDJob]})]})}),!!N.length&&(0,o.createComponentVNode)(2,a.Section,{title:"Media Eject",children:(0,o.createComponentVNode)(2,a.Table,{children:N.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"transparent",icon:"eject",content:e,onClick:function(){return l("PC_Eject_Disk",{name:e})}})})},e)}))})}),(0,o.createComponentVNode)(2,a.Section,{title:"Programs",children:(0,o.createComponentVNode)(2,a.Table,{children:m.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"transparent",icon:c[e.name]||"window-maximize-o",content:e.desc,onClick:function(){return l("PC_runprogram",{name:e.name})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,width:"18px",children:!!e.running&&(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"times",tooltip:"Close program",tooltipPosition:"left",onClick:function(){return l("PC_killprogram",{name:e.name})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,width:"18px",children:(0,o.createComponentVNode)(2,a.Button,{color:"transparent",tooltip:"Set Autorun",tooltipPosition:"left",selected:e.autorun,onClick:function(){return l("PC_setautorun",{name:e.name})},children:"AR"})})]},e.name)}))})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNetChat=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosNetChat=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.can_admin,u=l.adminmode,s=l.authed,m=l.username,p=l.active_channel,h=l.is_operator,f=l.all_channels,C=void 0===f?[]:f,N=l.clients,b=void 0===N?[]:N,V=l.messages,g=void 0===V?[]:V,v=null!==p,k=s||u;return(0,o.createComponentVNode)(2,i.NtosWindow,{width:900,height:675,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,a.Section,{height:"600px",children:(0,o.createComponentVNode)(2,a.Table,{height:"580px",children:(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{verticalAlign:"top",style:{width:"200px"},children:[(0,o.createComponentVNode)(2,a.Box,{height:"560px",overflowY:"scroll",children:[(0,o.createComponentVNode)(2,a.Button.Input,{fluid:!0,content:"New Channel...",onCommit:function(e,t){return c("PRG_newchannel",{new_channel_name:t})}}),C.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,content:e.chan,selected:e.id===p,color:"transparent",onClick:function(){return c("PRG_joinchannel",{id:e.id})}},e.chan)}))]}),(0,o.createComponentVNode)(2,a.Button.Input,{fluid:!0,mt:1,content:m+"...",currentValue:m,onCommit:function(e,t){return c("PRG_changename",{new_name:t})}}),!!d&&(0,o.createComponentVNode)(2,a.Button,{fluid:!0,bold:!0,content:"ADMIN MODE: "+(u?"ON":"OFF"),color:u?"bad":"good",onClick:function(){return c("PRG_toggleadmin")}})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Box,{height:"560px",overflowY:"scroll",children:v&&(k?g.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e.msg},e.msg)})):(0,o.createComponentVNode)(2,a.Box,{textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",mt:4,fontSize:"40px"}),(0,o.createComponentVNode)(2,a.Box,{mt:1,bold:!0,fontSize:"18px",children:"THIS CHANNEL IS PASSWORD PROTECTED"}),(0,o.createComponentVNode)(2,a.Box,{mt:1,children:"INPUT PASSWORD TO ACCESS"})]}))}),(0,o.createComponentVNode)(2,a.Input,{fluid:!0,selfClear:!0,mt:1,onEnter:function(e,t){return c("PRG_speak",{message:t})}})]}),(0,o.createComponentVNode)(2,a.Table.Cell,{verticalAlign:"top",style:{width:"150px"},children:[(0,o.createComponentVNode)(2,a.Box,{height:"465px",overflowY:"scroll",children:b.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e.name},e.name)}))}),v&&k&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Input,{fluid:!0,content:"Save log...",defaultValue:"new_log",onCommit:function(e,t){return c("PRG_savelog",{log_name:t})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{fluid:!0,content:"Leave Channel",onClick:function(){return c("PRG_leavechannel")}})],4),!!h&&s&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{fluid:!0,content:"Delete Channel",onClick:function(){return c("PRG_deletechannel")}}),(0,o.createComponentVNode)(2,a.Button.Input,{fluid:!0,content:"Rename Channel...",onCommit:function(e,t){return c("PRG_renamechannel",{new_name:t})}}),(0,o.createComponentVNode)(2,a.Button.Input,{fluid:!0,content:"Set Password...",onCommit:function(e,t){return c("PRG_setpassword",{new_password:t})}})],4)]})]})})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNetDosContent=t.NtosNetDos=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosNetDos=function(e,t){return(0,o.createComponentVNode)(2,i.NtosWindow,{width:400,height:250,theme:"syndicate",children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,c)})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.relays,d=void 0===l?[]:l,u=c.focus,s=c.target,m=c.speed,p=c.overload,h=c.capacity,f=c.error;if(f)return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.NoticeBox,{children:f}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,content:"Reset",textAlign:"center",onClick:function(){return i("PRG_reset")}})],4);var C=function(e){for(var t="",n=p/h;t.lengthn?t+="0":t+="1";return t};return s?(0,o.createComponentVNode)(2,a.Section,{fontFamily:"monospace",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Box,{children:["CURRENT SPEED: ",m," GQ/s"]}),(0,o.createComponentVNode)(2,a.Box,{children:C(45)}),(0,o.createComponentVNode)(2,a.Box,{children:C(45)}),(0,o.createComponentVNode)(2,a.Box,{children:C(45)}),(0,o.createComponentVNode)(2,a.Box,{children:C(45)}),(0,o.createComponentVNode)(2,a.Box,{children:C(45)})]}):(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.id,selected:u===e.id,onClick:function(){return i("PRG_target_relay",{targid:e.id})}},e.id)}))})}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,bold:!0,content:"EXECUTE",color:"bad",textAlign:"center",disabled:!u,mt:1,onClick:function(){return i("PRG_execute")}})]})};t.NtosNetDosContent=c},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNetDownloader=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3);t.NtosNetDownloader=function(e,t){var n=(0,a.useBackend)(t),r=n.act,d=n.data,u=d.PC_device_theme,s=d.disk_size,m=d.disk_used,p=d.downloadable_programs,h=void 0===p?[]:p,f=d.error,C=d.hacked_programs,N=void 0===C?[]:C,b=d.hackedavailable;return(0,o.createComponentVNode)(2,c.NtosWindow,{theme:u,width:480,height:735,resizable:!0,children:(0,o.createComponentVNode)(2,c.NtosWindow.Content,{scrollable:!0,children:[!!f&&(0,o.createComponentVNode)(2,i.NoticeBox,{children:[(0,o.createComponentVNode)(2,i.Box,{mb:1,children:f}),(0,o.createComponentVNode)(2,i.Button,{content:"Reset",onClick:function(){return r("PRG_reseterror")}})]}),(0,o.createComponentVNode)(2,i.Section,{children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Disk usage",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:m,minValue:0,maxValue:s,children:m+" GQ / "+s+" GQ"})})})}),(0,o.createComponentVNode)(2,i.Section,{children:h.map((function(e){return(0,o.createComponentVNode)(2,l,{program:e},e.filename)}))}),!!b&&(0,o.createComponentVNode)(2,i.Section,{title:"UNKNOWN Software Repository",children:[(0,o.createComponentVNode)(2,i.NoticeBox,{mb:1,children:"Please note that Nanotrasen does not recommend download of software from non-official servers."}),N.map((function(e){return(0,o.createComponentVNode)(2,l,{program:e},e.filename)}))]})]})})};var l=function(e,t){var n=e.program,c=(0,a.useBackend)(t),l=c.act,d=c.data,u=d.disk_size,s=d.disk_used,m=d.downloadcompletion,p=(d.downloading,d.downloadname),h=d.downloadsize,f=d.downloadspeed,C=d.downloads_queue,N=u-s;return(0,o.createComponentVNode)(2,i.Box,{mb:3,children:[(0,o.createComponentVNode)(2,i.Flex,{align:"baseline",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{bold:!0,grow:1,children:n.filedesc}),(0,o.createComponentVNode)(2,i.Flex.Item,{color:"label",nowrap:!0,children:[n.size," GQ"]}),(0,o.createComponentVNode)(2,i.Flex.Item,{ml:2,width:"94px",textAlign:"center",children:n.filename===p&&(0,o.createComponentVNode)(2,i.ProgressBar,{color:"green",minValue:0,maxValue:h,value:m,children:[(0,r.round)(m/h*100,1),"% (",f,"GQ/s)"]})||-1!==C.indexOf(n.filename)&&(0,o.createComponentVNode)(2,i.Button,{icon:"ban",color:"bad",onClick:function(){return l("PRG_removequeued",{filename:n.filename})},children:"Queued..."})||(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"download",content:"Download",disabled:n.size>N,onClick:function(){return l("PRG_downloadfile",{filename:n.filename})}})})]}),"Compatible"!==n.compatibility&&(0,o.createComponentVNode)(2,i.Box,{mt:1,italic:!0,fontSize:"12px",position:"relative",children:[(0,o.createComponentVNode)(2,i.Icon,{mx:1,color:"red",name:"times"}),"Incompatible!"]}),n.size>N&&(0,o.createComponentVNode)(2,i.Box,{mt:1,italic:!0,fontSize:"12px",position:"relative",children:[(0,o.createComponentVNode)(2,i.Icon,{mx:1,color:"red",name:"times"}),"Not enough disk space!"]}),(0,o.createComponentVNode)(2,i.Box,{mt:1,italic:!0,color:"label",fontSize:"12px",children:n.fileinfo})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNetMonitor=void 0;var o=n(0),r=n(2),a=n(1),i=n(3);t.NtosNetMonitor=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.ntnetrelays,u=l.ntnetstatus,s=l.config_softwaredownload,m=l.config_peertopeer,p=l.config_communication,h=l.config_systemcontrol,f=l.idsalarm,C=l.idsstatus,N=l.ntnetmaxlogs,b=l.maxlogs,V=l.minlogs,g=l.banned_nids,v=l.ntnetlogs,k=void 0===v?[]:v;return(0,o.createComponentVNode)(2,i.NtosWindow,{resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,r.NoticeBox,{children:"WARNING: Disabling wireless transmitters when using a wireless device may prevent you from reenabling them!"}),(0,o.createComponentVNode)(2,r.Section,{title:"Wireless Connectivity",buttons:(0,o.createComponentVNode)(2,r.Button.Confirm,{icon:u?"power-off":"times",content:u?"ENABLED":"DISABLED",selected:u,onClick:function(){return c("toggleWireless")}}),children:d?(0,o.createComponentVNode)(2,r.LabeledList,{children:(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Active NTNet Relays",children:d})}):"No Relays Connected"}),(0,o.createComponentVNode)(2,r.Section,{title:"Firewall Configuration",children:(0,o.createComponentVNode)(2,r.LabeledList,{children:[(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Software Downloads",buttons:(0,o.createComponentVNode)(2,r.Button,{icon:s?"power-off":"times",content:s?"ENABLED":"DISABLED",selected:s,onClick:function(){return c("toggle_function",{id:"1"})}})}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Peer to Peer Traffic",buttons:(0,o.createComponentVNode)(2,r.Button,{icon:m?"power-off":"times",content:m?"ENABLED":"DISABLED",selected:m,onClick:function(){return c("toggle_function",{id:"2"})}})}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Communication Systems",buttons:(0,o.createComponentVNode)(2,r.Button,{icon:p?"power-off":"times",content:p?"ENABLED":"DISABLED",selected:p,onClick:function(){return c("toggle_function",{id:"3"})}})}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Remote System Control",buttons:(0,o.createComponentVNode)(2,r.Button,{icon:h?"power-off":"times",content:h?"ENABLED":"DISABLED",selected:h,onClick:function(){return c("toggle_function",{id:"4"})}})})]})}),(0,o.createComponentVNode)(2,r.Section,{title:"Security Systems",children:[!!f&&(0,o.createFragment)([(0,o.createComponentVNode)(2,r.NoticeBox,{children:"NETWORK INCURSION DETECTED"}),(0,o.createComponentVNode)(2,r.Box,{italics:!0,children:"Abnormal activity has been detected in the network. Check system logs for more information"})],4),(0,o.createComponentVNode)(2,r.LabeledList,{children:[(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Banned NIDs",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,r.Button,{icon:"ban",onClick:function(){return c("ban_nid")},children:"Ban NID"}),(0,o.createComponentVNode)(2,r.Button,{icon:"balance-scale",onClick:function(){return c("unban_nid")},children:"Unban NID"})],4),children:g.join(", ")||"None"}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"IDS Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,r.Button,{icon:C?"power-off":"times",content:C?"ENABLED":"DISABLED",selected:C,onClick:function(){return c("toggleIDS")}}),(0,o.createComponentVNode)(2,r.Button,{icon:"sync",content:"Reset",color:"bad",onClick:function(){return c("resetIDS")}})],4)}),(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Max Log Count",buttons:(0,o.createComponentVNode)(2,r.NumberInput,{value:N,minValue:V,maxValue:b,width:"39px",onChange:function(e,t){return c("updatemaxlogs",{new_number:t})}})})]}),(0,o.createComponentVNode)(2,r.Section,{title:"System Log",level:2,buttons:(0,o.createComponentVNode)(2,r.Button.Confirm,{icon:"trash",content:"Clear Logs",onClick:function(){return c("purgelogs")}}),children:k.map((function(e){return(0,o.createComponentVNode)(2,r.Box,{className:"candystripe",children:e.entry},e.entry)}))})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNetTransfer=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosNetTransfer=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),m=a.error,p=a.downloading,h=a.uploading,f=a.upload_filelist,C=(0,o.createComponentVNode)(2,s);return m?C=(0,o.createComponentVNode)(2,c):p?C=(0,o.createComponentVNode)(2,l):h?C=(0,o.createComponentVNode)(2,d):f.length&&(C=(0,o.createComponentVNode)(2,u)),(0,o.createComponentVNode)(2,i.NtosWindow,{width:575,height:700,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:C})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.error;return(0,o.createComponentVNode)(2,a.Section,{title:"An error has occured during operation.",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return i("PRG_reset")},children:"Reset"}),children:["Additional Information: ",c]})},l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.download_name,d=c.download_progress,u=c.download_size,s=c.download_netspeed;return(0,o.createComponentVNode)(2,a.Section,{title:"Download in progress",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Downloaded File",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Progress",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:d,maxValue:u,children:[d," / ",u," GQ"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transfer Speed",children:[s," GQ/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Controls",children:(0,o.createComponentVNode)(2,a.Button,{icon:"ban",onClick:function(){return i("PRG_reset")},children:"Cancel Download"})})]})})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.upload_clients,d=c.upload_filename,u=c.upload_haspassword;return(0,o.createComponentVNode)(2,a.Section,{title:"Server enabled",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Clients Connected",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Provided file",children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Server Password",children:u?"Enabled":"Disabled"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Commands",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"lock",onClick:function(){return i("PRG_setpassword")},children:"Set Password"}),(0,o.createComponentVNode)(2,a.Button,{icon:"ban",onClick:function(){return i("PRG_reset")},children:"Cancel Upload"})]})]})})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.upload_filelist;return(0,o.createComponentVNode)(2,a.Section,{title:"File transfer server ready.",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return i("PRG_reset")},children:"Cancel"}),children:[(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"lock",onClick:function(){return i("PRG_setpassword")},children:"Set Password"}),(0,o.createComponentVNode)(2,a.Section,{title:"Pick file to serve.",level:2,children:c.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"upload",onClick:function(){return i("PRG_uploadfile",{uid:e.uid})},children:[e.filename," (",e.size,"GQ)"]},e.uid)}))})]})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.servers;return(0,o.createComponentVNode)(2,a.Section,{title:"Available Files",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"upload",onClick:function(){return i("PRG_uploadmenu")},children:"Send File"}),children:c.length&&(0,o.createComponentVNode)(2,a.LabeledList,{children:c.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.uid,children:[!!e.haspassword&&(0,o.createComponentVNode)(2,a.Icon,{name:"lock",mr:1}),e.filename,"\xa0 (",e.size,"GQ)\xa0",(0,o.createComponentVNode)(2,a.Button,{icon:"download",onClick:function(){return i("PRG_downloadfile",{uid:e.uid})},children:"Download"})]},e.uid)}))})||(0,o.createComponentVNode)(2,a.Box,{children:"No upload servers found."})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosNewsBrowser=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(93);t.NtosNewsBrowser=function(e,t){var n=(0,r.useBackend)(t),c=n.act,s=n.data,m=s.article,p=s.download,h=s.message,f=(0,o.createComponentVNode)(2,d);return m?f=(0,o.createComponentVNode)(2,l):p&&(f=(0,o.createComponentVNode)(2,u)),(0,o.createComponentVNode)(2,i.NtosWindow,{width:575,height:750,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:[!!h&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:[h," ",(0,o.createComponentVNode)(2,a.Button,{icon:"times",onClick:function(){return c("PRG_clearmessage")}})]}),f]})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.article;if(!l)return(0,o.createComponentVNode)(2,a.Section,{children:"Error: Article not found."});var d=l.title,u=l.cover,s=l.content;return(0,o.createComponentVNode)(2,a.Section,{title:"Viewing: "+d,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"save",onClick:function(){return i("PRG_savearticle")},children:"Save"}),(0,o.createComponentVNode)(2,a.Button,{icon:"times",onClick:function(){return i("PRG_reset")},children:"Close"})],4),children:[!!u&&(0,o.createVNode)(1,"img",null,null,1,{src:(0,c.resolveAsset)(u)}),(0,o.createVNode)(1,"div",null,null,1,{dangerouslySetInnerHTML:{__html:s}})]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.showing_archived,d=c.all_articles;return(0,o.createComponentVNode)(2,a.Section,{title:"Articles List",buttons:(0,o.createComponentVNode)(2,a.Button.Checkbox,{onClick:function(){return i("PRG_toggle_archived")},checked:l,children:"Show Archived"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"download",onClick:function(){return i("PRG_openarticle",{uid:e.uid})}}),children:[e.size," GQ"]},e.uid)}))||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Error",children:"There appear to be no outstanding news articles on NTNet today."})})})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.download,l=c.download_progress,d=c.download_maxprogress,u=c.download_rate;return(0,o.createComponentVNode)(2,a.Section,{title:"Downloading...",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Progress",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:"good",minValue:0,value:l,maxValue:d,children:[l," / ",d," GQ"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Download Speed",children:[u," GQ/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Controls",children:(0,o.createComponentVNode)(2,a.Button,{icon:"ban",fluid:!0,onClick:function(){return i("PRG_reset")},children:"Abort Download"})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosOvermapNavigation=void 0;var o=n(0),r=n(3),a=n(194);t.NtosOvermapNavigation=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:380,height:530,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.OvermapNavigationContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosPowerMonitor=void 0;var o=n(0),r=n(3),a=n(135);t.NtosPowerMonitor=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:550,height:700,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.PowerMonitorContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosRCON=void 0;var o=n(0),r=n(3),a=n(195);t.NtosRCON=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:630,height:440,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.RCONContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosRevelation=void 0;var o=n(0),r=n(2),a=n(1),i=n(3);t.NtosRevelation=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data;return(0,o.createComponentVNode)(2,i.NtosWindow,{width:400,height:250,theme:"syndicate",children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,r.Section,{children:[(0,o.createComponentVNode)(2,r.Button.Input,{fluid:!0,content:"Obfuscate Name...",onCommit:function(e,t){return c("PRG_obfuscate",{new_name:t})},mb:1}),(0,o.createComponentVNode)(2,r.LabeledList,{children:(0,o.createComponentVNode)(2,r.LabeledList.Item,{label:"Payload Status",buttons:(0,o.createComponentVNode)(2,r.Button,{content:l.armed?"ARMED":"DISARMED",color:l.armed?"bad":"average",onClick:function(){return c("PRG_arm")}})})}),(0,o.createComponentVNode)(2,r.Button,{fluid:!0,bold:!0,content:"ACTIVATE",textAlign:"center",color:"bad",disabled:!l.armed})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosShutoffMonitor=void 0;var o=n(0),r=n(3),a=n(196);t.NtosShutoffMonitor=function(e,t){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:627,height:700,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{children:(0,o.createComponentVNode)(2,a.ShutoffMonitorContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosStationAlertConsole=void 0;var o=n(0),r=n(3),a=n(197);t.NtosStationAlertConsole=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:315,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.StationAlertConsoleContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosSupermatterMonitor=void 0;var o=n(0),r=n(3),a=n(198);t.NtosSupermatterMonitor=function(){return(0,o.createComponentVNode)(2,r.NtosWindow,{width:600,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,r.NtosWindow.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.SupermatterMonitorContent)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosUAV=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosUAV=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.current_uav,u=l.signal_strength,s=l.in_use,m=l.paired_uavs;return(0,o.createComponentVNode)(2,i.NtosWindow,{width:600,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Selected UAV",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"UAV",children:d&&d.status||"[Not Connected]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Signal",children:d&&u||"[Not Connected]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:d&&(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d.power,onClick:function(){return c("power_uav")},children:d.power?"Online":"Offline"})||"[Not Connected]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Camera",children:d&&(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:s,disabled:!d.power,onClick:function(){return c("view_uav")},children:d.power?"Available":"Unavailable"})||"[Not Connected]"})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Paired UAVs",children:m.length&&m.map((function(e){return(0,o.createComponentVNode)(2,a.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"quidditch",onClick:function(){return c("switch_uav",{switch_uav:e.uavref})},children:e.name})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{color:"bad",icon:"times",onClick:function(){return c("del_uav",{del_uav:e.uavref})}})})]},e.uavref)}))||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No UAVs Paired."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.NtosWordProcessor=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.NtosWordProcessor=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.PC_device_theme,u=l.error,s=l.browsing,m=l.files,p=(l.usbconnected,l.usbfiles,l.filename),h=l.filedata;return(0,o.createComponentVNode)(2,i.NtosWindow,{resizable:!0,theme:d,children:(0,o.createComponentVNode)(2,i.NtosWindow.Content,{scrollable:!0,children:u&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[(0,o.createVNode)(1,"h2",null,"An Error has occured:",16),"Additional Information: ",u,"Please try again. If the problem persists, contact your system administrator for assistance.",(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-left",content:"Back to menu",onClick:function(){return c("PRG_backtomenu")}})]})||s&&(0,o.createComponentVNode)(2,a.Section,{title:"File Browser",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-left",content:"Back to editor",onClick:function(){return c("PRG_closebrowser")}}),children:(0,o.createComponentVNode)(2,a.Section,{title:"Available documents (local)",level:2,children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Size (GQ)"}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0})]}),m.map((function(e,t){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.size}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,a.Button,{icon:"file-word",onClick:function(){return c("PRG_openfile",{PRG_openfile:e.name})},children:"Open"})})]},t)}))]})})})||(0,o.createComponentVNode)(2,a.Section,{title:"Document: "+p,children:[(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_newfile")},children:"New"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_loadmenu")},children:"Load"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_savefile")},children:"Save"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_saveasfile")},children:"Save As"})]}),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_editfile")},children:"Edit"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_txtrpeview")},children:"Preview"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("PRG_taghelp")},children:"Formatting Help"}),(0,o.createComponentVNode)(2,a.Button,{disabled:!h,onClick:function(){return c("PRG_printfile")},children:"Print"})]}),(0,o.createComponentVNode)(2,a.Section,{mt:1,children:(0,o.createVNode)(1,"div",null,null,1,{dangerouslySetInnerHTML:{__html:h}})})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.OmniFilter=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=function(e){return e.input?"Input":e.output?"Output":e.f_type?e.f_type:"Disabled"};t.OmniFilter=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.power,s=d.config,m=d.ports,p=d.set_flow_rate,h=d.last_flow_rate;return(0,o.createComponentVNode)(2,i.Window,{width:360,height:330,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:s?"Configuration":"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:u?"On":"Off",selected:u,disabled:s,onClick:function(){return l("power")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",selected:s,onClick:function(){return l("configure")}})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:m?m.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.dir+" Port",children:s?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"IN",selected:e.input,icon:"compress-arrows-alt",onClick:function(){return l("switch_mode",{mode:"in",dir:e.dir})}}),(0,o.createComponentVNode)(2,a.Button,{content:"OUT",selected:e.output,icon:"expand-arrows-alt",onClick:function(){return l("switch_mode",{mode:"out",dir:e.dir})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",disabled:e.input||e.output,content:e.f_type||"None",onClick:function(){return l("switch_filter",{mode:e.f_type,dir:e.dir})}})],4):c(e)},e.dir)})):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No Ports Detected"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Flow Rate",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Flow Rate",children:[h," L/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate Limit",children:s?(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:p/10+" L/s",onClick:function(){return l("set_flow_rate")}}):p/10+" L/s"})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.OmniMixer=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=function(e){return e.input?"Input":e.output?"Output":e.f_type?e.f_type:"Disabled"};t.OmniMixer=function(e,t){var n=(0,r.useBackend)(t),c=n.act,d=n.data,u=d.power,s=d.config,m=d.ports,p=d.set_flow_rate,h=d.last_flow_rate;return(0,o.createComponentVNode)(2,i.Window,{width:390,height:330,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:s?"Configuration":"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:u?"On":"Off",selected:u,disabled:s,onClick:function(){return c("power")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",selected:s,onClick:function(){return c("configure")}})],4),children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Port"}),s?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Input"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Output"})],4):(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Mode"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Concentration"}),s?(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Lock"}):null]}),m?m.map((function(e){return(0,o.createComponentVNode)(2,l,{port:e,config:s},e.dir)})):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No Ports Detected"})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Flow Rate",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Flow Rate",children:[h," L/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate Limit",children:s?(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:p/10+" L/s",onClick:function(){return c("set_flow_rate")}}):p/10+" L/s"})]})})]})})};var l=function(e,t){var n=(0,r.useBackend)(t).act,i=e.port,l=e.config;return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:i.dir+" Port"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:l?(0,o.createComponentVNode)(2,a.Button,{content:"IN",selected:i.input,disabled:i.output,icon:"compress-arrows-alt",onClick:function(){return n("switch_mode",{mode:i.input?"none":"in",dir:i.dir})}}):c(i)}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:l?(0,o.createComponentVNode)(2,a.Button,{content:"OUT",selected:i.output,icon:"expand-arrows-alt",onClick:function(){return n("switch_mode",{mode:"out",dir:i.dir})}}):100*i.concentration+"%"}),l?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",width:"20%",children:(0,o.createComponentVNode)(2,a.Button,{width:"100%",icon:"wrench",disabled:!i.input,content:i.input?100*i.concentration+" %":"-",onClick:function(){return n("switch_con",{dir:i.dir})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{icon:i.con_lock?"lock":"lock-open",disabled:!i.input,selected:i.con_lock,content:i.f_type||"None",onClick:function(){return n("switch_conlock",{dir:i.dir})}})})],4):null]})}},function(e,t,n){"use strict";t.__esModule=!0,t.OperatingComputer=void 0;var o=n(0),r=n(5),a=n(1),i=n(3),c=n(2),l=[["good","Conscious"],["average","Unconscious"],["bad","DEAD"]],d=[["Resp.","oxyLoss"],["Toxin","toxLoss"],["Brute","bruteLoss"],["Burn","fireLoss"]],u={average:[.25,.5],bad:[.5,Infinity]},s=["bad","average","average","good","average","average","bad"];t.OperatingComputer=function(e,t){var n,r=(0,a.useBackend)(t),l=r.act,d=r.data,u=d.hasOccupant,s=d.choice;return n=s?(0,o.createComponentVNode)(2,h):u?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,i.Window,{width:650,height:455,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,c.Tabs,{children:[(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:!s,icon:"user",onClick:function(){return l("choiceOff")},children:"Patient"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:!!s,icon:"cog",onClick:function(){return l("choiceOn")},children:"Options"})]}),(0,o.createComponentVNode)(2,c.Section,{flexGrow:"1",children:n})]})})};var m=function(e,t){var n=(0,a.useBackend)(t).data.occupant;return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Section,{title:"Patient",level:"2",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:n.name}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",color:l[n.stat][0],children:l[n.stat][1]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:n.maxHealth,value:n.health/n.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),d.map((function(e,t){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e[0]+" Damage",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:"100",value:n[e[1]]/100,ranges:u,children:(0,r.round)(n[e[1]])},t)},t)})),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:n.maxTemp,value:n.bodyTemperature/n.maxTemp,color:s[n.temperatureSuitability+3],children:[(0,r.round)(n.btCelsius),"\xb0C, ",(0,r.round)(n.btFaren),"\xb0F"]})}),!!n.hasBlood&&(0,o.createFragment)([(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Blood Level",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:n.bloodMax,value:n.bloodLevel/n.bloodMax,ranges:{bad:[-Infinity,.6],average:[.6,.9],good:[.6,Infinity]},children:[n.bloodPercent,"%, ",n.bloodLevel,"cl"]})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Pulse",children:[n.pulse," BPM"]})],4)]})}),(0,o.createComponentVNode)(2,c.Section,{title:"Current Procedure",level:"2",children:n.surgery&&n.surgery.length?(0,o.createComponentVNode)(2,c.LabeledList,{children:n.surgery.map((function(e){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Current State",children:e.currentStage}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Possible Next Steps",children:e.nextSteps.map((function(e){return(0,o.createVNode)(1,"div",null,e,0,null,e)}))})]})},e.name)}))}):(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"No procedure ongoing."})})],4)},p=function(){return(0,o.createComponentVNode)(2,c.Flex,{textAlign:"center",height:"100%",children:(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No patient detected."]})})},h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.verbose,d=i.health,u=i.healthAlarm,s=i.oxy,m=i.oxyAlarm,p=i.crit;return(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Loudspeaker",children:(0,o.createComponentVNode)(2,c.Button,{selected:l,icon:l?"toggle-on":"toggle-off",content:l?"On":"Off",onClick:function(){return r(l?"verboseOff":"verboseOn")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Health Announcer",children:(0,o.createComponentVNode)(2,c.Button,{selected:d,icon:d?"toggle-on":"toggle-off",content:d?"On":"Off",onClick:function(){return r(d?"healthOff":"healthOn")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Health Announcer Threshold",children:(0,o.createComponentVNode)(2,c.Knob,{bipolar:!0,minValue:"-100",maxValue:"100",value:u,stepPixelSize:"5",ml:"0",format:function(e){return e+"%"},onChange:function(e,t){return r("health_adj",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Oxygen Alarm",children:(0,o.createComponentVNode)(2,c.Button,{selected:s,icon:s?"toggle-on":"toggle-off",content:s?"On":"Off",onClick:function(){return r(s?"oxyOff":"oxyOn")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Oxygen Alarm Threshold",children:(0,o.createComponentVNode)(2,c.Knob,{bipolar:!0,minValue:"-100",maxValue:"100",value:m,stepPixelSize:"5",ml:"0",onChange:function(e,t){return r("oxy_adj",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Critical Alert",children:(0,o.createComponentVNode)(2,c.Button,{selected:p,icon:p?"toggle-on":"toggle-off",content:p?"On":"Off",onClick:function(){return r(p?"critOff":"critOn")}})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.OvermapDisperser=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(134);t.OvermapDisperser=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{width:400,height:550,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,l)})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.faillink,u=l.calibration,s=l.overmapdir,m=l.cal_accuracy,p=l.strength,h=l.range,f=l.next_shot,C=l.nopower,N=(l.skill,l.chargeload);return d?(0,o.createComponentVNode)(2,a.Section,{title:"Error",children:"Machine is incomplete, out of range, or misaligned!"}):(0,o.createComponentVNode)(2,a.Flex,{wrap:"wrap",spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"22%",children:(0,o.createComponentVNode)(2,a.Section,{title:"Targeting",textAlign:"center",children:(0,o.createComponentVNode)(2,c.OvermapPanControls,{actToDo:"choose",selected:function(e){return e===s}})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"74%",grow:1,children:(0,o.createComponentVNode)(2,a.Section,{title:"Charge",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[C&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Error",children:"At least one part of the machine is unpowered."})||null,(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Load Type",children:N}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cooldown",children:0===f&&(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Ready"})||f>1&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:f})," Seconds",(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Warning: Do not fire during cooldown."})]})||null})]})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",mt:1,children:(0,o.createComponentVNode)(2,a.Section,{title:"Calibration",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m}),"%",(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"exchange-alt",onClick:function(){return i("skill_calibration")},children:"Pre-Calibration"}),(0,o.createComponentVNode)(2,a.Box,{mt:1,children:u.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{children:["Cal #",t,":",(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"random",onClick:function(){return i("calibration",{calibration:t})},children:e.toString()})]},t)}))})]})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"45%",grow:1,mt:1,children:(0,o.createComponentVNode)(2,a.Section,{title:"Setup",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Strength",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"fist-raised",onClick:function(){return i("strength")},children:p})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Radius",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"expand-arrows-alt",onClick:function(){return i("range")},children:h})})]})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mt:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"red",icon:"bomb",onClick:function(){return i("fire")},children:"Fire ORB"})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.OvermapEngines=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.OvermapEngines=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.global_state,u=l.global_limit,s=l.engines_info,m=l.total_thrust;return(0,o.createComponentVNode)(2,i.Window,{width:390,height:530,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Engines",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("global_toggle")},children:d?"Shut All Engines Down":"Start All Engines"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Volume Limit",children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("global_limit",{global_limit:-.1})},icon:"minus"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("set_global_limit")},children:[u,"%"]}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("global_limit",{global_limit:.1})},icon:"plus"})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Thrust",children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Engines",height:"340px",style:{"overflow-y":"auto"},children:s.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex,{spacing:1,mt:0!==t&&-1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"80%",children:(0,o.createComponentVNode)(2,a.Collapsible,{title:(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:["Engine #",t+1," | Thrust: ",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:e.eng_thrust})," | Limit: ",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:e.eng_thrust_limiter,format:function(e){return e+"%"}})]}),children:(0,o.createComponentVNode)(2,a.Section,{width:"127%",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Type",children:e.eng_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:[(0,o.createComponentVNode)(2,a.Box,{color:e.eng_on?1===e.eng_on?"good":"average":"bad",children:e.eng_on?1===e.eng_on?"Online":"Booting":"Offline"}),e.eng_status.map((function(e){return Array.isArray(e)?(0,o.createComponentVNode)(2,a.Box,{color:e[1],children:e[0]}):(0,o.createComponentVNode)(2,a.Box,{children:e})}))]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Thrust",children:e.eng_thrust}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Volume Limit",children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("limit",{limit:-.1,engine:e.eng_reference})},icon:"minus"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("set_limit",{engine:e.eng_reference})},children:[e.eng_thrust_limiter,"%"]}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("limit",{limit:.1,engine:e.eng_reference})},icon:"plus"})]})]})})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"20%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,iconSpin:-1===e.eng_on,color:-1===e.eng_on?"purple":null,selected:1===e.eng_on,icon:"power-off",onClick:function(){return c("toggle",{engine:e.eng_reference})},children:e.eng_on?1===e.eng_on?"Shutoff":"Booting":"Startup"})})]},t)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.OvermapFlightDataWrap=t.OvermapHelm=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(134);t.OvermapHelm=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,i.Window,{width:565,height:545,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"40%",height:"180px",children:(0,o.createComponentVNode)(2,l)}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"25%",height:"180px",children:(0,o.createComponentVNode)(2,d)}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"35%",height:"180px",children:(0,o.createComponentVNode)(2,u)})]}),(0,o.createComponentVNode)(2,s)]})})};var l=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createVNode)(1,"fieldset","Section",[(0,o.createVNode)(1,"legend",null,"Flight Data",16),(0,o.createComponentVNode)(2,c.OvermapFlightData)],4,{style:{height:"100%",border:"1px solid #4972a1",margin:"none"}})};t.OvermapFlightDataWrap=l;var d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.canburn,u=l.manual_control;return(0,o.createVNode)(1,"fieldset","Section",[(0,o.createVNode)(1,"legend",null,"Manual Control",16),(0,o.createComponentVNode)(2,a.Flex,{align:"center",justify:"center",children:(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,c.OvermapPanControls,{disabled:!d,actToDo:"move"})})}),(0,o.createComponentVNode)(2,a.Box,{textAlign:"center",mt:1,children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,underline:!0,children:"Direct Control"}),(0,o.createComponentVNode)(2,a.Button,{selected:u,onClick:function(){return i("manual")},icon:"compass",children:u?"Enabled":"Disabled"})]})],4,{style:{height:"100%",border:"1px solid #4972a1"}})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.dest,d=c.d_x,u=c.d_y,s=c.speedlimit,m=c.autopilot;return c.autopilot_disabled?(0,o.createVNode)(1,"fieldset","Section",[(0,o.createVNode)(1,"legend",null,"Autopilot",16),(0,o.createComponentVNode)(2,a.Box,{textAlign:"center",color:"bad",fontSize:1.2,children:"AUTOPILOT DISABLED"}),(0,o.createComponentVNode)(2,a.Box,{textAlign:"center",color:"average",children:"Warning: This vessel is equipped with a class I autopilot. Class I autopilots are unable to do anything but fly in a straight line directly towards the target, and may result in collisions."}),(0,o.createComponentVNode)(2,a.Box,{textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button.Confirm,{mt:1,color:"bad",content:"Unlock Autopilot",confirmContent:"ACCEPT RISKS?",icon:"exclamation-triangle",confirmIcon:"exclamation-triangle",onClick:function(){return i("apilot_lock")}})})],4,{style:{height:"100%",border:"1px solid #4972a1"}}):(0,o.createVNode)(1,"fieldset","Section",[(0,o.createVNode)(1,"legend",null,"Autopilot",16),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:l&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return i("setcoord",{setx:!0})},children:d}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return i("setcoord",{sety:!0})},children:u})],4)||(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("setcoord",{setx:!0,sety:!0})},children:"None"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Speed Limit",children:(0,o.createComponentVNode)(2,a.Button,{icon:"tachometer-alt",onClick:function(){return i("speedlimit")},children:[s," Gm/h"]})})]}),(0,o.createComponentVNode)(2,a.Button,{mt:1,fluid:!0,selected:m,disabled:!l,icon:"robot",onClick:function(){return i("apilot")},children:m?"Engaged":"Disengaged"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"good",icon:"exclamation-triangle",onClick:function(){return i("apilot_lock")},children:"Lock Autopilot"})],4,{style:{height:"100%",border:"1px solid #4972a1"}})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.sector,d=c.s_x,u=c.s_y,s=c.sector_info,m=c.landed,p=c.locations;return(0,o.createComponentVNode)(2,a.Section,{title:"Navigation Data",m:.3,mt:1,children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Coordinates",children:[d," : ",u]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Scan Data",children:s}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:m})]}),(0,o.createComponentVNode)(2,a.Flex,{mt:1,align:"center",justify:"center",spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"save",onClick:function(){return i("add",{add:"current"})},children:"Save Current Position"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"sticky-note",onClick:function(){return i("add",{add:"new"})},children:"Add New Entry"})})]}),(0,o.createComponentVNode)(2,a.Section,{mt:1,scrollable:!0,height:"130px",children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Coordinates"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Actions"})]}),p.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[e.x," : ",e.y]}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"rocket",onClick:function(){return i("setds",{x:e.x,y:e.y})},children:"Plot Course"}),(0,o.createComponentVNode)(2,a.Button,{icon:"trash",onClick:function(){return i("remove",{remove:e.reference})},children:"Remove"})]})]},e.name)}))]})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.OvermapShieldGenerator=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.OvermapShieldGenerator=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{width:500,height:760,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,c)})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,u=c.modes,s=c.offline_for;return s?(0,o.createComponentVNode)(2,a.Section,{title:"EMERGENCY SHUTDOWN",color:"bad",children:["An emergency shutdown has been initiated - generator cooling down. Please wait until the generator cools down before resuming operation. Estimated time left: ",s," seconds."]}):(0,o.createFragment)([(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Section,{title:"Field Calibration",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,level:2,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:e.status,onClick:function(){return i("toggle_mode",{toggle_mode:e.flag})},children:e.status?"Enabled":"Disabled"}),children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",children:e.desc}),(0,o.createComponentVNode)(2,a.Box,{mt:.5,children:["Multiplier: ",e.multiplier]})]},e.name)}))})],4)},l=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data),c=i.running,l=i.overloaded,d=i.mitigation_max,u=i.mitigation_physical,s=i.mitigation_em,m=i.mitigation_heat,p=i.field_integrity,h=i.max_energy,f=i.current_energy,C=i.percentage_energy,N=i.total_segments,b=i.functional_segments,V=i.field_radius,g=i.target_radius,v=i.input_cap_kw,k=i.upkeep_power_usage,_=i.power_usage,y=i.spinup_counter;return(0,o.createComponentVNode)(2,a.Section,{title:"System Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Generator is",children:1===c&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Shutting Down"})||2===c&&(l&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Overloaded"})||(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Running"}))||3===c&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Inactive"})||4===c&&(0,o.createComponentVNode)(2,a.Box,{color:"blue",children:["Spinning Up\xa0",g!==V&&(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:"(Adjusting Radius)"})||(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:[2*y,"s"]})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Offline"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Energy Storage",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:f,maxValue:h,children:[f," / ",h," MJ (",C,"%)"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shield Integrity",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:p}),"%"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mitigation",children:[s,"% EM / ",u,"% PH / ",m,"% HE / ",d,"% MAX"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Upkeep Energy Use",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:k})," kW"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Energy Use",children:v&&(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:_,maxValue:v,children:[_," / ",v," kW"]})})||(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:_})," kW (No Limit)"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Field Size",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:b}),"\xa0/\xa0",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:N})," m\xb2 (radius ",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:V}),", target ",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:g}),")"]})]})})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.running,d=c.hacked,u=c.idle_multiplier,s=c.idle_valid_values;return(0,o.createComponentVNode)(2,a.Section,{title:"Controls",buttons:(0,o.createFragment)([l>=2&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return i("begin_shutdown")},selected:!0,children:"Turn off"}),3===l&&(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return i("toggle_idle",{toggle_idle:0})},children:"Activate"})||(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return i("toggle_idle",{toggle_idle:1})},selected:!0,children:"Deactivate"})]})||(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return i("start_generator")},children:"Turn on"}),l&&d&&(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",onClick:function(){return i("emergency_shutdown")},color:"bad",children:"EMERGENCY SHUTDOWN"})||null],0),children:[(0,o.createComponentVNode)(2,a.Button,{icon:"expand-arrows-alt",onClick:function(){return i("set_range")},children:"Set Field Range"}),(0,o.createComponentVNode)(2,a.Button,{icon:"bolt",onClick:function(){return i("set_input_cap")},children:"Set Input Cap"}),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Set inactive power use intensity",children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{selected:e===u,disabled:4===l,onClick:function(){return i("switch_idle",{switch_idle:e})},children:e},e)}))})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.OvermapShipSensors=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.OvermapShipSensors=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.viewing,u=l.on,s=l.range,m=l.health,p=l.max_health,h=l.heat,f=l.critical_heat,C=l.status,N=l.contacts;return(0,o.createComponentVNode)(2,i.Window,{width:375,height:545,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"eye",selected:d,onClick:function(){return c("viewing")},children:"Map View"}),(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:u,onClick:function(){return c("toggle")},children:u?"Sensors Enabled":"Sensors Disabled"})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:C}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Range",children:(0,o.createComponentVNode)(2,a.Button,{icon:"signal",onClick:function(){return c("range")},children:s})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*p,Infinity],average:[.25*p,.75*p],bad:[-Infinity,.25*p]},value:m,maxValue:p,children:[m," / ",p]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{bad:[.75*f,Infinity],average:[.5*f,.75*f],good:[-Infinity,.5*f]},value:h,maxValue:f,children:h<.5*f&&(0,o.createComponentVNode)(2,a.Box,{children:"Temperature low."})||h<.75*f&&(0,o.createComponentVNode)(2,a.Box,{children:"Sensor temperature high!"})||(0,o.createComponentVNode)(2,a.Box,{children:"TEMPERATURE CRITICAL: Disable or reduce power immediately!"})})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Contacts",children:N.length&&N.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"search",onClick:function(){return c("scan",{scan:e.ref})},children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,inline:!0,children:["Scan: ",e.name]}),(0,o.createComponentVNode)(2,a.Box,{inline:!0,children:[", bearing: ",e.bearing,"\xb0"]})]},e.ref)}))||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No contacts on sensors."})}),"MISSING"===l.status&&(0,o.createComponentVNode)(2,a.Section,{title:"Error",children:(0,o.createComponentVNode)(2,a.Button,{icon:"wifi",onClick:function(){return c("link")},children:"Link up with sensor suite?"})})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ParticleAccelerator=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.ParticleAccelerator=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.assembled,u=l.power,s=l.strength;return(0,o.createComponentVNode)(2,i.Window,{width:350,height:185,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Run Scan",onClick:function(){return c("scan")}}),children:(0,o.createComponentVNode)(2,a.Box,{color:d?"good":"bad",children:d?"Ready - All parts in place":"Unable to detect all parts"})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Particle Accelerator Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:u?"power-off":"times",content:u?"On":"Off",selected:u,disabled:!d,onClick:function(){return c("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Particle Strength",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:!d,onClick:function(){return c("remove_strength")}})," ",String(s).padStart(1,"0")," ",(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:!d,onClick:function(){return c("add_strength")}})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PartsLathe=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7),l=n(132);t.PartsLathe=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=(u.panelOpen,u.copyBoard),m=u.copyBoardReqComponents,p=u.queue,h=u.building,f=u.buildPercent,C=u.error,N=u.recipies;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[C&&(0,o.createComponentVNode)(2,a.NoticeBox,{danger:!0,children:["Missing Materials: ",C]})||null,(0,o.createComponentVNode)(2,a.Section,{title:"Materials",children:(0,o.createComponentVNode)(2,l.Materials,{displayAllMat:!0})}),h&&(0,o.createComponentVNode)(2,a.Section,{title:"Currently Building",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:(0,c.toTitleCase)(h)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Progress",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:"good",value:f,maxValue:100})})]})})||null,s&&(0,o.createComponentVNode)(2,a.Section,{title:"Circuit Reader",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Loaded Circuit",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return d("ejectBoard")},children:"Eject"}),children:(0,c.toTitleCase)(s)})}),m&&m.length&&(0,o.createFragment)([m.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.qty," x ",(0,c.toTitleCase)(e.name)]},e.name)})),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",onClick:function(){return d("queueBoard")},children:"Build All"})],0)||(0,o.createComponentVNode)(2,a.Box,{children:"Board has no required components."})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Queue",children:p.length&&p.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{color:"label",children:["#",t+1,": ",(0,c.toTitleCase)(e),(t>0||!h)&&(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"times",onClick:function(){return d("cancel",{cancel:t+1})},children:"Cancel"})||null]},e)}))||(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:"Queue Empty"})}),(0,o.createComponentVNode)(2,a.Section,{title:"Recipes",children:N.length&&N.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",onClick:function(){return d("queue",{queue:e.type})},children:(0,c.toTitleCase)(e.name)})},e.name)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PathogenicIsolator=void 0;var o=n(0),r=(n(5),n(20),n(1)),a=n(45),i=n(2),c=n(3),l=function(e,t){var n=(0,r.useBackend)(t),a=n.act,c=n.data.can_print,l=e.args;return(0,o.createComponentVNode)(2,i.Section,{level:2,m:"-1rem",title:l.name||"Virus",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{disabled:!c,icon:"print",content:"Print",onClick:function(){return a("print",{type:"virus_record",vir:l.record})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"times",color:"red",onClick:function(){return a("modal_close")}})],4),children:(0,o.createComponentVNode)(2,i.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Spread",children:[l.spread_text," Transmission"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Possible cure",children:l.antigen}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Rate of Progression",children:l.rate}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Antibiotic Resistance",children:[l.resistance,"%"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Species Affected",children:l.species}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Symptoms",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:l.symptoms.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.stage+". "+e.name,children:[(0,o.createComponentVNode)(2,i.Box,{inline:!0,children:[(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"label",children:"Strength:"})," ",e.strength,"\xa0"]}),(0,o.createComponentVNode)(2,i.Box,{inline:!0,children:[(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"label",children:"Aggressiveness:"})," ",e.aggressiveness]})]},e.stage)}))})})]})})})};t.PathogenicIsolator=function(e,t){var n=(0,r.useBackend)(t),s=(n.act,n.data.isolating),m=(0,r.useLocalState)(t,"tabIndex",0),p=m[0],h=m[1],f=null;return 0===p?f=(0,o.createComponentVNode)(2,d):1===p&&(f=(0,o.createComponentVNode)(2,u)),(0,a.modalRegisterBodyOverride)("virus",l),(0,o.createComponentVNode)(2,c.Window,{height:500,width:520,resizable:!0,children:[(0,o.createComponentVNode)(2,a.ComplexModal,{maxHeight:"100%",maxWidth:"95%"}),(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[s&&(0,o.createComponentVNode)(2,i.NoticeBox,{warning:!0,children:"The Isolator is currently isolating..."})||null,(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:0===p,onClick:function(){return h(0)},children:"Home"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===p,onClick:function(){return h(1)},children:"Database"})]}),f]})]})};var d=function(e,t){var n=(0,r.useBackend)(t),a=n.act,c=n.data,l=c.syringe_inserted,d=c.pathogen_pool,u=c.can_print;return(0,o.createComponentVNode)(2,i.Section,{title:"Pathogens",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"print",content:"Print",disabled:!u,onClick:function(){return a("print",{type:"patient_diagnosis"})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject Syringe",disabled:!l,onClick:function(){return a("eject")}})],4),children:d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,i.Section,{children:[(0,o.createComponentVNode)(2,i.Box,{color:"label",children:(0,o.createComponentVNode)(2,i.Flex,{align:"center",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:[(0,o.createVNode)(1,"u",null,[(0,o.createTextVNode)("Stamm #"),e.unique_id],0),e.is_in_database?" (Analyzed)":" (Not Analyzed)"]}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:[(0,o.createComponentVNode)(2,i.Button,{icon:"virus",content:"Isolate",onClick:function(){return a("isolate",{isolate:e.reference})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"search",content:"Database",disabled:!e.is_in_database,onClick:function(){return a("view_entry",{vir:e.record})}})]})]})}),(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Box,{color:"average",mb:1,children:e.name}),e.dna]})]},e.unique_id)}))||(l?(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No samples detected."}):(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"No syringe inserted."}))})},u=function(e,t){var n=(0,r.useBackend)(t),a=n.act,c=n.data,l=c.database,d=c.can_print;return(0,o.createComponentVNode)(2,i.Section,{title:"Database",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"print",content:"Print",disabled:!d,onClick:function(){return a("print",{type:"virus_list"})}}),children:l.length&&l.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"search",onClick:function(){return a("view_entry",{vir:e.record})},children:e.name},e.name)}))||(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"The viral database is empty."})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Pda=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(177),l=n(591);t.Pda=function(e,t){var n=(0,r.useBackend)(t),m=(n.act,n.data),p=m.app,h=m.owner,f=m.useRetro;if(!h)return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{stretchContents:!0,children:"Warning: No ID information found! Please swipe ID!"})})});var C=function(e){var t;try{t=l("./"+e+".js")}catch(o){if("MODULE_NOT_FOUND"===o.code)return(0,c.routingError)("notFound",e);throw o}var n=t[e];return n||(0,c.routingError)("missingExport",e)}(p.template),N=(0,r.useLocalState)(t,"settingsMode",!1),b=N[0],V=N[1];return(0,o.createComponentVNode)(2,i.Window,{width:580,height:670,theme:f?"pda-retro":null,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d,{settingsMode:b,setSettingsMode:V}),b&&(0,o.createComponentVNode)(2,u)||(0,o.createComponentVNode)(2,a.Section,{title:(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Icon,{name:p.icon,mr:1}),p.name]}),p:1,children:(0,o.createComponentVNode)(2,C)}),(0,o.createComponentVNode)(2,a.Box,{mb:8}),(0,o.createComponentVNode)(2,s,{setSettingsMode:V})]})})};var d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=e.settingsMode,d=e.setSettingsMode,u=c.idInserted,s=c.idLink,m=(c.cartridge_name,c.stationTime);return(0,o.createComponentVNode)(2,a.Box,{mb:1,children:(0,o.createComponentVNode)(2,a.Flex,{align:"center",justify:"space-between",children:[!!u&&(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",color:"transparent",onClick:function(){return i("Authenticate")},content:s})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,textAlign:"center",bold:!0,children:m}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{selected:l,onClick:function(){return d(!l)},icon:"cog"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return i("Retro")},icon:"adjust"})]})]})})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.idInserted,d=c.idLink,u=c.cartridge_name,s=c.touch_silent;return(0,o.createComponentVNode)(2,a.Section,{title:"Settings",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"R.E.T.R.O Mode",children:(0,o.createComponentVNode)(2,a.Button,{icon:"cog",content:"Retro Theme",onClick:function(){return i("Retro")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Touch Sounds",children:(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:!s,content:s?"Disabled":"Enabled",onClick:function(){return i("TouchSounds")}})}),!!u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cartridge",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return i("Eject")},content:u})}),!!l&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID Card",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return i("Authenticate")},content:d})})]})})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=e.setSettingsMode,d=c.app,u=c.useRetro;return(0,o.createComponentVNode)(2,a.Box,{position:"fixed",bottom:"0%",left:"0%",right:"0%",backgroundColor:u?"#6f7961":"#1b1b1b",children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"33%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"transparent",iconColor:d.has_back?"white":"disabled",textAlign:"center",icon:"undo",mb:0,fontSize:1.7,onClick:function(){return i("Back")}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"33%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,color:"transparent",iconColor:d.is_home?"disabled":"white",textAlign:"center",icon:"home",mb:0,fontSize:1.7,onClick:function(){l(!1),i("Home")}})})]})})}},function(e,t,n){var o={"./pda_atmos_scan.js":592,"./pda_janitor.js":593,"./pda_main_menu.js":594,"./pda_manifest.js":595,"./pda_medical.js":596,"./pda_messenger.js":597,"./pda_news.js":598,"./pda_notekeeper.js":599,"./pda_power.js":600,"./pda_security.js":601,"./pda_signaller.js":602,"./pda_status_display.js":603,"./pda_supply.js":604};function r(e){var t=a(e);return n(t)}function a(e){if(!n.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}r.keys=function(){return Object.keys(o)},r.resolve=a,e.exports=r,r.id=591},function(e,t,n){"use strict";t.__esModule=!0,t.pda_atmos_scan=void 0;var o=n(0),r=n(9),a=n(7),i=n(1),c=n(2);t.pda_atmos_scan=function(e,t){var n=(0,i.useBackend)(t),l=(n.act,n.data.aircontents);return(0,o.createComponentVNode)(2,c.Box,{children:(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,r.filter)((function(e){return"0"!==e.val||"Pressure"===e.entry||"Temperature"===e.entry}))(l).map((function(e){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.entry,color:(t=e.val,n=e.bad_low,r=e.poor_low,i=e.poor_high,l=e.bad_high,ti?"average":t>l?"bad":"good"),children:[e.val,(0,a.decodeHtmlEntities)(e.units)]},e.entry);var t,n,r,i,l}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_janitor=void 0;var o=n(0),r=(n(9),n(7),n(1)),a=n(2);t.pda_janitor=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.janitor);return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Location",children:0===i.user_loc.x&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Unknown"})||(0,o.createComponentVNode)(2,a.Box,{children:[i.user_loc.x," / ",i.user_loc.y]})})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Mop Locations",children:i.mops&&(0,o.createVNode)(1,"ul",null,i.mops.map((function(e,t){return(0,o.createVNode)(1,"li",null,[e.x,(0,o.createTextVNode)(" / "),e.y,(0,o.createTextVNode)(" - "),e.dir,(0,o.createTextVNode)(" - Status: "),e.status],0,null,t)})),0)||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No mops detected nearby."})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Mop Bucket Locations",children:i.buckets&&(0,o.createVNode)(1,"ul",null,i.buckets.map((function(e,t){return(0,o.createVNode)(1,"li",null,[e.x,(0,o.createTextVNode)(" / "),e.y,(0,o.createTextVNode)(" - "),e.dir,(0,o.createTextVNode)(" - Capacity: "),e.volume,(0,o.createTextVNode)("/"),e.max_volume],0,null,t)})),0)||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No buckets detected nearby."})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Cleanbot Locations",children:i.cleanbots&&(0,o.createVNode)(1,"ul",null,i.cleanbots.map((function(e,t){return(0,o.createVNode)(1,"li",null,[e.x,(0,o.createTextVNode)(" / "),e.y,(0,o.createTextVNode)(" - "),e.dir,(0,o.createTextVNode)(" - Status: "),e.status],0,null,t)})),0)||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No cleanbots detected nearby."})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Janitorial Cart Locations",children:i.carts&&(0,o.createVNode)(1,"ul",null,i.carts.map((function(e,t){return(0,o.createVNode)(1,"li",null,[e.x,(0,o.createTextVNode)(" / "),e.y,(0,o.createTextVNode)(" - "),e.dir,(0,o.createTextVNode)(" - Water Level: "),e.volume,(0,o.createTextVNode)("/"),e.max_volume],0,null,t)})),0)||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No janitorial carts detected nearby."})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_main_menu=void 0;var o=n(0),r=(n(5),n(1)),a=n(2);t.pda_main_menu=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.owner,d=c.ownjob,u=c.idInserted,s=c.categories,m=c.pai,p=c.notifying;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Owner",color:"average",children:[l,", ",d]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID",children:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Update PDA Info",disabled:!u,onClick:function(){return i("UpdateInfo")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Functions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:s.map((function(e){var t=c.apps[e];return t&&t.length?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e,children:t.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:e.ref in p?e.notify_icon:e.icon,iconSpin:e.ref in p,color:e.ref in p?"red":"transparent",content:e.name,onClick:function(){return i("StartProgram",{program:e.ref})}},e.ref)}))},e):null}))})}),!!m&&(0,o.createComponentVNode)(2,a.Section,{level:2,title:"pAI",children:[(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"cog",content:"Configuration",onClick:function(){return i("pai",{option:1})}}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:"Eject pAI",onClick:function(){return i("pai",{option:2})}})]})],0)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_manifest=void 0;var o=n(0),r=(n(9),n(1)),a=n(2),i=n(94);t.pda_manifest=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.Box,{color:"white",children:(0,o.createComponentVNode)(2,i.CrewManifestContent)})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_medical=void 0;var o=n(0),r=(n(9),n(7),n(1)),a=n(2);t.pda_medical=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.recordsList,d=c.records;if(d){var u=d.general,s=d.medical;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Section,{level:2,title:"General Data",children:u&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sex",children:u.sex}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:u.species}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Age",children:u.age}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rank",children:u.rank}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fingerprint",children:u.fingerprint}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Physical Status",children:u.p_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mental Status",children:u.m_stat})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"General record lost!"})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Medical Data",children:s&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood Type",children:s.b_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Minor Disabilities",children:s.mi_dis}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.mi_dis_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Major Disabilities",children:s.ma_dis}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.ma_dis_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Allergies",children:s.alg}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.alg_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Disease",children:s.cdi}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.cdi_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Important Notes",children:s.notes})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Medical record lost!"})})]})}return(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Select a record",children:l.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:"eye",fluid:!0,content:e.Name,onClick:function(){return i("Records",{target:e.ref})}},e.ref)}))})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_messenger=void 0;var o=n(0),r=n(7),a=n(9),i=n(1),c=n(2);t.pda_messenger=function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.data);r.auto_scroll,r.convo_name,r.convo_job,r.messages;return r.active_conversation?(0,o.createComponentVNode)(2,d):(0,o.createComponentVNode)(2,u)};var l=function(e,t,n){if(t<0||t>n.length)return e.sent?"TinderMessage_First_Sent":"TinderMessage_First_Received";var o=n[t].sent;return e.sent&&o?"TinderMessage_Subsequent_Sent":e.sent||o?e.sent?"TinderMessage_First_Sent":"TinderMessage_First_Received":"TinderMessage_Subsequent_Received"},d=function(e,t){var n=(0,i.useBackend)(t),d=n.act,u=n.data,s=(u.auto_scroll,u.convo_name),m=u.convo_job,p=u.messages,h=u.active_conversation,f=(u.useRetro,(0,i.useLocalState)(t,"clipboardMode",!1)),C=f[0],N=f[1],b=(0,o.createComponentVNode)(2,c.Section,{level:2,title:"Conversation with "+s+" ("+m+")",buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"eye",selected:C,tooltip:"Enter Clipboard Mode",tooltipPosition:"bottom-left",onClick:function(){return N(!C)}}),height:"450px",stretchContents:!0,children:[(0,o.createComponentVNode)(2,c.Section,{style:{height:"97%","overflow-y":"auto"},children:(0,a.filter)((function(e){return e.target===h}))(p).map((function(e,t,n){return(0,o.createComponentVNode)(2,c.Box,{textAlign:e.sent?"right":"left",mb:1,children:(0,o.createComponentVNode)(2,c.Box,{maxWidth:"75%",className:l(e,t-1,n),inline:!0,children:(0,r.decodeHtmlEntities)(e.message)})},t)}))}),(0,o.createComponentVNode)(2,c.Button,{icon:"comment",onClick:function(){return d("Message",{target:h})},content:"Reply"})]});return C&&(b=(0,o.createComponentVNode)(2,c.Section,{level:2,title:"Conversation with "+s+" ("+m+")",buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"eye",selected:C,tooltip:"Exit Clipboard Mode",tooltipPosition:"bottom-left",onClick:function(){return N(!C)}}),height:"450px",stretchContents:!0,children:[(0,o.createComponentVNode)(2,c.Section,{style:{height:"97%","overflow-y":"auto"},children:(0,a.filter)((function(e){return e.target===h}))(p).map((function(e,t){return(0,o.createComponentVNode)(2,c.Box,{className:e.sent?"ClassicMessage_Sent":"ClassicMessage_Received",children:[e.sent?"You:":"Them:"," ",(0,r.decodeHtmlEntities)(e.message)]},t)}))}),(0,o.createComponentVNode)(2,c.Button,{icon:"comment",onClick:function(){return d("Message",{target:h})},content:"Reply"})]})),(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Messenger Functions",children:(0,o.createComponentVNode)(2,c.Button,{icon:"trash",color:"bad",onClick:function(){return d("Clear",{option:"Convo"})},children:"Delete Conversations"})})}),b]})},u=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=(a.auto_scroll,a.convopdas),d=a.pdas,u=a.charges,m=(a.plugins,a.silent),p=a.toff;return(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Messenger Functions",children:[(0,o.createComponentVNode)(2,c.Button,{selected:!m,icon:m?"volume-mute":"volume-up",onClick:function(){return r("Toggle Ringer")},children:["Ringer: ",m?"Off":"On"]}),(0,o.createComponentVNode)(2,c.Button,{color:p?"bad":"green",icon:"power-off",onClick:function(){return r("Toggle Messenger")},children:["Messenger: ",p?"Off":"On"]}),(0,o.createComponentVNode)(2,c.Button,{icon:"bell",onClick:function(){return r("Ringtone")},children:"Set Ringtone"}),(0,o.createComponentVNode)(2,c.Button,{icon:"trash",color:"bad",onClick:function(){return r("Clear",{option:"All"})},children:"Delete All Conversations"})]})}),!p&&(0,o.createComponentVNode)(2,c.Box,{children:[!!u&&(0,o.createComponentVNode)(2,c.Box,{children:[u," charges left."]}),!l.length&&!d.length&&(0,o.createComponentVNode)(2,c.Box,{children:"No other PDAs located."})||(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,s,{title:"Current Conversations",pdas:l,msgAct:"Select Conversation"}),(0,o.createComponentVNode)(2,s,{title:"Other PDAs",pdas:d,msgAct:"Message"})]})]})||(0,o.createComponentVNode)(2,c.Box,{color:"bad",mt:2,children:"Messenger Offline."})]})},s=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=e.pdas,d=e.title,u=e.msgAct,s=a.charges,m=a.plugins;return l&&l.length?(0,o.createComponentVNode)(2,c.Section,{level:2,title:d,children:l.map((function(e){return(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.Button,{icon:"arrow-circle-down",content:e.Name,onClick:function(){return r(u,{target:e.Reference})}}),!!s&&m.map((function(t){return(0,o.createComponentVNode)(2,c.Button,{icon:t.icon,content:t.name,onClick:function(){return r("Messenger Plugin",{plugin:t.ref,target:e.Reference})}},t.ref)}))]},e.Reference)}))}):(0,o.createComponentVNode)(2,c.Section,{level:2,title:d,children:"No PDAs found."})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_news=void 0;var o=n(0),r=(n(9),n(7)),a=n(1),i=n(2);t.pda_news=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),d=r.feeds,u=r.target_feed;return(0,o.createComponentVNode)(2,i.Box,{children:!d.length&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Error: No newsfeeds available. Please try again later."})||u&&(0,o.createComponentVNode)(2,c)||(0,o.createComponentVNode)(2,l)})};var c=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data.target_feed;return(0,o.createComponentVNode)(2,i.Section,{title:(0,r.decodeHtmlEntities)(l.name)+" by "+(0,r.decodeHtmlEntities)(l.author),level:2,buttons:(0,o.createComponentVNode)(2,i.Button,{content:"Back",icon:"chevron-up",onClick:function(){return c("newsfeed",{newsfeed:null})}}),children:l.messages.length&&l.messages.map((function(e){return(0,o.createComponentVNode)(2,i.Section,{children:["- ",(0,r.decodeHtmlEntities)(e.body),!!e.img&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/png;base64,"+e.img}),(0,r.decodeHtmlEntities)(e.caption)||null]}),(0,o.createComponentVNode)(2,i.Box,{color:"grey",children:["[",e.message_type," by ",(0,r.decodeHtmlEntities)(e.author)," - ",e.time_stamp,"]"]})]},e.ref)}))||(0,o.createComponentVNode)(2,i.Box,{children:["No stories found in ",l.name,"."]})})},l=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.feeds,u=l.latest_news;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Recent News",level:2,children:u.length&&(0,o.createComponentVNode)(2,i.Section,{children:u.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{mb:2,children:[(0,o.createVNode)(1,"h5",null,[(0,r.decodeHtmlEntities)(e.channel),(0,o.createComponentVNode)(2,i.Button,{ml:1,icon:"chevron-up",onClick:function(){return c("newsfeed",{newsfeed:e.index})},content:"Go to"})],0),"- ",(0,r.decodeHtmlEntities)(e.body),!!e.img&&(0,o.createComponentVNode)(2,i.Box,{children:["[image omitted, view story for more details]",e.caption||null]}),(0,o.createComponentVNode)(2,i.Box,{fontSize:.9,children:["[",e.message_type," by ",(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"average",children:e.author})," - ",e.time_stamp,"]"]})]},e.index)}))})||(0,o.createComponentVNode)(2,i.Box,{children:"No recent stories found."})}),(0,o.createComponentVNode)(2,i.Section,{title:"News Feeds",level:2,children:d.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"chevron-up",onClick:function(){return c("newsfeed",{newsfeed:e.index})},content:e.name},e.index)}))})],4)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_notekeeper=void 0;var o=n(0),r=n(1),a=n(2);t.pda_notekeeper=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.note;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createVNode)(1,"div",null,null,1,{dangerouslySetInnerHTML:{__html:c}})}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return i("Edit")},content:"Edit Notes"})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_power=void 0;var o=n(0),r=n(1),a=n(135);t.pda_power=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.PowerMonitorContent)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_security=void 0;var o=n(0),r=(n(9),n(7),n(1)),a=n(2);t.pda_security=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.recordsList,d=c.records;if(d){var u=d.general,s=d.security;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Section,{level:2,title:"General Data",children:u&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sex",children:u.sex}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:u.species}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Age",children:u.age}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rank",children:u.rank}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fingerprint",children:u.fingerprint}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Physical Status",children:u.p_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mental Status",children:u.m_stat})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"General record lost!"})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Security Data",children:s&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Criminal Status",children:s.criminal}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Minor Crimes",children:s.mi_crim}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.mi_crim_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Major Crimes",children:s.ma_crim}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Details",children:s.ma_crim_d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Important Notes:",children:s.notes})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Security record lost!"})})]})}return(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Select a record",children:l.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:"eye",fluid:!0,content:e.Name,onClick:function(){return i("Records",{target:e.ref})}},e.ref)}))})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_signaller=void 0;var o=n(0),r=(n(9),n(7),n(1),n(2),n(199));t.pda_signaller=function(e,t){return(0,o.createComponentVNode)(2,r.SignalerContent)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_status_display=void 0;var o=n(0),r=(n(9),n(7),n(1)),a=n(2);t.pda_status_display=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.records;return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Code",children:[(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"trash",content:"Clear",onClick:function(){return i("Status",{statdisp:"blank"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"cog",content:"Evac ETA",onClick:function(){return i("Status",{statdisp:"shuttle"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"cog",content:"Message",onClick:function(){return i("Status",{statdisp:"message"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"exclamation-triangle",content:"ALERT",onClick:function(){return i("Status",{statdisp:"alert"})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message line 1",children:(0,o.createComponentVNode)(2,a.Button,{content:c.message1+" (set)",icon:"pen",onClick:function(){return i("Status",{statdisp:"setmsg1"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message line 2",children:(0,o.createComponentVNode)(2,a.Button,{content:c.message2+" (set)",icon:"pen",onClick:function(){return i("Status",{statdisp:"setmsg2"})}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_supply=void 0;var o=n(0),r=(n(9),n(7),n(1)),a=n(2);t.pda_supply=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.supply);return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:i.shuttle_moving?"Moving to station "+i.shuttle_eta:"Shuttle at "+i.shuttle_loc})}),(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"good",bold:!0,children:"Current Approved Orders"}),i.approved.length&&i.approved.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{color:"average",children:["#",e.Number," - ",e.Name," approved by ",e.OrderedBy,(0,o.createVNode)(1,"br"),e.Comment]},e.Number)}))||(0,o.createComponentVNode)(2,a.Box,{children:"None!"}),(0,o.createComponentVNode)(2,a.Box,{color:"good",bold:!0,children:"Current Requested Orders"}),i.requests.length&&i.requests.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{color:"average",children:["#",e.Number," - ",e.Name," requested by ",e.OrderedBy,(0,o.createVNode)(1,"br"),e.Comment]},e.Number)}))||(0,o.createComponentVNode)(2,a.Box,{children:"None!"})]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Photocopier=void 0;var o=n(0),r=n(2),a=n(1),i=n(3);t.Photocopier=function(e,t){var n=(0,a.useBackend)(t).data,u=n.isAI,s=n.has_toner,m=n.has_item;return(0,o.createComponentVNode)(2,i.Window,{title:"Photocopier",width:240,height:u?309:234,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[s?(0,o.createComponentVNode)(2,c):(0,o.createComponentVNode)(2,r.Section,{title:"Toner",children:(0,o.createComponentVNode)(2,r.Box,{color:"average",children:"No inserted toner cartridge."})}),m?(0,o.createComponentVNode)(2,l):(0,o.createComponentVNode)(2,r.Section,{title:"Options",children:(0,o.createComponentVNode)(2,r.Box,{color:"average",children:"No inserted item."})}),!!u&&(0,o.createComponentVNode)(2,d)]})})};var c=function(e,t){var n=(0,a.useBackend)(t),i=(n.act,n.data),c=i.max_toner,l=i.current_toner,d=.66*c,u=.33*c;return(0,o.createComponentVNode)(2,r.Section,{title:"Toner",children:(0,o.createComponentVNode)(2,r.ProgressBar,{ranges:{good:[d,c],average:[u,d],bad:[0,u]},value:l,minValue:0,maxValue:c})})},l=function(e,t){var n=(0,a.useBackend)(t),i=n.act,c=n.data,l=c.num_copies;c.has_enough_toner;return(0,o.createComponentVNode)(2,r.Section,{title:"Options",children:[(0,o.createComponentVNode)(2,r.Flex,{children:[(0,o.createComponentVNode)(2,r.Flex.Item,{mt:.4,width:11,color:"label",children:"Make copies:"}),(0,o.createComponentVNode)(2,r.Flex.Item,{children:(0,o.createComponentVNode)(2,r.NumberInput,{animate:!0,width:2.6,height:1.65,step:1,stepPixelSize:8,minValue:1,maxValue:10,value:l,onDrag:function(e,t){return i("set_copies",{num_copies:t})}})}),(0,o.createComponentVNode)(2,r.Flex.Item,{children:(0,o.createComponentVNode)(2,r.Button,{ml:.2,icon:"copy",textAlign:"center",onClick:function(){return i("make_copy")},children:"Copy"})})]}),(0,o.createComponentVNode)(2,r.Button,{mt:.5,textAlign:"center",icon:"reply",fluid:!0,onClick:function(){return i("remove")},children:"Remove item"})]})},d=function(e,t){var n=(0,a.useBackend)(t),i=n.act,c=n.data.can_AI_print;return(0,o.createComponentVNode)(2,r.Section,{title:"AI Options",children:(0,o.createComponentVNode)(2,r.Box,{children:(0,o.createComponentVNode)(2,r.Button,{fluid:!0,icon:"images",textAlign:"center",disabled:!c,onClick:function(){return i("ai_photo")},children:"Print photo from database"})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PipeDispenser=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(200);t.PipeDispenser=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.disposals,s=d.p_layer,m=d.pipe_layers,p=d.categories,h=void 0===p?[]:p,f=(0,r.useLocalState)(t,"categoryName"),C=f[0],N=f[1],b=h.find((function(e){return e.cat_name===C}))||h[0];return(0,o.createComponentVNode)(2,i.Window,{width:425,height:515,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[!u&&(0,o.createComponentVNode)(2,a.Section,{title:"Layer",children:(0,o.createComponentVNode)(2,a.Box,{children:Object.keys(m).map((function(e){return(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:m[e]===s,content:e,onClick:function(){return l("p_layer",{p_layer:m[e]})}},e)}))})}),(0,o.createComponentVNode)(2,a.Section,{title:"Pipes",children:[(0,o.createComponentVNode)(2,a.Tabs,{children:h.map((function(e,t){return(0,o.createComponentVNode)(2,a.Tabs.Tab,{fluid:!0,icon:c.ICON_BY_CATEGORY_NAME[e.cat_name],selected:e.cat_name===b.cat_name,onClick:function(){return N(e.cat_name)},children:e.cat_name},e.cat_name)}))}),null==b?void 0:b.recipes.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{fluid:!0,ellipsis:!0,content:e.pipe_name,title:e.pipe_name,onClick:function(){return l("dispense_pipe",{ref:e.ref,bent:e.bent,category:b.cat_name})}},e.pipe_name)}))]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PlantAnalyzer=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.PlantAnalyzer=function(e,t){var n=(0,r.useBackend)(t).data,a=250;return n.seed&&(a+=18*n.seed.trait_info.length),n.reagents&&n.reagents.length&&(a+=55,a+=20*n.reagents.length),(0,o.createComponentVNode)(2,i.Window,{width:400,height:a,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,c)})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.no_seed,d=c.seed,u=c.reagents;return l?(0,o.createComponentVNode)(2,a.Section,{title:"Analyzer Unused",children:"You should go scan a plant! There is no data currently loaded."}):(0,o.createComponentVNode)(2,a.Section,{title:"Plant Information",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"print",onClick:function(){return i("print")},children:"Print Report"}),(0,o.createComponentVNode)(2,a.Button,{icon:"window-close",color:"red",onClick:function(){return i("close")}})],4),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Plant Name",children:[d.name,"#",d.uid]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Endurance",children:d.endurance}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Yield",children:d.yield}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maturation Time",children:d.maturation_time}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Production Time",children:d.production_time}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Potency",children:d.potency})]}),u.length&&(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Plant Reagents",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[e.volume," unit(s)."]},e.name)}))})})||null,(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Other Data",children:d.trait_info.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{color:"label",mb:.4,children:e},e)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.PointDefenseControl=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.PointDefenseControl=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.id,u=l.turrets;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:600,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Fire Assist Mainframe: "+(d||"[no tag]"),children:u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{level:2,title:e.id,buttons:(0,o.createComponentVNode)(2,a.Button,{selected:e.active,icon:"power-off",onClick:function(){return c("toggle_active",{target:e.ref})},children:e.active?"Online":"Offline"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Effective range",children:e.effective_range}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Reaction wheel delay",children:e.reaction_wheel_delay}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Recharge time",children:e.recharge_time})]})},e.id)}))||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Error: No weapon systems detected. Please check network connection."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PortableGenerator=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(5);t.PortableGenerator=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.fuel_stored/d.fuel_capacity,s=(u>=.5?"good":u>.15&&"average")||"bad";return(0,o.createComponentVNode)(2,i.Window,{width:450,height:340,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[!d.anchored&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Generator not anchored."}),(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power switch",children:(0,o.createComponentVNode)(2,a.Button,{icon:d.active?"power-off":"times",onClick:function(){return l("toggle_power")},selected:d.active,disabled:!d.ready_to_boot,children:d.active?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fuel Type",buttons:d.fuel_stored>=1&&(0,o.createComponentVNode)(2,a.Button,{ml:1,icon:"eject",disabled:d.active,onClick:function(){return l("eject")},children:"Eject"}),children:(0,o.createComponentVNode)(2,a.Box,{color:s,children:[d.fuel_stored,"cm\xb3 ",d.sheet_name]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current fuel level",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:d.fuel_stored/d.fuel_capacity,ranges:{good:[.5,Infinity],average:[.15,.5],bad:[-Infinity,.15]},children:[d.fuel_stored,"cm\xb3 / ",d.fuel_capacity,"cm\xb3"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fuel Usage",children:[d.fuel_usage," cm\xb3/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:d.temperature_current,maxValue:d.temperature_max+30,color:d.temperature_overheat?"bad":"good",children:[(0,c.round)(d.temperature_current),"\xb0C"]})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Output",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current output",color:d.unsafe_output?"bad":null,children:d.power_output}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Adjust output",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"minus",onClick:function(){return l("lower_power")},children:d.power_generated}),(0,o.createComponentVNode)(2,a.Button,{icon:"plus",onClick:function(){return l("higher_power")},children:d.power_generated})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power available",children:(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:!d.connected&&"bad",children:d.connected?d.power_available:"Unconnected"})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PortablePump=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(201);t.PortablePump=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.direction,s=d.target_pressure,m=d.default_pressure,p=d.min_pressure,h=d.max_pressure;return(0,o.createComponentVNode)(2,i.Window,{width:330,height:375,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,c.PortableBasicInfo),(0,o.createComponentVNode)(2,a.Section,{title:"Pump",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:u?"sign-in-alt":"sign-out-alt",content:u?"In":"Out",selected:u,onClick:function(){return l("direction")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Output",children:(0,o.createComponentVNode)(2,a.Slider,{mt:"0.4em",animated:!0,minValue:p,maxValue:h,value:s,unit:"kPa",stepPixelSize:.3,onChange:function(e,t){return l("pressure",{pressure:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Presets",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"minus",disabled:s===p,onClick:function(){return l("pressure",{pressure:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync",disabled:s===m,onClick:function(){return l("pressure",{pressure:"reset"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"plus",disabled:s===h,onClick:function(){return l("pressure",{pressure:"max"})}})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PortableScrubber=void 0;var o=n(0),r=n(1),a=n(2),i=(n(28),n(3)),c=n(201);t.PortableScrubber=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.rate,s=d.minrate,m=d.maxrate;return(0,o.createComponentVNode)(2,i.Window,{width:320,height:350,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,c.PortableBasicInfo),(0,o.createComponentVNode)(2,a.Section,{title:"Power Regulator",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Volume Rate",children:(0,o.createComponentVNode)(2,a.Slider,{mt:"0.4em",animated:!0,minValue:s,maxValue:m,value:u,unit:"L/s",onChange:function(e,t){return l("volume_adj",{vol:t})}})})})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PortableTurret=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.PortableTurret=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.locked,u=l.on,s=l.lethal,m=l.lethal_is_configurable,p=l.targetting_is_configurable,h=l.check_weapons,f=l.neutralize_noaccess,C=l.neutralize_norecord,N=l.neutralize_criminals,b=l.neutralize_all,V=l.neutralize_nonsynth,g=l.neutralize_unidentified,v=l.neutralize_down;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.NoticeBox,{children:["Swipe an ID card to ",d?"unlock":"lock"," this interface."]}),(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:u?"power-off":"times",content:u?"On":"Off",selected:u,disabled:d,onClick:function(){return c("power")}})}),!!m&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Lethals",children:(0,o.createComponentVNode)(2,a.Button,{icon:s?"exclamation-triangle":"times",content:s?"On":"Off",color:s?"bad":"",disabled:d,onClick:function(){return c("lethal")}})})]})}),!!p&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Humanoid Targets",children:[(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:N,content:"Wanted Criminals",disabled:d,onClick:function(){return c("autharrest")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:C,content:"No Sec Record",disabled:d,onClick:function(){return c("authnorecord")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:h,content:"Unauthorized Weapons",disabled:d,onClick:function(){return c("authweapon")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:f,content:"Unauthorized Access",disabled:d,onClick:function(){return c("authaccess")}})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Other Targets",children:[(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:g,content:"Unidentified Lifesigns (Xenos, Animals, Etc)",disabled:d,onClick:function(){return c("authxeno")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:V,content:"All Non-Synthetics",disabled:d,onClick:function(){return c("authsynth")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:v,content:"Downed Targets",disabled:d,onClick:function(){return c("authdown")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:b,content:"All Entities",disabled:d,onClick:function(){return c("authall")}})]})],4)]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PressureRegulator=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.PressureRegulator=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.pressure_set,s=(l.max_pressure,l.input_pressure),m=l.output_pressure,p=l.regulate_mode,h=l.set_flow_rate,f=l.last_flow_rate;return(0,o.createComponentVNode)(2,i.Window,{width:470,height:370,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Input Pressure",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:s/100})," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Output Pressure",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m/100})," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:f/10})," L/s"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:d?"Unlocked":"Closed",selected:d,onClick:function(){return c("toggle_valve")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure Regulation",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:"Off",selected:0===p,onClick:function(){return c("regulate_mode",{mode:"off"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"compress-arrows-alt",content:"Input",selected:1===p,onClick:function(){return c("regulate_mode",{mode:"input"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"expand-arrows-alt",content:"Output",selected:2===p,onClick:function(){return c("regulate_mode",{mode:"output"})}})],4)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Desired Output Pressure",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"compress-arrows-alt",content:"MIN",onClick:function(){return c("set_press",{press:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"expand-arrows-alt",content:"MAX",onClick:function(){return c("set_press",{press:"max"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:"SET",onClick:function(){return c("set_press",{press:"set"})}})],4),children:[u/100," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Flow Rate Limit",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"compress-arrows-alt",content:"MIN",onClick:function(){return c("set_flow_rate",{press:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"expand-arrows-alt",content:"MAX",onClick:function(){return c("set_flow_rate",{press:"max"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:"SET",onClick:function(){return c("set_flow_rate",{press:"set"})}})],4),children:[h/10," L/s"]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PrisonerManagement=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);n(20);t.PrisonerManagement=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.locked,u=l.chemImplants,s=l.trackImplants;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:d&&(0,o.createComponentVNode)(2,a.Section,{title:"Locked",textAlign:"center",children:["This interface is currently locked.",(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"unlock",onClick:function(){return c("lock")},children:"Unlock"})})]})||(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Interface Lock",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lock",onClick:function(){return c("lock")},children:"Lock Interface"})}),(0,o.createComponentVNode)(2,a.Section,{title:"Chemical Implants",children:u.length&&(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Host"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Units Remaining"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Inject"})]}),u.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:e.host}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:[e.units,"u remaining"]}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("inject",{imp:e.ref,val:1})},children:"(1)"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("inject",{imp:e.ref,val:5})},children:"(5)"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("inject",{imp:e.ref,val:10})},children:"(10)"})]})]},e.ref)}))]})||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No chemical implants found."})}),(0,o.createComponentVNode)(2,a.Section,{title:"Tracking Implants",children:s.length&&(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Host"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Location"}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:"Message"})]}),s.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:[e.host," (",e.id,")"]}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:e.loc}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return c("warn",{imp:e.ref})},children:"Message"})})]},e.ref)}))]})||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No chemical implants found."})})],4)})})}},function(e,t,n){"use strict";t.__esModule=!0,t.RIGSuit=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7);t.RIGSuit=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data),s=c.interfacelock,m=c.malf,p=c.aicontrol,h=c.ai,f=null;return s||m?f=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"--HARDSUIT INTERFACE OFFLINE--"}):!h&&p&&(f=(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"-- HARDSUIT CONTROL OVERRIDDEN BY AI --"})),(0,o.createComponentVNode)(2,i.Window,{height:480,width:550,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:f||(0,o.createFragment)([(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,u)],4)})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.chargestatus,d=c.charge,u=c.maxcharge,s=c.aioverride,m=c.sealing,p=c.sealed,h=c.emagged,f=c.securitycheck,C=c.coverlock,N=(0,o.createComponentVNode)(2,a.Button,{content:"Suit "+(m?"seals working...":p?"is Active":"is Inactive"),icon:m?"redo":p?"power-off":"lock-open",iconSpin:m,disabled:m,selected:p,onClick:function(){return i("toggle_seals")}}),b=(0,o.createComponentVNode)(2,a.Button,{content:"AI Control "+(s?"Enabled":"Disabled"),selected:s,icon:"robot",onClick:function(){return i("toggle_ai_control")}});return(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([N,b],0),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Supply",children:(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,maxValue:50,value:l,ranges:{good:[35,Infinity],average:[15,35],bad:[-Infinity,15]},children:[d," / ",u]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cover Status",children:h||!f?(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Error - Maintenance Lock Control Offline"}):(0,o.createComponentVNode)(2,a.Button,{icon:C?"lock":"lock-open",content:C?"Locked":"Unlocked",onClick:function(){return i("toggle_suit_lock")}})})]})})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.sealing,u=l.helmet,s=l.helmetDeployed,m=l.gauntlets,p=l.gauntletsDeployed,h=l.boots,f=l.bootsDeployed,C=l.chest,N=l.chestDeployed;return(0,o.createComponentVNode)(2,a.Section,{title:"Hardware",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Helmet",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:s?"sign-out-alt":"sign-in-alt",content:s?"Deployed":"Deploy",disabled:d,selected:s,onClick:function(){return i("toggle_piece",{piece:"helmet"})}}),children:u?(0,c.capitalize)(u):"ERROR"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gauntlets",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:p?"sign-out-alt":"sign-in-alt",content:p?"Deployed":"Deploy",disabled:d,selected:p,onClick:function(){return i("toggle_piece",{piece:"gauntlets"})}}),children:m?(0,c.capitalize)(m):"ERROR"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Boots",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:f?"sign-out-alt":"sign-in-alt",content:f?"Deployed":"Deploy",disabled:d,selected:f,onClick:function(){return i("toggle_piece",{piece:"boots"})}}),children:h?(0,c.capitalize)(h):"ERROR"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Chestpiece",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:N?"sign-out-alt":"sign-in-alt",content:N?"Deployed":"Deploy",disabled:d,selected:N,onClick:function(){return i("toggle_piece",{piece:"chest"})}}),children:C?(0,c.capitalize)(C):"ERROR"})]})})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.sealed,u=l.sealing,s=l.primarysystem,m=l.modules;return!d||u?(0,o.createComponentVNode)(2,a.Section,{title:"Modules",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"HARDSUIT SYSTEMS OFFLINE"})}):(0,o.createComponentVNode)(2,a.Section,{title:"Modules",children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",mb:"0.2rem",fontSize:1.5,children:["Selected Primary: ",(0,c.capitalize)(s||"None")]}),m&&m.map((function(e,t){return(0,o.createComponentVNode)(2,a.Section,{level:2,title:(0,c.toTitleCase)(e.name)+(e.damage?" (damaged)":""),buttons:(0,o.createFragment)([e.can_select?(0,o.createComponentVNode)(2,a.Button,{selected:e.name===s,content:e.name===s?"Selected":"Select",icon:"arrow-circle-right",onClick:function(){return i("interact_module",{module:e.index,module_mode:"select"})}}):null,e.can_use?(0,o.createComponentVNode)(2,a.Button,{content:e.engagestring,icon:"arrow-circle-down",onClick:function(){return i("interact_module",{module:e.index,module_mode:"engage"})}}):null,e.can_toggle?(0,o.createComponentVNode)(2,a.Button,{selected:e.is_active,content:e.is_active?e.deactivatestring:e.activatestring,icon:"arrow-circle-down",onClick:function(){return i("interact_module",{module:e.index,module_mode:"toggle"})}}):null],0),children:[e.damage>=2?(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"-- MODULE DESTROYED --"}):(0,o.createComponentVNode)(2,a.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:[(0,o.createComponentVNode)(2,a.Box,{color:"average",children:["Engage: ",e.engagecost]}),(0,o.createComponentVNode)(2,a.Box,{color:"average",children:["Active: ",e.activecost]}),(0,o.createComponentVNode)(2,a.Box,{color:"average",children:["Passive: ",e.passivecost]})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:e.desc})]}),e.charges?(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Module Charges",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Selected",children:(0,c.capitalize)(e.chargetype)}),e.charges.map((function(t,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:(0,c.capitalize)(t.caption),children:(0,o.createComponentVNode)(2,a.Button,{selected:e.realchargetype===t.index,icon:"arrow-right",onClick:function(){return i("interact_module",{module:e.index,module_mode:"select_charge_type",charge_type:t.index})}})},t.caption)}))]})})}):null]},e.name)}))]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Radio=void 0;var o=n(0),r=(n(9),n(5)),a=n(1),i=n(2),c=n(28),l=n(3);t.Radio=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data,s=u.rawfreq,m=u.minFrequency,p=u.maxFrequency,h=u.listening,f=u.broadcasting,C=u.subspace,N=u.subspaceSwitchable,b=u.chan_list,V=u.loudspeaker,g=u.mic_cut,v=u.spk_cut,k=u.useSyndMode,_=c.RADIO_CHANNELS.find((function(e){return e.freq===Number(s)})),y=156;return b&&b.length>0?y+=28*b.length+6:y+=24,N&&(y+=38),(0,o.createComponentVNode)(2,l.Window,{width:310,height:y,resizable:!0,theme:k?"syndicate":"",children:(0,o.createComponentVNode)(2,l.Window.Content,{children:[(0,o.createComponentVNode)(2,i.Section,{children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Frequency",children:[(0,o.createComponentVNode)(2,i.NumberInput,{animated:!0,unit:"kHz",step:.2,stepPixelSize:10,minValue:m/10,maxValue:p/10,value:s/10,format:function(e){return(0,r.toFixed)(e,1)},onDrag:function(e,t){return d("setFrequency",{freq:(0,r.round)(10*t)})}}),_&&(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:_.color,ml:2,children:["[",_.name,"]"]})]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Audio",children:[(0,o.createComponentVNode)(2,i.Button,{textAlign:"center",width:"37px",icon:h?"volume-up":"volume-mute",selected:h,disabled:v,onClick:function(){return d("listen")}}),(0,o.createComponentVNode)(2,i.Button,{textAlign:"center",width:"37px",icon:f?"microphone":"microphone-slash",selected:f,disabled:g,onClick:function(){return d("broadcast")}}),!!N&&(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:"bullhorn",selected:C,content:"Subspace Tx "+(C?"ON":"OFF"),onClick:function(){return d("subspace")}})}),!!N&&(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:V?"volume-up":"volume-mute",selected:V,content:"Loudspeaker",onClick:function(){return d("toggleLoudspeaker")}})})]})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Channels",children:[(!b||0===b.length)&&(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"bad",children:"No channels detected."}),(0,o.createComponentVNode)(2,i.LabeledList,{children:b?b.map((function(e){var t=c.RADIO_CHANNELS.find((function(t){return t.freq===Number(e.freq)})),n="default";return t&&(n=t.color),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.display_name,labelColor:n,textAlign:"right",children:e.secure_channel&&C?(0,o.createComponentVNode)(2,i.Button,{icon:e.sec_channel_listen?"square-o":"check-square-o",selected:!e.sec_channel_listen,content:e.sec_channel_listen?"Off":"On",onClick:function(){return d("channel",{channel:e.chan})}}):(0,o.createComponentVNode)(2,i.Button,{content:"Switch",selected:e.chan===s,onClick:function(){return d("specFreq",{channel:e.chan})}})},e.chan)})):null})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.RequestConsole=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=function(e,t){var n=(0,a.useBackend)(t).act,r=e.dept_list,c=e.department;return(0,o.createComponentVNode)(2,i.LabeledList,{children:r.sort().map((function(e){return e!==c&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"envelope-open-text",onClick:function(){return n("write",{write:e,priority:1})},children:"Message"}),(0,o.createComponentVNode)(2,i.Button,{icon:"exclamation-triangle",onClick:function(){return n("write",{write:e,priority:2})},children:"High Priority"})],4)})||null}))})},d={0:function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.silent;return(0,o.createComponentVNode)(2,i.Section,{title:"Settings",children:(0,o.createComponentVNode)(2,i.Button,{selected:!c,icon:c?"volume-mute":"volume-up",onClick:function(){return r("toggleSilent")},children:["Speaker ",c?"OFF":"ON"]})})},1:function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=r.department,d=r.assist_dept;return(0,o.createComponentVNode)(2,i.Section,{title:"Request assistance from another department",children:(0,o.createComponentVNode)(2,l,{dept_list:d,department:c})})},2:function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=r.department,d=r.supply_dept;return(0,o.createComponentVNode)(2,i.Section,{title:"Supplies",children:(0,o.createComponentVNode)(2,l,{dept_list:d,department:c})})},3:function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=r.department,d=r.info_dept;return(0,o.createComponentVNode)(2,i.Section,{title:"Report Anonymous Information",children:(0,o.createComponentVNode)(2,l,{dept_list:d,department:c})})},4:function(e,t){var n=(0,a.useBackend)(t),r=n.act;n.data;return(0,o.createComponentVNode)(2,i.Section,{children:[(0,o.createComponentVNode)(2,i.Box,{fontSize:2,color:"good",children:"Message Sent Successfully"}),(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-right",onClick:function(){return r("setScreen",{setScreen:0})},children:"Continue"})})]})},5:function(e,t){var n=(0,a.useBackend)(t),r=n.act;n.data;return(0,o.createComponentVNode)(2,i.Section,{children:[(0,o.createComponentVNode)(2,i.Box,{fontSize:1.5,bold:!0,color:"bad",children:"An error occured. Message Not Sent."}),(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-right",onClick:function(){return r("setScreen",{setScreen:0})},children:"Continue"})})]})},6:function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data.message_log;return(0,o.createComponentVNode)(2,i.Section,{title:"Messages",children:l.length&&l.map((function(e,t){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:(0,r.decodeHtmlEntities)(e[0]),buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"print",onClick:function(){return c("print",{print:t+1})},children:"Print"}),children:(0,r.decodeHtmlEntities)(e[1])},t)}))||(0,o.createComponentVNode)(2,i.Box,{children:"No messages."})})},7:function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.message,u=l.recipient,s=l.priority,m=l.msgStamped,p=l.msgVerified;return(0,o.createComponentVNode)(2,i.Section,{title:"Message Authentication",children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Message for "+u,children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Priority",children:2===s?"High Priority":1===s?"Normal Priority":"Unknown"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Validated By",color:p?"good":"bad",children:(0,r.decodeHtmlEntities)(p)||"No Validation"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Stamped By",color:m?"good":"bad",children:(0,r.decodeHtmlEntities)(m)||"No Stamp"})]}),(0,o.createComponentVNode)(2,i.Button,{mt:1,icon:"share",onClick:function(){return c("department",{department:u})},children:"Send Message"}),(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return c("setScreen",{setScreen:0})},children:"Back"})]})},8:function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=(c.department,c.screen,c.message_log,c.newmessagepriority,c.silent,c.announcementConsole,c.assist_dept,c.supply_dept,c.info_dept,c.message),d=(c.recipient,c.priority,c.msgStamped,c.msgVerified,c.announceAuth);return(0,o.createComponentVNode)(2,i.Section,{title:"Send Station-Wide Announcement",children:[d&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:"good",mb:1,children:"ID Verified. Authentication Accepted."}),(0,o.createComponentVNode)(2,i.Section,{title:"Message",mt:1,maxHeight:"200px",scrollable:!0,buttons:(0,o.createComponentVNode)(2,i.Button,{ml:1,icon:"pen",onClick:function(){return r("writeAnnouncement")},children:"Edit"}),children:l||"No Message"})],4)||(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:"bad",mb:1,children:"Swipe your ID card to authenticate yourself."}),(0,o.createComponentVNode)(2,i.Button,{disabled:!l||!d,icon:"share",onClick:function(){return r("sendAnnouncement")},children:"Announce"}),(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return r("setScreen",{setScreen:0})},children:"Back"})]})}};t.RequestConsole=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data,u=l.screen,s=l.newmessagepriority,m=l.announcementConsole,p=d[u];return(0,o.createComponentVNode)(2,c.Window,{width:520,height:410,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:6===u,onClick:function(){return r("setScreen",{setScreen:6})},icon:"envelope-open-text",children:"Messages"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===u,onClick:function(){return r("setScreen",{setScreen:1})},icon:"share-square",children:"Assistance"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:2===u,onClick:function(){return r("setScreen",{setScreen:2})},icon:"share-square",children:"Supplies"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:3===u,onClick:function(){return r("setScreen",{setScreen:3})},icon:"share-square-o",children:"Report"}),m&&(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:8===u,onClick:function(){return r("setScreen",{setScreen:8})},icon:"volume-up",children:"Announce"})||null,(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:0===u,onClick:function(){return r("setScreen",{setScreen:0})},icon:"cog"})]}),s&&(0,o.createComponentVNode)(2,i.Section,{title:s>1?"NEW PRIORITY MESSAGES":"There are new messages!",color:s>1?"bad":"average",bold:s>1})||null,(0,o.createComponentVNode)(2,p)]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ResearchConsole=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=function(e,t){var n=(0,a.useBackend)(t).data,o=e.title,r=n[e.target];return"number"==typeof r?o+" - Page "+(r+1):o},d=function(e,t){var n=(0,a.useBackend)(t).act,r=e.target;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"undo",onClick:function(){return n(r,{reset:!0})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"chevron-left",onClick:function(){return n(r,{reverse:-1})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"chevron-right",onClick:function(){return n(r,{reverse:1})}})],4)},u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.info.tech,l=e.disk;if(!l||!l.present)return null;var d=(0,a.useSharedState)(t,"saveDialogTech",!1),u=d[0],s=d[1];return u?(0,o.createComponentVNode)(2,i.Section,{title:"Load Technology to Disk",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return s(!1)}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:c.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){s(!1),r("copy_tech",{copy_tech_ID:e.id})},children:"Copy To Disk"})},e.name)}))})}):(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Disk Contents",children:"(Technology Data Disk)"})}),l.stored&&(0,o.createComponentVNode)(2,i.Box,{mt:2,children:[(0,o.createComponentVNode)(2,i.Box,{children:l.name}),(0,o.createComponentVNode)(2,i.Box,{children:["Level: ",l.level]}),(0,o.createComponentVNode)(2,i.Box,{children:["Description: ",l.desc]}),(0,o.createComponentVNode)(2,i.Box,{mt:1,children:[(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){return r("updt_tech")},children:"Upload to Database"}),(0,o.createComponentVNode)(2,i.Button,{icon:"trash",onClick:function(){return r("clear_tech")},children:"Clear Disk"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return r("eject_tech")},children:"Eject Disk"})]})]})||(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Box,{children:"This disk has no data stored on it."}),(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){return s(!0)},children:"Load Tech To Disk"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return r("eject_tech")},children:"Eject Disk"})]})]})},s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,u=c.info.designs,s=e.disk;if(!s||!s.present)return null;var m=(0,a.useSharedState)(t,"saveDialogData",!1),p=m[0],h=m[1];return p?(0,o.createComponentVNode)(2,i.Section,{title:(0,o.createComponentVNode)(2,l,{title:"Load Design to Disk",target:"design_page"}),buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-left",content:"Back",onClick:function(){return h(!1)}}),(0,o.createComponentVNode)(2,d,{target:"design_page"})||null],0),children:[(0,o.createComponentVNode)(2,i.Input,{fluid:!0,placeholder:"Search for...",value:c.search,onInput:function(e,t){return r("search",{search:t})},mb:1}),(0,o.createComponentVNode)(2,i.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){h(!1),r("copy_design",{copy_design_ID:e.id})},children:"Copy To Disk"})},e.name)}))})]}):(0,o.createComponentVNode)(2,i.Box,{children:s.stored&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:s.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Lathe Type",children:s.build_type}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Required Materials",children:Object.keys(s.materials).map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:[e," x ",s.materials[e]]},e)}))})]}),(0,o.createComponentVNode)(2,i.Box,{mt:1,children:[(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){return r("updt_design")},children:"Upload to Database"}),(0,o.createComponentVNode)(2,i.Button,{icon:"trash",onClick:function(){return r("clear_design")},children:"Clear Disk"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return r("eject_design")},children:"Eject Disk"})]})]})||(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Box,{mb:.5,children:"This disk has no data stored on it."}),(0,o.createComponentVNode)(2,i.Button,{icon:"save",onClick:function(){return h(!0)},children:"Load Design To Disk"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return r("eject_design")},children:"Eject Disk"})]})})},m=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,u=e.target,s=e.designs,m=e.buildName,p=e.buildFiveName;return u?(0,o.createComponentVNode)(2,i.Section,{title:(0,o.createComponentVNode)(2,l,{target:"builder_page",title:"Designs"}),buttons:(0,o.createComponentVNode)(2,d,{target:"builder_page"}),children:[(0,o.createComponentVNode)(2,i.Input,{fluid:!0,placeholder:"Search for...",value:c.search,onInput:function(e,t){return r("search",{search:t})},mb:1}),s.length?s.map((function(e){return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Flex,{width:"100%",justify:"space-between",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{width:"40%",style:{"word-wrap":"break-all"},children:e.name}),(0,o.createComponentVNode)(2,i.Flex.Item,{width:"15%",textAlign:"center",children:[(0,o.createComponentVNode)(2,i.Button,{mb:-1,icon:"wrench",onClick:function(){return r(m,{build:e.id,imprint:e.id})},children:"Build"}),p&&(0,o.createComponentVNode)(2,i.Button,{mb:-1,onClick:function(){return r(p,{build:e.id,imprint:e.id})},children:"x5"})]}),(0,o.createComponentVNode)(2,i.Flex.Item,{width:"45%",style:{"word-wrap":"break-all"},children:[(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"label",children:e.mat_list.join(" ")}),(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"average",ml:1,children:e.chem_list.join(" ")})]})]}),(0,o.createComponentVNode)(2,i.Divider)],4,e.id)})):(0,o.createComponentVNode)(2,i.Box,{children:"No items could be found matching the parameters (page or search)."})]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Error"})},p=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=e.name,u=null,s=null;if("Protolathe"===d?(u=l.info.linked_lathe,s=l.lathe_designs):(u=l.info.linked_imprinter,s=l.imprinter_designs),!u||!u.present)return(0,o.createComponentVNode)(2,i.Section,{title:d,children:["No ",d," found."]});var p=u,h=p.total_materials,f=p.max_materials,C=p.total_volume,N=p.max_volume,b=p.busy,V=p.mats,g=p.reagents,v=p.queue,k=(0,a.useSharedState)(t,"protoTab",0),_=k[0],y=k[1];return(0,o.createComponentVNode)(2,i.Section,{title:d,buttons:b&&(0,o.createComponentVNode)(2,i.Icon,{name:"sync",spin:!0})||null,children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Materials",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:h,maxValue:f,children:[h," cm\xb3 / ",f," cm\xb3"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Chemicals",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:C,maxValue:N,children:[C,"u / ",N,"u"]})})]}),(0,o.createComponentVNode)(2,i.Tabs,{mt:1,children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"wrench",selected:0===_,onClick:function(){return y(0)},children:"Build"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"layer-group",iconSpin:b,color:b?"average":"transparent",selected:1===_,onClick:function(){return y(1)},children:"Queue"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"cookie-bite",selected:2===_,onClick:function(){return y(2)},children:"Mat Storage"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"flask",selected:3===_,onClick:function(){return y(3)},children:"Chem Storage"})]}),0===_&&(0,o.createComponentVNode)(2,m,{target:u,designs:s,buildName:"Protolathe"===d?"build":"imprint",buildFiveName:"Protolathe"===d?"buildfive":null})||1===_&&(0,o.createComponentVNode)(2,i.LabeledList,{children:v.length&&v.map((function(e){return 1===e.index?(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,labelColor:"bad",children:b?(0,o.createComponentVNode)(2,i.Button,{disabled:!0,icon:"trash",children:"Remove"}):(0,o.createComponentVNode)(2,i.Box,{children:["(Awaiting Materials)",(0,o.createComponentVNode)(2,i.Button,{ml:1,icon:"trash",onClick:function(){return c("removeP",{removeP:e.index})},children:"Remove"})]})}):(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,i.Button,{icon:"trash",onClick:function(){return c("removeP",{removeP:e.index})},children:"Remove"})},e.name)}))||(0,o.createComponentVNode)(2,i.Box,{m:1,children:"Queue Empty."})})||2===_&&(0,o.createComponentVNode)(2,i.LabeledList,{children:V.map((function(e){var n=(0,a.useLocalState)(t,"ejectAmt"+e.name,0),l=n[0],d=n[1];return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:(0,r.toTitleCase)(e.name),buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.NumberInput,{minValue:0,width:"100px",value:l,maxValue:e.sheets,onDrag:function(e,t){return d(t)}}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",disabled:!e.removable,onClick:function(){d(0),c("lathe_ejectsheet",{lathe_ejectsheet:e.name,amount:l})},children:"Num"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",disabled:!e.removable,onClick:function(){return c("lathe_ejectsheet",{lathe_ejectsheet:e.name,amount:50})},children:"All"})],4),children:[e.amount," cm\xb3"]},e.name)}))})||3===_&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:g.length&&g.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:[e.volume,"u",(0,o.createComponentVNode)(2,i.Button,{ml:1,icon:"eject",onClick:function(){return c("disposeP",{dispose:e.id})},children:"Purge"})]},e.name)}))||(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Empty",children:"No chems detected"})}),(0,o.createComponentVNode)(2,i.Button,{mt:1,icon:"trash",onClick:function(){return c("disposeallP")},children:"Disposal All Chemicals In Storage"})]})||(0,o.createComponentVNode)(2,i.Box,{children:"Error"})]})},h=[{name:"Protolathe",icon:"wrench",template:(0,o.createComponentVNode)(2,p,{name:"Protolathe"})},{name:"Circuit Imprinter",icon:"digital-tachograph",template:(0,o.createComponentVNode)(2,p,{name:"Circuit Imprinter"})},{name:"Destructive Analyzer",icon:"eraser",template:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.info.linked_destroy;if(!c.present)return(0,o.createComponentVNode)(2,i.Section,{title:"Destructive Analyzer",children:"No destructive analyzer found."});var l=c.loaded_item,d=c.origin_tech;return(0,o.createComponentVNode)(2,i.Section,{title:"Destructive Analyzer",children:l&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:l}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Origin Tech",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:[e.level,"\xa0\xa0",e.current&&"(Current: "+e.current+")"]},e.name)}))||(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Error",children:"No origin tech found."})})})]}),(0,o.createComponentVNode)(2,i.Button,{mt:1,color:"red",icon:"eraser",onClick:function(){return r("deconstruct")},children:"Deconstruct Item"}),(0,o.createComponentVNode)(2,i.Button,{icon:"eject",onClick:function(){return r("eject_item")},children:"Eject Item"})]})||(0,o.createComponentVNode)(2,i.Box,{children:"No Item Loaded. Standing-by..."})})}))},{name:"Settings",icon:"cog",template:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.info,l=c.sync,d=c.linked_destroy,u=c.linked_imprinter,s=c.linked_lathe,m=(0,a.useSharedState)(t,"settingsTab",0),p=m[0],h=m[1];return(0,o.createComponentVNode)(2,i.Section,{title:"Settings",children:[(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"cogs",onClick:function(){return h(0)},selected:0===p,children:"General"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:"link",onClick:function(){return h(1)},selected:1===p,children:"Device Linkages"})]}),0===p&&(0,o.createComponentVNode)(2,i.Box,{children:[l&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"sync",onClick:function(){return r("sync")},children:"Sync Database with Network"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"unlink",onClick:function(){return r("togglesync")},children:"Disconnect from Research Network"})],4)||(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"link",onClick:function(){return r("togglesync")},children:"Connect to Research Network"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"lock",onClick:function(){return r("lock")},children:"Lock Console"}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,color:"red",icon:"trash",onClick:function(){return r("reset")},children:"Reset R&D Database"})]})||1===p&&(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"sync",mb:1,onClick:function(){return r("find_device")},children:"Re-sync with Nearby Devices"}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[d.present&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Destructive Analyzer",children:(0,o.createComponentVNode)(2,i.Button,{icon:"unlink",onClick:function(){return r("disconnect",{disconnect:"destroy"})},children:"Disconnect"})})||null,s.present&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Protolathe",children:(0,o.createComponentVNode)(2,i.Button,{icon:"unlink",onClick:function(){return r("disconnect",{disconnect:"lathe"})},children:"Disconnect"})})||null,u.present&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Circuit Imprinter",children:(0,o.createComponentVNode)(2,i.Button,{icon:"unlink",onClick:function(){return r("disconnect",{disconnect:"imprinter"})},children:"Disconnect"})})||null]})]})||(0,o.createComponentVNode)(2,i.Box,{children:"Error"})]})}))},{name:"Research List",icon:"flask",template:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.tech;return(0,o.createComponentVNode)(2,i.Section,{title:"Current Research Levels",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"print",onClick:function(){return r("print",{print:1})},children:"Print This Page"}),children:(0,o.createComponentVNode)(2,i.Table,{children:c.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:[(0,o.createComponentVNode)(2,i.Box,{color:"label",children:e.name}),(0,o.createComponentVNode)(2,i.Box,{children:[" - Level ",e.level]})]}),(0,o.createComponentVNode)(2,i.Table.Cell,{children:(0,o.createComponentVNode)(2,i.Box,{color:"label",children:e.desc})})]},e.name)}))})})}))},{name:"Design List",icon:"file",template:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,u=c.designs;return(0,o.createComponentVNode)(2,i.Section,{title:(0,o.createComponentVNode)(2,l,{title:"Researched Technologies & Designs",target:"design_page"}),buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"print",onClick:function(){return r("print",{print:2})},children:"Print This Page"}),(0,o.createComponentVNode)(2,d,{target:"design_page"})||null],0),children:[(0,o.createComponentVNode)(2,i.Input,{fluid:!0,placeholder:"Search for...",value:c.search,onInput:function(e,t){return r("search",{search:t})},mb:1}),(0,o.createComponentVNode)(2,i.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:e.desc},e.name)}))})]})}))},{name:"Disk Operations",icon:"save",template:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.info),c=r.d_disk,l=r.t_disk;return c.present||l.present?(0,o.createComponentVNode)(2,i.Section,{title:"Disk Operations",children:[(0,o.createComponentVNode)(2,u,{disk:l}),(0,o.createComponentVNode)(2,s,{disk:c})]}):(0,o.createComponentVNode)(2,i.Section,{title:"Disk Operations",children:"No disk inserted."})}))}];t.ResearchConsole=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data,d=l.busy_msg,u=l.locked,s=(0,a.useSharedState)(t,"rdmenu",0),m=s[0],p=s[1],f=!1;return(d||u)&&(f=!0),(0,o.createComponentVNode)(2,c.Window,{width:850,height:630,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Tabs,{children:h.map((function(e,t){return(0,o.createComponentVNode)(2,i.Tabs.Tab,{icon:e.icon,selected:m===t,disabled:f,onClick:function(){return p(t)},children:e.name},t)}))}),d&&(0,o.createComponentVNode)(2,i.Section,{title:"Processing...",children:d})||u&&(0,o.createComponentVNode)(2,i.Section,{title:"Console Locked",children:(0,o.createComponentVNode)(2,i.Button,{onClick:function(){return r("lock")},icon:"lock-open",children:"Unlock"})})||h[m].template]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ResearchServerController=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(9);t.ResearchServerController=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,i.Window,{width:575,height:430,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,l)})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data),c=(i.badmin,i.servers),l=(i.consoles,(0,r.useSharedState)(t,"selectedServer",null)),u=l[0],s=l[1],m=c.find((function(e){return e.id===u}));return m?(0,o.createComponentVNode)(2,d,{setSelectedServer:s,server:m}):(0,o.createComponentVNode)(2,a.Section,{title:"Server Selection",children:c.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"eye",onClick:function(){return s(e.id)},children:e.name})},e.name)}))})},d=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.badmin),c=e.server,l=e.setSelectedServer,d=(0,r.useSharedState)(t,"tab",0),p=d[0],h=d[1];return(0,o.createComponentVNode)(2,a.Section,{title:c.name,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"undo",onClick:function(){return l(null)},children:"Back"}),children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===p,onClick:function(){return h(0)},children:"Access Rights"}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===p,onClick:function(){return h(1)},children:"Data Management"}),i&&(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===p,onClick:function(){return h(2)},color:"red",children:"Server-to-Server Transfer"})||null]}),0===p&&(0,o.createComponentVNode)(2,u,{server:c})||null,1===p&&(0,o.createComponentVNode)(2,s,{server:c})||null,2===p&&i&&(0,o.createComponentVNode)(2,m,{server:c})||null]})},u=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=e.server,d=c.consoles,u=function(e,t){return-1!==e.id_with_upload.indexOf(t.id)},s=function(e,t){return-1!==e.id_with_download.indexOf(t.id)};return(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Consoles",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d.length&&d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name+" ("+e.loc+")",children:[(0,o.createComponentVNode)(2,a.Button,{icon:u(l,e)?"lock-open":"lock",selected:u(l,e),onClick:function(){return i("toggle_upload",{server:l.ref,console:e.ref})},children:u(l,e)?"Upload On":"Upload Off"}),(0,o.createComponentVNode)(2,a.Button,{icon:s(l,e)?"lock-open":"lock",selected:s(l,e),onClick:function(){return i("toggle_download",{server:l.ref,console:e.ref})},children:s(l,e)?"Download On":"Download Off"})]},e.name)}))})})},s=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=(n.data,e.server);return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Research Levels",children:l.tech.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",confirmIcon:"trash",color:"red",content:"Reset",onClick:function(){return i("reset_tech",{server:l.ref,tech:e.id})}})},e.name)}))}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Designs",children:(0,c.filter)((function(e){return!!e.name}))(l.designs).map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",confirmIcon:"trash",color:"red",content:"Delete",onClick:function(){return i("reset_design",{server:l.ref,design:e.id})}})},e.name)}))})],4)},m=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=e.server,d=c.badmin,u=c.servers;return d?(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Server Data Transfer",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button.Confirm,{fluid:!0,color:"bad",content:(0,o.createComponentVNode)(2,a.Box,{children:["Transfer from ",l.name," To ",e.name]}),onClick:function(){return i("transfer_data",{server:l.ref,target:e.ref})}})},e.name)}))}):null}},function(e,t,n){"use strict";t.__esModule=!0,t.ResleevingConsole=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=(n(28),n(45)),l=n(3),d=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=(n.data,e.args),l=c.activerecord,d=c.realname,u=c.obviously_dead,s=c.oocnotes,m=c.can_sleeve_active;return(0,o.createComponentVNode)(2,i.Section,{level:2,m:"-1rem",pb:"1rem",title:"Mind Record ("+d+")",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"times",color:"red",onClick:function(){return r("modal_close")}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",children:u}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,i.Button,{disabled:!m,icon:"user-plus",content:"Sleeve",onClick:function(){return r("sleeve",{ref:l,mode:1})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"user-plus",content:"Card",onClick:function(){return r("sleeve",{ref:l,mode:2})}})]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"OOC Notes",children:(0,o.createComponentVNode)(2,i.Section,{style:{"word-break":"break-all",height:"100px"},scrollable:!0,children:s})})]})})},u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=(n.data,e.args),l=c.activerecord,d=c.realname,u=c.species,s=c.sex,m=c.mind_compat,p=c.synthetic,h=c.oocnotes,f=c.can_grow_active;return(0,o.createComponentVNode)(2,i.Section,{level:2,m:"-1rem",pb:"1rem",title:"Body Record ("+d+")",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"times",color:"red",onClick:function(){return r("modal_close")}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Species",children:u}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Bio. Sex",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mind Compat",children:m}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Synthetic",children:p?"Yes":"No"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"OOC Notes",children:(0,o.createComponentVNode)(2,i.Section,{style:{"word-break":"break-all",height:"100px"},scrollable:!0,children:h})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Actions",children:(0,o.createComponentVNode)(2,i.Button,{disabled:!f,icon:"user-plus",content:p?"Build":"Grow",onClick:function(){return r("create",{ref:l})}})})]})})};t.ResleevingConsole=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),f=(r.menu,r.coredumped),C=r.emergency,N=(0,o.createFragment)([(0,o.createComponentVNode)(2,g),(0,o.createComponentVNode)(2,v),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,i.Section,{noTopPadding:!0,flexGrow:"1",children:(0,o.createComponentVNode)(2,m)})],4);return f&&(N=(0,o.createComponentVNode)(2,p)),C&&(N=(0,o.createComponentVNode)(2,h)),(0,c.modalRegisterBodyOverride)("view_b_rec",u),(0,c.modalRegisterBodyOverride)("view_m_rec",d),(0,o.createComponentVNode)(2,l.Window,{width:640,height:520,resizable:!0,children:[(0,o.createComponentVNode)(2,c.ComplexModal,{maxWidth:"75%",maxHeight:"75%"}),(0,o.createComponentVNode)(2,l.Window.Content,{className:"Layout__content--flexColumn",children:N})]})};var s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.menu;return(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===c,icon:"home",onClick:function(){return r("menu",{num:1})},children:"Main"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:2===c,icon:"folder",onClick:function(){return r("menu",{num:2})},children:"Body Records"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:3===c,icon:"folder",onClick:function(){return r("menu",{num:3})},children:"Mind Records"})]})},m=function(e,t){var n,r=(0,a.useBackend)(t).data,i=r.menu,c=r.bodyrecords,l=r.mindrecords;return 1===i?n=(0,o.createComponentVNode)(2,f):2===i?n=(0,o.createComponentVNode)(2,V,{records:c,actToDo:"view_b_rec"}):3===i&&(n=(0,o.createComponentVNode)(2,V,{records:l,actToDo:"view_m_rec"})),n},p=function(e,t){return(0,o.createComponentVNode)(2,i.Dimmer,{children:(0,o.createComponentVNode)(2,i.Flex,{direction:"column",justify:"space-evenly",align:"center",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Icon,{size:12,color:"bad",name:"exclamation-triangle"})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,color:"bad",mt:5,children:(0,o.createVNode)(1,"h2",null,"TransCore dump completed. Resleeving offline.",16)})]})})},h=function(e,t){var n=(0,a.useBackend)(t).act;return(0,o.createComponentVNode)(2,i.Dimmer,{textAlign:"center",children:[(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:(0,o.createVNode)(1,"h1",null,"TRANSCORE DUMP",16)}),(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:(0,o.createVNode)(1,"h2",null,"!!WARNING!!",16)}),(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"This will transfer all minds to the dump disk, and the TransCore will be made unusable until post-shift maintenance! This should only be used in emergencies!"}),(0,o.createComponentVNode)(2,i.Box,{mt:4,children:(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject Disk",color:"good",onClick:function(){return n("ejectdisk")}})}),(0,o.createComponentVNode)(2,i.Box,{mt:4,children:(0,o.createComponentVNode)(2,i.Button.Confirm,{icon:"exclamation-triangle",confirmIcon:"exclamation-triangle",content:"Core Dump",confirmContent:"Disable Transcore?",color:"bad",onClick:function(){return n("coredump")}})})]})},f=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data);r.loading,r.scantemp,r.occupant,r.locked,r.can_brainscan,r.scan_mode,r.pods,r.selected_pod;return(0,o.createComponentVNode)(2,i.Section,{title:"Pods",level:"2",children:[(0,o.createComponentVNode)(2,C),(0,o.createComponentVNode)(2,b),(0,o.createComponentVNode)(2,N)]})},C=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.pods,u=l.spods,s=l.selected_pod;return d&&d.length?d.map((function(e,t){var n;return n="cloning"===e.status?(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:"100",value:e.progress/100,ranges:{good:[.75,Infinity],average:[.25,.75],bad:[-Infinity,.25]},mt:"0.5rem",children:(0,o.createComponentVNode)(2,i.Box,{textAlign:"center",children:(0,r.round)(e.progress,0)+"%"})}):"mess"===e.status?(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:"bad",mt:"0.5rem",children:"ERROR"}):(0,o.createComponentVNode)(2,i.Button,{selected:s===e.pod,icon:s===e.pod&&"check",content:"Select",mt:u&&u.length?"2rem":"0.5rem",onClick:function(){return c("selectpod",{ref:e.pod})}}),(0,o.createComponentVNode)(2,i.Box,{width:"64px",textAlign:"center",display:"inline-block",mr:"0.5rem",children:[(0,o.createVNode)(1,"img",null,null,1,{src:"pod_"+e.status+".gif",style:{width:"100%","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createComponentVNode)(2,i.Box,{color:"label",children:e.name}),(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:e.biomass>=150?"good":"bad",display:"inline",children:[(0,o.createComponentVNode)(2,i.Icon,{name:e.biomass>=150?"circle":"circle-o"}),"\xa0",e.biomass]}),n]},t)})):null},N=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.sleevers,d=c.spods,u=c.selected_sleever;return l&&l.length?l.map((function(e,t){return(0,o.createComponentVNode)(2,i.Box,{width:"64px",textAlign:"center",display:"inline-block",mr:"0.5rem",children:[(0,o.createVNode)(1,"img",null,null,1,{src:"sleeve_"+(e.occupied?"occupied":"empty")+".gif",style:{width:"100%","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createComponentVNode)(2,i.Box,{color:e.occupied?"label":"bad",children:e.name}),(0,o.createComponentVNode)(2,i.Button,{selected:u===e.sleever,icon:u===e.sleever&&"check",content:"Select",mt:d&&d.length?"3rem":"1.5rem",onClick:function(){return r("selectsleever",{ref:e.sleever})}})]},t)})):null},b=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.spods,u=l.selected_printer;return d&&d.length?d.map((function(e,t){var n;return n="cloning"===e.status?(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:"100",value:e.progress/100,ranges:{good:[.75,Infinity],average:[.25,.75],bad:[-Infinity,.25]},mt:"0.5rem",children:(0,o.createComponentVNode)(2,i.Box,{textAlign:"center",children:(0,r.round)(e.progress,0)+"%"})}):"mess"===e.status?(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:"bad",mt:"0.5rem",children:"ERROR"}):(0,o.createComponentVNode)(2,i.Button,{selected:u===e.spod,icon:u===e.spod&&"check",content:"Select",mt:"0.5rem",onClick:function(){return c("selectprinter",{ref:e.spod})}}),(0,o.createComponentVNode)(2,i.Box,{width:"64px",textAlign:"center",display:"inline-block",mr:"0.5rem",children:[(0,o.createVNode)(1,"img",null,null,1,{src:"synthprinter"+(e.busy?"_working":"")+".gif",style:{width:"100%","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createComponentVNode)(2,i.Box,{color:"label",children:e.name}),(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:e.steel>=15e3?"good":"bad",display:"inline",children:[(0,o.createComponentVNode)(2,i.Icon,{name:e.steel>=15e3?"circle":"circle-o"}),"\xa0",e.steel]}),(0,o.createComponentVNode)(2,i.Box,{bold:!0,color:e.glass>=15e3?"good":"bad",display:"inline",children:[(0,o.createComponentVNode)(2,i.Icon,{name:e.glass>=15e3?"circle":"circle-o"}),"\xa0",e.glass]}),n]},t)})):null},V=function(e,t){var n=(0,a.useBackend)(t).act,r=e.records,c=e.actToDo;return r.length?(0,o.createComponentVNode)(2,i.Box,{mt:"0.5rem",children:r.map((function(e,t){return(0,o.createComponentVNode)(2,i.Button,{icon:"user",mb:"0.5rem",content:e.name,onClick:function(){return n(c,{ref:e.recref})}},t)}))}):(0,o.createComponentVNode)(2,i.Flex,{height:"100%",mt:"0.5rem",children:(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No records found."]})})},g=function(e,t){var n,r=(0,a.useBackend)(t),c=r.act,l=r.data.temp;if(l&&l.text&&!(l.text.length<=0)){var d=((n={})[l.style]=!0,n);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.NoticeBox,Object.assign({},d,{children:[(0,o.createComponentVNode)(2,i.Box,{display:"inline-block",verticalAlign:"middle",children:l.text}),(0,o.createComponentVNode)(2,i.Button,{icon:"times-circle",float:"right",onClick:function(){return c("cleartemp")}}),(0,o.createComponentVNode)(2,i.Box,{clear:"both"})]})))}},v=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=r.pods,l=r.spods,d=r.sleevers;r.autoallowed,r.autoprocess,r.disk;return(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pods",children:c&&c.length?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:[c.length," connected"]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"None connected!"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"SynthFabs",children:l&&l.length?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:[l.length," connected"]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"None connected!"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Sleevers",children:d&&d.length?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:[d.length," Connected"]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"None connected!"})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ResleevingPod=void 0;var o=n(0),r=n(3),a=n(1),i=n(2);t.ResleevingPod=function(e,t){var n=(0,a.useBackend)(t).data,c=n.occupied,l=n.name,d=n.health,u=n.maxHealth,s=n.stat,m=n.mindStatus,p=n.mindName,h=n.resleeveSick,f=n.initialSick;return(0,o.createComponentVNode)(2,r.Window,{width:300,height:350,resizeable:!0,children:(0,o.createComponentVNode)(2,r.Window.Content,{children:(0,o.createComponentVNode)(2,i.Section,{title:"Occupant",children:c?(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:l}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health",children:2===s?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"DEAD"}):1===s?(0,o.createComponentVNode)(2,i.Box,{color:"average",children:"Unconscious"}):(0,o.createComponentVNode)(2,i.ProgressBar,{ranges:{good:[.5,Infinity],average:[.25,.5],bad:[-Infinity,.25]},value:d/u,children:[d,"%"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mind Status",children:m?"Present":"Missing"}),m?(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Mind Occupying",children:p}):""]}),h?(0,o.createComponentVNode)(2,i.Box,{color:"average",mt:3,children:["Warning: Resleeving Sickness detected.",f?(0,o.createFragment)([(0,o.createTextVNode)(" Motion Sickness also detected. Please allow the newly resleeved person a moment to get their bearings. This warning will disappear when Motion Sickness is no longer detected.")],4):""]}):""],0):(0,o.createComponentVNode)(2,i.Box,{bold:!0,m:1,children:"Unoccupied."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.RoboticsControlConsole=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.RoboticsControlConsole=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.can_hack,s=d.safety,m=d.show_detonate_all,p=d.cyborgs,h=void 0===p?[]:p;return(0,o.createComponentVNode)(2,i.Window,{width:500,height:460,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[!!m&&(0,o.createComponentVNode)(2,a.Section,{title:"Emergency Self Destruct",children:[(0,o.createComponentVNode)(2,a.Button,{icon:s?"lock":"unlock",content:s?"Disable Safety":"Enable Safety",selected:s,onClick:function(){return l("arm",{})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bomb",disabled:s,content:"Destroy ALL Cyborgs",color:"bad",onClick:function(){return l("nuke",{})}})]}),(0,o.createComponentVNode)(2,c,{cyborgs:h,can_hack:u})]})})};var c=function(e,t){var n=e.cyborgs,i=(e.can_hack,(0,r.useBackend)(t)),c=i.act,l=i.data;return n.length?n.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createFragment)([!!e.hackable&&!e.emagged&&(0,o.createComponentVNode)(2,a.Button,{icon:"terminal",content:"Hack",color:"bad",onClick:function(){return c("hackbot",{ref:e.ref})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:e.locked_down?"unlock":"lock",color:e.locked_down?"good":"default",content:e.locked_down?"Release":"Lockdown",disabled:!l.auth,onClick:function(){return c("stopbot",{ref:e.ref})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"bomb",content:"Detonate",disabled:!l.auth,color:"bad",onClick:function(){return c("killbot",{ref:e.ref})}})],0),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:(0,o.createComponentVNode)(2,a.Box,{color:e.status?"bad":e.locked_down?"average":"good",children:e.status?"Not Responding":e.locked_down?"Locked Down":"Nominal"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:(0,o.createComponentVNode)(2,a.Box,{children:e.locstring})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.health>50?"good":"bad",value:e.health/100})}),"number"==typeof e.charge&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Charge",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.charge>30?"good":"bad",value:e.charge/100})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Capacity",children:(0,o.createComponentVNode)(2,a.Box,{color:e.cell_capacity<3e4?"average":"good",children:e.cell_capacity})})],4)||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No Power Cell"})}),!!e.is_hacked&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safeties",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"DISABLED"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Module",children:e.module}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Master AI",children:(0,o.createComponentVNode)(2,a.Box,{color:e.synchronization?"default":"average",children:e.synchronization||"None"})})]})},e.ref)})):(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No cyborg units detected within access parameters."})}},function(e,t,n){"use strict";t.__esModule=!0,t.RogueZones=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.RogueZones=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.timeout_percent,u=l.diffstep,s=l.difficulty,m=l.occupied,p=l.scanning,h=l.updated,f=l.debug,C=l.shuttle_location,N=l.shuttle_at_station,b=l.scan_ready,V=l.can_recall_shuttle;return(0,o.createComponentVNode)(2,i.Window,{width:360,height:250,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Current Area",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mineral Content",children:s}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shuttle Location",buttons:V&&(0,o.createComponentVNode)(2,a.Button,{color:"bad",icon:"rocket",onClick:function(){return c("recall_shuttle")},children:"Recall Shuttle"})||null,children:C}),m&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{color:"bad",labelColor:"bad",label:"Personnel",children:["WARNING: Area occupied by ",m," personnel!"]})||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Personnel",color:"good",children:"No personnel detected."})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Scanner",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!b,fluid:!0,icon:"search",onClick:function(){return c("scan_for_new")},children:"Scan For Asteroids"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Scn Ramestat Core",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:d,maxValue:100,ranges:{good:[100,Infinity],average:[75,100],bad:[-Infinity,75]}})}),p&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Scanning",children:"In progress."})||null,h&&!p&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Info",children:"Updated shuttle destination!"})||null,f&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Debug",labelColor:"bad",children:[(0,o.createComponentVNode)(2,a.Box,{children:["Timeout Percent: ",d]}),(0,o.createComponentVNode)(2,a.Box,{children:["Diffstep: ",u]}),(0,o.createComponentVNode)(2,a.Box,{children:["Difficulty: ",s]}),(0,o.createComponentVNode)(2,a.Box,{children:["Occupied: ",m]}),(0,o.createComponentVNode)(2,a.Box,{children:["Debug: ",f]}),(0,o.createComponentVNode)(2,a.Box,{children:["Shuttle Location: ",C]}),(0,o.createComponentVNode)(2,a.Box,{children:["Shuttle at station: ",N]}),(0,o.createComponentVNode)(2,a.Box,{children:["Scan Ready: ",b]})]})||null]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Secbot=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Secbot=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.on,u=l.open,s=l.locked,m=l.idcheck,p=l.check_records,h=l.check_arrest,f=l.arrest_type,C=l.declare_arrests,N=l.will_patrol;return(0,o.createComponentVNode)(2,i.Window,{width:390,height:320,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Automatic Security Unit v2.0",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:d,onClick:function(){return c("power")},children:d?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",color:u?"bad":"good",children:u?"Open":"Closed"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Behavior Controls",color:s?"good":"bad",children:s?"Locked":"Unlocked"})]})}),!s&&(0,o.createComponentVNode)(2,a.Section,{title:"Behavior Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Check for Weapon Authorization",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"toggle-on":"toggle-off",selected:m,onClick:function(){return c("idcheck")},children:m?"Yes":"No"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Check Security Records",children:(0,o.createComponentVNode)(2,a.Button,{icon:p?"toggle-on":"toggle-off",selected:p,onClick:function(){return c("ignorerec")},children:p?"Yes":"No"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Check Arrest Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:h?"toggle-on":"toggle-off",selected:h,onClick:function(){return c("ignorearr")},children:h?"Yes":"No"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Operating Mode",children:(0,o.createComponentVNode)(2,a.Button,{icon:f?"toggle-on":"toggle-off",selected:f,onClick:function(){return c("switchmode")},children:f?"Detain":"Arrest"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Report Arrests",children:(0,o.createComponentVNode)(2,a.Button,{icon:C?"toggle-on":"toggle-off",selected:C,onClick:function(){return c("declarearrests")},children:C?"Yes":"No"})}),N&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auto Patrol",children:(0,o.createComponentVNode)(2,a.Button,{icon:N?"toggle-on":"toggle-off",selected:N,onClick:function(){return c("patrol")},children:N?"Yes":"No"})})]})})||null]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SecurityRecords=void 0;var o=n(0),r=n(1),a=n(2),i=n(45),c=n(3),l=n(95),d=n(96),u=n(62),s=(n(7),function(e,t){(0,i.modalOpen)(e,"edit",{field:t.edit,value:t.value})});t.SecurityRecords=function(e,t){var n,s=(0,r.useBackend)(t).data,f=s.authenticated,C=s.screen;return f?(2===C?n=(0,o.createComponentVNode)(2,m):3===C?n=(0,o.createComponentVNode)(2,p):4===C&&(n=(0,o.createComponentVNode)(2,h)),(0,o.createComponentVNode)(2,c.Window,{width:700,height:680,resizable:!0,children:[(0,o.createComponentVNode)(2,i.ComplexModal,{maxHeight:"100%",maxWidth:"400px"}),(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,l.LoginInfo),(0,o.createComponentVNode)(2,u.TemporaryNotice),(0,o.createComponentVNode)(2,N),(0,o.createComponentVNode)(2,a.Section,{height:"89%",flexGrow:"1",children:n})]})]})):(0,o.createComponentVNode)(2,c.Window,{width:700,height:680,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,d.LoginScreen)})})};var m=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.records;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Input,{fluid:!0,placeholder:"Search by Name, DNA, or ID",onChange:function(e,t){return i("search",{t1:t})}}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:c.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{icon:"user",mb:"0.5rem",color:e.color,content:e.id+": "+e.name+" (Criminal Status: "+e.criminal+")",onClick:function(){return i("d_rec",{d_rec:e.ref})}},t)}))})],4)},p=function(e,t){var n=(0,r.useBackend)(t).act;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"download",content:"Backup to Disk",disabled:!0}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"upload",content:"Upload from Disk",my:"0.5rem",disabled:!0}),(0,o.createTextVNode)(" "),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",content:"Delete All Security Records",onClick:function(){return n("del_all")}})],4)},h=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.security,d=c.printing;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"General Data",level:2,mt:"-6px",children:(0,o.createComponentVNode)(2,f)}),(0,o.createComponentVNode)(2,a.Section,{title:"Security Data",level:2,children:(0,o.createComponentVNode)(2,C)}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",level:2,children:[(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",disabled:!!l.empty,content:"Delete Security Record",color:"bad",onClick:function(){return i("del_r")}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",disabled:!!l.empty,content:"Delete Record (All)",color:"bad",onClick:function(){return i("del_r_2")}}),(0,o.createComponentVNode)(2,a.Button,{icon:d?"spinner":"print",disabled:d,iconSpin:!!d,content:"Print Entry",ml:"0.5rem",onClick:function(){return i("print_p")}}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-left",content:"Back",mt:"0.5rem",onClick:function(){return i("screen",{screen:2})}})]})],4)},f=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.general;return c&&c.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"left",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:c.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[(0,o.createComponentVNode)(2,a.Box,{height:"20px",display:"inline-block",children:e.value.split("\n").map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)}))}),!!e.edit&&(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",onClick:function(){return s(t,e)}})]},n)}))})}),(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"right",textAlign:"right",children:[!!c.has_photos&&c.photos.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",textAlign:"center",color:"label",children:[(0,o.createVNode)(1,"img",null,null,1,{src:e.substr(1,e.length-1),style:{width:"96px","margin-bottom":"0.5rem","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createVNode)(1,"br"),"Photo #",t+1]},t)})),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return i("photo_front")},children:"Update Front Photo"}),(0,o.createComponentVNode)(2,a.Button,{onClick:function(){return i("photo_side")},children:"Update Side Photo"})]})]})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"General records lost!"})},C=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data.security;return l&&l.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList,{children:l.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[e.value.split("\n").map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)})),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",mb:e.line_break?"1rem":"initial",onClick:function(){return s(t,e)}})]},n)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Comments/Log",level:2,children:[0===l.comments.length?(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"No comments found."}):l.comments.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",display:"inline",children:e.header}),(0,o.createVNode)(1,"br"),e.text,(0,o.createComponentVNode)(2,a.Button,{icon:"comment-slash",color:"bad",ml:"0.5rem",onClick:function(){return c("del_c",{del_c:t+1})}})]},t)})),(0,o.createComponentVNode)(2,a.Button,{icon:"comment",content:"Add Entry",color:"good",mt:"0.5rem",mb:"0",onClick:function(){return(0,i.modalOpen)(t,"add_c")}})]})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:["Security records lost!",(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"New Record",ml:"0.5rem",onClick:function(){return c("new")}})]})},N=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data.screen;return(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===c,onClick:function(){return i("screen",{screen:2})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"list"}),"List Records"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:3===c,onClick:function(){return i("screen",{screen:3})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"wrench"}),"Record Maintenance"]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.SeedStorage=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7),l=n(9);t.SeedStorage=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=(u.scanner,u.seeds),m=(0,l.sortBy)((function(e){return e.name.toLowerCase()}))(s);return(0,o.createComponentVNode)(2,i.Window,{width:600,height:760,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Seeds",children:m.map((function(e){return(0,o.createComponentVNode)(2,a.Flex,{spacing:1,mt:-1,children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"60%",children:(0,o.createComponentVNode)(2,a.Collapsible,{title:(0,c.toTitleCase)(e.name)+" #"+e.uid,children:(0,o.createComponentVNode)(2,a.Section,{width:"165%",title:"Traits",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:Object.keys(e.traits).map((function(t){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:(0,c.toTitleCase)(t),children:e.traits[t]},t)}))})})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{mt:.4,children:[e.amount," Remaining"]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"download",onClick:function(){return d("vend",{id:e.id})},children:"Vend"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"trash",onClick:function(){return d("purge",{id:e.id})},children:"Purge"})})]},e.name+e.uid)}))})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ShieldCapacitor=void 0;var o=n(0),r=n(1),a=n(3),i=n(2),c=n(5),l=n(20);t.ShieldCapacitor=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.active,m=u.time_since_fail,p=u.stored_charge,h=u.max_charge,f=u.charge_rate,C=u.max_charge_rate;return(0,o.createComponentVNode)(2,a.Window,{width:500,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,a.Window.Content,{children:(0,o.createComponentVNode)(2,i.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"power-off",selected:s,content:s?"Online":"Offline",onClick:function(){return d("toggle")}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Capacitor Status",children:m>2?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"OK."}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Discharging!"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Stored Energy",children:[(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:p,format:function(e){return(0,l.formatSiUnit)(e,0,"J")}})," (",(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:100*(0,c.round)(p/h,1)}),"%)"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Charge Rate",children:(0,o.createComponentVNode)(2,i.NumberInput,{value:f,step:100,stepPixelSize:.2,minValue:1e4,maxValue:C,format:function(e){return(0,l.formatPower)(e)},onDrag:function(e,t){return d("charge_rate",{rate:t})}})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ShieldGenerator=void 0;var o=n(0),r=n(1),a=n(3),i=n(2),c=n(5),l=n(20),d=n(61);t.ShieldGenerator=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.locked);return(0,o.createComponentVNode)(2,a.Window,{width:500,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,a.Window.Content,{children:i?(0,o.createComponentVNode)(2,u):(0,o.createComponentVNode)(2,s)})})};var u=function(e,t){return(0,o.createComponentVNode)(2,d.FullscreenNotice,{title:"Locked",children:[(0,o.createComponentVNode)(2,i.Box,{fontSize:"1.5rem",bold:!0,children:(0,o.createComponentVNode)(2,i.Icon,{name:"exclamation-triangle",verticalAlign:"middle",size:3,mr:"1rem"})}),(0,o.createComponentVNode)(2,i.Box,{color:"label",my:"1rem",children:"Swipe your ID to begin."})]})},s=function(e,t){var n=(0,r.useBackend)(t),a=n.act,d=n.data.lockedData,u=d.capacitors,s=d.active,m=d.failing,p=d.radius,h=d.max_radius,f=d.z_range,C=d.max_z_range,N=d.average_field_strength,b=d.target_field_strength,V=d.max_field_strength,g=d.shields,v=d.upkeep,k=d.strengthen_rate,_=d.max_strengthen_rate,y=d.gen_power,L=(u||[]).length;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Field Status",children:m?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Unstable"}):(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"Stable"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Overall Field Strength",children:[(0,c.round)(N,2)," Renwick (",b&&(0,c.round)(100*N/b,1)||"NA","%)"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Upkeep Power",children:(0,l.formatPower)(v)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Shield Generation Power",children:(0,l.formatPower)(y)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Currently Shielded",children:[g," m\xb2"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Capacitors",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:L?u.map((function(e,t){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Capacitor #"+t,children:[e.active?(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"Online"}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Offline"}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Charge",children:[(0,l.formatSiUnit)(e.stored_charge,0,"J")," (",100*(0,c.round)(e.stored_charge/e.max_charge,2),"%)"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",children:e.failing?(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Discharging"}):(0,o.createComponentVNode)(2,i.Box,{color:"good",children:"OK."})})]})]},t)})):(0,o.createComponentVNode)(2,i.LabeledList.Item,{color:"bad",children:"No Capacitors Connected"})})})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Controls",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"power-off",content:s?"Online":"Offline",selected:s,onClick:function(){return a("toggle")}}),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Coverage Radius",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,stepPixelSize:6,minValue:0,maxValue:h,value:p,unit:"m",onDrag:function(e,t){return a("change_radius",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Vertical Shielding",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,stepPixelSize:12,minValue:0,maxValue:C,value:f,unit:"vertical range",onDrag:function(e,t){return a("z_range",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Charge Rate",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,stepPixelSize:12,minValue:0,step:.1,maxValue:_,value:k,format:function(e){return(0,c.round)(e,1)},unit:"Renwick/s",onDrag:function(e,t){return a("strengthen_rate",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Maximum Field Strength",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,stepPixelSize:12,minValue:1,maxValue:V,value:b,unit:"Renwick",onDrag:function(e,t){return a("target_field_strength",{val:t})}})})]})})],4)}},function(e,t,n){"use strict";t.__esModule=!0,t.ShuttleControl=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(3),l=function(e,t){var n="ERROR",r="bad",a=!1;return"docked"===e?(n="DOCKED",r="good"):"docking"===e?(n="DOCKING",r="average",a=!0):"undocking"===e?(n="UNDOCKING",r="average",a=!0):"undocked"===e&&(n="UNDOCKED",r="#676767"),a&&t&&(n+="-MANUAL"),(0,o.createComponentVNode)(2,i.Box,{color:r,children:n})},d=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,d=e.engineName,u=void 0===d?"Bluespace Drive":d,s=c.shuttle_status,m=c.shuttle_state,p=c.has_docking,h=c.docking_status,f=c.docking_override,C=c.docking_codes;return(0,o.createComponentVNode)(2,i.Section,{title:"Shuttle Status",children:[(0,o.createComponentVNode)(2,i.Box,{color:"label",mb:1,children:s}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:u,children:"idle"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#676767",bold:!0,children:"IDLE"})||"warmup"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#336699",children:"SPINNING UP"})||"in_transit"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#336699",children:"ENGAGED"})||(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"ERROR"})}),p&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Docking Status",children:l(h,f)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Docking Codes",children:(0,o.createComponentVNode)(2,i.Button,{icon:"pen",onClick:function(){return r("set_codes")},children:C||"Not Set"})})],4)||null]})]})},u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.can_launch,d=c.can_cancel,u=c.can_force;return(0,o.createComponentVNode)(2,i.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,i.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{onClick:function(){return r("move")},disabled:!l,icon:"rocket",fluid:!0,children:"Launch Shuttle"})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{onClick:function(){return r("cancel")},disabled:!d,icon:"ban",fluid:!0,children:"Cancel Launch"})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,i.Button,{onClick:function(){return r("force")},color:"bad",disabled:!u,icon:"exclamation-triangle",fluid:!0,children:"Force Launch"})})]})})},s={ShuttleControlConsoleDefault:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t);n.act,n.data;return(0,o.createFragment)([(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,u)],4)})),ShuttleControlConsoleMulti:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.can_cloak,s=c.can_pick,m=c.legit,p=c.cloaked,h=c.destination_name;return(0,o.createFragment)([(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,i.Section,{title:"Multishuttle Controls",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[l&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:m?"ATC Inhibitor":"Cloaking",children:(0,o.createComponentVNode)(2,i.Button,{selected:p,icon:p?"eye":"eye-o",onClick:function(){return r("toggle_cloaked")},children:p?"Enabled":"Disabled"})})||null,(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current Destination",children:(0,o.createComponentVNode)(2,i.Button,{icon:"taxi",disabled:!s,onClick:function(){return r("pick")},children:h})})]})}),(0,o.createComponentVNode)(2,u)],4)})),ShuttleControlConsoleExploration:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.can_pick,s=c.destination_name,m=c.fuel_usage,p=c.fuel_span,h=c.remaining_fuel;return(0,o.createFragment)([(0,o.createComponentVNode)(2,d,{engineName:"Engines"}),(0,o.createComponentVNode)(2,i.Section,{title:"Jump Controls",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current Destination",children:(0,o.createComponentVNode)(2,i.Button,{icon:"taxi",disabled:!l,onClick:function(){return r("pick")},children:s})}),m&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Est. Delta-V Budget",color:p,children:[h," m/s"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Avg. Delta-V Per Maneuver",children:[m," m/s"]})],4)||null]})}),(0,o.createComponentVNode)(2,u)],4)})),ShuttleControlConsoleWeb:(0,o.createComponentVNode)(2,(function(e,t){var n=(0,a.useBackend)(t),c=n.act,d=n.data,u=d.autopilot,s=d.can_rename,m=d.shuttle_state,p=d.is_moving,h=d.skip_docking,f=d.docking_status,C=d.docking_override,N=d.shuttle_location,b=d.can_cloak,V=d.cloaked,g=d.can_autopilot,v=d.routes,k=d.is_in_transit,_=d.travel_progress,y=d.time_left,L=d.doors,B=d.sensors;return(0,o.createFragment)([u&&(0,o.createComponentVNode)(2,i.Section,{title:"AI PILOT (CLASS D) ACTIVE",children:(0,o.createComponentVNode)(2,i.Box,{inline:!0,italic:!0,children:"This vessel will start and stop automatically. Ensure that all non-cycling capable hatches and doors are closed, as the automated system may not be able to control them. Docking and flight controls are locked. To unlock, disable the automated flight system."})})||null,(0,o.createComponentVNode)(2,i.Section,{title:"Shuttle Status",buttons:s&&(0,o.createComponentVNode)(2,i.Button,{icon:"pen",onClick:function(){return c("rename_command")},children:"Rename"})||null,children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Engines",children:"idle"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#676767",bold:!0,children:"IDLE"})||"warmup"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#336699",children:"SPINNING UP"})||"in_transit"===m&&(0,o.createComponentVNode)(2,i.Box,{color:"#336699",children:"ENGAGED"})||(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"ERROR"})}),!p&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current Location",children:(0,r.toTitleCase)(N)}),!h&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Docking Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{selected:"docked"===f,disabled:"undocked"!==f&&"docked"!==f,onClick:function(){return c("dock_command")},children:"Dock"}),(0,o.createComponentVNode)(2,i.Button,{selected:"undocked"===f,disabled:"docked"!==f&&"undocked"!==f,onClick:function(){return c("undock_command")},children:"Undock"})],4),children:(0,o.createComponentVNode)(2,i.Box,{bold:!0,inline:!0,children:l(f,C)})})||null,b&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Cloaking",children:(0,o.createComponentVNode)(2,i.Button,{selected:V,icon:V?"eye":"eye-o",onClick:function(){return c("toggle_cloaked")},children:V?"Enabled":"Disabled"})})||null,g&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Autopilot",children:(0,o.createComponentVNode)(2,i.Button,{selected:u,icon:u?"eye":"eye-o",onClick:function(){return c("toggle_autopilot")},children:u?"Enabled":"Disabled"})})||null],0)||null]}),!p&&(0,o.createComponentVNode)(2,i.Section,{level:2,title:"Available Destinations",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:v.length&&v.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,i.Button,{icon:"rocket",onClick:function(){return c("traverse",{traverse:e.index})},children:e.travel_time})},e.name)}))||(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Error",color:"bad",children:"No routes found."})})})||null]}),k&&(0,o.createComponentVNode)(2,i.Section,{title:"Transit ETA",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Distance from target",children:(0,o.createComponentVNode)(2,i.ProgressBar,{color:"good",minValue:0,maxValue:100,value:_,children:[y,"s"]})})})})||null,Object.keys(L).length&&(0,o.createComponentVNode)(2,i.Section,{title:"Hatch Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:Object.keys(L).map((function(e){var t=L[e];return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,children:[t.open&&(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"bad",children:"Open"})||(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"good",children:"Closed"}),"\xa0-\xa0",t.bolted&&(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"good",children:"Bolted"})||(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:"bad",children:"Unbolted"})]},e)}))})})||null,Object.keys(B).length&&(0,o.createComponentVNode)(2,i.Section,{title:"Sensors",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:Object.keys(B).map((function(e){var t=B[e];return-1!==t.reading?(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,color:"bad",children:"Unable to get sensor air reading."}):(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pressure",children:[t.pressure,"kPa"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Temperature",children:[t.temp,"\xb0C"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Oxygen",children:[t.oxygen,"%"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Nitrogen",children:[t.nitrogen,"%"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Carbon Dioxide",children:[t.carbon_dioxide,"%"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Phoron",children:[t.phoron,"%"]}),t.other&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Other",children:[t.other,"%"]})||null]})},e)}))})})||null],0)}))};t.ShuttleControl=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.subtemplate);return(0,o.createComponentVNode)(2,c.Window,{width:470,height:"ShuttleControlConsoleWeb"===r?560:370,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:s[r]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Sleeper=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=[["good","Alive"],["average","Unconscious"],["bad","DEAD"]],d=[["Resp","oxyLoss"],["Toxin","toxLoss"],["Brute","bruteLoss"],["Burn","fireLoss"]],u={average:[.25,.5],bad:[.5,Infinity]},s=["bad","average","average","good","average","average","bad"];t.Sleeper=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.hasOccupant?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,N));return(0,o.createComponentVNode)(2,c.Window,{width:550,height:760,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:r})})};var m=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),i=(r.occupant,r.dialysis),c=r.stomachpumping;return(0,o.createFragment)([(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,h),(0,o.createComponentVNode)(2,f,{title:"Dialysis",active:i,actToDo:"togglefilter"}),(0,o.createComponentVNode)(2,f,{title:"Stomach Pump",active:c,actToDo:"togglepump"}),(0,o.createComponentVNode)(2,C)],4)},p=function(e,t){var n=(0,a.useBackend)(t),c=n.act,d=n.data,u=d.occupant,m=d.auto_eject_dead,p=d.stasis;return(0,o.createComponentVNode)(2,i.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{color:"label",display:"inline",children:"Auto-eject if dead:\xa0"}),(0,o.createComponentVNode)(2,i.Button,{icon:m?"toggle-on":"toggle-off",selected:m,content:m?"On":"Off",onClick:function(){return c("auto_eject_dead_"+(m?"off":"on"))}}),(0,o.createComponentVNode)(2,i.Button,{icon:"user-slash",content:"Eject",onClick:function(){return c("ejectify")}}),(0,o.createComponentVNode)(2,i.Button,{content:p,onClick:function(){return c("changestasis")}})],4),children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:0,max:u.maxHealth,value:u.health/u.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]},children:(0,r.round)(u.health,0)})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",color:l[u.stat][0],children:l[u.stat][1]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:u.maxTemp,value:u.bodyTemperature/u.maxTemp,color:s[u.temperatureSuitability+3],children:[(0,r.round)(u.btCelsius,0),"\xb0C,",(0,r.round)(u.btFaren,0),"\xb0F"]})}),!!u.hasBlood&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Blood Level",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:u.bloodMax,value:u.bloodLevel/u.bloodMax,ranges:{bad:[-Infinity,.6],average:[.6,.9],good:[.6,Infinity]},children:[u.bloodPercent,"%, ",u.bloodLevel,"cl"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pulse",verticalAlign:"middle",children:[u.pulse," BPM"]})],4)]})})},h=function(e,t){var n=(0,a.useBackend)(t).data.occupant;return(0,o.createComponentVNode)(2,i.Section,{title:"Damage",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:d.map((function(e,t){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e[0],children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:"100",value:n[e[1]]/100,ranges:u,children:(0,r.round)(n[e[1]],0)},t)},t)}))})})},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.isBeakerLoaded,d=c.beakerMaxSpace,u=c.beakerFreeSpace,s=e.active,m=e.actToDo,p=e.title,h=s&&u>0;return(0,o.createComponentVNode)(2,i.Section,{title:p,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{disabled:!l||u<=0,selected:h,icon:h?"toggle-on":"toggle-off",content:h?"Active":"Inactive",onClick:function(){return r(m)}}),(0,o.createComponentVNode)(2,i.Button,{disabled:!l,icon:"eject",content:"Eject",onClick:function(){return r("removebeaker")}})],4),children:l?(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Remaining Space",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:d,value:u/d,ranges:{good:[.5,Infinity],average:[.25,.5],bad:[-Infinity,.25]},children:[u,"u"]})})}):(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No beaker loaded."})})},C=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.occupant,d=c.chemicals,u=c.maxchem,s=c.amounts;return(0,o.createComponentVNode)(2,i.Section,{title:"Chemicals",flexGrow:"1",children:d.map((function(e,t){var n,a="";return e.overdosing?(a="bad",n=(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"exclamation-circle"}),"\xa0 Overdosing!"]})):e.od_warning&&(a="average",n=(0,o.createComponentVNode)(2,i.Box,{color:"average",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"exclamation-triangle"}),"\xa0 Close to overdosing"]})),(0,o.createComponentVNode)(2,i.Box,{backgroundColor:"rgba(0, 0, 0, 0.33)",mb:"0.5rem",children:(0,o.createComponentVNode)(2,i.Section,{title:e.title,level:"3",mx:"0",lineHeight:"18px",buttons:n,children:(0,o.createComponentVNode)(2,i.Flex,{align:"flex-start",children:[(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:u,value:e.occ_amount/u,color:a,mr:"0.5rem",children:[e.pretty_amount,"/",u,"u"]}),s.map((function(t,n){return(0,o.createComponentVNode)(2,i.Button,{disabled:!e.injectable||e.occ_amount+t>u||2===l.stat,icon:"syringe",content:t,mb:"0",height:"19px",onClick:function(){return r("chemical",{chemid:e.id,amount:t})}},n)}))]})})},t)}))})},N=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data.isBeakerLoaded;return(0,o.createComponentVNode)(2,i.Section,{textAlign:"center",flexGrow:"1",children:(0,o.createComponentVNode)(2,i.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected.",c&&(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Remove Beaker",onClick:function(){return r("removebeaker")}})})||null]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SmartVend=void 0;var o=n(0),r=n(9),a=n(1),i=n(2),c=n(3);t.SmartVend=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.config,u=n.data;return(0,o.createComponentVNode)(2,c.Window,{width:440,height:550,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i.Section,{title:"Storage",children:[u.secure&&(0,o.createComponentVNode)(2,i.NoticeBox,{danger:-1===u.locked,info:-1!==u.locked,children:-1===u.locked?(0,o.createComponentVNode)(2,i.Box,{children:"Sec.re ACC_** //):securi_nt.diag=>##'or 1=1'%($..."}):(0,o.createComponentVNode)(2,i.Box,{children:"Secure Access: Please have your identification ready."})})||null,0===u.contents.length&&(0,o.createComponentVNode)(2,i.NoticeBox,{children:["Unfortunately, this ",d.title," is empty."]})||(0,o.createComponentVNode)(2,i.Table,{children:[(0,o.createComponentVNode)(2,i.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,children:"Item"}),(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,textAlign:"center",children:"Amount"}),(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,textAlign:"center",children:"Dispense"})]}),(0,r.map)((function(e,t){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,children:e.name}),(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,textAlign:"center",children:[e.amount," in stock"]}),(0,o.createComponentVNode)(2,i.Table.Cell,{collapsing:!0,children:[(0,o.createComponentVNode)(2,i.Button,{content:"1",disabled:e.amount<1,onClick:function(){return l("Release",{index:e.index,amount:1})}}),(0,o.createComponentVNode)(2,i.Button,{content:"5",disabled:e.amount<5,onClick:function(){return l("Release",{index:e.index,amount:5})}}),(0,o.createComponentVNode)(2,i.Button,{content:"Custom",disabled:e.amount<1,onClick:function(){return l("Release",{index:e.index})}}),(0,o.createComponentVNode)(2,i.Button,{content:"All",disabled:e.amount<1,onClick:function(){return l("Release",{index:e.index,amount:e.amount})}})]})]},t)}))(u.contents)]})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Smes=void 0;var o=n(0),r=n(1),a=n(2),i=n(20),c=n(3),l=n(5);t.Smes=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.capacityPercent,m=u.capacity,p=u.charge,h=u.inputAttempt,f=u.inputting,C=u.inputLevel,N=u.inputLevelMax,b=u.inputAvailable,V=u.outputAttempt,g=u.outputting,v=u.outputLevel,k=u.outputLevelMax,_=u.outputUsed,y=(s>=100?"good":f&&"average")||"bad",L=(g?"good":p>0&&"average")||"bad";return(0,o.createComponentVNode)(2,c.Window,{width:340,height:350,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stored Energy",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:.01*s,ranges:{good:[.5,Infinity],average:[.15,.5],bad:[-Infinity,.15]},children:[(0,l.round)(p/6e4,1)," kWh / ",(0,l.round)(m/6e4)," kWh (",s,"%)"]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Input",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Mode",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:h?"sync-alt":"times",selected:h,onClick:function(){return d("tryinput")},children:h?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.Box,{color:y,children:(s>=100?"Fully Charged":f&&"Charging")||"Not Charging"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Input",children:(0,o.createComponentVNode)(2,a.Flex,{inline:!0,width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:0===C,onClick:function(){return d("input",{target:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:0===C,onClick:function(){return d("input",{adjust:-1e4})}})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mx:1,children:(0,o.createComponentVNode)(2,a.Slider,{value:C/1e3,fillValue:b/1e3,minValue:0,maxValue:N/1e3,step:5,stepPixelSize:4,format:function(e){return(0,i.formatPower)(1e3*e,1)},onDrag:function(e,t){return d("input",{target:1e3*t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:C===N,onClick:function(){return d("input",{adjust:1e4})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:C===N,onClick:function(){return d("input",{target:"max"})}})]})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Available",children:(0,i.formatPower)(b)})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Output",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Output Mode",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:V?"power-off":"times",selected:V,onClick:function(){return d("tryoutput")},children:V?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.Box,{color:L,children:g?"Sending":p>0?"Not Sending":"No Charge"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Output",children:(0,o.createComponentVNode)(2,a.Flex,{inline:!0,width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:0===v,onClick:function(){return d("output",{target:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:0===v,onClick:function(){return d("output",{adjust:-1e4})}})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mx:1,children:(0,o.createComponentVNode)(2,a.Slider,{value:v/1e3,minValue:0,maxValue:k/1e3,step:5,stepPixelSize:4,format:function(e){return(0,i.formatPower)(1e3*e,1)},onDrag:function(e,t){return d("output",{target:1e3*t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:v===k,onClick:function(){return d("output",{adjust:1e4})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:v===k,onClick:function(){return d("output",{target:"max"})}})]})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Outputting",children:(0,i.formatPower)(_)})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SolarControl=void 0;var o=n(0),r=n(1),a=n(2),i=n(3),c=n(5);t.SolarControl=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.generated,s=d.generated_ratio,m=d.sun_angle,p=d.array_angle,h=d.rotation_rate,f=d.max_rotation_rate,C=d.tracking_state,N=d.connected_panels,b=d.connected_tracker;return(0,o.createComponentVNode)(2,i.Window,{width:380,height:230,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Scan for new hardware",onClick:function(){return l("refresh")}}),children:(0,o.createComponentVNode)(2,a.Grid,{children:[(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Solar tracker",color:b?"good":"bad",children:b?"OK":"N/A"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Solar panels",color:N>0?"good":"bad",children:N})]})}),(0,o.createComponentVNode)(2,a.Grid.Column,{size:1.5,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power output",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.66,Infinity],average:[.33,.66],bad:[-Infinity,.33]},minValue:0,maxValue:1,value:s,children:u+" W"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Star orientation",children:[m,"\xb0"]})]})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tracking",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Off",selected:0===C,onClick:function(){return l("tracking",{mode:0})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"clock-o",content:"Timed",selected:1===C,onClick:function(){return l("tracking",{mode:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Auto",selected:2===C,disabled:!b,onClick:function(){return l("tracking",{mode:2})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Azimuth",children:[(0===C||1===C)&&(0,o.createComponentVNode)(2,a.NumberInput,{width:"52px",unit:"\xb0",step:1,stepPixelSize:2,minValue:-360,maxValue:720,value:p,format:function(e){var t=Math.sign(e)>0?" (CW)":" (CCW)";return Math.abs((0,c.round)(e))+t},onDrag:function(e,t){return l("azimuth",{value:t})}}),1===C&&(0,o.createComponentVNode)(2,a.NumberInput,{width:"80px",unit:"deg/h",step:1,minValue:-f-.01,maxValue:f+.01,value:h,format:function(e){var t=Math.sign(e)>0?" (CW)":" (CCW)";return Math.abs((0,c.round)(e))+t},onDrag:function(e,t){return l("azimuth_rate",{value:t})}}),2===C&&(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"label",mt:"3px",children:[p+"\xb0"," (auto)"]})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SpaceHeater=void 0;var o=n(0),r=n(28),a=n(1),i=n(2),c=n(3);t.SpaceHeater=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=d.temp,s=d.minTemp,m=d.maxTemp,p=d.cell,h=d.power;return(0,o.createComponentVNode)(2,c.Window,{width:300,height:250,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Target Temperature",children:[u," K (",u-r.T0C,"\xb0 C)"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current Charge",children:[h,"% ",!p&&"(No Cell Inserted)"]})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,i.LabeledControls,{children:[(0,o.createComponentVNode)(2,i.LabeledControls.Item,{label:"Thermostat",children:(0,o.createComponentVNode)(2,i.Knob,{animated:!0,value:u-r.T0C,minValue:s-r.T0C,maxValue:m-r.T0C,unit:"C",onChange:function(e,t){return l("temp",{newtemp:t+r.T0C})}})}),(0,o.createComponentVNode)(2,i.LabeledControls.Item,{label:"Cell",children:p?(0,o.createComponentVNode)(2,i.Button,{icon:"eject",content:"Eject Cell",onClick:function(){return l("cellremove")}}):(0,o.createComponentVNode)(2,i.Button,{icon:"car-battery",content:"Insert Cell",onClick:function(){return l("cellinstall")}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Stack=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);n(24);t.Stack=function(e,t){var n=(0,r.useBackend)(t),l=(n.act,n.data),d=l.amount,u=l.recipes;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Amount: "+d,children:(0,o.createComponentVNode)(2,c,{recipes:u})})})})};var c=function u(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data,e.recipes);return Object.keys(i).sort().map((function(e){var t=i[e];return t.ref===undefined?(0,o.createComponentVNode)(2,a.Collapsible,{ml:1,mb:-.7,color:"label",title:e,children:(0,o.createComponentVNode)(2,a.Box,{ml:1,children:(0,o.createComponentVNode)(2,u,{recipes:t})})}):(0,o.createComponentVNode)(2,d,{title:e,recipe:t})}))},l=function(e,t){for(var n=(0,r.useBackend)(t),i=n.act,c=(n.data,e.recipe),l=e.maxMultiplier,d=Math.min(l,Math.floor(c.max_res_amount/c.res_amount)),u=[5,10,25],s=[],m=function(){var e=h[p];d>=e&&s.push((0,o.createComponentVNode)(2,a.Button,{content:e*c.res_amount+"x",onClick:function(){return i("make",{ref:c.ref,multiplier:e})}}))},p=0,h=u;p1?"s":""),h+=")",s>1&&(h=s+"x "+h);var f=function(e,t){return e.req_amount>t?0:Math.floor(t/e.req_amount)}(d,c);return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Table,{children:(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,disabled:!f,icon:"wrench",content:h,onClick:function(){return i("make",{ref:d.ref,multiplier:1})}})}),m>1&&f>1&&(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,l,{recipe:d,maxMultiplier:f})})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SuitCycler=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.SuitCycler=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),s=a.active,m=a.locked,p=a.uv_active,h=(0,o.createComponentVNode)(2,c);return p?h=(0,o.createComponentVNode)(2,l):m?h=(0,o.createComponentVNode)(2,d):s&&(h=(0,o.createComponentVNode)(2,u)),(0,o.createComponentVNode)(2,i.Window,{width:320,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:h})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.safeties,d=c.occupied,u=c.suit,s=c.helmet,m=c.departments,p=c.species,h=c.uv_level,f=c.max_uv_level,C=c.can_repair,N=c.damage;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Storage",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lock",content:"Lock",onClick:function(){return i("lock")}}),children:[!(!d||!l)&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:["Biological entity detected in suit chamber. Please remove before continuing with operation.",(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",color:"red",content:"Eject Entity",onClick:function(){return i("eject_guy")}})]}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Helmet",children:(0,o.createComponentVNode)(2,a.Button,{icon:s?"square":"square-o",content:s||"Empty",disabled:!s,onClick:function(){return i("dispense",{item:"helmet"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Suit",children:(0,o.createComponentVNode)(2,a.Button,{icon:u?"square":"square-o",content:u||"Empty",disabled:!u,onClick:function(){return i("dispense",{item:"suit"})}})}),C&&N?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Suit Damage",children:[N,(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:"Repair",onClick:function(){return i("repair_suit")}})]}):null]})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Customization",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Paintjob",children:(0,o.createComponentVNode)(2,a.Dropdown,{noscroll:!0,width:"100%",options:m,selected:m[0],onSelected:function(e){return i("department",{department:e})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Species",children:(0,o.createComponentVNode)(2,a.Dropdown,{width:"100%",maxHeight:"160px",options:p,selected:p[0],onSelected:function(e){return i("species",{species:e})}})})]}),(0,o.createComponentVNode)(2,a.Button,{mt:1,fluid:!0,content:"Customize",onClick:function(){return i("apply_paintjob")}})]}),(0,o.createComponentVNode)(2,a.Section,{title:"UV Decontamination",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Radiation Level",children:(0,o.createComponentVNode)(2,a.NumberInput,{width:"50px",value:h,minValue:1,maxValue:f,stepPixelSize:30,onChange:function(e,t){return i("radlevel",{radlevel:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Decontaminate",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"recycle",disabled:d&&l,textAlign:"center",onClick:function(){return i("uv")}})})]})})],4)},l=function(e,t){return(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Contents are currently being decontaminated. Please wait."})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.model_text,d=c.userHasAccess;return(0,o.createComponentVNode)(2,a.Section,{title:"Locked",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Box,{color:"bad",bold:!0,children:["The ",l," suit cycler is currently locked. Please contact your system administrator."]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"unlock",content:"[Unlock]",disabled:!d,onClick:function(){return i("lock")}})})]})},u=function(e,t){return(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Contents are currently being painted. Please wait."})}},function(e,t,n){"use strict";t.__esModule=!0,t.SuitStorageUnit=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.SuitStorageUnit=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),s=a.panelopen,m=a.uv_active,p=a.broken,h=(0,o.createComponentVNode)(2,c);return s?h=(0,o.createComponentVNode)(2,l):m?h=(0,o.createComponentVNode)(2,d):p&&(h=(0,o.createComponentVNode)(2,u)),(0,o.createComponentVNode)(2,i.Window,{width:400,height:365,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:h})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.locked,d=c.open,u=c.safeties,s=c.occupied,m=c.suit,p=c.helmet,h=c.mask;return(0,o.createComponentVNode)(2,a.Section,{title:"Storage",minHeight:"260px",buttons:(0,o.createFragment)([!d&&(0,o.createComponentVNode)(2,a.Button,{icon:l?"unlock":"lock",content:l?"Unlock":"Lock",onClick:function(){return i("lock")}}),!l&&(0,o.createComponentVNode)(2,a.Button,{icon:d?"sign-out-alt":"sign-in-alt",content:d?"Close":"Open",onClick:function(){return i("door")}})],0),children:[!(!s||!u)&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:["Biological entity detected in suit chamber. Please remove before continuing with operation.",(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",color:"red",content:"Eject Entity",onClick:function(){return i("eject_guy")}})]}),l&&(0,o.createComponentVNode)(2,a.Box,{mt:6,bold:!0,textAlign:"center",fontSize:"40px",children:[(0,o.createComponentVNode)(2,a.Box,{children:"Unit Locked"}),(0,o.createComponentVNode)(2,a.Icon,{name:"lock"})]})||d&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Helmet",children:(0,o.createComponentVNode)(2,a.Button,{icon:p?"square":"square-o",content:p||"Empty",disabled:!p,onClick:function(){return i("dispense",{item:"helmet"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Suit",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"square":"square-o",content:m||"Empty",disabled:!m,onClick:function(){return i("dispense",{item:"suit"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mask",children:(0,o.createComponentVNode)(2,a.Button,{icon:h?"square":"square-o",content:h||"Empty",disabled:!h,onClick:function(){return i("dispense",{item:"mask"})}})})]})||(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"recycle",content:"Decontaminate",disabled:s&&u,textAlign:"center",onClick:function(){return i("uv")}})]})},l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=c.safeties,d=c.uv_super;return(0,o.createComponentVNode)(2,a.Section,{title:"Maintenance Panel",children:[(0,o.createComponentVNode)(2,a.Box,{color:"grey",children:"The panel is ridden with controls, button and meters, labeled in strange signs and symbols that you cannot understand. Probably the manufactoring world's language. Among other things, a few controls catch your eye."}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Box,{children:["A small dial with a biohazard symbol next to it. It's pointing towards a gauge that reads ",d?"15nm":"185nm",".",(0,o.createComponentVNode)(2,a.Flex,{mt:1,align:"center",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",textAlign:"center",children:(0,o.createComponentVNode)(2,a.Knob,{size:2,inline:!0,value:d,minValue:0,maxValue:1,step:1,stepPixelSize:40,color:d?"red":"green",format:function(e){return e?"15nm":"185nm"},onChange:function(e,t){return i("toggleUV")}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",textAlign:"center",children:(0,o.createComponentVNode)(2,a.Icon,{name:"biohazard",size:3,color:"orange"})})]})]}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Box,{children:["A thick old-style button, with 2 grimy LED lights next to it. The ",l?(0,o.createVNode)(1,"font",null,"GREEN",16,{color:"green"}):(0,o.createVNode)(1,"font",null,"RED",16,{color:"red"})," LED is on.",(0,o.createComponentVNode)(2,a.Flex,{mt:1,align:"center",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{fontSize:"2rem",color:"grey",inline:!0,icon:"caret-square-right",style:{border:"4px solid #777","border-style":"outset"},onClick:function(){return i("togglesafeties")}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"circle",color:l?"black":"red",mr:2}),(0,o.createComponentVNode)(2,a.Icon,{name:"circle",color:l?"green":"black"})]})]})]})]})},d=function(e,t){return(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Contents are currently being decontaminated. Please wait."})},u=function(e,t){return(0,o.createComponentVNode)(2,a.NoticeBox,{danger:!0,children:"Unit chamber is too contaminated to continue usage. Please call for a qualified individual to perform maintenance."})}},function(e,t,n){"use strict";t.__esModule=!0,t.SupplyConsole=void 0;var o=n(0),r=n(9),a=(n(5),n(20)),i=n(1),c=n(2),l=n(45),d=n(3),u=n(44),s=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data.supply_points,l=e.args,d=l.name,u=l.cost,s=l.manifest,m=l.ref,p=l.random;return(0,o.createComponentVNode)(2,c.Section,{width:"400px",level:2,m:"-1rem",pb:"1rem",title:d,buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"shopping-cart",content:"Buy - "+u+" points",disabled:u>a,onClick:function(){return r("request_crate",{ref:m})}}),children:(0,o.createComponentVNode)(2,c.Section,{title:"Contains"+(p?" any "+p+" of:":""),scrollable:!0,height:"200px",children:s.map((function(e){return(0,o.createComponentVNode)(2,c.Box,{children:e},e)}))})})};t.SupplyConsole=function(e,t){var n=(0,i.useBackend)(t);n.act,n.data;return(0,l.modalRegisterBodyOverride)("view_crate",s),(0,o.createComponentVNode)(2,d.Window,{width:700,height:620,children:(0,o.createComponentVNode)(2,d.Window.Content,{children:[(0,o.createComponentVNode)(2,l.ComplexModal,{maxWidth:"100%"}),(0,o.createComponentVNode)(2,c.Section,{title:"Supply Records",children:[(0,o.createComponentVNode)(2,m),(0,o.createComponentVNode)(2,p)]})]})})};var m=function(e,t){var n=(0,i.useBackend)(t),r=n.act,l=n.data,d=l.supply_points,u=l.shuttle,s=null,m=!1;return l.shuttle_auth&&(1===u.launch&&0===u.mode?s=(0,o.createComponentVNode)(2,c.Button,{icon:"rocket",content:"Send Away",onClick:function(){return r("send_shuttle",{mode:"send_away"})}}):2!==u.launch||3!==u.mode&&1!==u.mode?1===u.launch&&5===u.mode&&(s=(0,o.createComponentVNode)(2,c.Button,{icon:"rocket",content:"Send Shuttle",onClick:function(){return r("send_shuttle",{mode:"send_to_station"})}})):s=(0,o.createComponentVNode)(2,c.Button,{icon:"ban",content:"Cancel Launch",onClick:function(){return r("send_shuttle",{mode:"cancel_shuttle"})}}),u.force&&(m=!0)),(0,o.createComponentVNode)(2,c.Section,{children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Supply Points",children:(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:d})})}),(0,o.createComponentVNode)(2,c.Section,{level:2,title:"Supply Shuttle",mt:2,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Location",buttons:(0,o.createFragment)([s,m?(0,o.createComponentVNode)(2,c.Button,{icon:"exclamation-triangle",content:"Force Launch",onClick:function(){return r("send_shuttle",{mode:"force_shuttle"})}}):null],0),children:u.location}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Engine",children:u.engine}),4===u.mode?(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"ETA",children:u.time>1?(0,a.formatTime)(u.time):"LATE"}):null]})})]})},p=function(e,t){var n=(0,i.useBackend)(t),r=(n.act,n.data.order_auth,(0,i.useLocalState)(t,"tabIndex",0)),a=r[0],l=r[1];return(0,o.createComponentVNode)(2,c.Section,{title:"Menu",children:[(0,o.createComponentVNode)(2,c.Tabs,{children:[(0,o.createComponentVNode)(2,c.Tabs.Tab,{icon:"box",selected:0===a,onClick:function(){return l(0)},children:"Request"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{icon:"check-circle-o",selected:1===a,onClick:function(){return l(1)},children:"Accepted"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{icon:"circle-o",selected:2===a,onClick:function(){return l(2)},children:"Requests"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{icon:"book",selected:3===a,onClick:function(){return l(3)},children:"Order history"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{icon:"book",selected:4===a,onClick:function(){return l(4)},children:"Export history"})]}),0===a?(0,o.createComponentVNode)(2,h):null,1===a?(0,o.createComponentVNode)(2,f,{mode:"Approved"}):null,2===a?(0,o.createComponentVNode)(2,f,{mode:"Requested"}):null,3===a?(0,o.createComponentVNode)(2,f,{mode:"All"}):null,4===a?(0,o.createComponentVNode)(2,C):null]})},h=function(e,t){var n=(0,i.useBackend)(t),a=n.act,l=n.data,d=l.categories,s=l.supply_packs,m=l.contraband,p=l.supply_points,h=(0,i.useLocalState)(t,"activeCategory",null),f=h[0],C=h[1],N=(0,u.flow)([(0,r.filter)((function(e){return e.group===f})),(0,r.filter)((function(e){return!e.contraband||m})),(0,r.sortBy)((function(e){return e.name})),(0,r.sortBy)((function(e){return e.cost>p}))])(s);return(0,o.createComponentVNode)(2,c.Section,{level:2,children:(0,o.createComponentVNode)(2,c.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"25%",children:(0,o.createComponentVNode)(2,c.Section,{title:"Categories",scrollable:!0,fill:!0,height:"290px",children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{fluid:!0,content:e,selected:e===f,onClick:function(){return C(e)}},e)}))})}),(0,o.createComponentVNode)(2,c.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,c.Section,{title:"Contents",scrollable:!0,fill:!0,height:"290px",children:N.map((function(e){return(0,o.createComponentVNode)(2,c.Box,{children:(0,o.createComponentVNode)(2,c.Flex,{align:"center",justify:"flex-start",spacing:1,children:[(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"70%",children:(0,o.createComponentVNode)(2,c.Button,{fluid:!0,icon:"shopping-cart",ellipsis:!0,content:e.name,color:e.cost>p?"red":null,onClick:function(){return a("request_crate",{ref:e.ref})}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.Button,{content:"#",color:e.cost>p?"red":null,onClick:function(){return a("request_crate_multi",{ref:e.ref})}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.Button,{content:"C",color:e.cost>p?"red":null,onClick:function(){return a("view_crate",{crate:e.ref})}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{grow:1,children:[e.cost," points"]})]})},e.name)}))})})]})})},f=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=e.mode,d=a.orders,u=a.order_auth,s=a.supply_points,m=d.filter((function(e){return e.status===l||"All"===l}));return m.length?(0,o.createComponentVNode)(2,c.Section,{level:2,children:["Requested"===l&&u?(0,o.createComponentVNode)(2,c.Button,{mt:-1,mb:1,fluid:!0,color:"red",icon:"trash",content:"Clear all requests",onClick:function(){return r("clear_all_requests")}}):null,m.map((function(e,t){return(0,o.createComponentVNode)(2,c.Section,{title:"Order "+(t+1),buttons:"All"===l&&u?(0,o.createComponentVNode)(2,c.Button,{color:"red",icon:"trash",content:"Delete Record",onClick:function(){return r("delete_order",{ref:e.ref})}}):null,children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[e.entries.map((function(t){return t.entry?(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:t.field,buttons:u?(0,o.createComponentVNode)(2,c.Button,{icon:"pen",content:"Edit",onClick:function(){r("edit_order_value",{ref:e.ref,edit:t.field,"default":t.entry})}}):null,children:t.entry}):null})),"All"===l?(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",children:e.status}):null]}),u&&"Requested"===l?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{icon:"check",content:"Approve",disabled:e.cost>s,onClick:function(){return r("approve_order",{ref:e.ref})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"times",content:"Deny",onClick:function(){return r("deny_order",{ref:e.ref})}})],4):null]},t)}))]}):(0,o.createComponentVNode)(2,c.Section,{level:2,children:"No orders found."})},C=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,l=a.receipts,d=a.order_auth;return l.length?(0,o.createComponentVNode)(2,c.Section,{level:2,children:l.map((function(e,t){return(0,o.createComponentVNode)(2,c.Section,{children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[e.title.map((function(t){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:t.field,buttons:d?(0,o.createComponentVNode)(2,c.Button,{icon:"pen",content:"Edit",onClick:function(){return r("export_edit",{ref:e.ref,edit:t.field,"default":t.entry})}}):null,children:t.entry},t.field)})),e.error?(0,o.createComponentVNode)(2,c.LabeledList.Item,{labelColor:"red",label:"Error",children:e.error}):e.contents.map((function(t,n){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:t.object,buttons:d?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{icon:"pen",content:"Edit",onClick:function(){return r("export_edit_field",{ref:e.ref,index:n+1,edit:"meow","default":t.object})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"trash",color:"red",content:"Delete",onClick:function(){return r("export_delete_field",{ref:e.ref,index:n+1})}})],4):null,children:[t.quantity,"x -> ",t.value," points"]},n)}))]}),d?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{mt:1,icon:"plus",content:"Add Item To Record",onClick:function(){return r("export_add_field",{ref:e.ref})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"trash",content:"Delete Record",onClick:function(){return r("export_delete",{ref:e.ref})}})],4):null]},t)}))}):(0,o.createComponentVNode)(2,c.Section,{level:2,children:"No receipts found."})}},function(e,t,n){"use strict";t.__esModule=!0,t.TEGenerator=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=n(20);t.TEGenerator=function(e,t){var n=(0,a.useBackend)(t).data,r=n.totalOutput,u=n.maxTotalOutput,s=n.thermalOutput,m=n.primary,p=n.secondary;return(0,o.createComponentVNode)(2,c.Window,{width:550,height:310,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Total Output",children:(0,o.createComponentVNode)(2,i.ProgressBar,{value:r,maxValue:u,children:(0,l.formatPower)(r)})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Thermal Output",children:(0,l.formatPower)(s)})]})}),m&&p?(0,o.createComponentVNode)(2,i.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,i.Flex.Item,{shrink:1,grow:1,children:(0,o.createComponentVNode)(2,d,{name:"Primary Circulator",values:m})}),(0,o.createComponentVNode)(2,i.Flex.Item,{shrink:1,grow:1,children:(0,o.createComponentVNode)(2,d,{name:"Secondary Circulator",values:p})})]}):(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Warning! Both circulators must be connected in order to operate this machine."})]})})};var d=function(e,t){var n=e.name,a=e.values,c=a.dir,d=a.output,u=a.flowCapacity,s=a.inletPressure,m=a.inletTemperature,p=a.outletPressure,h=a.outletTemperature;return(0,o.createComponentVNode)(2,i.Section,{title:n+" ("+c+")",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Turbine Output",children:(0,l.formatPower)(d)}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Flow Capacity",children:[(0,r.round)(u,2),"%"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Inlet Pressure",children:(0,l.formatSiUnit)(1e3*s,0,"Pa")}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Inlet Temperature",children:[(0,r.round)(m,2)," K"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Outlet Pressure",children:(0,l.formatSiUnit)(1e3*p,0,"Pa")}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Outlet Temperature",children:[(0,r.round)(h,2)," K"]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Tank=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Tank=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.connected,u=l.showToggle,s=void 0===u||u,m=l.maskConnected,p=l.tankPressure,h=l.releasePressure,f=l.defaultReleasePressure,C=l.minReleasePressure,N=l.maxReleasePressure;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:320,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:!!s&&(0,o.createComponentVNode)(2,a.Button,{icon:d?"air-freshener":"lock-open",selected:d,disabled:!m,content:"Mask Release Valve",onClick:function(){return c("toggle")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mask Connected",children:m?"Yes":"No"})})}),(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:p/1013,ranges:{good:[.35,Infinity],average:[.15,.35],bad:[-Infinity,.15]},children:l.tankPressure+" kPa"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure Regulator",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:h===C,onClick:function(){return c("pressure",{pressure:"min"})}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:parseFloat(h),width:"65px",unit:"kPa",minValue:C,maxValue:N,onChange:function(e,t){return c("pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:h===N,onClick:function(){return c("pressure",{pressure:"max"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"undo",content:"",disabled:h===f,onClick:function(){return c("pressure",{pressure:"reset"})}})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TankDispenser=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.TankDispenser=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data;return(0,o.createComponentVNode)(2,i.Window,{width:275,height:103,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Phoron",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:l.plasma?"square":"square-o",content:"Dispense",disabled:!l.plasma,onClick:function(){return c("plasma")}}),children:l.plasma}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Oxygen",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:l.oxygen?"square":"square-o",content:"Dispense",disabled:!l.oxygen,onClick:function(){return c("oxygen")}}),children:l.oxygen})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TelecommsLogBrowser=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3);t.TelecommsLogBrowser=function(e,t){var n=(0,a.useBackend)(t),r=n.act,u=n.data,s=u.universal_translate,m=u.network,p=u.temp,h=u.servers,f=u.selectedServer;return(0,o.createComponentVNode)(2,c.Window,{width:575,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[p&&p.length?(0,o.createComponentVNode)(2,i.NoticeBox,{warning:!0,children:[(0,o.createComponentVNode)(2,i.Box,{display:"inline-box",verticalAlign:"middle",children:p}),(0,o.createComponentVNode)(2,i.Button,{icon:"times-circle",float:"right",onClick:function(){return r("cleartemp")}}),(0,o.createComponentVNode)(2,i.Box,{clear:"both"})]}):null,(0,o.createComponentVNode)(2,i.Section,{title:"Network Control",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Current Network",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Button,{icon:"search",content:"Refresh",onClick:function(){return r("scan")}}),(0,o.createComponentVNode)(2,i.Button,{color:"bad",icon:"exclamation-triangle",content:"Flush Buffer",disabled:0===h.length,onClick:function(){return r("release")}})],4),children:(0,o.createComponentVNode)(2,i.Button,{content:m,icon:"pen",onClick:function(){return r("network")}})})})}),f?(0,o.createComponentVNode)(2,d,{network:m,server:f,universal_translate:s}):(0,o.createComponentVNode)(2,l,{network:m,servers:h})]})})};var l=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=(n.data,e.network,e.servers);return c&&c.length?(0,o.createComponentVNode)(2,i.Section,{title:"Detected Telecommunication Servers",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:c.map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e.name+" ("+e.id+")",children:(0,o.createComponentVNode)(2,i.Button,{content:"View",icon:"eye",onClick:function(){return r("view",{id:e.id})}})},e.id)}))})}):(0,o.createComponentVNode)(2,i.Section,{title:"Detected Telecommunications Servers",children:[(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"No servers detected."}),(0,o.createComponentVNode)(2,i.Button,{fluid:!0,content:"Scan",icon:"search",onClick:function(){return r("scan")}})]})},d=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=(n.data,e.network,e.server),d=e.universal_translate;return(0,o.createComponentVNode)(2,i.Section,{title:"Server ("+l.id+")",buttons:(0,o.createComponentVNode)(2,i.Button,{content:"Return",icon:"undo",onClick:function(){return c("mainmenu")}}),children:[(0,o.createComponentVNode)(2,i.LabeledList,{children:(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Total Recorded Traffic",children:l.totalTraffic>=1024?(0,r.round)(l.totalTraffic/1024)+" Terrabytes":l.totalTraffic+" Gigabytes"})}),(0,o.createComponentVNode)(2,i.Section,{title:"Stored Logs",mt:"4px",children:(0,o.createComponentVNode)(2,i.Flex,{wrap:"wrap",children:l.logs&&l.logs.length?l.logs.map((function(e){return(0,o.createComponentVNode)(2,i.Flex.Item,{m:"2px",basis:"49%",grow:e.id%2,children:(0,o.createComponentVNode)(2,i.Section,{title:d||e.parameters.uspeech||e.parameters.intelligible||"Execution Error"===e.input_type?e.input_type:"Audio File",buttons:(0,o.createComponentVNode)(2,i.Button.Confirm,{confirmContent:"Delete Log?",color:"bad",icon:"trash",confirmIcon:"trash",onClick:function(){return c("delete",{id:e.id})}}),children:"Execution Error"===e.input_type?(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Data type",children:"Error"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Output",children:e.parameters.message}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Delete",children:(0,o.createComponentVNode)(2,i.Button,{icon:"trash",onClick:function(){return c("delete",{id:e.id})}})})]}):d||e.parameters.uspeech||e.parameters.intelligible?(0,o.createComponentVNode)(2,u,{log:e}):(0,o.createComponentVNode)(2,u,{error:!0})})},e.id)})):"No Logs Detected."})})]})},u=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data,e.log),c=e.error,l=r&&r.parameters||{none:"none"},d=l.timecode,u=l.name,s=l.race,m=l.job,p=l.message;return c?(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Time Recieved",children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Source",children:"Unidentifiable"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Class",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Contents",children:"Unintelligible"})]}):(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Time Recieved",children:d}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Source",children:[u," (Job: ",m,")"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Class",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Contents",className:"LabeledList__breakContents",children:p})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.TelecommsMachineBrowser=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.TelecommsMachineBrowser=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.network,s=d.temp,m=d.machinelist,p=d.selectedMachine;return(0,o.createComponentVNode)(2,i.Window,{width:575,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[s&&s.length?(0,o.createComponentVNode)(2,a.NoticeBox,{warning:!0,children:[(0,o.createComponentVNode)(2,a.Box,{display:"inline-box",verticalAlign:"middle",children:s}),(0,o.createComponentVNode)(2,a.Button,{icon:"times-circle",float:"right",onClick:function(){return l("cleartemp")}}),(0,o.createComponentVNode)(2,a.Box,{clear:"both"})]}):null,(0,o.createComponentVNode)(2,a.Section,{title:"Network Control",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Network",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"search",content:"Probe Network",onClick:function(){return l("scan")}}),(0,o.createComponentVNode)(2,a.Button,{color:"bad",icon:"exclamation-triangle",content:"Flush Buffer",disabled:0===m.length,onClick:function(){return l("release")}})],4),children:(0,o.createComponentVNode)(2,a.Button,{content:u,icon:"pen",onClick:function(){return l("network")}})})})}),m&&m.length?(0,o.createComponentVNode)(2,c,{title:p?p.name+" ("+p.id+")":"Detected Network Entities",list:p?p.links:m,showBack:p}):(0,o.createComponentVNode)(2,a.Section,{title:"No Devices Found",children:(0,o.createComponentVNode)(2,a.Button,{icon:"search",content:"Probe Network",onClick:function(){return l("scan")}})})]})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=(n.data,e.list),l=e.title,d=e.showBack;return(0,o.createComponentVNode)(2,a.Section,{title:l,buttons:d&&(0,o.createComponentVNode)(2,a.Button,{icon:"undo",content:"Back to Main Menu",onClick:function(){return i("mainmenu")}}),children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",children:(0,o.createVNode)(1,"u",null,"Linked entities",16)}),(0,o.createComponentVNode)(2,a.LabeledList,{children:c.length?c.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name+" ("+e.id+")",children:(0,o.createComponentVNode)(2,a.Button,{content:"View",icon:"eye",onClick:function(){return i("view",{id:e.id})}})},e.id)})):(0,o.createComponentVNode)(2,a.LabeledList.Item,{color:"bad",children:"No links detected."})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.TelecommsMultitoolMenu=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(62),c=n(3);t.TelecommsMultitoolMenu=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data),u=(a.temp,a.on,a.id,a.network,a.autolinkers,a.shadowlink,a.options);a.linked,a.filter,a.multitool,a.multitool_buffer;return(0,o.createComponentVNode)(2,c.Window,{width:520,height:540,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.TemporaryNotice),(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,d,{options:u})]})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=n.data,l=(c.temp,c.on),d=c.id,u=c.network,s=c.autolinkers,m=c.shadowlink,p=(c.options,c.linked),h=c.filter,f=c.multitool,C=c.multitool_buffer;return(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:l,content:l?"On":"Off",onClick:function(){return i("toggle")}}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Identification String",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:d,onClick:function(){return i("id")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:u,onClick:function(){return i("network")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Prefabrication",children:s?"TRUE":"FALSE"}),m?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shadow Link",children:"Active."}):null,f?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Multitool Buffer",children:[C?(0,o.createFragment)([C.name,(0,o.createTextVNode)(" ("),C.id,(0,o.createTextVNode)(")")],0):null,(0,o.createComponentVNode)(2,a.Button,{color:C?"green":null,content:C?"Link ("+C.id+")":"Add Machine",icon:C?"link":"plus",onClick:C?function(){return i("link")}:function(){return i("buffer")}}),C?(0,o.createComponentVNode)(2,a.Button,{color:"red",content:"Flush",icon:"trash",onClick:function(){return i("flush")}}):null]}):null]}),(0,o.createComponentVNode)(2,a.Section,{title:"Linked network Entities",mt:1,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:p.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.ref+" "+e.name+" ("+e.id+")",buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"red",icon:"trash",onClick:function(){return i("unlink",{unlink:e.index})}})},e.ref)}))})}),(0,o.createComponentVNode)(2,a.Section,{title:"Filtering Frequencies",mt:1,children:[h.map((function(e){return(0,o.createComponentVNode)(2,a.Button.Confirm,{content:e.name+" GHz",confirmContent:"Delete?",confirmColor:"red",confirmIcon:"trash",onClick:function(){return i("delete",{"delete":e.freq})}},e.index)})),h&&0!==h.length?null:(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"No filters."})]})]})},d=function(e,t){var n=(0,r.useBackend)(t),i=n.act,c=(n.data,e.options),l=c.use_listening_level,d=c.use_broadcasting,u=c.use_receiving,s=c.listening_level,m=c.broadcasting,p=c.receiving,h=c.use_change_freq,f=c.change_freq,C=c.use_broadcast_range,N=c.use_receive_range,b=c.range,V=c.minRange,g=c.maxRange;return l||d||u||h||C||N?(0,o.createComponentVNode)(2,a.Section,{title:"Options",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[l?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Signal Locked to Station",children:(0,o.createComponentVNode)(2,a.Button,{icon:s?"lock-closed":"lock-open",content:s?"Yes":"No",onClick:function(){return i("change_listening")}})}):null,d?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Broadcasting",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:m,content:m?"Yes":"No",onClick:function(){return i("broadcast")}})}):null,u?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Receving",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",selected:p,content:p?"Yes":"No",onClick:function(){return i("receive")}})}):null,h?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Change Signal Frequency",children:(0,o.createComponentVNode)(2,a.Button,{icon:"wave-square",selected:!!f,content:f?"Yes ("+f+")":"No",onClick:function(){return i("change_freq")}})}):null,C||N?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:(C?"Broadcast":"Receive")+" Range",children:(0,o.createComponentVNode)(2,a.NumberInput,{value:b,minValue:V,maxValue:g,unit:"gigameters",stepPixelSize:4,format:function(e){return e+1},onDrag:function(e,t){return i("range",{range:t})}})}):null]})}):(0,o.createComponentVNode)(2,a.Section,{title:"No Options Found"})}},function(e,t,n){"use strict";t.__esModule=!0,t.Teleporter=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.Teleporter=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.locked_name,u=l.station_connected,s=l.hub_connected,m=l.calibrated,p=l.teleporter_on;return(0,o.createComponentVNode)(2,i.Window,{width:300,height:200,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"bullseye",onClick:function(){return c("select_target")},content:d})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Calibrated",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:m,color:m?"good":"bad",onClick:function(){return c("test_fire")},content:m?"Accurate":"Test Fire"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Teleporter",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:p,color:p?"good":"bad",onClick:function(){return c("toggle_on")},content:p?"Online":"OFFLINE"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Station",children:u?"Connected":"Not Connected"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hub",children:s?"Connected":"Not Connected"})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TelesciConsoleContent=t.TelesciConsole=void 0;var o=n(0),r=n(9),a=n(1),i=n(2),c=n(3);t.TelesciConsole=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.noTelepad);return(0,o.createComponentVNode)(2,c.Window,{width:400,height:450,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:r&&(0,o.createComponentVNode)(2,l)||(0,o.createComponentVNode)(2,d)})})};var l=function(e,t){return(0,o.createComponentVNode)(2,i.Section,{title:"Error",color:"bad",children:["No telepad located.",(0,o.createVNode)(1,"br"),"Please add telepad data."]})},d=function(e,t){var n=(0,a.useBackend)(t),c=n.act,l=n.data,d=l.insertedGps,u=l.rotation,s=l.currentZ,m=l.cooldown,p=l.crystalCount,h=l.maxCrystals,f=(l.maxPossibleDistance,l.maxAllowedDistance),C=l.distance,N=l.tempMsg,b=l.sectorOptions,V=l.lastTeleData;return(0,o.createComponentVNode)(2,i.Section,{title:"Telepad Controls",buttons:(0,o.createComponentVNode)(2,i.Button,{icon:"eject",disabled:!d,onClick:function(){return c("ejectGPS")},content:"Eject GPS"}),children:[(0,o.createComponentVNode)(2,i.NoticeBox,{info:!0,children:m&&(0,o.createComponentVNode)(2,i.Box,{children:["Telepad is recharging. Please wait ",(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:m})," seconds."]})||(0,o.createComponentVNode)(2,i.Box,{children:N})}),(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Bearing",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,value:u,format:function(e){return e+"\xb0"},step:1,minValue:-900,maxValue:900,onDrag:function(e,t){return c("setrotation",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Distance",children:(0,o.createComponentVNode)(2,i.NumberInput,{fluid:!0,value:C,format:function(e){return e+"/"+f+" m"},minValue:0,maxValue:f,step:1,stepPixelSize:4,onDrag:function(e,t){return c("setdistance",{val:t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Sector",children:(0,r.sortBy)((function(e){return Number(e)}))(b).map((function(e){return(0,o.createComponentVNode)(2,i.Button,{icon:"check-circle",content:e,selected:s===e,onClick:function(){return c("setz",{setz:e})}},e)}))}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Controls",children:[(0,o.createComponentVNode)(2,i.Button,{icon:"share",iconRotation:-90,onClick:function(){return c("send")},content:"Send"}),(0,o.createComponentVNode)(2,i.Button,{icon:"share",iconRotation:90,onClick:function(){return c("receive")},content:"Receive"}),(0,o.createComponentVNode)(2,i.Button,{icon:"sync",iconRotation:90,onClick:function(){return c("recal")},content:"Recalibrate"})]})]}),V&&(0,o.createComponentVNode)(2,i.Section,{mt:1,children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Telepad Location",children:[V.src_x,", ",V.src_y]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Distance",children:[V.distance,"m"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Transit Time",children:[V.time," secs"]})]})})||(0,o.createComponentVNode)(2,i.Section,{mt:1,children:"No teleport data found."}),(0,o.createComponentVNode)(2,i.Section,{children:["Crystals: ",p," / ",h]})]})};t.TelesciConsoleContent=d},function(e,t,n){"use strict";t.__esModule=!0,t.TimeClock=void 0;var o=n(0),r=n(5),a=n(1),i=n(2),c=n(3),l=n(191);t.TimeClock=function(e,t){var n=(0,a.useBackend)(t),d=n.act,u=n.data,s=u.department_hours,m=u.user_name,p=u.card,h=u.assignment,f=u.job_datum,C=u.allow_change_job,N=u.job_choices;return(0,o.createComponentVNode)(2,c.Window,{width:500,height:520,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Section,{title:"OOC",children:[(0,o.createComponentVNode)(2,i.NoticeBox,{children:"OOC Note: PTO acquired is account-wide and shared across all characters. Info listed below is not IC information."}),(0,o.createComponentVNode)(2,i.Section,{level:2,title:"Time Off Balance for "+m,children:(0,o.createComponentVNode)(2,i.LabeledList,{children:Object.keys(s).map((function(e){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e,color:s[e]>6?"good":s[e]>1?"average":"bad",children:[(0,r.toFixed)(s[e],1)," ",1===s[e]?"hour":"hours"]},e)}))})})]}),(0,o.createComponentVNode)(2,i.Section,{title:"Employee Info",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Employee ID",children:(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"user",onClick:function(){return d("id")},children:p||"Insert ID"})}),!!f&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Rank",children:(0,o.createComponentVNode)(2,i.Box,{backgroundColor:f.selection_color,p:.8,children:(0,o.createComponentVNode)(2,i.Flex,{justify:"space-between",align:"center",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Box,{ml:1,children:(0,o.createComponentVNode)(2,l.RankIcon,{color:"white",rank:f.title})})}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Box,{fontSize:1.5,inline:!0,mr:1,children:f.title})})]})})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Departments",children:f.departments}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pay Scale",children:f.economic_modifier}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"PTO Elegibility",children:f.timeoff_factor>0&&(0,o.createComponentVNode)(2,i.Box,{children:["Earns PTO - ",f.pto_department]})||f.timeoff_factor<0&&(0,o.createComponentVNode)(2,i.Box,{children:["Requires PTO - ",f.pto_department]})||(0,o.createComponentVNode)(2,i.Box,{children:"Neutral"})})],4)]})}),!(!C||!f||0===f.timeoff_factor||"Dismissed"===h)&&(0,o.createComponentVNode)(2,i.Section,{title:"Employment Actions",children:f.timeoff_factor>0&&(s[f.pto_department]>0&&(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"exclamation-triangle",onClick:function(){return d("switch-to-offduty")},children:"Go Off-Duty"})||(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Warning: You do not have enough accrued time off to go off-duty."}))||Object.keys(N).length&&Object.keys(N).map((function(e){return N[e].map((function(t){return(0,o.createComponentVNode)(2,i.Button,{icon:"suitcase",onClick:function(){return d("switch-to-onduty-rank",{"switch-to-onduty-rank":e,"switch-to-onduty-assignment":t})},children:t},t)}))}))||(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"No Open Positions - See Head Of Personnel"})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TransferValve=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.TransferValve=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.tank_one,u=l.tank_two,s=l.attached_device,m=l.valve;return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Valve Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"unlock":"lock",content:m?"Open":"Closed",disabled:!d||!u,onClick:function(){return c("toggle")}})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Assembly",buttons:(0,o.createComponentVNode)(2,a.Button,{textAlign:"center",width:"150px",icon:"cog",content:"Configure Assembly",disabled:!s,onClick:function(){return c("device")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:s?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:s,disabled:!s,onClick:function(){return c("remove_device")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Assembly"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Attachment One",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:d,disabled:!d,onClick:function(){return c("tankone")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Tank"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Attachment Two",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:u,disabled:!u,onClick:function(){return c("tanktwo")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Tank"})})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TurbineControl=void 0;var o=n(0),r=(n(5),n(20)),a=n(1),i=n(2),c=n(3);t.TurbineControl=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=(d.connected,d.compressor_broke),s=d.turbine_broke,m=d.broken,p=d.door_status,h=d.online,f=d.power,C=d.rpm,N=d.temp;return(0,o.createComponentVNode)(2,c.Window,{width:520,height:440,resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i.Section,{title:"Turbine Controller",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",children:m&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:["Setup is broken",(0,o.createComponentVNode)(2,i.Button,{icon:"sync",onClick:function(){return l("reconnect")},content:"Reconnect"})]})||(0,o.createComponentVNode)(2,i.Box,{color:h?"good":"bad",children:!h||u||s?"Offline":"Online"})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Compressor",children:u&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Compressor is inoperable."})||s&&(0,o.createComponentVNode)(2,i.Box,{color:"bad",children:"Turbine is inoperable."})||(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button.Checkbox,{checked:h,content:"Compressor Power",onClick:function(){return l(h?"power-off":"power-on")}})})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Vent Doors",children:(0,o.createComponentVNode)(2,i.Button.Checkbox,{checked:p,onClick:function(){return l("doors")},content:p?"Closed":"Open"})})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Turbine Speed",children:[m?"--":(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:C})," RPM"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Internal Temperature",children:[m?"--":(0,o.createComponentVNode)(2,i.AnimatedNumber,{value:N})," K"]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Generated Power",children:m?"--":(0,o.createComponentVNode)(2,i.AnimatedNumber,{format:function(e){return(0,r.formatPower)(e)},value:Number(f)})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Turbolift=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.Turbolift=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.floors,u=l.doors_open,s=l.fire_mode;return(0,o.createComponentVNode)(2,i.Window,{width:480,height:260+25*s,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Floor Selection",className:s?"Section--elevator--fire":null,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:u?"door-open":"door-closed",content:u?s?"Close Doors (SAFETY OFF)":"Doors Open":"Doors Closed",selected:u&&!s,color:s?"red":null,onClick:function(){return c("toggle_doors")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",color:"bad",content:"Emergency Stop",onClick:function(){return c("emergency_stop")}})],4),children:[!s||(0,o.createComponentVNode)(2,a.Section,{className:"Section--elevator--fire",textAlign:"center",title:"FIREFIGHTER MODE ENGAGED"}),(0,o.createComponentVNode)(2,a.Flex,{wrap:"wrap",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"100%",children:(0,o.createComponentVNode)(2,a.Flex,{align:"center",justify:"space-around",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"22%",textAlign:"right",mr:"3px",children:e.label||"Floor #"+e.id}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"8%",textAlign:"left",children:(0,o.createComponentVNode)(2,a.Button,{icon:"circle",color:e.current?"red":e.target?"green":e.queued?"yellow":null,onClick:function(){return c("move_to_floor",{ref:e.ref})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"50%",grow:1,children:e.name})]})},e.id)}))})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GenericUplink=t.Uplink=void 0;var o=n(0),r=n(7),a=n(1),i=n(2),c=n(20),l=n(3);t.Uplink=function(e,t){var n=(0,a.useBackend)(t).data,r=(0,a.useLocalState)(t,"screen",0),c=r[0],m=r[1],p=n.telecrystals;return(0,o.createComponentVNode)(2,l.Window,{width:620,height:580,theme:"syndicate",resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d,{screen:c,setScreen:m}),0===c&&(0,o.createComponentVNode)(2,s,{currencyAmount:p,currencySymbol:"TC"})||1===c&&(0,o.createComponentVNode)(2,u)||(0,o.createComponentVNode)(2,i.Section,{color:"bad",children:"Error"})]})})};var d=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),c=e.screen,l=e.setScreen,d=r.discount_name,u=r.discount_amount,s=r.offer_expiry;return(0,o.createComponentVNode)(2,i.Section,{children:[(0,o.createComponentVNode)(2,i.Tabs,{style:{"border-bottom":"none","margin-bottom":"0"},children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:0===c,onClick:function(){return l(0)},children:"Request Items"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===c,onClick:function(){return l(1)},children:"Exploitable Information"})]}),(0,o.createComponentVNode)(2,i.Section,{title:"Item Discount",level:2,children:u<100&&(0,o.createComponentVNode)(2,i.Box,{children:[d," - ",u,"% off. Offer expires at: ",s]})||(0,o.createComponentVNode)(2,i.Box,{children:"No items currently discounted."})})]})},u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.exploit,d=c.locked_records;return(0,o.createComponentVNode)(2,i.Section,{title:"Exploitable Information",buttons:l&&(0,o.createComponentVNode)(2,i.Button,{icon:"undo",content:"Back",onClick:function(){return r("view_exploits",{id:0})}}),children:l&&(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:l.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Sex",children:l.sex}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Species",children:l.species}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Age",children:l.age}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Rank",children:l.rank}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Home System",children:l.home_system}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Citizenship",children:l.citizenship}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Faction",children:l.faction}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Religion",children:l.religion}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Fingerprint",children:l.fingerprint}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Other Affiliations",children:l.antagfaction}),(0,o.createComponentVNode)(2,i.LabeledList.Divider),(0,o.createComponentVNode)(2,i.LabeledList.Item,{children:"Acquired Information"}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Notes",children:l.nanoui_exploit_record})]})})||d.map((function(e){return(0,o.createComponentVNode)(2,i.Button,{icon:"eye",fluid:!0,content:e.name,onClick:function(){return r("view_exploits",{id:e.id})}},e.id)}))})},s=function(e,t){var n,l,d=e.currencyAmount,u=void 0===d?0:d,s=e.currencySymbol,p=void 0===s?"\u20ae":s,h=(0,a.useBackend)(t),f=h.act,C=h.data,N=C.compactMode,b=C.lockable,V=C.categories,g=void 0===V?[]:V,v=(0,a.useLocalState)(t,"searchText",""),k=v[0],_=v[1],y=(0,a.useLocalState)(t,"category",null==(n=g[0])?void 0:n.name),L=y[0],B=y[1],x=(0,r.createSearch)(k,(function(e){return e.name+e.desc})),w=k.length>0&&g.flatMap((function(e){return e.items||[]})).filter(x).filter((function(e,t){return t<25}))||(null==(l=g.find((function(e){return e.name===L})))?void 0:l.items)||[];return(0,o.createComponentVNode)(2,i.Section,{title:(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:u>0?"good":"bad",children:[(0,c.formatMoney)(u)," ",p]}),buttons:(0,o.createFragment)([(0,o.createTextVNode)("Search"),(0,o.createComponentVNode)(2,i.Input,{autoFocus:!0,value:k,onInput:function(e,t){return _(t)},mx:1}),(0,o.createComponentVNode)(2,i.Button,{icon:N?"list":"info",content:N?"Compact":"Detailed",onClick:function(){return f("compact_toggle")}}),!!b&&(0,o.createComponentVNode)(2,i.Button,{icon:"lock",content:"Lock",onClick:function(){return f("lock")}})],0),children:(0,o.createComponentVNode)(2,i.Flex,{children:[0===k.length&&(0,o.createComponentVNode)(2,i.Flex.Item,{children:(0,o.createComponentVNode)(2,i.Tabs,{vertical:!0,children:g.map((function(e){var t;return(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:e.name===L,onClick:function(){return B(e.name)},children:[e.name," (",(null==(t=e.items)?void 0:t.length)||0,")"]},e.name)}))})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:1,basis:0,children:[0===w.length&&(0,o.createComponentVNode)(2,i.NoticeBox,{children:0===k.length?"No items in this category.":"No results found."}),(0,o.createComponentVNode)(2,m,{compactMode:k.length>0||N,currencyAmount:u,currencySymbol:p,items:w})]})]})})};t.GenericUplink=s;var m=function(e,t){var n=e.compactMode,l=e.currencyAmount,d=e.currencySymbol,u=(0,a.useBackend)(t).act,s=(0,a.useLocalState)(t,"hoveredItem",{}),m=s[0],p=s[1],h=m&&m.cost||0,f=e.items.map((function(e){var t=m&&m.name!==e.name,n=l-h0&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",mb:1,children:"Please wait. Harvesting in progress."}),(0,o.createComponentVNode)(2,c),(0,o.createComponentVNode)(2,a.Button,{mt:1,fluid:!0,icon:"stop",onClick:function(){return l("stopharvest")},children:"Stop Early"})]})||s<0&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",mb:1,children:"Please wait. Energy dump in progress."}),(0,o.createComponentVNode)(2,c),(0,o.createComponentVNode)(2,a.Button,{mt:1,fluid:!0,icon:"stop",onClick:function(){return l("stopharvest")},children:"Stop Early"})]})||Object.keys(m).length&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:m.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge",children:(0,o.createComponentVNode)(2,c)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Energy Signature ID",children:m.artifact_id})]}),(0,o.createComponentVNode)(2,a.Button,{mt:1,fluid:!0,icon:"eject",onClick:function(){return l("ejectbattery")},children:"Eject Battery"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"bolt",onClick:function(){return l("drainbattery")},children:"Drain Battery"}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"star",onClick:function(){return l("harvest")},children:"Begin Harvest"})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No battery inserted."})})})})};var c=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.info.inserted_battery);return Object.keys(i).length?(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,value:i.stored_charge,maxValue:i.capacity}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No battery inserted."})}},function(e,t,n){"use strict";t.__esModule=!0,t.XenoarchDepthScanner=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.XenoarchDepthScanner=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.current,u=l.positive_locations;return(0,o.createComponentVNode)(2,i.Window,{width:300,height:500,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[Object.keys(d).length&&(0,o.createComponentVNode)(2,a.Section,{title:"Selected",buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"bad",icon:"trash",confirmIcon:"trash",content:"Delete Entry",onClick:function(){return c("clear",{index:d.index})}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Time",children:d.time}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Coords",children:d.coords}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Anomaly Depth",children:[d.depth," cm"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Anomaly Size",children:[d.clearance," cm"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Dissonance Spread",children:d.dissonance_spread}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Anomaly Material",children:d.material})]})})||null,(0,o.createComponentVNode)(2,a.Section,{title:"Entries",buttons:(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"red",icon:"trash",confirmIcon:"trash",content:"Delete All",onClick:function(){return c("clear")}}),children:u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:"eye",onClick:function(){return c("select",{select:e.index})},children:[e.time,", ",e.coords]},e.index)}))||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No traces found."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.XenoarchHandheldPowerUtilizer=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.XenoarchHandheldPowerUtilizer=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.inserted_battery,u=l.anomaly,s=l.charge,m=l.capacity,p=l.timeleft,h=l.activated,f=l.duration,C=l.interval;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:500,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Anomaly Power Utilizer",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!d,icon:"eject",onClick:function(){return c("ejectbattery")},children:"Eject Battery"}),children:d&&(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Inserted Battery",children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Anomalies Detected",children:u||"N/A"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:s,maxValue:m,children:[s," / ",m]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Time Left Activated",children:p}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"power-off",onClick:function(){return c("startup")},children:h?"Activated":"Deactivated"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Activation Duration",children:(0,o.createComponentVNode)(2,a.NumberInput,{unit:"s",fluid:!0,minValue:0,value:f,stepPixelSize:4,maxValue:30,onDrag:function(e,t){return c("changeduration",{duration:10*t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Activation Interval",children:(0,o.createComponentVNode)(2,a.NumberInput,{unit:"s",fluid:!0,minValue:0,value:C,stepPixelSize:10,maxValue:10,onDrag:function(e,t){return c("changeinterval",{interval:10*t})}})})]})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No battery inserted. Please insert a cell."})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.XenoarchReplicator=void 0;var o=n(0),r=(n(5),n(7),n(1)),a=n(2),i=n(3);t.XenoarchReplicator=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data.tgui_construction;return(0,o.createComponentVNode)(2,i.Window,{theme:"abductor",width:400,height:400,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:l.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{color:e.background,icon:e.icon,iconColor:e.foreground,fontSize:4,onClick:function(){return c("construct",{key:e.key})}},e.key)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.XenoarchSpectrometer=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3),c=n(7);t.XenoarchSpectrometer=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.scanned_item,s=d.scanned_item_desc,m=d.last_scan_data,p=d.scan_progress,h=d.scanning,f=d.scanner_seal_integrity,C=d.scanner_rpm,N=d.scanner_temperature,b=d.coolant_usage_rate,V=d.coolant_usage_max,g=(d.unused_coolant_abs,d.unused_coolant_per),v=d.coolant_purity,k=d.optimal_wavelength,_=d.maser_wavelength,y=d.maser_wavelength_max,L=d.maser_efficiency,B=d.radiation,x=(d.t_left_radspike,d.rad_shield_on);return(0,o.createComponentVNode)(2,i.Window,{width:900,height:760,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"signal",selected:h,onClick:function(){return l("scanItem")},children:h?"HALT SCAN":"Begin Scan"}),(0,o.createComponentVNode)(2,a.Button,{icon:"eject",disabled:!u,onClick:function(){return l("ejectItem")},children:"Eject Item"})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Item",children:u||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No item inserted."})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Heuristic Analysis",children:s||"None found."})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Scanner",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Scan Progress",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:p,minValue:0,maxValue:100,color:"good"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Vacuum Seal Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:f,minValue:0,maxValue:100,ranges:{good:[66,100],average:[33,66],bad:[0,33]}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"MASER",buttons:(0,o.createComponentVNode)(2,a.NoticeBox,{info:!0,children:"Match wavelengths to progress the scan."}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"MASER Efficiency",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:L,minValue:0,maxValue:100,ranges:{good:[66,100],average:[33,66],bad:[0,33]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Wavelength",children:(0,o.createComponentVNode)(2,a.Slider,{animated:!0,value:_,fillValue:k,minValue:1,maxValue:y,format:function(e){return e+" MHz"},step:10,onDrag:function(e,t){return l("maserWavelength",{wavelength:t})}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Environment / Internal",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Centrifuge Speed",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:C,minValue:0,maxValue:1e3,color:"good",children:[C," RPM"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Internal Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,value:N,maxValue:1273,ranges:{bad:[1e3,Infinity],average:[250,1e3],good:[0,250]},children:[N," K"]})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Radiation",buttons:(0,o.createComponentVNode)(2,a.Button,{selected:x,icon:"radiation",onClick:function(){return l("toggle_rad_shield")},children:x?"Disable Radiation Shielding":"Enable Radiation Shielding"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Ambient Radiation",children:(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,value:B,maxValue:100,ranges:{bad:[65,Infinity],average:[15,65],good:[0,15]},children:[B," mSv"]})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Cooling",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Coolant Remaining",children:(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,value:10*g,maxValue:1e3,ranges:{good:[65,Infinity],average:[15,65],bad:[0,15]},children:[10*g," u"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Coolant Flow Rate",children:(0,o.createComponentVNode)(2,a.Slider,{minValue:0,value:b,maxValue:V,stepPixelSize:50,format:function(e){return e+" u/s"},onDrag:function(e,t){return l("coolantRate",{coolant:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Coolant Purity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{minValue:0,value:v,maxValue:100,ranges:{good:[66,Infinity],average:[33,66],bad:[0,33]}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Latest Results",children:(0,c.decodeHtmlEntities)(m).split("\n").map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.XenoarchSuspension=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.XenoarchSuspension=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.cell,u=l.cellCharge,s=l.cellMaxCharge,m=l.locked,p=l.suspension_field;return(0,o.createComponentVNode)(2,i.Window,{width:400,height:150,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:'Triple-phase S.F.G. MK III "Reliant"',buttons:(0,o.createComponentVNode)(2,a.Button,{icon:m?"lock":"lock-open",selected:!m,onClick:function(){return c("lock")},children:m?"Locked":"Unlocked"}),children:m&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"This interface is locked. Swipe an ID card to unlock it."})||(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Charge",children:d&&(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*s,Infinity],average:[.5*s,.75*s],bad:[-Infinity,.5*s]},value:u,maxValue:s})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No cell inserted."})})}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:1,icon:"meteor",selected:p,onClick:function(){return c("toggle_field")},children:p?"Disengage Suspension Field":"Engage Suspension Field"})],4)})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAIAtmos=void 0;var o=n(0),r=n(9),a=n(7),i=n(1),c=n(2),l=n(3);t.pAIAtmos=function(e,t){var n=(0,i.useBackend)(t),d=(n.act,n.data.aircontents);return(0,o.createComponentVNode)(2,l.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,c.Section,{children:(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,r.filter)((function(e){return"0"!==e.val||"Pressure"===e.entry||"Temperature"===e.entry}))(d).map((function(e){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.entry,color:(t=e.val,n=e.bad_low,r=e.poor_low,i=e.poor_high,l=e.bad_high,ti?"average":t>l?"bad":"good"),children:[e.val,(0,a.decodeHtmlEntities)(e.units)]},e.entry);var t,n,r,i,l}))})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAIDirectives=void 0;var o=n(0),r=n(1),a=n(2),i=n(3);t.pAIDirectives=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.master,u=l.dna,s=l.prime,m=l.supplemental;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Master",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Master",children:d&&(0,o.createComponentVNode)(2,a.Box,{children:[d," (",u,")",(0,o.createComponentVNode)(2,a.Button,{icon:"syringe",content:"Request Sample",onClick:function(){return c("getdna")}})]})||(0,o.createComponentVNode)(2,a.Box,{children:"None"})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Directives",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Prime Directive",children:s}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Supplemental Directive(s)",children:m||"None"})]}),(0,o.createComponentVNode)(2,a.Box,{mt:1,italic:!0,children:'Recall, personality, that you are a complex piece of software with tremendous social skills. Unlike station AI models, you are focused entirely on sapient-software interfacing. You may parse the "spirit" of a directive and follow its intent, rather than tripping over pedantics and getting snared by technicalities. Above all, you should strive to be seen as the ideal, unwavering digital companion that you are.'}),(0,o.createComponentVNode)(2,a.Box,{mt:1,bold:!0,children:"Your prime directive comes before all others. Should a supplemental directive conflict with it, you are capable of simply discarding this inconsistency, ignoring the conflicting supplemental directive and continuing to fulfill your prime directive to the best of your ability."})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAIDoorjack=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.pAIDoorjack=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.cable,u=l.machine,s=l.inprogress,m=l.progress_a,p=l.progress_b,h=l.aborted;return(0,o.createComponentVNode)(2,i.Window,{width:300,height:150,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cable",children:u&&(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Connected"})||d&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Extended"})||(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"ethernet",content:"Retracted",onClick:function(){return c("cable")}})})}),!!u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hack",children:s&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.ProgressBar,{value:m,maxValue:100,ranges:{good:[67,Infinity],average:[33,67],bad:[-Infinity,33]},children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:m}),".",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:p}),"%"]}),(0,o.createComponentVNode)(2,a.Button,{icon:"ban",color:"bad",onClick:function(){return c("cancel")}})]})||(0,o.createComponentVNode)(2,a.Button,{icon:"virus",content:"Start",onClick:function(){return c("jack")}})})||!!h&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{color:"bad",mt:1,children:"Hack aborted."})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAIInterface=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.pAIInterface=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.bought,u=l.not_bought,s=l.available_ram,m=l.emotions,p=l.current_emotion;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Emotion",children:m.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,selected:e.id===p,onClick:function(){return c("image",{image:e.id})}},e.id)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Software (Available RAM: "+s+")",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Installed",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,selected:e.on,onClick:function(){return c("software",{software:e.id})}},e.id)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Downloadable",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name+" ("+e.ram+")",disabled:e.ram>s,onClick:function(){return c("purchase",{purchase:e.id})}},e.id)}))})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAIMedrecords=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.pAIMedrecords=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.records,u=l.general,s=l.medical,m=l.could_not_find;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,onClick:function(){return c("select",{select:e.ref})}},e.ref)}))}),(u||s)&&(0,o.createComponentVNode)(2,a.Section,{title:"Selected Record",children:[!!m&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Warning: Failed to find some records. The information below may not be complete."}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Record ID",children:u.id}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Entity Classification",children:u.brain_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sex",children:u.sex}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:u.species}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Age",children:u.age}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rank",children:u.rank}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fingerprint",children:u.fingerprint}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Physical Status",children:u.p_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mental Status",children:u.m_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood Type",children:s.b_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Minor Disabilities",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.mi_dis}),(0,o.createComponentVNode)(2,a.Box,{children:s.mi_dis_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Major Disabilities",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.ma_dis}),(0,o.createComponentVNode)(2,a.Box,{children:s.ma_dis_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Allergies",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.alg}),(0,o.createComponentVNode)(2,a.Box,{children:s.alg_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Diseases",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.cdi}),(0,o.createComponentVNode)(2,a.Box,{children:s.cdi_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Important Notes",children:s.notes})]})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pAISecrecords=void 0;var o=n(0),r=(n(5),n(1)),a=n(2),i=n(3);t.pAISecrecords=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.records,u=l.general,s=l.security,m=l.could_not_find;return(0,o.createComponentVNode)(2,i.Window,{width:450,height:600,resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,onClick:function(){return c("select",{select:e.ref})}},e.ref)}))}),(u||s)&&(0,o.createComponentVNode)(2,a.Section,{title:"Selected Record",children:[!!m&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Warning: Failed to find some records. The information below may not be complete."}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Record ID",children:u.id}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Entity Classification",children:u.brain_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sex",children:u.sex}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:u.species}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Age",children:u.age}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rank",children:u.rank}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fingerprint",children:u.fingerprint}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Physical Status",children:u.p_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mental Status",children:u.m_stat}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Criminal Status",children:(0,o.createComponentVNode)(2,a.Box,{children:s.criminal})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Minor Crimes",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.mi_crim}),(0,o.createComponentVNode)(2,a.Box,{children:s.mi_crim_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Major Crimes",children:[(0,o.createComponentVNode)(2,a.Box,{children:s.ma_crim}),(0,o.createComponentVNode)(2,a.Box,{children:s.ma_crim_d})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Important Notes",children:s.notes})]})]})]})})}}]);
\ No newline at end of file
diff --git a/tgui/packages/tgui/styles/interfaces/TinderMessaging.scss b/tgui/packages/tgui/styles/interfaces/TinderMessaging.scss
new file mode 100644
index 00000000000..9be0d70d209
--- /dev/null
+++ b/tgui/packages/tgui/styles/interfaces/TinderMessaging.scss
@@ -0,0 +1,55 @@
+// Kind of a weirdly named SCSS file, but this is used for both pda/pda_messenger.js
+// as well as Communicator.js, and it implements a CSS scheme to produce results similar to Tinder.
+
+@use '../base.scss';
+
+$color-sent: #4d9121 !default;
+$color-received: #cd7a0d !default;
+
+.TinderMessage_First_Sent,
+.TinderMessage_Subsequent_Sent,
+.TinderMessage_First_Received,
+.TinderMessage_Subsequent_Received {
+ padding: 6px;
+ z-index: 1;
+ word-break: break-all;
+ max-width: 100%;
+}
+
+.TinderMessage_First_Sent, .TinderMessage_Subsequent_Sent {
+ text-align: right;
+ background-color: $color-sent;
+}
+
+.TinderMessage_First_Sent {
+ border-radius: 10px 10px 0px 10px;
+}
+
+.TinderMessage_Subsequent_Sent {
+ border-radius: 10px 0px 0px 10px;
+}
+
+.TinderMessage_First_Received, .TinderMessage_Subsequent_Received {
+ text-align: left;
+ background-color: $color-received;
+}
+
+.TinderMessage_First_Received {
+ border-radius: 10px 10px 10px 0px;
+}
+
+.TinderMessage_Subsequent_Received {
+ border-radius: 0px 10px 10px 0px;
+}
+
+.ClassicMessage_Sent, .ClassicMessage_Received {
+ word-break: break-all;
+}
+
+.ClassicMessage_Sent {
+ color: $color-sent;
+}
+
+.ClassicMessage_Received {
+ color: $color-received;
+}
\ No newline at end of file
diff --git a/tgui/packages/tgui/styles/main.scss b/tgui/packages/tgui/styles/main.scss
index bb2a170a333..f8b8d79dec0 100644
--- a/tgui/packages/tgui/styles/main.scss
+++ b/tgui/packages/tgui/styles/main.scss
@@ -39,6 +39,7 @@
@include meta.load-css('./interfaces/IDCard.scss');
@include meta.load-css('./interfaces/NuclearBomb.scss');
@include meta.load-css('./interfaces/Roulette.scss');
+@include meta.load-css('./interfaces/TinderMessaging.scss');
@include meta.load-css('./interfaces/Turbolift.scss');
// Layouts
diff --git a/tgui/packages/tgui/styles/themes/pda-retro.scss b/tgui/packages/tgui/styles/themes/pda-retro.scss
index 649176752d9..797b2a5dba6 100644
--- a/tgui/packages/tgui/styles/themes/pda-retro.scss
+++ b/tgui/packages/tgui/styles/themes/pda-retro.scss
@@ -34,6 +34,12 @@
'color-background': rgba(0, 0, 0, 0.1),
));
+ // Interfaces
+ @include meta.load-css('../interfaces/TinderMessaging.scss', $with: (
+ 'color-sent': #9faa91,
+ 'color-received': #b8b37b,
+ ));
+
// Layouts
@include meta.load-css('../layouts/Layout.scss');
@include meta.load-css('../layouts/Window.scss');
diff --git a/tgui/yarn.lock b/tgui/yarn.lock
index fb28656e06e..60eb1f768df 100644
--- a/tgui/yarn.lock
+++ b/tgui/yarn.lock
@@ -2164,10 +2164,10 @@ domelementtype@^2.0.1:
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d"
integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==
-dompurify@^2.0.11:
- version "2.0.12"
- resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.0.12.tgz#284a2b041e1c60b8e72d7b4d2fadad36141254ae"
- integrity sha512-Fl8KseK1imyhErHypFPA8qpq9gPzlsJ/EukA6yk9o0gX23p1TzC+rh9LqNg1qvErRTc0UNMYlKxEGSfSh43NDg==
+dompurify@^2.0.17:
+ version "2.0.17"
+ resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.0.17.tgz#505ffa126a580603df4007e034bdc9b6b738668e"
+ integrity sha512-nNwwJfW55r8akD8MSFz6k75bzyT2y6JEa1O3JrZFBf+Y5R9JXXU4OsRl0B9hKoPgHTw2b7ER5yJ5Md97MMUJPg==
domutils@^1.7.0:
version "1.7.0"
@@ -3206,9 +3206,9 @@ inherits@2.0.3:
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
ini@^1.3.4, ini@^1.3.5:
- version "1.3.5"
- resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
- integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
+ version "1.3.8"
+ resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
+ integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
internal-slot@^1.0.2:
version "1.0.2"
diff --git a/tools/GenerateChangelog/ss13_autochangelog.py b/tools/GenerateChangelog/ss13_autochangelog.py
new file mode 100644
index 00000000000..180c30e3345
--- /dev/null
+++ b/tools/GenerateChangelog/ss13_autochangelog.py
@@ -0,0 +1,121 @@
+'''
+Usage:
+ $ python ss13_autochangelog.py [--dry-run] html/changelogs [PR_number] [PR_author] [PR_Body]
+
+ss13_autochangelog.py - Generate changelog YAML files from pull request.
+'''
+
+from __future__ import print_function
+import os, sys, re, time, argparse
+from datetime import datetime, date
+from time import time
+
+today = date.today()
+
+dateformat = "%d %B %Y"
+
+opt = argparse.ArgumentParser()
+opt.add_argument('target_dir', help='The location to write changelog files to.')
+opt.add_argument('pr_numb', help='The number of the pull request.')
+opt.add_argument('pr_author', help='The author of the pull request. If specific authors aren\'t specified, the PR author will be used')
+opt.add_argument('pr_body', help='The body of the pull request to parse for changelogs.')
+
+args = opt.parse_args()
+
+all_changelog_entries = {}
+
+validPrefixes = {
+ "fix": 'bugfix',
+ "fixes": 'bugfix',
+ "bugfix": 'bugfix',
+ "wip": 'wip',
+ "tweak": 'tweak',
+ "tweaks": 'tweak',
+ "rsctweak": 'tweak',
+ "soundadd": 'soundadd',
+ "sounddel": 'sounddel',
+ "add": 'rscadd',
+ "adds": 'rscadd',
+ "rscadd": 'rscadd',
+ "del": 'rscdel',
+ "dels": 'rscdel',
+ "delete": 'rscdel',
+ "deletes": 'rscdel',
+ "rscdeldel": 'rscdel',
+ "imageadd": 'imageadd',
+ "imagedel": 'imagedel',
+ "maptweak": 'maptweak',
+ "remap": 'maptweak',
+ "remaps": 'maptweak',
+ "typo": 'spellcheck',
+ "spellcheck": 'spellcheck',
+ "experimental": 'experiment',
+ "experiments": 'experiment',
+ "experiment": 'experiment'
+}
+
+incltag = False
+new_logs = {}
+author = args.pr_author
+new = 0
+
+# Parse PR body for changelog entries
+print('Reading changelogs...')
+for line in args.pr_body.splitlines():
+ print(f"Checking line '{line}'")
+ if line[0] == "🆑": # Find the start of the changelog
+ print("Found opening :cl: tag")
+ if incltag == True: # If we're already reading logs, skip
+ continue
+ incltag = True
+
+ # Fetch the author name
+ author = line[1:]
+ author.strip()
+
+ if not len(author):
+ author = args.pr_author
+
+ if author not in new_logs:
+ new_logs[author] = [] # Make array entry for the author
+ continue
+
+ # If we hit a /cl, we're no longer reading logs
+ elif line == "/🆑":
+ print("Found closing /:cl: tag")
+ incltag = False
+
+ # If we aren't reading logs, we don't care about any other line contents
+ if not incltag:
+ continue
+
+ # Split line into tag (icon) and body (comment)
+ body = re.split("[ ,:-]", line, 1)
+ if len(body) != 2:
+ continue # If there's just one word, then it can't really be a changelog, now can it
+
+ if body[0] in validPrefixes:
+ tag = validPrefixes[body[0]]
+ body = body[1].strip(" ,-:\t\n")
+ else: # If the tag is invalid, just default to rscadd
+ tag = "rscadd"
+ body = line.strip(" ,-:\t\n")
+
+ new_logs[author].append(f" - {tag}: \"{body}\"")
+ new += 1
+
+print(f"Writing {new} new changelog entries.") # f supposedly formats new into the var
+
+for auth in new_logs:
+ # Sanitize authors without changes
+ if not len(new_logs[auth]):
+ continue
+
+ f = open(os.path.join(args.target_dir, f"{auth}{args.pr_numb}.yml"), 'w')
+ print(f"Writing changes to {f}")
+ f.write(f'author: {auth}\n')
+ f.write('delete-after: True\n')
+ f.write('changes:\n')
+ for log in new_logs[auth]:
+ f.write(f'{log}\n')
+ f.close()
diff --git a/tools/StrongDMM/README.md b/tools/StrongDMM/README.md
new file mode 100644
index 00000000000..ba8a5529012
--- /dev/null
+++ b/tools/StrongDMM/README.md
@@ -0,0 +1,45 @@
+# StrongDMM
+
+### LICENSE
+The contents of this folder are licensed under the GNU General Public License version 3, which can be found in full in ~/LICENSE-GPL3.txt.
+
+The source code can be found at https://github.com/SpaiR/StrongDMM
+
+### Overview
+[SpaiR/StrongDMM](https://github.com/SpaiR/StrongDMM) is a 3rd-party program licensed under GPL-v3 that loads in the object tree from a .dme file, and provides an interface very similar to DreamMaker's own mapping interface with which to make and edit .dmm map files. Generally speaking, it loads faster than DM, has several useful features and a cleaner interface, but requires compilation from a separate program (With some care required to ensure that changes are properly copied over). Executables for both Windows and Linux are provided, differentiated by the windows executable being suffixed with `.exe`. There are also instructions on StrongDMM's github page (Linked above) on how to build it from the source code (Not provided)
+
+### Setup
+Navigate to `/tools/StrongDMM` and run the launcher appropriate for your operating system. If you're on windows, it ends in `.exe`. If you're on linux, it has no suffix. Because going into those folders is considered tedious by ~~lazy coders~~ basically everyone, it's recommended to set up a shortcut in the root directory. The launcher will automatically update to the latest build and then open the editor. You should see something like this:
+
+
+
+It's important to note the format of the map files you intend to be working with. Byond's native format is very compact, both by organization and actual storage, where single tile definitions and rows of map tiles are each one line, and tile definitions are re-used where possible. This tends to make map diffs much larger and merge conflicts more tedious to deal with. /tg/ has designed their own format, `TGM`, which spreads out tile and map-row definitions across multiple lines, making the file much more human-readable. It also uses a unique definition for each map tile, which increases the size of the map files by a fair margin. DreamMaker doesn't really care what format it loads in, but it only knows how to save to the native format. StrongDMM has a preference to save maps according to either format, and this can be set by going to `File`->`Preferences`, and selecting the appropriate format, as shown:
+
+
+
+You can also change the other settings as you see fit, but the map save format and nudge mode are most important. Unless you know what you're doing, you probably don't want to change nudge mode, as `step_x/step_y` breaks the commonly-used glide movement animations. Ticking the `Alternate Scrolling Behaviour` will allow you to zoom while holding Space, and scrolling otherwise pans like DreamMaker. With the option unticked, scrolling will only affect zoom. The middle mouse button can always be used to pan, in either case.
+
+
+### Loading a map
+If this is the first time you're using StrongDMM, the panel on the left will be blank except for the `Open Environment...` button at the top. You'll want to click that (Or go `File`->`Open Environment`, or open one directly from `Recent Environments`) and then navigate to the `.dme` file for the project you're working on. StrongDMM needs this to load in the object tree so it can understand the map files that you try to load. It's generally a good idea to make sure that the map files you want to load successfully compile, which generally means making sure the right files for their map-specific objects and areas are ticked when you compile. Once you've loaded an environment, the panel on the left should show the object tree, which looks very similar to DreamMaker's UI, but is notably not a blinding white.
+
+
+
+Next is to load a map. Go to `File`->`Open Available Map...` (Ctrl+Shift+o) and it'll show all map files that exist within the environment you've loaded. Note that some, or even many, of them may not load correctly because you didn't compile all their necessary objects. You can also use `File`->`Open Map` (Ctrl+o) to navigate to the desired map files yourself. Once you click `Open`, it'll take (up to) a couple of seconds to load the map file into the program, and your screen should show whatever's in the bottom-left corner of the map:
+
+
+
+If the map cannot load correctly because objects aren't defined in the environment tree, you'll see a UI that looks pretty similar to DreamMaker's "Hey this doesn't exist" UI, but again, isn't bright white, and also lets you set variables on the replacements.
+
+
+
+### Mapping
+Once a map is loaded, you're pretty much free to start mapping, just as you would in DreamMaker. You can use Ctrl+[1, 2, 3, 4] to toggle the various layers or do so manually from the `Options` menu, which notably _doesn't_ require ticking any extra boxes. By default, in the bottom right of the screen will be one or two small UI elements. The bottommost one will show the map coordinates of the cursor, and the top one, if present, will allow you to move between Z-levels on maps with multiple Z levels (But not when multiple map _files_ are stitched together into multi-Z).
+
+
+
+Shift+Right Click will open up the Edit-Variables interface for whatever you clicked on, which can be tricky to do for small things or things on very cluttered tiles, but you can also right click on the tile, and navigate to the appropriate object and click `Edit`. Note that while the Edit-Variables interface is open, you cannot pan or edit the map, the interface consumes all input. This interface also has a filter, so you can quickly and easily find the variable that you're trying to set!
+
+
+
+The only other really important thing to note is that all these panels can be moved about the whole window, so if you find something is in the way, you're totally free to move it. And again, remember to save (Ctrl+S) and compile your changes before you start your test server and wonder where in the hells all your changes went.
\ No newline at end of file
diff --git a/tools/StrongDMM/SpacemanDMM.toml b/tools/StrongDMM/SpacemanDMM.toml
new file mode 100644
index 00000000000..500be06fa63
--- /dev/null
+++ b/tools/StrongDMM/SpacemanDMM.toml
@@ -0,0 +1,5 @@
+[diagnostics]
+macro_redefined = "off"
+macro_undefined_no_definition = "off"
+as_local_var = "off"
+tmp_no_effect = "off"
diff --git a/tools/StrongDMM/sdmmlauncher b/tools/StrongDMM/sdmmlauncher
new file mode 100644
index 00000000000..0d544adb2d5
Binary files /dev/null and b/tools/StrongDMM/sdmmlauncher differ
diff --git a/tools/StrongDMM/sdmmlauncher.exe b/tools/StrongDMM/sdmmlauncher.exe
new file mode 100644
index 00000000000..e35a71fd351
Binary files /dev/null and b/tools/StrongDMM/sdmmlauncher.exe differ
diff --git a/tools/TagMatcher/tag-matcher.py b/tools/TagMatcher/tag-matcher.py
index 78797a4d93d..ddbe9cbc204 100644
--- a/tools/TagMatcher/tag-matcher.py
+++ b/tools/TagMatcher/tag-matcher.py
@@ -111,7 +111,7 @@ for file, mismatches_by_tag in mismatches_by_file.iteritems():
for mismatch_line in sorted(set(mismatch_list)):
print('\t\tLine {0}'.format(abs(mismatch_line)))
-# Simply prints the total number of mismatches found and if so returns 1 to, for example, fail Travis builds.
+# Simply prints the total number of mismatches found and if so returns 1 to, for example, fail CI builds.
if(total_mismatches == 0):
print('No mismatches found.')
else:
diff --git a/tools/travis/build_tgui.sh b/tools/ci/build_tgui.sh
similarity index 100%
rename from tools/travis/build_tgui.sh
rename to tools/ci/build_tgui.sh
diff --git a/tools/travis/compile_and_run.sh b/tools/ci/compile_and_run.sh
similarity index 100%
rename from tools/travis/compile_and_run.sh
rename to tools/ci/compile_and_run.sh
diff --git a/tools/travis/install_build_deps.sh b/tools/ci/install_build_deps.sh
similarity index 89%
rename from tools/travis/install_build_deps.sh
rename to tools/ci/install_build_deps.sh
index eab4e852013..70812babb17 100644
--- a/tools/travis/install_build_deps.sh
+++ b/tools/ci/install_build_deps.sh
@@ -10,5 +10,3 @@ npm install --global yarn
pip install --user PyYaml -q
pip install --user beautifulsoup4 -q
-
-phpenv global $PHP_VERSION
\ No newline at end of file
diff --git a/tools/travis/install_byond.sh b/tools/ci/install_byond.sh
similarity index 100%
rename from tools/travis/install_byond.sh
rename to tools/ci/install_byond.sh
diff --git a/tools/travis/validate_files.sh b/tools/ci/validate_files.sh
similarity index 89%
rename from tools/travis/validate_files.sh
rename to tools/ci/validate_files.sh
index aad451c8689..990535b4e4a 100644
--- a/tools/travis/validate_files.sh
+++ b/tools/ci/validate_files.sh
@@ -22,14 +22,6 @@ if [ $retVal -ne 0 ]; then
FAILED=1
fi
-#Checking for duplicate nanoui templates
-(! find nano/templates/ -type f -exec md5sum {} + | sort | uniq -D -w 32 | grep nano)
-retVal=$?
-if [ $retVal -ne 0 ]; then
- echo -e "${RED}There are identical nanoui template files present.${NC}"
- FAILED=1
-fi
-
#Checking for broken HTML tags (didn't close the quote for class)
(! grep -En "<\s*span\s+class\s*=\s*('[^'>]+|[^'>]+')\s*>" **/*.dm)
retVal=$?
diff --git a/tools/github-actions/README.MD b/tools/github-actions/README.MD
old mode 100644
new mode 100755
diff --git a/tools/github-actions/nanomap-renderer b/tools/github-actions/nanomap-renderer
old mode 100644
new mode 100755
diff --git a/tools/mapmerge2/requirements.txt b/tools/mapmerge2/requirements.txt
index 251fc1e290f..4c9f5f4dacc 100644
--- a/tools/mapmerge2/requirements.txt
+++ b/tools/mapmerge2/requirements.txt
@@ -1,3 +1,3 @@
pygit2
bidict==0.13.1
-Pillow==6.2.0
+Pillow==7.1.0
diff --git a/vorestation.dme b/vorestation.dme
index d1458a7ded3..1bea426fad4 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -225,6 +225,7 @@
#include "code\ATMOSPHERICS\pipes\pipe_base_vr.dm"
#include "code\ATMOSPHERICS\pipes\simple.dm"
#include "code\ATMOSPHERICS\pipes\tank.dm"
+#include "code\ATMOSPHERICS\pipes\tank_vr.dm"
#include "code\ATMOSPHERICS\pipes\universal.dm"
#include "code\ATMOSPHERICS\pipes\vent.dm"
#include "code\controllers\autotransfer.dm"
@@ -779,6 +780,7 @@
#include "code\game\machinery\bioprinter.dm"
#include "code\game\machinery\bomb_tester_vr.dm"
#include "code\game\machinery\buttons.dm"
+#include "code\game\machinery\buttons_vr.dm"
#include "code\game\machinery\CableLayer.dm"
#include "code\game\machinery\cell_charger.dm"
#include "code\game\machinery\cloning.dm"
@@ -868,6 +870,7 @@
#include "code\game\machinery\computer\atmos_alert.dm"
#include "code\game\machinery\computer\atmos_control.dm"
#include "code\game\machinery\computer\camera.dm"
+#include "code\game\machinery\computer\camera_vr.dm"
#include "code\game\machinery\computer\card.dm"
#include "code\game\machinery\computer\cloning.dm"
#include "code\game\machinery\computer\communications.dm"
@@ -908,6 +911,7 @@
#include "code\game\machinery\doors\firedoor_assembly.dm"
#include "code\game\machinery\doors\firedoor_vr.dm"
#include "code\game\machinery\doors\multi_tile.dm"
+#include "code\game\machinery\doors\multi_tile_vr.dm"
#include "code\game\machinery\doors\unpowered.dm"
#include "code\game\machinery\doors\windowdoor.dm"
#include "code\game\machinery\embedded_controller\airlock_controllers.dm"
@@ -920,12 +924,14 @@
#include "code\game\machinery\embedded_controller\embedded_program_base.dm"
#include "code\game\machinery\embedded_controller\mapping_helpers.dm"
#include "code\game\machinery\embedded_controller\simple_docking_controller.dm"
+#include "code\game\machinery\event\stage_vr.dm"
#include "code\game\machinery\pipe\construction.dm"
#include "code\game\machinery\pipe\pipe_dispenser.dm"
#include "code\game\machinery\pipe\pipe_recipes.dm"
#include "code\game\machinery\pipe\pipelayer.dm"
#include "code\game\machinery\reagents\pump.dm"
#include "code\game\machinery\telecomms\broadcaster.dm"
+#include "code\game\machinery\telecomms\broadcaster_vr.dm"
#include "code\game\machinery\telecomms\logbrowser.dm"
#include "code\game\machinery\telecomms\machine_interactions.dm"
#include "code\game\machinery\telecomms\presets.dm"
@@ -942,6 +948,7 @@
#include "code\game\mecha\mech_sensor.dm"
#include "code\game\mecha\mecha.dm"
#include "code\game\mecha\mecha_actions.dm"
+#include "code\game\mecha\mecha_appearance.dm"
#include "code\game\mecha\mecha_construction_paths.dm"
#include "code\game\mecha\mecha_control_console.dm"
#include "code\game\mecha\mecha_helpers.dm"
@@ -982,6 +989,7 @@
#include "code\game\mecha\equipment\tools\powertool.dm"
#include "code\game\mecha\equipment\tools\rcd.dm"
#include "code\game\mecha\equipment\tools\repair_droid.dm"
+#include "code\game\mecha\equipment\tools\running_board.dm"
#include "code\game\mecha\equipment\tools\shield.dm"
#include "code\game\mecha\equipment\tools\shield_omni.dm"
#include "code\game\mecha\equipment\tools\sleeper.dm"
@@ -1187,6 +1195,7 @@
#include "code\game\objects\items\stacks\nanopaste.dm"
#include "code\game\objects\items\stacks\nanopaste_vr.dm"
#include "code\game\objects\items\stacks\rods.dm"
+#include "code\game\objects\items\stacks\sandbags.dm"
#include "code\game\objects\items\stacks\stack.dm"
#include "code\game\objects\items\stacks\telecrystal.dm"
#include "code\game\objects\items\stacks\tickets.dm"
@@ -1341,6 +1350,7 @@
#include "code\game\objects\items\weapons\storage\boxes.dm"
#include "code\game\objects\items\weapons\storage\boxes_vr.dm"
#include "code\game\objects\items\weapons\storage\briefcase.dm"
+#include "code\game\objects\items\weapons\storage\egg_vr.dm"
#include "code\game\objects\items\weapons\storage\fancy.dm"
#include "code\game\objects\items\weapons\storage\firstaid.dm"
#include "code\game\objects\items\weapons\storage\firstaid_vr.dm"
@@ -1378,6 +1388,7 @@
#include "code\game\objects\random\mob_vr.dm"
#include "code\game\objects\random\spacesuits.dm"
#include "code\game\objects\random\unidentified\medicine.dm"
+#include "code\game\objects\structures\barricades.dm"
#include "code\game\objects\structures\barsign.dm"
#include "code\game\objects\structures\bedsheet_bin.dm"
#include "code\game\objects\structures\bedsheet_bin_vr.dm"
@@ -1420,6 +1431,7 @@
#include "code\game\objects\structures\safe.dm"
#include "code\game\objects\structures\salvageable.dm"
#include "code\game\objects\structures\signs.dm"
+#include "code\game\objects\structures\signs_vr.dm"
#include "code\game\objects\structures\simple_doors.dm"
#include "code\game\objects\structures\simple_doors_vr.dm"
#include "code\game\objects\structures\snowman.dm"
@@ -1430,6 +1442,7 @@
#include "code\game\objects\structures\trash_pile_vr.dm"
#include "code\game\objects\structures\under_wardrobe.dm"
#include "code\game\objects\structures\watercloset.dm"
+#include "code\game\objects\structures\watercloset_vr.dm"
#include "code\game\objects\structures\windoor_assembly.dm"
#include "code\game\objects\structures\window.dm"
#include "code\game\objects\structures\window_spawner.dm"
@@ -1476,6 +1489,7 @@
#include "code\game\objects\structures\flora\flora_vr.dm"
#include "code\game\objects\structures\flora\grass.dm"
#include "code\game\objects\structures\flora\trees.dm"
+#include "code\game\objects\structures\ghost_pods\event_vr.dm"
#include "code\game\objects\structures\ghost_pods\ghost_pods.dm"
#include "code\game\objects\structures\ghost_pods\ghost_pods_vr.dm"
#include "code\game\objects\structures\ghost_pods\human.dm"
@@ -1545,6 +1559,7 @@
#include "code\game\turfs\space\space.dm"
#include "code\game\turfs\space\transit.dm"
#include "code\game\turfs\unsimulated\beach.dm"
+#include "code\game\turfs\unsimulated\beach_vr.dm"
#include "code\game\turfs\unsimulated\floor.dm"
#include "code\game\turfs\unsimulated\planetary.dm"
#include "code\game\turfs\unsimulated\planetary_vr.dm"
@@ -1566,8 +1581,9 @@
#include "code\modules\admin\admin_ranks.dm"
#include "code\modules\admin\admin_secrets.dm"
#include "code\modules\admin\admin_tools.dm"
-#include "code\modules\admin\admin_verb_lists.dm"
+#include "code\modules\admin\admin_verb_lists_vr.dm"
#include "code\modules\admin\admin_verbs.dm"
+#include "code\modules\admin\admin_vr.dm"
#include "code\modules\admin\banjob.dm"
#include "code\modules\admin\ckey_vr.dm"
#include "code\modules\admin\create_mob.dm"
@@ -1914,6 +1930,7 @@
#include "code\modules\clothing\spacesuits\rig\modules\specific\jetpack.dm"
#include "code\modules\clothing\spacesuits\rig\modules\specific\metalfoam_launcher.dm"
#include "code\modules\clothing\spacesuits\rig\modules\specific\mounted_gun.dm"
+#include "code\modules\clothing\spacesuits\rig\modules\specific\mounted_gun_vr.dm"
#include "code\modules\clothing\spacesuits\rig\modules\specific\pat_module_vr.dm"
#include "code\modules\clothing\spacesuits\rig\modules\specific\powersink.dm"
#include "code\modules\clothing\spacesuits\rig\modules\specific\rescue_pharm_vr.dm"
@@ -1987,6 +2004,7 @@
#include "code\modules\clothing\under\accessories\permits_vr.dm"
#include "code\modules\clothing\under\accessories\shiny_vr.dm"
#include "code\modules\clothing\under\accessories\storage.dm"
+#include "code\modules\clothing\under\accessories\storage_vr.dm"
#include "code\modules\clothing\under\accessories\torch.dm"
#include "code\modules\clothing\under\accessories\torch_vr.dm"
#include "code\modules\clothing\under\accessories\temperature\poncho.dm"
@@ -2264,6 +2282,7 @@
#include "code\modules\hydroponics\seedtypes\surik.dm"
#include "code\modules\hydroponics\seedtypes\telriis.dm"
#include "code\modules\hydroponics\seedtypes\thaadra.dm"
+#include "code\modules\hydroponics\seedtypes\tobacco.dm"
#include "code\modules\hydroponics\seedtypes\tomatoes.dm"
#include "code\modules\hydroponics\seedtypes\vale.dm"
#include "code\modules\hydroponics\seedtypes\vanilla.dm"
@@ -2582,7 +2601,6 @@
#include "code\modules\mob\living\carbon\human\stripping.dm"
#include "code\modules\mob\living\carbon\human\unarmed_attack.dm"
#include "code\modules\mob\living\carbon\human\update_icons.dm"
-#include "code\modules\mob\living\carbon\human\update_icons_vr.dm"
#include "code\modules\mob\living\carbon\human\ai_controlled\ai_controlled.dm"
#include "code\modules\mob\living\carbon\human\descriptors\_descriptors.dm"
#include "code\modules\mob\living\carbon\human\descriptors\descriptors_generic.dm"
@@ -2717,6 +2735,7 @@
#include "code\modules\mob\living\simple_mob\butchering.dm"
#include "code\modules\mob\living\simple_mob\combat.dm"
#include "code\modules\mob\living\simple_mob\defense.dm"
+#include "code\modules\mob\living\simple_mob\donteatpets_vr.dm"
#include "code\modules\mob\living\simple_mob\hands.dm"
#include "code\modules\mob\living\simple_mob\harvesting.dm"
#include "code\modules\mob\living\simple_mob\life.dm"
@@ -2883,12 +2902,15 @@
#include "code\modules\mob\living\simple_mob\subtypes\vore\rabbit.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\rat.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\redpanda.dm"
+#include "code\modules\mob\living\simple_mob\subtypes\vore\sect_queen.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\snake.dm"
+#include "code\modules\mob\living\simple_mob\subtypes\vore\softdog.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\solargrub.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\solargrub_larva.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\vore.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\wolf.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\wolfgirl.dm"
+#include "code\modules\mob\living\simple_mob\subtypes\vore\xeno_vore.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\zz_vore_overrides.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\demon\_defines.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\demon\demon.dm"
@@ -2991,6 +3013,7 @@
#include "code\modules\modular_computers\NTNet\NTNRC\conversation.dm"
#include "code\modules\multi-tile\multi-tile.dm"
#include "code\modules\multiz\_stubs.dm"
+#include "code\modules\multiz\admin_upload.dm"
#include "code\modules\multiz\basic.dm"
#include "code\modules\multiz\hoist.dm"
#include "code\modules\multiz\ladder_assembly_vr.dm"
@@ -3060,6 +3083,7 @@
#include "code\modules\organs\subtypes\vox.dm"
#include "code\modules\organs\subtypes\vox_vr.dm"
#include "code\modules\organs\subtypes\xenos.dm"
+#include "code\modules\overmap\abductor_vr.dm"
#include "code\modules\overmap\bluespace_rift_vr.dm"
#include "code\modules\overmap\champagne.dm"
#include "code\modules\overmap\helpers.dm"
@@ -3084,6 +3108,7 @@
#include "code\modules\overmap\ships\computers\helm.dm"
#include "code\modules\overmap\ships\computers\sensors.dm"
#include "code\modules\overmap\ships\computers\ship.dm"
+#include "code\modules\overmap\ships\computers\ship_vr.dm"
#include "code\modules\overmap\ships\computers\shuttle.dm"
#include "code\modules\overmap\ships\engines\engine.dm"
#include "code\modules\overmap\ships\engines\gas_thruster.dm"
@@ -3135,6 +3160,7 @@
#include "code\modules\planet\planet.dm"
#include "code\modules\planet\time.dm"
#include "code\modules\planet\virgo3b_vr.dm"
+#include "code\modules\planet\virgo4_vr.dm"
#include "code\modules\planet\weather.dm"
#include "code\modules\power\apc.dm"
#include "code\modules\power\apc_vr.dm"
@@ -3169,6 +3195,7 @@
#include "code\modules\power\antimatter\shielding.dm"
#include "code\modules\power\cells\device_cells.dm"
#include "code\modules\power\cells\device_cells_vr.dm"
+#include "code\modules\power\cells\esoteric_cells.dm"
#include "code\modules\power\cells\power_cells.dm"
#include "code\modules\power\fusion\_setup.dm"
#include "code\modules\power\fusion\fusion_circuits.dm"
@@ -3442,6 +3469,7 @@
#include "code\modules\resleeving\infomorph.dm"
#include "code\modules\resleeving\infomorph_software.dm"
#include "code\modules\resleeving\machines.dm"
+#include "code\modules\resleeving\machines_vr.dm"
#include "code\modules\resleeving\resleeving_sickness.dm"
#include "code\modules\resleeving\sleevecard.dm"
#include "code\modules\rogueminer_vr\asteroid.dm"
@@ -3575,6 +3603,7 @@
#include "code\modules\tgui\modules\agentcard.dm"
#include "code\modules\tgui\modules\alarm.dm"
#include "code\modules\tgui\modules\appearance_changer.dm"
+#include "code\modules\tgui\modules\appearance_changer_vr.dm"
#include "code\modules\tgui\modules\atmos_control.dm"
#include "code\modules\tgui\modules\camera.dm"
#include "code\modules\tgui\modules\communications.dm"
@@ -3782,6 +3811,7 @@
#include "interface\interface.dm"
#include "interface\skin.dmf"
#include "maps\gateway_archive_vr\blackmarketpackers.dm"
+#include "maps\offmap_vr\om_ships\abductor.dm"
#include "maps\southern_cross\items\clothing\sc_accessory.dm"
#include "maps\southern_cross\items\clothing\sc_suit.dm"
#include "maps\southern_cross\items\clothing\sc_under.dm"